mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
77 lines
6.0 KiB
XML
77 lines
6.0 KiB
XML
<parameters>
|
|
<!-- Prompts where to copy the content files and takes a web site path (such as "contoso.com/app") -->
|
|
<parameter name="Application Path" description="Full site path where you would like to install your application (i.e., Default Web Site/orchard)" defaultValue="Default Web Site/orchard" tags="iisapp">
|
|
<parameterEntry type="ProviderPath" scope="iisapp" match="Orchard" />
|
|
</parameter>
|
|
|
|
<!-- This is the parameter that is used to set ACLs, it's set to the application path filled in by the user -->
|
|
<parameter name="SetAclParameter1" description="Hidden - automatically sets write access for the app" defaultValue="{Application Path}/App_Data" tags="Hidden">
|
|
<parameterEntry type="ProviderPath" scope="setAcl" match="Orchard/App_Data" />
|
|
</parameter>
|
|
|
|
<parameter name="SetAclParameter2" description="Hidden - automatically sets write access for the app" defaultValue="{Application Path}/Media" tags="Hidden">
|
|
<parameterEntry type="ProviderPath" scope="setAcl" match="Orchard/Media" />
|
|
</parameter>
|
|
|
|
<parameter name="SetAclParameter3" description="Hidden - automatically sets write access for the app" defaultValue="{Application Path}/Modules" tags="Hidden">
|
|
<parameterEntry type="ProviderPath" scope="setAcl" match="Orchard/Modules" />
|
|
</parameter>
|
|
|
|
<parameter name="SetAclParameter4" description="Hidden - automatically sets write access for the app" defaultValue="{Application Path}/Themes" tags="Hidden">
|
|
<parameterEntry type="ProviderPath" scope="setAcl" match="Orchard/Themes" />
|
|
</parameter>
|
|
|
|
<!-- Prompts for database server name, this is used in the connection string parameter later -->
|
|
<parameter name="Database Server" description="Location of your database server (i.e. server name, IP address, or server\instance)" defaultValue=".\SQLEXPRESS" tags="SQL, dbServer">
|
|
</parameter>
|
|
|
|
<!-- Prompts for the database name and fills it into the database scripts -->
|
|
<parameter name="Database Name" description="Name of the database for Orchard." defaultValue="orchard" tags="SQL, dbName">
|
|
<parameterEntry type="TextFile" scope="install.sql" match="PlaceHolderForDb" />
|
|
</parameter>
|
|
|
|
<!-- Prompts for the database username and fills it into the database scripts.
|
|
The SQL tag indicates it is a parameter required for SQL, the DbUsername tag indicates this is a Db username -->
|
|
<parameter name="Database Username" description="User name to access you application database." defaultValue="orcharduser" tags="SQL, DbUsername">
|
|
<parameterEntry type="TextFile" scope="install.sql" match="PlaceHolderForUser" />
|
|
</parameter>
|
|
|
|
<!-- Prompts for the database password and fills it into the database scripts.
|
|
The SQL tag indicates it is a parameter required for SQL, the DbUserPassword tag indicates this is a Db password -->
|
|
<parameter name="Database Password" description="Password for the Database Username." tags="New, Password, SQL, DbUserPassword">
|
|
<parameterEntry type="TextFile" scope="install.sql" match="PlaceHolderForPassword" />
|
|
</parameter>
|
|
|
|
<!-- Prompts for the admin creds and uses it for the administrator connection string. This is used to create a login and assign permissions.
|
|
The SQL tag indicates it is a parameter required for SQL. The DbAdminUsername tag indicates it should be used when the user is creating a new database.
|
|
If they're not, it can be filled in with the DbUsername value. -->
|
|
<parameter name="Database Administrator" description="Administrator user name for your database This is used to create the database and user if the don't already exist." defaultValue="sa" tags="SQL, dbAdminUsername">
|
|
</parameter>
|
|
|
|
<!-- Prompts for the admin password and uses it for the administrator connection string.
|
|
This is use to create a login and assign permissions. The SQL tag indicates it is a parameter required for SQL.
|
|
The DbAdminPassword tag indicates it should be used when the user is creating a new database. If they're not, it can be filled in with the DbUserPassword value. -->
|
|
<parameter name="Database Administrator Password" description="Password for the database administrator account." tags="New, Password, SQL, dbAdminPassword">
|
|
</parameter>
|
|
|
|
<!-- This is the hidden admin connection string used to run the database scripts -->
|
|
<parameter name="Connection String" description="Automatically sets the connection string for the connection request." defaultValue="Server={Database Server};Database={Database Name};uid={Database Administrator};Pwd={Database Administrator Password};" tags="Hidden, SQL">
|
|
<parameterEntry type="ProviderPath" scope="dbfullsql" match="install.sql" />
|
|
</parameter>
|
|
|
|
<parameter name="Settings Data Provider for SQL" description="Orchard SQL Data Provider Setting" defaultValue="DataProvider: SqlServer" tags="Hidden, SQL">
|
|
<parameterEntry kind="TextFile" scope="\\Settings\.txt$" match="DataProvider\s*:[^\r\n]*" />
|
|
</parameter>
|
|
|
|
<parameter name="Settings Data Connection String for SQL" description="Orchard SQL Data Connection String Setting" defaultValue="DataConnectionString: Server={Database Server};Database={Database Name};uid={Database Administrator};Pwd={Database Administrator Password};" tags="Hidden, SQL">
|
|
<parameterEntry kind="TextFile" scope="\\Settings\.txt$" match="DataConnectionString\s*:[^\r\n]*" />
|
|
</parameter>
|
|
|
|
<parameter name="Settings Data Provider for SQLCE" description="Orchard SQLCE Data Provider Setting" defaultValue="DataProvider: SqlCe" tags="Hidden, SQLCE, NoStore">
|
|
<parameterEntry kind="TextFile" scope="\\Settings\.txt$" match="DataProvider\s*:[^\r\n]*" />
|
|
</parameter>
|
|
|
|
<parameter name="Settings Data Connection String for SQLCE" description="Orchard SQLCE Data Connection String Setting" defaultValue="DataConnectionString: " tags="Hidden, SQLCE, NoStore">
|
|
<parameterEntry kind="TextFile" scope="\\Settings\.txt$" match="DataConnectionString\s*:[^\r\n]*" />
|
|
</parameter>
|
|
</parameters> |