Develop and Download Open Source Software

Browse CVS Repository

Contents of /pal/pal-portal/installer/resources/antinstall-config-derby.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download) (as text)
Mon Oct 2 12:45:18 2006 UTC (17 years, 5 months ago) by shinsuke
Branch: MAIN
CVS Tags: RELEASE-1_0_BETA2, RELEASE-1_0_BETA3, RELEASE-1_0_BETA1
Changes since 1.3: +12 -19 lines
File MIME type: application/xml
divided portlet release

1 <?xml version="1.0"?>
2 <!DOCTYPE installer PUBLIC "-//tp23 //DTD Ant Installer Config//EN"
3 "http://antinstaller.sf.net/dtd/antinstall-config-0.7.dtd">
4 <!--
5
6 This is an example installer from which you can start a project
7 Edit this file to select the properties you want decided, at the end
8 of the installation screen the properties will be available in a file
9 in the current directory for your ant script
10
11
12 lookAndFeel="com.jgoodies.plaf.windows.ExtWindowsLookAndFeel" - not recommended since it is not linux compatible due to Micro$oft License restrictions
13
14 lookAndFeel="net.sourceforge.mlf.metouia.MetouiaLookAndFeel" - good, and cross platform
15
16 lookAndFeel="com.jgoodies.plaf.plastic.Plastic3DLookAndFeel" - good, and cross platform
17
18 lookAndFeel="com.jgoodies.plaf.plastic.PlasticXPLookAndFeel" - good, and cross platform
19
20 lookAndFeel="com.jgoodies.plaf.plastic.PlasticLookAndFeel" - good but flat, and cross platform
21 -->
22
23 <!--
24
25 defaultImageResource,windowIcon,resource and imageResource load from the classpath
26 the installer script should put the locations of these resources on the classpath
27
28 -->
29 <installer ui="swing,text" verbose="false"
30 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
31 name="PAL Portal Installer" windowIcon="/resources/feather-small.png"
32 defaultImageResource="/resources/palportal.gif" minJavaVersion="1.4">
33 <!-- each page element represents a page of the installer -->
34 <page type="input" name="intro" displayText="PAL Portal">
35 <comment displayText="Welcome to PAL Portal!" title="true"/>
36 <comment
37 displayText="This installer program will guide you through an install of PAL Portal."/>
38 </page>
39 <!-- type="license" shows a license page to click through -->
40 <page type="license" name="license" displayText="License conditions"
41 resource="/resources/LICENSE.TXT">
42 </page>
43 <!-- type="input" shows a list of editable options for the installer -->
44 <page type="input" name="properties" displayText="Required install options">
45 <directory property="installDir"
46 defaultValue="/usr/local/PALPortal"
47 defaultValueWin="${env.ProgramFiles}\PALPortal"
48 displayText="Select an installation directory" create="true"/>
49 </page>
50
51 <page type="input" name="requiredComponents" displayText="Required Components">
52 <comment displayText="Required Components - Click Next" bold="true"/>
53 <target displayText="Core Components" target="install" defaultValue="true"
54 force="true"/>
55 <target displayText="Create Database" target="generateDb"
56 defaultValue="true" force="true"/>
57 <target displayText="Mail Server Configuration" target="mailServerConfiguration"
58 defaultValue="true" force="true"/>
59 <!--
60 <target displayText="Layout Portlets" target="layoutPortlets"
61 defaultValue="true" force="true"/>
62 <target displayText="Portal Administration Portlets"
63 target="j2admin" defaultValue="true" force="true"/>
64 -->
65 </page>
66
67 <!-- Portlet Pack -->
68 <page type="input" name="portletPack" displayText="Portlet Pack">
69
70 <comment displayText="Select a portlet pack file(ex. PALPortal-portletpack-x.y.zip)" bold="true"/>
71 <file property="portletPackFile"
72 defaultValue=""
73 defaultValueWin=""
74 displayText="Portlet Pack" checkExists="false"/>
75 <comment displayText="You can download the portlet pack from http://sourceforge.jp/projects/pal/." />
76 </page>
77
78 <!-- DB Configuration -->
79 <page type="input" name="databaseInfo" displayText="Database information">
80
81 <comment
82 displayText="Please fill in the fields below with the approriate database information. The default values should work"/>
83
84 <text property="dbUser" displayText="Database User Name"/>
85 <text property="dbPassword" displayText="Database Password"/>
86
87 <text property="jdbcUrl" displayText="JDBC Connection String"
88 defaultValue="jdbc:derby:${installDir}/webapps/palportal/WEB-INF/productiondb;create=true"/>
89 <text property="jdbcDriverClass" displayText="JDBC Driver Classname"
90 defaultValue="org.apache.derby.jdbc.EmbeddedDriver"/>
91
92 <file property="jdbcDriverJar"
93 defaultValue="${installDir}/shared/lib/derby-10.1.1.0.jar"
94 defaultValueWin="${installDir}/shared/lib/derby-10.1.1.0.jar"
95 displayText="JDBC driver" checkExists="false"/>
96
97 </page>
98
99 <!-- Mail Server Configuration -->
100 <page type="input" name="mailServerConfig" displayText="Mail Server Configuration">
101
102 <comment
103 displayText="Please fill in the fields below with the approriate mail server information. The default values should work"/>
104
105 <text property="mailServer" displayText="Mail server name" defaultValue="localhost"/>
106 <text property="msUsername" displayText="User name"/>
107 <text property="msPassword" displayText="Password"/>
108 <checkbox property="msAuth" displayText="User authentication" defaultValue="false"/>
109 </page>
110
111 <!-- page type="progress" shows a progress page with the install button
112 Its target is set to cleanuptarget since it is the last page this target will be run last-->
113 <page type="progress" name="progress" displayText="Installation progress">
114 </page>
115 </installer>
116

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26