diff options
author | Chris Smith <toonarmy@phpbb.com> | 2010-04-08 17:23:15 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2010-04-08 17:23:15 +0100 |
commit | cc127d8217559a744ce4f6837d6fae4332db6fb1 (patch) | |
tree | 833deb375d04de3b1a43b0d3289612694b71dacc /build/webpi/parameters.xml | |
parent | a2fe71a6d3b999b30103876d9756d5415c428d7f (diff) | |
download | forums-cc127d8217559a744ce4f6837d6fae4332db6fb1.tar forums-cc127d8217559a744ce4f6837d6fae4332db6fb1.tar.gz forums-cc127d8217559a744ce4f6837d6fae4332db6fb1.tar.bz2 forums-cc127d8217559a744ce4f6837d6fae4332db6fb1.tar.xz forums-cc127d8217559a744ce4f6837d6fae4332db6fb1.zip |
[feature/webpi] Web PI supports UNIX line endings so we'll remove them
Diffstat (limited to 'build/webpi/parameters.xml')
-rw-r--r-- | build/webpi/parameters.xml | 452 |
1 files changed, 226 insertions, 226 deletions
diff --git a/build/webpi/parameters.xml b/build/webpi/parameters.xml index 03d269f3eb..770cabf95b 100644 --- a/build/webpi/parameters.xml +++ b/build/webpi/parameters.xml @@ -1,226 +1,226 @@ -<parameters>
- <parameter
- name="AppPath"
- defaultValue="Default Web Site/phpBB3"
- tags="iisapp">
-
- <parameterEntry
- type="ProviderPath"
- scope="iisapp"
- match="phpBB3" />
- </parameter>
-
- <parameter
- name="aclCache"
- description="Sets the ACL on the cache/ folder"
- defaultValue="{AppPath}/cache"
- tags="Hidden">
-
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="phpBB3/cache" />
- </parameter>
-
- <parameter
- name="aclFiles"
- description="Sets the ACL on the files/ folder"
- defaultValue="{AppPath}/files"
- tags="Hidden">
-
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="phpBB3/files" />
- </parameter>
-
- <parameter
- name="aclStore"
- description="Sets the ACL on the store/ folder"
- defaultValue="{AppPath}/store"
- tags="Hidden">
-
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="phpBB3/store" />
- </parameter>
-
- <parameter
- name="aclAvatarUpload"
- description="Sets the ACL on the avatars/upload/ folder"
- defaultValue="{AppPath}/images/avatars/upload"
- tags="Hidden">
-
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="phpBB3/images/avatars/upload" />
- </parameter>
-
- <parameter
- name="aclConfig"
- description="Sets the ACL on the config.php file"
- defaultValue="{AppPath}/config.php"
- tags="Hidden">
-
- <parameterEntry
- type="ProviderPath"
- scope="setAcl"
- match="phpBB3/config.php" />
- </parameter>
-
- <parameter
- name="DatabaseServer"
- description="Enter the database server"
- defaultValue=".\SQLExpress"
- tags="SQL, dbServer" >
- </parameter>
-
- <parameter
- name="DatabaseName"
- description="Database name for your application."
- defaultValue="phpbb"
- tags="SQL, dbName">
-
- <parameterEntry
- type="TextFile"
- scope="install/mssql.sql"
- match="PlaceHolderForDb" />
- </parameter>
-
- <parameter
- name="DatabaseAdministrator"
- description="Database server administartor username."
- defaultValue="sa"
- tags="SQL, DbAdminUsername" >
- </parameter>
-
- <parameter
- name="DatabaseAdministratorPassword"
- description="Database server administrator password."
- tags="Password,SQL,DbAdminPassword">
- </parameter>
-
- <parameter
- name="Database Username"
- description="Username to access your database."
- defaultValue="phpbb"
- tags="SQL, DbUsername">
-
- <parameterEntry
- type="TextFile"
- scope="install/mssql.sql"
- match="PlaceHolderForUser" />
- </parameter>
-
- <parameter
- name="Database Password"
- description="Password for your phpBB database. (Minimum 4 characters)"
- tags="New, Password,SQL, DbUserPassword">
-
- <parameterValidation
- type = "RegularExpression"
- validationString = "^.{4,}$" />
-
- <parameterEntry
- type="TextFile"
- scope="install/mssql.sql"
- match="PlaceHolderForPassword" />
- </parameter>
-
- <parameter
- name="ConnectionString"
- description="Automatically sets the connection string for the connection request."
- defaultValue="Server={DatabaseServer};Database={DatabaseName};uid={DatabaseAdministrator};Pwd={DatabaseAdministratorPassword};"
- tags="Hidden,SQLConnectionString,Validate">
-
- <parameterEntry
- type="ProviderPath"
- scope="dbfullsql"
- match="install/mssql.sql" />
- </parameter>
-
- <parameter
- name="SQL Database type"
- description="SQL database type"
- defaultValue="mssql"
- tags="SQL,Hidden">
- </parameter>
-
- <parameter
- name="MySQL Database Server"
- description="Enter the hostname"
- defaultValue="localhost"
- tags="MySQL, dbServer">
-
- <parameterEntry
- type="TextFile"
- scope="install/mysql.sql"
- match="PlaceHolderForServer" />
- </parameter>
-
- <parameter
- name="Application Database Name"
- description="Database Name for your application."
- defaultValue="phpbb"
- tags="MySQL, dbName">
-
- <parameterEntry
- type="TextFile"
- scope="install/mysql.sql"
- match="PlaceHolderForDb" />
- </parameter>
-
- <parameter
- name="MySQL Database Administrator"
- description="Database administrator username."
- defaultValue="root"
- tags="MySQL, DbAdminUsername" >
- </parameter>
-
- <parameter
- name="MySQL Database Administrator Password"
- description="Database administrator password."
- tags="Password,MySQL,DbAdminPassword" >
- </parameter>
-
- <parameter
- name="phpBB Database Username"
- description="Username to access your phpBB database."
- defaultValue="phpbb"
- tags="MySQL, DbUsername">
-
- <parameterEntry
- type="TextFile"
- scope="install/mysql.sql"
- match="PlaceHolderForUser" />
- </parameter>
-
- <parameter
- name="MySQL Database Password"
- description="Password for your phpBB database. (Minimum 4 characters)"
- tags="New, Password,MySQL,DbUserPassword">
-
- <parameterValidation
- type = "RegularExpression"
- validationString = "^.{4,}$" />
-
- <parameterEntry
- type="TextFile"
- scope="install/mysql.sql"
- match="PlaceHolderForPassword" />
- </parameter>
-
- <parameter
- name="MySQLConnectionString"
- description="Automatically sets the connection string for the connection request."
- defaultValue="Server={MySQL Database Server};Database={Application Database Name};uid={MySQL Database Administrator};Pwd={MySQL Database Administrator Password};"
- tags="Hidden,MySQLConnectionString,Validate">
-
- <parameterEntry
- type="ProviderPath"
- scope="dbmysql"
- match="install/mysql.sql" />
- </parameter>
-</parameters>
\ No newline at end of file +<parameters> + <parameter + name="AppPath" + defaultValue="Default Web Site/phpBB3" + tags="iisapp"> + + <parameterEntry + type="ProviderPath" + scope="iisapp" + match="phpBB3" /> + </parameter> + + <parameter + name="aclCache" + description="Sets the ACL on the cache/ folder" + defaultValue="{AppPath}/cache" + tags="Hidden"> + + <parameterEntry + type="ProviderPath" + scope="setAcl" + match="phpBB3/cache" /> + </parameter> + + <parameter + name="aclFiles" + description="Sets the ACL on the files/ folder" + defaultValue="{AppPath}/files" + tags="Hidden"> + + <parameterEntry + type="ProviderPath" + scope="setAcl" + match="phpBB3/files" /> + </parameter> + + <parameter + name="aclStore" + description="Sets the ACL on the store/ folder" + defaultValue="{AppPath}/store" + tags="Hidden"> + + <parameterEntry + type="ProviderPath" + scope="setAcl" + match="phpBB3/store" /> + </parameter> + + <parameter + name="aclAvatarUpload" + description="Sets the ACL on the avatars/upload/ folder" + defaultValue="{AppPath}/images/avatars/upload" + tags="Hidden"> + + <parameterEntry + type="ProviderPath" + scope="setAcl" + match="phpBB3/images/avatars/upload" /> + </parameter> + + <parameter + name="aclConfig" + description="Sets the ACL on the config.php file" + defaultValue="{AppPath}/config.php" + tags="Hidden"> + + <parameterEntry + type="ProviderPath" + scope="setAcl" + match="phpBB3/config.php" /> + </parameter> + + <parameter + name="DatabaseServer" + description="Enter the database server" + defaultValue=".\SQLExpress" + tags="SQL, dbServer" > + </parameter> + + <parameter + name="DatabaseName" + description="Database name for your application." + defaultValue="phpbb" + tags="SQL, dbName"> + + <parameterEntry + type="TextFile" + scope="install/mssql.sql" + match="PlaceHolderForDb" /> + </parameter> + + <parameter + name="DatabaseAdministrator" + description="Database server administartor username." + defaultValue="sa" + tags="SQL, DbAdminUsername" > + </parameter> + + <parameter + name="DatabaseAdministratorPassword" + description="Database server administrator password." + tags="Password,SQL,DbAdminPassword"> + </parameter> + + <parameter + name="Database Username" + description="Username to access your database." + defaultValue="phpbb" + tags="SQL, DbUsername"> + + <parameterEntry + type="TextFile" + scope="install/mssql.sql" + match="PlaceHolderForUser" /> + </parameter> + + <parameter + name="Database Password" + description="Password for your phpBB database. (Minimum 4 characters)" + tags="New, Password,SQL, DbUserPassword"> + + <parameterValidation + type = "RegularExpression" + validationString = "^.{4,}$" /> + + <parameterEntry + type="TextFile" + scope="install/mssql.sql" + match="PlaceHolderForPassword" /> + </parameter> + + <parameter + name="ConnectionString" + description="Automatically sets the connection string for the connection request." + defaultValue="Server={DatabaseServer};Database={DatabaseName};uid={DatabaseAdministrator};Pwd={DatabaseAdministratorPassword};" + tags="Hidden,SQLConnectionString,Validate"> + + <parameterEntry + type="ProviderPath" + scope="dbfullsql" + match="install/mssql.sql" /> + </parameter> + + <parameter + name="SQL Database type" + description="SQL database type" + defaultValue="mssql" + tags="SQL,Hidden"> + </parameter> + + <parameter + name="MySQL Database Server" + description="Enter the hostname" + defaultValue="localhost" + tags="MySQL, dbServer"> + + <parameterEntry + type="TextFile" + scope="install/mysql.sql" + match="PlaceHolderForServer" /> + </parameter> + + <parameter + name="Application Database Name" + description="Database Name for your application." + defaultValue="phpbb" + tags="MySQL, dbName"> + + <parameterEntry + type="TextFile" + scope="install/mysql.sql" + match="PlaceHolderForDb" /> + </parameter> + + <parameter + name="MySQL Database Administrator" + description="Database administrator username." + defaultValue="root" + tags="MySQL, DbAdminUsername" > + </parameter> + + <parameter + name="MySQL Database Administrator Password" + description="Database administrator password." + tags="Password,MySQL,DbAdminPassword" > + </parameter> + + <parameter + name="phpBB Database Username" + description="Username to access your phpBB database." + defaultValue="phpbb" + tags="MySQL, DbUsername"> + + <parameterEntry + type="TextFile" + scope="install/mysql.sql" + match="PlaceHolderForUser" /> + </parameter> + + <parameter + name="MySQL Database Password" + description="Password for your phpBB database. (Minimum 4 characters)" + tags="New, Password,MySQL,DbUserPassword"> + + <parameterValidation + type = "RegularExpression" + validationString = "^.{4,}$" /> + + <parameterEntry + type="TextFile" + scope="install/mysql.sql" + match="PlaceHolderForPassword" /> + </parameter> + + <parameter + name="MySQLConnectionString" + description="Automatically sets the connection string for the connection request." + defaultValue="Server={MySQL Database Server};Database={Application Database Name};uid={MySQL Database Administrator};Pwd={MySQL Database Administrator Password};" + tags="Hidden,MySQLConnectionString,Validate"> + + <parameterEntry + type="ProviderPath" + scope="dbmysql" + match="install/mysql.sql" /> + </parameter> +</parameters> |