Merge
This commit is contained in:
commit
734a612f0a
7 changed files with 83 additions and 3 deletions
|
@ -181,6 +181,23 @@
|
|||
<td class="Normal">
|
||||
<asp:CheckBox ID="chkCgiBin" runat="server" Text="Installed" /></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="SubHead">
|
||||
<asp:Label ID="lblCfExt" runat="server" meta:resourcekey="lblCfExt" Text="ColdFusion:"></asp:Label>
|
||||
</td>
|
||||
<td class="Normal">
|
||||
<asp:CheckBox ID="chkCfExt" runat="server" Text="Enabled" /></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="SubHead">
|
||||
<asp:Label ID="lblVirtDir" runat="server" meta:resourcekey="lblVirtDir" Text="CFVirtualDirectories:"></asp:Label>
|
||||
</td>
|
||||
<td class="Normal">
|
||||
<asp:CheckBox ID="chkVirtDir" runat="server" Text="Enabled" /></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</asp:Panel>
|
||||
|
||||
|
|
|
@ -76,6 +76,8 @@ namespace WebsitePanel.Portal
|
|||
chkPerl.Checked = Utils.ParseBool(settings["PerlInstalled"], false);
|
||||
chkPython.Checked = Utils.ParseBool(settings["PythonInstalled"], false);
|
||||
chkCgiBin.Checked = Utils.ParseBool(settings["CgiBinInstalled"], false);
|
||||
chkCfExt.Checked = Utils.ParseBool(settings["ColdFusionInstalled"], false);
|
||||
chkVirtDir.Checked = Utils.ParseBool(settings["CreateCFVirtualDirectoriesPol"], false);
|
||||
|
||||
// anonymous account policy
|
||||
anonymousUsername.Value = settings["AnonymousAccountPolicy"];
|
||||
|
@ -130,6 +132,8 @@ namespace WebsitePanel.Portal
|
|||
settings["PerlInstalled"] = chkPerl.Checked.ToString();
|
||||
settings["PythonInstalled"] = chkPython.Checked.ToString();
|
||||
settings["CgiBinInstalled"] = chkCgiBin.Checked.ToString();
|
||||
settings["ColdFusionInstalled"] = chkCfExt.Checked.ToString();
|
||||
settings["CreateCFVirtualDirectoriesPol"] = chkVirtDir.Checked.ToString();
|
||||
|
||||
// anonymous account policy
|
||||
settings["AnonymousAccountPolicy"] = anonymousUsername.Value;
|
||||
|
|
|
@ -462,6 +462,42 @@ namespace WebsitePanel.Portal {
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.CheckBox chkCgiBin;
|
||||
|
||||
/// <summary>
|
||||
/// lblCfExt control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblCfExt;
|
||||
|
||||
/// <summary>
|
||||
/// chkCfExt control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.CheckBox chkCfExt;
|
||||
|
||||
/// <summary>
|
||||
/// lblVirtDir control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblVirtDir;
|
||||
|
||||
/// <summary>
|
||||
/// chkVirtDir control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.CheckBox chkVirtDir;
|
||||
|
||||
/// <summary>
|
||||
/// secAnonymousAccount control.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue