Initial project's source code check-in.
|
@ -0,0 +1,52 @@
|
|||
<browsers>
|
||||
<browser refID="Default">
|
||||
<controlAdapters>
|
||||
<adapter controlType="System.Web.UI.WebControls.Menu"
|
||||
adapterType="CSSFriendly.MenuAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.GridView"
|
||||
adapterType="CSSFriendly.GridViewAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.Image"
|
||||
adapterType="CSSFriendly.ImageAdapter" />
|
||||
<!--adapter controlType="System.Web.UI.WebControls.Label"
|
||||
adapterType="CSSFriendly.LabelAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.HyperLink"
|
||||
adapterType="CSSFriendly.HyperLinkAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.TreeView"
|
||||
adapterType="CSSFriendly.TreeViewAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.DetailsView"
|
||||
adapterType="CSSFriendly.DetailsViewAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.FormView"
|
||||
adapterType="CSSFriendly.FormViewAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.DataList"
|
||||
adapterType="CSSFriendly.DataListAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.GridView"
|
||||
adapterType="CSSFriendly.GridViewAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.ChangePassword"
|
||||
adapterType="CSSFriendly.ChangePasswordAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.Login"
|
||||
adapterType="CSSFriendly.LoginAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.LoginStatus"
|
||||
adapterType="CSSFriendly.LoginStatusAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.CreateUserWizard"
|
||||
adapterType="CSSFriendly.CreateUserWizardAdapter" />
|
||||
<adapter controlType="System.Web.UI.WebControls.PasswordRecovery"
|
||||
adapterType="CSSFriendly.PasswordRecoveryAdapter" /-->
|
||||
</controlAdapters>
|
||||
</browser>
|
||||
|
||||
<browser id="W3C_Validator" parentID="default">
|
||||
<identification>
|
||||
<userAgent match="^W3C_Validator" />
|
||||
</identification>
|
||||
<capabilities>
|
||||
<capability name="browser" value="W3C Validator" />
|
||||
<capability name="ecmaScriptVersion" value="1.2" />
|
||||
<capability name="javascript" value="true" />
|
||||
<capability name="supportsCss" value="true" />
|
||||
<capability name="supportsCallback" value="true" />
|
||||
<capability name="tables" value="true" />
|
||||
<capability name="tagWriter" value="System.Web.UI.HtmlTextWriter" />
|
||||
<capability name="w3cdomversion" value="1.0" />
|
||||
</capabilities>
|
||||
</browser>
|
||||
</browsers>
|
|
@ -0,0 +1,19 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<div class="BrowseContainer">
|
||||
<table class="Header" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="HeaderLeft"></td>
|
||||
<td class="HeaderTitle">
|
||||
<div class="HeaderIcon">
|
||||
<asp:Image ID="imgModuleIcon" runat="server" ImageAlign="AbsMiddle" Width="48" Height="48" />
|
||||
</div>
|
||||
|
||||
<asp:Label ID="lblModuleTitle" runat="server" CssClass="Head"></asp:Label>
|
||||
</td>
|
||||
<td class="HeaderRight"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="Content">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"/>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,37 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="true" %>
|
||||
<%@ Import Namespace="WebsitePanel.Portal" %>
|
||||
<script runat="server">
|
||||
void Page_Load()
|
||||
{
|
||||
this.DataBind();
|
||||
}
|
||||
</script>
|
||||
<div class="BrowseContainer">
|
||||
<div class="Top"><div class="Left"></div></div>
|
||||
<asp:Panel ID="HeaderPanel" runat="server" CssClass="Title" style="cursor:pointer;">
|
||||
<table cellpadding="0" cellspacing="0" style="width:100%;">
|
||||
<tr>
|
||||
<td style="width:100%;">
|
||||
<asp:Image ID="imgModuleIcon" runat="server" ImageAlign="AbsMiddle" Width="48px" Height="48px" />
|
||||
<asp:Label ID="lblModuleTitle" runat="server" CssClass="Head"></asp:Label>
|
||||
</td>
|
||||
<td style="padding-left:5px;padding-right:5px;"><asp:Image ID="ToggleImage" runat="server" ImageUrl='<%# PortalUtils.GetThemedImage("module_expand.gif") %>' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</asp:Panel>
|
||||
<asp:Panel ID="ContentPanel" runat="server" CssClass="Content">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"/>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<ajaxToolkit:CollapsiblePanelExtender ID="cpe" runat="Server"
|
||||
TargetControlID="ContentPanel"
|
||||
ExpandControlID="HeaderPanel"
|
||||
CollapseControlID="HeaderPanel"
|
||||
Collapsed="True"
|
||||
ExpandDirection="Vertical"
|
||||
ImageControlID="ToggleImage"
|
||||
ExpandedImage='<%# PortalUtils.GetThemedImage("module_collapse.gif") %>'
|
||||
ExpandedText="Collapse"
|
||||
CollapsedImage='<%# PortalUtils.GetThemedImage("module_expand.gif") %>'
|
||||
CollapsedText="Expand"
|
||||
SuppressPostBack="true" />
|
|
@ -0,0 +1,2 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
|
@ -0,0 +1,19 @@
|
|||
<%@ Control language="C#" AutoEventWireup="false" %>
|
||||
<div class="EditContainer">
|
||||
<table class="Header" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="HeaderLeft"></td>
|
||||
<td class="HeaderTitle">
|
||||
<div class="HeaderIcon">
|
||||
<asp:Image ID="imgModuleIcon" runat="server" ImageAlign="AbsMiddle" Width="48px" Height="48px" />
|
||||
</div>
|
||||
|
||||
<asp:Label ID="lblModuleTitle" runat="server" CssClass="Head"></asp:Label>
|
||||
</td>
|
||||
<td class="HeaderRight"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="Content">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"/>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,10 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<div class="ExchangeFooter">
|
||||
<div class="ExchangeHeader">
|
||||
<div class="ExchangeBottom">
|
||||
<div class="ExchangeBody">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,18 @@
|
|||
<%@ Control language="C#" AutoEventWireup="false" %>
|
||||
<div class="LoginContainer">
|
||||
<table class="Header" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="HeaderLeft"></td>
|
||||
<td class="HeaderTitle">
|
||||
<div class="HeaderIcon">
|
||||
<asp:Image ID="imgModuleIcon" runat="server" ImageAlign="AbsMiddle" Width="48" Height="48" />
|
||||
</div>
|
||||
<asp:Label ID="lblModuleTitle" runat="server" CssClass="Head"></asp:Label>
|
||||
</td>
|
||||
<td class="HeaderRight"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="Content">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"/>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,12 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<div class="RightContainer">
|
||||
<div class="Top">
|
||||
<div class="Title">
|
||||
<asp:Image ID="imgModuleIcon" runat="server" ImageAlign="AbsMiddle" Width="48px" Height="48px" />
|
||||
<asp:Label ID="lblModuleTitle" runat="server" CssClass="Head"></asp:Label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="RightContainerContent">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"/>
|
||||
</div>
|
|
@ -0,0 +1,2 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<asp:PlaceHolder id="ContentPane" runat="server"></asp:PlaceHolder>
|
|
@ -0,0 +1,10 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<div class="VpsFooter">
|
||||
<div class="VpsHeader">
|
||||
<div class="VpsBottom">
|
||||
<div class="VpsBody">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,10 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="false" %>
|
||||
<div class="VpsFooter">
|
||||
<div class="VpsHeader">
|
||||
<div class="VpsBottom">
|
||||
<div class="VpsForPCBody">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,249 @@
|
|||
<?xml version="1.0"?>
|
||||
<Countries>
|
||||
<Country name="Afghanistan" key="AF" />
|
||||
<Country name="Aland Islands" key="AX" />
|
||||
<Country name="Albania" key="AL" />
|
||||
<Country name="Algeria" key="DZ" />
|
||||
<Country name="American Samoa" key="AS" />
|
||||
<Country name="Andorra" key="AD" />
|
||||
<Country name="Angola" key="AO" />
|
||||
<Country name="Anguilla" key="AI" />
|
||||
<Country name="Antarctica" key="AQ" />
|
||||
<Country name="Antigua and Barbuda" key="AG" />
|
||||
<Country name="Argentina" key="AR" />
|
||||
<Country name="Armenia" key="AM" />
|
||||
<Country name="Aruba" key="AW" />
|
||||
<Country name="Australia" key="AU" />
|
||||
<Country name="Austria" key="AT" />
|
||||
<Country name="Azerbaijan" key="AZ" />
|
||||
<Country name="Bahamas" key="BS" />
|
||||
<Country name="Bahrain" key="BH" />
|
||||
<Country name="Bangladesh" key="BD" />
|
||||
<Country name="Barbados" key="BB" />
|
||||
<Country name="Belarus" key="BY" />
|
||||
<Country name="Belgium" key="BE" />
|
||||
<Country name="Belize" key="BZ" />
|
||||
<Country name="Benin" key="BJ" />
|
||||
<Country name="Bermuda" key="BM" />
|
||||
<Country name="Bhutan" key="BT" />
|
||||
<Country name="Bolivia, Plurinational State of" key="BO" />
|
||||
<Country name="Bosnia and Herzegovina" key="BA" />
|
||||
<Country name="Botswana" key="BW" />
|
||||
<Country name="Bouvet Island" key="BV" />
|
||||
<Country name="Brazil" key="BR" />
|
||||
<Country name="British Indian Ocean Territory" key="IO" />
|
||||
<Country name="Brunei Darussalam" key="BN" />
|
||||
<Country name="Bulgaria" key="BG" />
|
||||
<Country name="Burkina Faso" key="BF" />
|
||||
<Country name="Burundi" key="BI" />
|
||||
<Country name="Cambodia" key="KH" />
|
||||
<Country name="Cameroon" key="CM" />
|
||||
<Country name="Canada" key="CA" />
|
||||
<Country name="Cape Verde" key="CV" />
|
||||
<Country name="Cayman Islands" key="KY" />
|
||||
<Country name="Central African Republic" key="CF" />
|
||||
<Country name="Chad" key="TD" />
|
||||
<Country name="Chile" key="CL" />
|
||||
<Country name="China" key="CN" />
|
||||
<Country name="Christmas Island" key="CX" />
|
||||
<Country name="Cocos (Keeling) Islands" key="CC" />
|
||||
<Country name="Colombia" key="CO" />
|
||||
<Country name="Comoros" key="KM" />
|
||||
<Country name="Congo" key="CG" />
|
||||
<Country name="Congo, the Democratic Republic of the" key="CD" />
|
||||
<Country name="Cook Islands" key="CK" />
|
||||
<Country name="Costa Rica" key="CR" />
|
||||
<Country name="Cote D'Ivoire" key="CI" />
|
||||
<Country name="Croatia" key="HR" />
|
||||
<Country name="Cuba" key="CU" />
|
||||
<Country name="Cyprus" key="CY" />
|
||||
<Country name="Czech Republic" key="CZ" />
|
||||
<Country name="Denmark" key="DK" />
|
||||
<Country name="Djibouti" key="DJ" />
|
||||
<Country name="Dominica" key="DM" />
|
||||
<Country name="Dominican Republic" key="DO" />
|
||||
<Country name="Ecuador" key="EC" />
|
||||
<Country name="Egypt" key="EG" />
|
||||
<Country name="El Salvador" key="SV" />
|
||||
<Country name="Equatorial Guinea" key="GQ" />
|
||||
<Country name="Eritrea" key="ER" />
|
||||
<Country name="Estonia" key="EE" />
|
||||
<Country name="Ethiopia" key="ET" />
|
||||
<Country name="Falkland Islands (Malvinas)" key="FK" />
|
||||
<Country name="Faroe Islands" key="FO" />
|
||||
<Country name="Fiji" key="FJ" />
|
||||
<Country name="Finland" key="FI" />
|
||||
<Country name="France" key="FR" />
|
||||
<Country name="French Guiana" key="GF" />
|
||||
<Country name="French Polynesia" key="PF" />
|
||||
<Country name="French Southern Territories" key="TF" />
|
||||
<Country name="Gabon" key="GA" />
|
||||
<Country name="Gambia" key="GM" />
|
||||
<Country name="Georgia" key="GE" />
|
||||
<Country name="Germany" key="DE" />
|
||||
<Country name="Ghana" key="GH" />
|
||||
<Country name="Gibraltar" key="GI" />
|
||||
<Country name="Greece" key="GR" />
|
||||
<Country name="Greenland" key="GL" />
|
||||
<Country name="Grenada" key="GD" />
|
||||
<Country name="Guadeloupe" key="GP" />
|
||||
<Country name="Guam" key="GU" />
|
||||
<Country name="Guatemala" key="GT" />
|
||||
<Country name="Guernsey" key="GG" />
|
||||
<Country name="Guinea" key="GN" />
|
||||
<Country name="Guinea-Bissau" key="GW" />
|
||||
<Country name="Guyana" key="GY" />
|
||||
<Country name="Haiti" key="HT" />
|
||||
<Country name="Heard Island and Mcdonald Islands" key="HM" />
|
||||
<Country name="Holy See (Vatican City State)" key="VA" />
|
||||
<Country name="Honduras" key="HN" />
|
||||
<Country name="Hong Kong" key="HK" />
|
||||
<Country name="Hungary" key="HU" />
|
||||
<Country name="Iceland" key="IS" />
|
||||
<Country name="India" key="IN" />
|
||||
<Country name="Indonesia" key="ID" />
|
||||
<Country name="Iran, Islamic Republic of" key="IR" />
|
||||
<Country name="Iraq" key="IQ" />
|
||||
<Country name="Ireland" key="IE" />
|
||||
<Country name="Isle of Man" key="IM" />
|
||||
<Country name="Israel" key="IL" />
|
||||
<Country name="Italy" key="IT" />
|
||||
<Country name="Jamaica" key="JM" />
|
||||
<Country name="Japan" key="JP" />
|
||||
<Country name="Jersey" key="JE" />
|
||||
<Country name="Jordan" key="JO" />
|
||||
<Country name="Kazakhstan" key="KZ" />
|
||||
<Country name="Kenya" key="KE" />
|
||||
<Country name="Kiribati" key="KI" />
|
||||
<Country name="Korea, Democratic People's Republic of" key="KP" />
|
||||
<Country name="Korea, Republic of" key="KR" />
|
||||
<Country name="Kuwait" key="KW" />
|
||||
<Country name="Kyrgyzstan" key="KG" />
|
||||
<Country name="Lao People's Democratic Republic" key="LA" />
|
||||
<Country name="Latvia" key="LV" />
|
||||
<Country name="Lebanon" key="LB" />
|
||||
<Country name="Lesotho" key="LS" />
|
||||
<Country name="Liberia" key="LR" />
|
||||
<Country name="Libyan Arab Jamahiriya" key="LY" />
|
||||
<Country name="Liechtenstein" key="LI" />
|
||||
<Country name="Lithuania" key="LT" />
|
||||
<Country name="Luxembourg" key="LU" />
|
||||
<Country name="Macao" key="MO" />
|
||||
<Country name="Macedonia, the Former Yugoslav Republic of" key="MK" />
|
||||
<Country name="Madagascar" key="MG" />
|
||||
<Country name="Malawi" key="MW" />
|
||||
<Country name="Malaysia" key="MY" />
|
||||
<Country name="Maldives" key="MV" />
|
||||
<Country name="Mali" key="ML" />
|
||||
<Country name="Malta" key="MT" />
|
||||
<Country name="Marshall Islands" key="MH" />
|
||||
<Country name="Martinique" key="MQ" />
|
||||
<Country name="Mauritania" key="MR" />
|
||||
<Country name="Mauritius" key="MU" />
|
||||
<Country name="Mayotte" key="YT" />
|
||||
<Country name="Mexico" key="MX" />
|
||||
<Country name="Micronesia, Federated States of" key="FM" />
|
||||
<Country name="Moldova, Republic of" key="MD" />
|
||||
<Country name="Monaco" key="MC" />
|
||||
<Country name="Mongolia" key="MN" />
|
||||
<Country name="Montenegro" key="ME" />
|
||||
<Country name="Montserrat" key="MS" />
|
||||
<Country name="Morocco" key="MA" />
|
||||
<Country name="Mozambique" key="MZ" />
|
||||
<Country name="Myanmar" key="MM" />
|
||||
<Country name="Namibia" key="NA" />
|
||||
<Country name="Nauru" key="NR" />
|
||||
<Country name="Nepal" key="NP" />
|
||||
<Country name="Netherlands" key="NL" />
|
||||
<Country name="Netherlands Antilles" key="AN" />
|
||||
<Country name="New Caledonia" key="NC" />
|
||||
<Country name="New Zealand" key="NZ" />
|
||||
<Country name="Nicaragua" key="NI" />
|
||||
<Country name="Niger" key="NE" />
|
||||
<Country name="Nigeria" key="NG" />
|
||||
<Country name="Niue" key="NU" />
|
||||
<Country name="Norfolk Island" key="NF" />
|
||||
<Country name="Northern Mariana Islands" key="MP" />
|
||||
<Country name="Norway" key="NO" />
|
||||
<Country name="Oman" key="OM" />
|
||||
<Country name="Pakistan" key="PK" />
|
||||
<Country name="Palau" key="PW" />
|
||||
<Country name="Palestinian Territory, Occupied" key="PS" />
|
||||
<Country name="Panama" key="PA" />
|
||||
<Country name="Papua New Guinea" key="PG" />
|
||||
<Country name="Paraguay" key="PY" />
|
||||
<Country name="Peru" key="PE" />
|
||||
<Country name="Philippines" key="PH" />
|
||||
<Country name="Pitcairn" key="PN" />
|
||||
<Country name="Poland" key="PL" />
|
||||
<Country name="Portugal" key="PT" />
|
||||
<Country name="Puerto Rico" key="PR" />
|
||||
<Country name="Qatar" key="QA" />
|
||||
<Country name="Reunion" key="RE" />
|
||||
<Country name="Romania" key="RO" />
|
||||
<Country name="Russian Federation" key="RU" />
|
||||
<Country name="Rwanda" key="RW" />
|
||||
<Country name="Saint Barthelemy" key="BL" />
|
||||
<Country name="Saint Helena" key="SH" />
|
||||
<Country name="Saint Kitts and Nevis" key="KN" />
|
||||
<Country name="Saint Lucia" key="LC" />
|
||||
<Country name="Saint Martin" key="MF" />
|
||||
<Country name="Saint Pierre and Miquelon" key="PM" />
|
||||
<Country name="Saint Vincent and the Grenadines" key="VC" />
|
||||
<Country name="Samoa" key="WS" />
|
||||
<Country name="San Marino" key="SM" />
|
||||
<Country name="Sao Tome and Principe" key="ST" />
|
||||
<Country name="Saudi Arabia" key="SA" />
|
||||
<Country name="Senegal" key="SN" />
|
||||
<Country name="Serbia" key="RS" />
|
||||
<Country name="Seychelles" key="SC" />
|
||||
<Country name="Sierra Leone" key="SL" />
|
||||
<Country name="Singapore" key="SG" />
|
||||
<Country name="Slovakia" key="SK" />
|
||||
<Country name="Slovenia" key="SI" />
|
||||
<Country name="Solomon Islands" key="SB" />
|
||||
<Country name="Somalia" key="SO" />
|
||||
<Country name="South Africa" key="ZA" />
|
||||
<Country name="South Georgia and the South Sandwich Islands" key="GS" />
|
||||
<Country name="Spain" key="ES" />
|
||||
<Country name="Sri Lanka" key="LK" />
|
||||
<Country name="Sudan" key="SD" />
|
||||
<Country name="Suriname" key="SR" />
|
||||
<Country name="Svalbard and Jan Mayen" key="SJ" />
|
||||
<Country name="Swaziland" key="SZ" />
|
||||
<Country name="Sweden" key="SE" />
|
||||
<Country name="Switzerland" key="CH" />
|
||||
<Country name="Syrian Arab Republic" key="SY" />
|
||||
<Country name="Taiwan, Province of China" key="TW" />
|
||||
<Country name="Tajikistan" key="TJ" />
|
||||
<Country name="Tanzania, United Republic of" key="TZ" />
|
||||
<Country name="Thailand" key="TH" />
|
||||
<Country name="Timor-Leste" key="TL" />
|
||||
<Country name="Togo" key="TG" />
|
||||
<Country name="Tokelau" key="TK" />
|
||||
<Country name="Tonga" key="TO" />
|
||||
<Country name="Trinidad and Tobago" key="TT" />
|
||||
<Country name="Tunisia" key="TN" />
|
||||
<Country name="Turkey" key="TR" />
|
||||
<Country name="Turkmenistan" key="TM" />
|
||||
<Country name="Turks and Caicos Islands" key="TC" />
|
||||
<Country name="Tuvalu" key="TV" />
|
||||
<Country name="Uganda" key="UG" />
|
||||
<Country name="Ukraine" key="UA" />
|
||||
<Country name="United Arab Emirates" key="AE" />
|
||||
<Country name="United Kingdom" key="GB" />
|
||||
<Country name="United States" key="US" />
|
||||
<Country name="United States Minor Outlying Islands" key="UM" />
|
||||
<Country name="Uruguay" key="UY" />
|
||||
<Country name="Uzbekistan" key="UZ" />
|
||||
<Country name="Vanuatu" key="VU" />
|
||||
<Country name="Venezuela, Bolivarian Republic of" key="VE" />
|
||||
<Country name="Viet Nam" key="VN" />
|
||||
<Country name="Virgin Islands, British" key="VG" />
|
||||
<Country name="Virgin Islands, U.S." key="VI" />
|
||||
<Country name="Wallis and Futuna" key="WF" />
|
||||
<Country name="Western Sahara" key="EH" />
|
||||
<Country name="Yemen" key="YE" />
|
||||
<Country name="Zambia" key="ZM" />
|
||||
<Country name="Zimbabwe" key="ZW" />
|
||||
</Countries>
|
|
@ -0,0 +1,411 @@
|
|||
<?xml version="1.0"?>
|
||||
<States>
|
||||
<!-- Canada -->
|
||||
<State name="Alberta" key="AB" countryCode="CA" />
|
||||
<State name="British Columbia" key="BC" countryCode="CA" />
|
||||
<State name="Manitoba" key="MB" countryCode="CA" />
|
||||
<State name="New Brunswick" key="NB" countryCode="CA" />
|
||||
<State name="Newfoundland and Labrador" key="NL" countryCode="CA" />
|
||||
<State name="Northwest Territories" key="NT" countryCode="CA" />
|
||||
<State name="Nova Scotia" key="NS" countryCode="CA" />
|
||||
<State name="Nunavut" key="NV" countryCode="CA" />
|
||||
<State name="Ontario" key="ON" countryCode="CA" />
|
||||
<State name="Prince Edward Island" key="PE" countryCode="CA" />
|
||||
<State name="Quebec" key="QC" countryCode="CA" />
|
||||
<State name="Saskatchewan" key="SK" countryCode="CA" />
|
||||
<State name="Yukon Territory" key="YT" countryCode="CA" />
|
||||
|
||||
<!-- US -->
|
||||
<State name="Alabama" key="AL" countryCode="US" />
|
||||
<State name="Alaska" key="AK" countryCode="US" />
|
||||
<State name="Arizona" key="AZ" countryCode="US" />
|
||||
<State name="Arkansas" key="AR" countryCode="US" />
|
||||
<State name="California" key="CA" countryCode="US" />
|
||||
<State name="Colorado" key="CO" countryCode="US" />
|
||||
<State name="Connecticut" key="CT" countryCode="US" />
|
||||
<State name="Delaware" key="DE" countryCode="US" />
|
||||
<State name="District of Columbia" key="DC" countryCode="US" />
|
||||
<State name="Florida" key="FL" countryCode="US" />
|
||||
<State name="Georgia" key="GA" countryCode="US" />
|
||||
<State name="Hawaii" key="HI" countryCode="US" />
|
||||
<State name="Idaho" key="ID" countryCode="US" />
|
||||
<State name="Illinois" key="IL" countryCode="US" />
|
||||
<State name="Indiana" key="IN" countryCode="US" />
|
||||
<State name="Iowa" key="IA" countryCode="US" />
|
||||
<State name="Kansas" key="KS" countryCode="US" />
|
||||
<State name="Kentucky" key="KY" countryCode="US" />
|
||||
<State name="Louisiana" key="LA" countryCode="US" />
|
||||
<State name="Maine" key="ME" countryCode="US" />
|
||||
<State name="Maryland" key="MD" countryCode="US" />
|
||||
<State name="Massachusetts" key="MA" countryCode="US" />
|
||||
<State name="Michigan" key="MI" countryCode="US" />
|
||||
<State name="Minnesota" key="MN" countryCode="US" />
|
||||
<State name="Mississippi" key="MS" countryCode="US" />
|
||||
<State name="Missouri" key="MO" countryCode="US" />
|
||||
<State name="Montana" key="MT" countryCode="US" />
|
||||
<State name="Nebraska" key="NE" countryCode="US" />
|
||||
<State name="Nevada" key="NV" countryCode="US" />
|
||||
<State name="New Hampshire" key="NH" countryCode="US" />
|
||||
<State name="New Jersey" key="NJ" countryCode="US" />
|
||||
<State name="New Mexico" key="NM" countryCode="US" />
|
||||
<State name="New York" key="NY" countryCode="US" />
|
||||
<State name="North Carolina" key="NC" countryCode="US" />
|
||||
<State name="North Dakota" key="ND" countryCode="US" />
|
||||
<State name="Ohio" key="OH" countryCode="US" />
|
||||
<State name="Oklahoma" key="OK" countryCode="US" />
|
||||
<State name="Oregon" key="OR" countryCode="US" />
|
||||
<State name="Pennsylvania" key="PA" countryCode="US" />
|
||||
<State name="Rhode Island" key="RI" countryCode="US" />
|
||||
<State name="South Carolina" key="SC" countryCode="US" />
|
||||
<State name="South Dakota" key="SD" countryCode="US" />
|
||||
<State name="Tennessee" key="TN" countryCode="US" />
|
||||
<State name="Texas" key="TX" countryCode="US" />
|
||||
<State name="Utah" key="UT" countryCode="US" />
|
||||
<State name="Vermont" key="VT" countryCode="US" />
|
||||
<State name="Virginia" key="VA" countryCode="US" />
|
||||
<State name="Washington" key="WA" countryCode="US" />
|
||||
<State name="West Virginia" key="WV" countryCode="US" />
|
||||
<State name="Wisconsin" key="WI" countryCode="US" />
|
||||
<State name="Wyoming" key="WY" countryCode="US" />
|
||||
|
||||
<!-- Russian Federation -->
|
||||
<State name="Altaiskiy Kray" key="22" countryCode="RU" />
|
||||
<State name="Amurskaya Oblast" key="28" countryCode="RU" />
|
||||
<State name="Arkhangelskaya Oblast" key="29" countryCode="RU" />
|
||||
<State name="Astrakhanskaya Oblast" key="30" countryCode="RU" />
|
||||
<State name="Belgorodskaya Oblast" key="31" countryCode="RU" />
|
||||
<State name="Bryanskaya Oblast" key="32" countryCode="RU" />
|
||||
<State name="Chechnya" key="20" countryCode="RU" />
|
||||
<State name="Chelyabinskaya Oblast" key="74" countryCode="RU" />
|
||||
<State name="Chitinskaya Oblast" key="75" countryCode="RU" />
|
||||
<State name="Chukotka Automomous District" key="87" countryCode="RU" />
|
||||
<State name="Chuvash Republic" key="21" countryCode="RU" />
|
||||
<State name="Evenkia Automomous District" key="88" countryCode="RU" />
|
||||
<State name="Irkutskaya Oblast" key="38" countryCode="RU" />
|
||||
<State name="Ivanovskaya Oblast" key="37" countryCode="RU" />
|
||||
<State name="Jewish Autonomous Region" key="79" countryCode="RU" />
|
||||
<State name="Kabardino-Balkaryan Republic" key="07" countryCode="RU" />
|
||||
<State name="Kaliningradskaya Oblast" key="39" countryCode="RU" />
|
||||
<State name="Kaluzhskaya Oblast" key="40" countryCode="RU" />
|
||||
<State name="Kamchatskaya Oblast" key="41" countryCode="RU" />
|
||||
<State name="Kemerovskaya Oblast" key="42" countryCode="RU" />
|
||||
<State name="Khabarovskiy Kray" key="27" countryCode="RU" />
|
||||
<State name="Kirovskaya Oblast" key="43" countryCode="RU" />
|
||||
<State name="Kostromskaya Oblast" key="44" countryCode="RU" />
|
||||
<State name="Krasnodarskiy Kray" key="23" countryCode="RU" />
|
||||
<State name="Krasnoyarskiy Kray" key="24" countryCode="RU" />
|
||||
<State name="Kurganskaya Oblast" key="45" countryCode="RU" />
|
||||
<State name="Kurskaya Oblast" key="46" countryCode="RU" />
|
||||
<State name="Leningradskaya Oblast" key="47" countryCode="RU" />
|
||||
<State name="Lipetskaya Oblast" key="48" countryCode="RU" />
|
||||
<State name="Magadanskaya Oblast" key="49" countryCode="RU" />
|
||||
<State name="Moscow" key="77" countryCode="RU" />
|
||||
<State name="Moskovskaya Oblast" key="50" countryCode="RU" />
|
||||
<State name="Murmanskaya Oblast" key="51" countryCode="RU" />
|
||||
<State name="Nizhegorodskaya Oblast" key="52" countryCode="RU" />
|
||||
<State name="Novgorodskaya Oblast" key="53" countryCode="RU" />
|
||||
<State name="Novosibirskaya Oblast" key="54" countryCode="RU" />
|
||||
<State name="Omskaya Oblast" key="55" countryCode="RU" />
|
||||
<State name="Orenburgskaya Oblast" key="56" countryCode="RU" />
|
||||
<State name="Orlovskaya Oblast" key="57" countryCode="RU" />
|
||||
<State name="Penzenskaya Oblast" key="58" countryCode="RU" />
|
||||
<State name="Permskaya Oblast" key="59" countryCode="RU" />
|
||||
<State name="Primorskiy Kray" key="25" countryCode="RU" />
|
||||
<State name="Pskovskaya Oblast" key="60" countryCode="RU" />
|
||||
<State name="Republic of Adyghe" key="01" countryCode="RU" />
|
||||
<State name="Republic of Altai" key="04" countryCode="RU" />
|
||||
<State name="Republic of Bashkortostan" key="02" countryCode="RU" />
|
||||
<State name="Republic of Buryatia" key="03" countryCode="RU" />
|
||||
<State name="Republic of Daghestan" key="05" countryCode="RU" />
|
||||
<State name="Republic of Ingushetia" key="06" countryCode="RU" />
|
||||
<State name="Republic of Kalmykia" key="08" countryCode="RU" />
|
||||
<State name="Republic of Karelia" key="10" countryCode="RU" />
|
||||
<State name="Republic of Khakassia" key="19" countryCode="RU" />
|
||||
<State name="Republic of Komi" key="11" countryCode="RU" />
|
||||
<State name="Republic of Mari El" key="12" countryCode="RU" />
|
||||
<State name="Republic of Mordovia" key="13" countryCode="RU" />
|
||||
<State name="Republic of North Ossetia - Alania" key="15" countryCode="RU" />
|
||||
<State name="Republic of Sakha" key="14" countryCode="RU" />
|
||||
<State name="Republic of Tuva" key="17" countryCode="RU" />
|
||||
<State name="Rostovskaya Oblast" key="61" countryCode="RU" />
|
||||
<State name="Ryazanskaya Oblast" key="62" countryCode="RU" />
|
||||
<State name="Saint Petersburg" key="78" countryCode="RU" />
|
||||
<State name="Sakhalinskaya Oblast" key="65" countryCode="RU" />
|
||||
<State name="Samarskaya Oblast" key="63" countryCode="RU" />
|
||||
<State name="Saratovskaya Oblast" key="64" countryCode="RU" />
|
||||
<State name="Smolenskaya Oblast" key="67" countryCode="RU" />
|
||||
<State name="Stavropolskiy Kray" key="26" countryCode="RU" />
|
||||
<State name="Sverdlovskaya Oblast" key="66" countryCode="RU" />
|
||||
<State name="Tambovskaya Oblast" key="68" countryCode="RU" />
|
||||
<State name="Tatarstan" key="16" countryCode="RU" />
|
||||
<State name="Tomskaya Oblast" key="70" countryCode="RU" />
|
||||
<State name="Tul'skaya Oblast" key="71" countryCode="RU" />
|
||||
<State name="Tverskaya Oblast" key="69" countryCode="RU" />
|
||||
<State name="Tyumenskaya Oblast" key="72" countryCode="RU" />
|
||||
<State name="Udmurt Republic" key="18" countryCode="RU" />
|
||||
<State name="Ul'yanovskaya Oblast" key="73" countryCode="RU" />
|
||||
<State name="Vladimirskaya Oblast" key="33" countryCode="RU" />
|
||||
<State name="Volgogradskaya Oblast" key="34" countryCode="RU" />
|
||||
<State name="Vologodskaya Oblast" key="35" countryCode="RU" />
|
||||
<State name="Voronezhskaya Oblast" key="36" countryCode="RU" />
|
||||
<State name="Yaroslavskaya Oblast" key="76" countryCode="RU" />
|
||||
|
||||
<!-- Croatia -->
|
||||
<State name="Zagrebačka" key="01" countryCode="HR" />
|
||||
<State name="Krapinsko-zagorska" key="02" countryCode="HR" />
|
||||
<State name="Sisačko-moslavačka" key="03" countryCode="HR" />
|
||||
<State name="Karlovačka" key="04" countryCode="HR" />
|
||||
<State name="Varaždinska" key="05" countryCode="HR" />
|
||||
<State name="Koprivničko-križevačka" key="06" countryCode="HR" />
|
||||
<State name="Bjelovarsko-bilogorska" key="07" countryCode="HR" />
|
||||
<State name="Primorsko-goranska" key="08" countryCode="HR" />
|
||||
<State name="Ličko-senjska" key="09" countryCode="HR" />
|
||||
<State name="Virovitičko-podravska" key="10" countryCode="HR" />
|
||||
<State name="Požeško-slavonska" key="11" countryCode="HR" />
|
||||
<State name="Brodsko-posavska" key="12" countryCode="HR" />
|
||||
<State name="Zadarska" key="13" countryCode="HR" />
|
||||
<State name="Osječko-baranjska" key="14" countryCode="HR" />
|
||||
<State name="Šibensko-kninska" key="15" countryCode="HR" />
|
||||
<State name="Vukovarsko-srijemska" key="16" countryCode="HR" />
|
||||
<State name="Splitsko-dalmatinska" key="17" countryCode="HR" />
|
||||
<State name="Istarska" key="18" countryCode="HR" />
|
||||
<State name="Dubrovačko-neretvanska" key="19" countryCode="HR" />
|
||||
<State name="Međimurska" key="20" countryCode="HR" />
|
||||
<State name="Grad Zagreb" key="21" countryCode="HR" />
|
||||
|
||||
<!-- United Kingdom -->
|
||||
<State name="-- England --" key="116" countryCode="GB" />
|
||||
<State name="Avon" key="01" countryCode="GB" />
|
||||
<State name="Bedfordshire" key="02" countryCode="GB" />
|
||||
<State name="Berkshire" key="03" countryCode="GB" />
|
||||
<State name="Bristol" key="04" countryCode="GB" />
|
||||
<State name="Buckinghamshire" key="05" countryCode="GB" />
|
||||
<State name="Cambridgeshire" key="06" countryCode="GB" />
|
||||
<State name="Cheshire" key="07" countryCode="GB" />
|
||||
<State name="Cleveland" key="08" countryCode="GB" />
|
||||
<State name="Cornwall" key="09" countryCode="GB" />
|
||||
<State name="Cumbria" key="10" countryCode="GB" />
|
||||
<State name="Derbyshire" key="11" countryCode="GB" />
|
||||
<State name="Devon" key="12" countryCode="GB" />
|
||||
<State name="Dorset" key="13" countryCode="GB" />
|
||||
<State name="Durham" key="14" countryCode="GB" />
|
||||
<State name="East Riding of Yorkshire" key="15" countryCode="GB" />
|
||||
<State name="East Sussex" key="16" countryCode="GB" />
|
||||
<State name="Essex" key="17" countryCode="GB" />
|
||||
<State name="Gloucestershire" key="18" countryCode="GB" />
|
||||
<State name="Greater Manchester" key="19" countryCode="GB" />
|
||||
<State name="Hampshire" key="20" countryCode="GB" />
|
||||
<State name="Herefordshire" key="21" countryCode="GB" />
|
||||
<State name="Hertfordshire" key="22" countryCode="GB" />
|
||||
<State name="Humberside" key="23" countryCode="GB" />
|
||||
<State name="Isle of Wight" key="24" countryCode="GB" />
|
||||
<State name="Isles of Scilly" key="25" countryCode="GB" />
|
||||
<State name="Kent" key="26" countryCode="GB" />
|
||||
<State name="Lancashire" key="27" countryCode="GB" />
|
||||
<State name="Leicestershire" key="28" countryCode="GB" />
|
||||
<State name="Lincolnshire" key="29" countryCode="GB" />
|
||||
<State name="London" key="30" countryCode="GB" />
|
||||
<State name="Merseyside" key="31" countryCode="GB" />
|
||||
<State name="Middlesex" key="32" countryCode="GB" />
|
||||
<State name="Norfolk" key="33" countryCode="GB" />
|
||||
<State name="North Yorkshire" key="34" countryCode="GB" />
|
||||
<State name="Northamptonshire" key="35" countryCode="GB" />
|
||||
<State name="Northumberland" key="36" countryCode="GB" />
|
||||
<State name="Nottinghamshire" key="37" countryCode="GB" />
|
||||
<State name="Oxfordshire" key="38" countryCode="GB" />
|
||||
<State name="Rutland" key="39" countryCode="GB" />
|
||||
<State name="Shropshire" key="40" countryCode="GB" />
|
||||
<State name="Somerset" key="41" countryCode="GB" />
|
||||
<State name="South Yorkshire" key="42" countryCode="GB" />
|
||||
<State name="Staffordshire" key="43" countryCode="GB" />
|
||||
<State name="Suffolk" key="44" countryCode="GB" />
|
||||
<State name="Surrey" key="45" countryCode="GB" />
|
||||
<State name="Tyne and Wear" key="46" countryCode="GB" />
|
||||
<State name="Warwickshire" key="47" countryCode="GB" />
|
||||
<State name="West Midlands" key="48" countryCode="GB" />
|
||||
<State name="West Sussex" key="49" countryCode="GB" />
|
||||
<State name="West Yorkshire" key="50" countryCode="GB" />
|
||||
<State name="Wiltshire" key="51" countryCode="GB" />
|
||||
<State name="Worcestershire" key="52" countryCode="GB" />
|
||||
<State name="-- Northern Ireland --" key="117" countryCode="GB" />
|
||||
<State name="Antrim" key="53" countryCode="GB" />
|
||||
<State name="Armagh" key="54" countryCode="GB" />
|
||||
<State name="Down" key="55" countryCode="GB" />
|
||||
<State name="Fermanagh" key="56" countryCode="GB" />
|
||||
<State name="Londonderry" key="57" countryCode="GB" />
|
||||
<State name="Tyrone" key="58" countryCode="GB" />
|
||||
<State name="-- Scotland --" key="118" countryCode="GB" />
|
||||
<State name="Aberdeen City" key="59" countryCode="GB" />
|
||||
<State name="Aberdeenshire" key="60" countryCode="GB" />
|
||||
<State name="Angus" key="61" countryCode="GB" />
|
||||
<State name="Argyll and Bute" key="62" countryCode="GB" />
|
||||
<State name="Borders" key="63" countryCode="GB" />
|
||||
<State name="Clackmannan" key="64" countryCode="GB" />
|
||||
<State name="Dumfries and Galloway" key="65" countryCode="GB" />
|
||||
<State name="East Ayrshire" key="67" countryCode="GB" />
|
||||
<State name="East Dunbartonshire" key="68" countryCode="GB" />
|
||||
<State name="East Lothian" key="69" countryCode="GB" />
|
||||
<State name="East Renfrewshire" key="70" countryCode="GB" />
|
||||
<State name="Edinburgh City" key="71" countryCode="GB" />
|
||||
<State name="Falkirk" key="72" countryCode="GB" />
|
||||
<State name="Fife" key="73" countryCode="GB" />
|
||||
<State name="Glasgow" key="74" countryCode="GB" />
|
||||
<State name="Highland" key="75" countryCode="GB" />
|
||||
<State name="Inverclyde" key="76" countryCode="GB" />
|
||||
<State name="Midlothian" key="77" countryCode="GB" />
|
||||
<State name="Moray" key="78" countryCode="GB" />
|
||||
<State name="North Ayrshire" key="79" countryCode="GB" />
|
||||
<State name="North Lanarkshire" key="80" countryCode="GB" />
|
||||
<State name="Orkney" key="81" countryCode="GB" />
|
||||
<State name="Perthshire and Kinross" key="82" countryCode="GB" />
|
||||
<State name="Renfrewshire" key="83" countryCode="GB" />
|
||||
<State name="Roxburghshire" key="84" countryCode="GB" />
|
||||
<State name="Shetland" key="85" countryCode="GB" />
|
||||
<State name="South Ayrshire" key="86" countryCode="GB" />
|
||||
<State name="South Lanarkshire" key="87" countryCode="GB" />
|
||||
<State name="Stirling" key="88" countryCode="GB" />
|
||||
<State name="West Dunbartonshire" key="89" countryCode="GB" />
|
||||
<State name="West Lothian" key="90" countryCode="GB" />
|
||||
<State name="Western Isles" key="91" countryCode="GB" />
|
||||
<State name="-- Unitary Authorities of Wales --" key="119" countryCode="GB" />
|
||||
<State name="Blaenau Gwent" key="92" countryCode="GB" />
|
||||
<State name="Bridgend" key="93" countryCode="GB" />
|
||||
<State name="Caerphilly" key="94" countryCode="GB" />
|
||||
<State name="Cardiff" key="95" countryCode="GB" />
|
||||
<State name="Carmarthenshire" key="96" countryCode="GB" />
|
||||
<State name="Ceredigion" key="97" countryCode="GB" />
|
||||
<State name="Conwy" key="98" countryCode="GB" />
|
||||
<State name="Denbighshire" key="99" countryCode="GB" />
|
||||
<State name="Flintshire" key="100" countryCode="GB" />
|
||||
<State name="Gwynedd" key="101" countryCode="GB" />
|
||||
<State name="Isle of Anglesey" key="102" countryCode="GB" />
|
||||
<State name="Merthyr Tydfil" key="103" countryCode="GB" />
|
||||
<State name="Monmouthshire" key="104" countryCode="GB" />
|
||||
<State name="Neath Port Talbot" key="105" countryCode="GB" />
|
||||
<State name="Newport" key="106" countryCode="GB" />
|
||||
<State name="Pembrokeshire" key="107" countryCode="GB" />
|
||||
<State name="Powys" key="108" countryCode="GB" />
|
||||
<State name="Rhondda Cynon Taff" key="109" countryCode="GB" />
|
||||
<State name="Swansea" key="110" countryCode="GB" />
|
||||
<State name="Torfaen" key="111" countryCode="GB" />
|
||||
<State name="The Vale of Glamorgan" key="112" countryCode="GB" />
|
||||
<State name="Wrexham" key="113" countryCode="GB" />
|
||||
<State name="-- GB Offshore Dependencies --" key="120" countryCode="GB" />
|
||||
<State name="Channel Islands" key="114" countryCode="GB" />
|
||||
<State name="Isle of Man" Ikey="115" countryCode="GB" />
|
||||
|
||||
<!-- Republic of Ireland -->
|
||||
<State name="Fingal" key="01" countryCode="IE" />
|
||||
<State name=" Dun Laoghaire-Rathdown" key="02" countryCode="IE" />
|
||||
<State name="South Dublin" key="03" countryCode="IE" />
|
||||
<State name="Wicklow" key="04" countryCode="IE" />
|
||||
<State name="Wexford" key="05" countryCode="IE" />
|
||||
<State name="Carlow" key="06" countryCode="IE" />
|
||||
<State name="Kildare" key="07" countryCode="IE" />
|
||||
<State name="Meath " key="08" countryCode="IE" />
|
||||
<State name="Louth" key="09" countryCode="IE" />
|
||||
<State name="Monaghan" key="10" countryCode="IE" />
|
||||
<State name="Cavan" key="11" countryCode="IE" />
|
||||
<State name="Longford" key="12" countryCode="IE" />
|
||||
<State name="Westmeath" key="13" countryCode="IE" />
|
||||
<State name="Offaly" key="14" countryCode="IE" />
|
||||
<State name="Laois" key="15" countryCode="IE" />
|
||||
<State name="Kilkenny " key="16" countryCode="IE" />
|
||||
<State name="Waterford" key="17" countryCode="IE" />
|
||||
<State name="Cork" key="18" countryCode="IE" />
|
||||
<State name="Kerryr" key="19" countryCode="IE" />
|
||||
<State name="Limerick" key="20" countryCode="IE" />
|
||||
<State name="North Tipperary" key="21" countryCode="IE" />
|
||||
<State name="South Tipperary" key="22" countryCode="IE" />
|
||||
<State name="Clare" key="23" countryCode="IE" />
|
||||
<State name="Galway" key="24" countryCode="IE" />
|
||||
<State name="Mayo" key="25" countryCode="IE" />
|
||||
<State name="Roscommon" key="26" countryCode="IE" />
|
||||
<State name="Sligo" key="27" countryCode="IE" />
|
||||
<State name="Leitrim" key="28" countryCode="IE" />
|
||||
<State name="Donegal" key="29" countryCode="IE" />
|
||||
|
||||
<!-- Republic of Turkey -->
|
||||
<State name="Adana" key="01" countryCode="TR" />
|
||||
<State name="Adэyaman" key="02" countryCode="TR" />
|
||||
<State name="Afyonkarahisar" key="03" countryCode="TR" />
|
||||
<State name="Aрrэ" key="04" countryCode="TR" />
|
||||
<State name="Amasya" key="05" countryCode="TR" />
|
||||
<State name="Ankara" key="06" countryCode="TR" />
|
||||
<State name="Antalya" key="07" countryCode="TR" />
|
||||
<State name="Artvin" key="08" countryCode="TR" />
|
||||
<State name="Aydэn" key="09" countryCode="TR" />
|
||||
<State name="Balэkesir" key="10" countryCode="TR" />
|
||||
<State name="Bilecik" key="11" countryCode="TR" />
|
||||
<State name="Bingцl" key="12" countryCode="TR" />
|
||||
<State name="Bitlis" key="13" countryCode="TR" />
|
||||
<State name="Bolu" key="14" countryCode="TR" />
|
||||
<State name="Burdur" key="15" countryCode="TR" />
|
||||
<State name="Bursa" key="16" countryCode="TR" />
|
||||
<State name="Зanakkale" key="17" countryCode="TR" />
|
||||
<State name="Зankэrэ" key="18" countryCode="TR" />
|
||||
<State name="Зorum" key="19" countryCode="TR" />
|
||||
<State name="Denizli" key="20" countryCode="TR" />
|
||||
<State name="Diyarbakэr" key="21" countryCode="TR" />
|
||||
<State name="Edirne" key="22" countryCode="TR" />
|
||||
<State name="Elazэр" key="23" countryCode="TR" />
|
||||
<State name="Erzincan" key="24" countryCode="TR" />
|
||||
<State name="Erzurum" key="25" countryCode="TR" />
|
||||
<State name="Eskiюehir" key="26" countryCode="TR" />
|
||||
<State name="Gaziantep" key="27" countryCode="TR" />
|
||||
<State name="Giresun" key="28" countryCode="TR" />
|
||||
<State name="Gьmьюhane" key="29" countryCode="TR" />
|
||||
<State name="Hakkari" key="30" countryCode="TR" />
|
||||
<State name="Hatay" key="31" countryCode="TR" />
|
||||
<State name="Isparta" key="32" countryCode="TR" />
|
||||
<State name="Mersin" key="33" countryCode="TR" />
|
||||
<State name="Istanbul" key="34" countryCode="TR" />
|
||||
<State name="Эzmir" key="35" countryCode="TR" />
|
||||
<State name="Kars" key="36" countryCode="TR" />
|
||||
<State name="Kastamonu" key="37" countryCode="TR" />
|
||||
<State name="Kayseri" key="38" countryCode="TR" />
|
||||
<State name="Kэrklareli" key="39" countryCode="TR" />
|
||||
<State name="Kэrюehir" key="40" countryCode="TR" />
|
||||
<State name="Kocaeli" key="41" countryCode="TR" />
|
||||
<State name="Konya" key="42" countryCode="TR" />
|
||||
<State name="Kьtahya" key="43" countryCode="TR" />
|
||||
<State name="Malatya" key="44" countryCode="TR" />
|
||||
<State name="Manisa" key="45" countryCode="TR" />
|
||||
<State name="Kahramanmaraю" key="46" countryCode="TR" />
|
||||
<State name="Mardin" key="47" countryCode="TR" />
|
||||
<State name="Muрla" key="48" countryCode="TR" />
|
||||
<State name="Muю" key="49" countryCode="TR" />
|
||||
<State name="Nevюehir" key="50" countryCode="TR" />
|
||||
<State name="Niрde" key="51" countryCode="TR" />
|
||||
<State name="Ordu" key="52" countryCode="TR" />
|
||||
<State name="Rize" key="53" countryCode="TR" />
|
||||
<State name="Sakarya" key="54" countryCode="TR" />
|
||||
<State name="Samsun" key="55" countryCode="TR" />
|
||||
<State name="Siirt" key="56" countryCode="TR" />
|
||||
<State name="Sinop" key="57" countryCode="TR" />
|
||||
<State name="Sivas" key="58" countryCode="TR" />
|
||||
<State name="Tekirdaр" key="59" countryCode="TR" />
|
||||
<State name="Tokat" key="60" countryCode="TR" />
|
||||
<State name="Trabzon" key="61" countryCode="TR" />
|
||||
<State name="Tunceli" key="62" countryCode="TR" />
|
||||
<State name="Юanlэurfa" key="63" countryCode="TR" />
|
||||
<State name="Uюak" key="64" countryCode="TR" />
|
||||
<State name="Van" key="65" countryCode="TR" />
|
||||
<State name="Yozgat" key="66" countryCode="TR" />
|
||||
<State name="Zonguldak" key="67" countryCode="TR" />
|
||||
<State name="Aksaray" key="68" countryCode="TR" />
|
||||
<State name="Bayburt" key="69" countryCode="TR" />
|
||||
<State name="Karaman" key="70" countryCode="TR" />
|
||||
<State name="Kэrэkkale" key="71" countryCode="TR" />
|
||||
<State name="Batman" key="72" countryCode="TR" />
|
||||
<State name="Юэrnak" key="73" countryCode="TR" />
|
||||
<State name="Bartэn" key="74" countryCode="TR" />
|
||||
<State name="Ardahan" key="75" countryCode="TR" />
|
||||
<State name="Iрdэr" key="76" countryCode="TR" />
|
||||
<State name="Yalova" key="77" countryCode="TR" />
|
||||
<State name="Karabьk" key="78" countryCode="TR" />
|
||||
<State name="Kilis" key="79" countryCode="TR" />
|
||||
<State name="Osmaniye" key="80" countryCode="TR" />
|
||||
<State name="Dьzce" key="81" countryCode="TR" />
|
||||
|
||||
</States>
|
|
@ -0,0 +1,137 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ModuleDefinitions>
|
||||
<ModuleDefinition id="ecEcommerceSettings">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/EcommerceSystemSettings.ascx" title="ecEcommerceSettings" type="View" />
|
||||
<Control key="credit_card" src="Ecommerce/PaymentMethodCreditCard.ascx" title="ecCreditCardMethod" type="View" />
|
||||
<Control key="2co" src="Ecommerce/PaymentMethod2Checkout.ascx" title="ec2CheckoutMethod" type="View" />
|
||||
<Control key="pp_account" src="Ecommerce/PaymentMethodPayPalAccount.ascx" title="ecPPAccountMethod" type="View" />
|
||||
<Control key="offline" src="Ecommerce/PaymentMethodOffline.ascx" title="ecOfflineMethod" type="View" />
|
||||
<Control key="enom" src="Ecommerce/DomainRegistrarEnom.ascx" title="ecEnomRegistrar" type="View" />
|
||||
<Control key="directi" src="Ecommerce/DomainRegistrarDirecti.ascx" title="ecDirectiRegistrar" type="View" />
|
||||
<Control key="new_invoice" src="Ecommerce/NotificationNewInvoice.ascx" title="ecNotifyNewInvoice" type="View" />
|
||||
<Control key="payment_rcvd" src="Ecommerce/NotificationPaymentReceived.ascx" title="ecNotifyPaymentRcvd" type="View" />
|
||||
<Control key="svc_activated" src="Ecommerce/NotificationServiceActivated.ascx" title="ecNotifySvcActivated" type="View" />
|
||||
<Control key="svc_suspended" src="Ecommerce/NotificationServiceSuspended.ascx" title="ecNotifySvcSuspended" type="View" />
|
||||
<Control key="svc_cancelled" src="Ecommerce/NotificationServiceCancelled.ascx" title="ecNotifySvcCancelled" type="View" />
|
||||
<Control key="terms_conds" src="Ecommerce/TermsAndConditionsEdit.ascx" title="ecTermsAndConds" type="View" />
|
||||
<Control key="prov_settings" src="Ecommerce/ProvisioningSettingsEdit.ascx" title="ecProvSettings" type="View" />
|
||||
<Control key="welcome_msg" src="Ecommerce/StorefrontWelcomeEdit.ascx" title="ecStorefronWelcomeMsg" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecCustomersServices">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/CustomersServices.ascx" title="ecCustomersServices" type="View" icon="3d_level_48.png" />
|
||||
<Control key="view_svc" src="Ecommerce/CustomersServicesViewService.ascx" title="ecServiceDetails" type="View" icon="3d_info_48.png" />
|
||||
<Control key="upgrade_svc" src="Ecommerce/CustomersServicesUpgradeService.ascx" title="ecServiceUpgrade" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecCustomerPaymentProfile">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/CustomerPaymentProfile.ascx" title="ecCustomerPaymentProfile" type="View" icon="3d_level_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecCustomersPayments">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/CustomersPayments.ascx" title="ecCustomersPayments" type="View" icon="reward_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecCustomersInvoices">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/CustomersInvoices.ascx" title="ecCustomersInvoices" type="View" icon="invoice_48.png"/>
|
||||
<Control key="view_invoice" src="Ecommerce/CustomersInvoicesViewInvoice.ascx" title="ecInvoiceDetails" icon="invoice_info_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecStorefrontWelcome">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/StorefrontWelcome.ascx" title="ecStorefrontWelcome" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecQuickSignup">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/QuickSignup.ascx" title="ecQuickSignup" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecViewCategory">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/StorefrontViewCategory.ascx" title="ecViewCategory" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecProductDetails">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/ViewProductDetails.ascx" title="ecProductDetails" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecTaxations">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/Taxations.ascx" title="ecTaxations" type="View" />
|
||||
<Control key="add_tax" src="Ecommerce/TaxationsAddTax.ascx" title="ecAddTax" type="View" />
|
||||
<Control key="edit_tax" src="Ecommerce/TaxationsEditTax.ascx" title="ecEditTax" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecBillingCycles">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/BillingCycles.ascx" title="ecBillingCycles" type="View" />
|
||||
<Control key="add_billingcycle" src="Ecommerce/BillingCyclesAddCycle.ascx" title="ecAddBillingCycle" type="View" />
|
||||
<Control key="edit_billingcycle" src="Ecommerce/BillingCyclesEditCycle.ascx" title="ecEditBillingCycle" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecHostingPlans">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/HostingPlans.ascx" title="ecHostingPlans" type="View" />
|
||||
<Control key="add_hostingplan" src="Ecommerce/HostingPlansAddPlan.ascx" title="ecAddHostingPlan" type="View" />
|
||||
<Control key="edit_hostingplan" src="Ecommerce/HostingPlansEditPlan.ascx" title="ecEditHostingPlan" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecDomainNames">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/DomainNames.ascx" title="ecDomainNames" type="View" />
|
||||
<Control key="add_tld" src="Ecommerce/DomainNamesAddDomain.ascx" title="ecAddDomainName" type="View" />
|
||||
<Control key="edit_tld" src="Ecommerce/DomainNamesEditDomain.ascx" title="ecEditDomainName" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecHostingAddons">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/HostingAddons.ascx" title="ecHostingAddons" type="View" icon="webcam_48.png" />
|
||||
<Control key="add_hostingaddon" src="Ecommerce/HostingAddonsAddAddon.ascx" title="ecAddHostingAddon" type="View" icon="webcam_add_48.png" />
|
||||
<Control key="edit_hostingaddon" src="Ecommerce/HostingAddonsEditAddon.ascx" title="ecEditHostingAddon" type="View" icon="webcam_write_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecCategories">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/Categories.ascx" title="ecCategories" type="View" icon="inventory_48.png" />
|
||||
<Control key="AddItem" src="Ecommerce/CategoriesAddCategory.ascx" title="ecAddCategory" type="View" icon="inventory_add_48.png" />
|
||||
<Control key="EditItem" src="Ecommerce/CategoriesEditCategory.ascx" title="ecEditCategory" type="View" icon="inventory_write_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecOrderCheckout">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/OrderCheckout.ascx" title="ecOrderCheckout" type="View" icon="invoice_next_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecOrderComplete">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/OrderComplete.ascx" title="ecOrderComplete" type="View" icon="invoice_ok_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecOrderFailed">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/OrderFailed.ascx" title="ecOrderFailed" type="View" icon="invoice_close_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecOrderProduct">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/StorefrontOrderProduct.ascx" title="ecOrderProduct" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecStorefrontMenu">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/StorefrontMenu.ascx" title="ecStorefrontCatalogMenu" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ecTermsAndConditions">
|
||||
<Controls>
|
||||
<Control key="" src="Ecommerce/TermsAndConditions.ascx" title="ecTermsAndConditions" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
</ModuleDefinitions>
|
|
@ -0,0 +1,226 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Pages>
|
||||
|
||||
<include file="ModulesData.config" />
|
||||
|
||||
<Page name="QuickSignup" roles="?" hidden="true" skin="Storefront.ascx" adminskin="Storefront.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecQuickSignup" title="ecQuickSignup" container="Clear.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="ecOrderCheckout" roles="*" hidden="true" skin="Storefront.ascx" adminskin="Storefront.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecOrderCheckout" title="ecOrderCheckout" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="ecOrderComplete" roles="*" hidden="true" skin="Storefront.ascx" adminskin="Storefront.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecOrderComplete" title="ecOrderComplete" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="ecOrderFailed" roles="*" hidden="true" skin="Storefront.ascx" adminskin="Storefront.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecOrderFailed" title="ecOrderFailed" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="ecTermsAndConditions" roles="?" hidden="true" skin="SimpleWhite.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecTermsAndConditions" title="ecTermsAndConditions" container="Clear.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="ecProductDetails" roles="?" hidden="true" skin="SimpleWhite.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecProductDetails" title="ecProductDetails" container="Clear.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="ecOnlineStore" roles="?" hidden="true" skin="Storefront2.ascx" adminskin="Storefront2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="ecStorefrontMenu" title="ecStorefrontCatalogMenu" container="Clear.ascx" />
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecStorefrontWelcome" title="ecStorefrontWelcome" container="Clear.ascx" />
|
||||
</Content>
|
||||
<Pages>
|
||||
<Page name="ecViewCategory" roles="?" hidden="true" skin="Storefront2.ascx" adminskin="Storefront2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="ecStorefrontMenu" title="ecStorefrontCatalogMenu" container="Clear.ascx" />
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecViewCategory" title="ecViewCategory" container="Clear.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecOrderProduct" roles="?" hidden="true" skin="Storefront2.ascx" adminskin="Storefront2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="ecStorefrontMenu" title="ecStorefrontCatalogMenu" container="Clear.ascx" />
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecOrderProduct" title="ecOrderProduct" container="Clear.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
</Pages>
|
||||
</Page>
|
||||
|
||||
<Page name="ecEcommerceAdmin" hidden="true" roles="Administrator,Reseller" enabled="false">
|
||||
<Pages>
|
||||
<Page name="ecEcommerceSettings" roles="Administrator,Reseller" adminskin="Browse1.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecEcommerceSettings" title="ecEcommerceSettings" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecBillingCycles" roles="Administrator,Reseller" adminskin="Browse2.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecBillingCycles" title="ecBillingCycles" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecHostingPlans" roles="Administrator,Reseller" adminskin="Browse2.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecHostingPlans" title="ecHostingPlans" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecHostingAddons" roles="Administrator,Reseller" adminskin="Browse2.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecHostingAddons" title="ecHostingAddons" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecDomainNames" roles="Administrator,Reseller" adminskin="Browse2.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecDomainNames" title="ecDomainNames" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecCategories" roles="Administrator,Reseller" adminskin="Browse2.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCategories" title="ecCategories" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecTaxations" roles="Administrator,Reseller" adminskin="Browse2.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecTaxations" title="ecTaxations" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecCustomersPayments" roles="Administrator,Reseller" adminskin="Browse1.ascx" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomersPayments" title="ecCustomersPayments">
|
||||
<Settings>
|
||||
<Add name="IsReseller" value="True" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecCustomersInvoices" roles="Administrator,Reseller" adminskin="Browse1.ascx" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomersInvoices" title="ecCustomersInvoices">
|
||||
<Settings>
|
||||
<Add name="IsReseller" value="True" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecCustomersServices" roles="Administrator,Reseller" adminskin="Browse1.ascx" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomersServices" title="ecCustomersServices">
|
||||
<Settings>
|
||||
<Add name="IsReseller" value="True" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
</Pages>
|
||||
</Page>
|
||||
<Page name="ecMyEcommerce" hidden="true" enabled="false" roles="Reseller,User">
|
||||
<Pages>
|
||||
<Page name="ecPaymentProfile" roles="Reseller,User" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomerPaymentProfile" title="ecCustomerPaymentProfile" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecMyPayments" roles="Reseller,User" adminskin="Browse1.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomersPayments" title="ecMyPayments">
|
||||
<Settings>
|
||||
<Add name="IsReseller" value="False" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecMyInvoices" roles="Reseller,User" adminskin="Browse1.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomersInvoices" title="ecMyInvoices">
|
||||
<Settings>
|
||||
<Add name="IsReseller" value="False" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="ecMyServices" roles="Reseller,User" adminskin="Browse1.ascx" skin="Browse2.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ecCustomersServices" title="ecMyServices">
|
||||
<Settings>
|
||||
<Add name="IsReseller" value="False" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
</Pages>
|
||||
</Page>
|
||||
</Pages>
|
|
@ -0,0 +1,138 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ModulesData>
|
||||
|
||||
<ModuleData id="UserMenu">
|
||||
<MenuItem pageID="UserCustomers" roles="Administrator,Reseller"/>
|
||||
<MenuItem pageID="UserSpaces" roles="Administrator,Reseller,User"/>
|
||||
<MenuItem pageID="HostingPlans" roles="Administrator,Reseller"/>
|
||||
<MenuItem pageID="HostingAddons" roles="Administrator,Reseller"/>
|
||||
<MenuItem pageID="UserPeers" roles="Administrator,Reseller,User"/>
|
||||
<MenuItem pageID="UserTasks" roles="Administrator,Reseller,User"/>
|
||||
<MenuItem pageID="AuditLog" roles="Administrator,Reseller,User"/>
|
||||
<MenuItem pageID="ecOnlineStore" roles="Reseller,User" ecuser="true" />
|
||||
<MenuItem pageID="ecEcommerceAdmin" roles="Administrator,Reseller" ecadmin="true">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="ecEcommerceSettings" ecommerce="true" />
|
||||
<MenuItem pageID="ecBillingCycles" />
|
||||
<MenuItem pageID="ecHostingPlans" />
|
||||
<MenuItem pageID="ecHostingAddons" />
|
||||
<MenuItem pageID="ecDomainNames" />
|
||||
<MenuItem pageID="ecTaxations" />
|
||||
<MenuItem pageID="ecCategories" />
|
||||
<MenuItem pageID="ecCustomersPayments" />
|
||||
<MenuItem pageID="ecCustomersInvoices" />
|
||||
<MenuItem pageID="ecCustomersServices" />
|
||||
</MenuItems>
|
||||
</MenuItem>
|
||||
<MenuItem pageID="ecMyEcommerce" ecuser="true" roles="Reseller,User">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="ecPaymentProfile" />
|
||||
<MenuItem pageID="ecMyPayments" />
|
||||
<MenuItem pageID="ecMyInvoices" />
|
||||
<MenuItem pageID="ecMyServices" />
|
||||
</MenuItems>
|
||||
</MenuItem>
|
||||
<!--MenuItem url="http://google.com" title="Google" target="_blank"/-->
|
||||
</ModuleData>
|
||||
|
||||
<ModuleData id="SpaceMenu">
|
||||
|
||||
<MenuItem pageID="SpaceDomains" resourceGroup="OS" />
|
||||
<MenuItem pageID="SpaceWebSites" resourceGroup="Web"/>
|
||||
<MenuItem pageID="SpaceWebIPAddresses" resourceGroup="Web" />
|
||||
<MenuItem pageID="SpaceFtpAccounts" resourceGroup="FTP"/>
|
||||
<MenuItem pageID="SpaceMail" resourceGroup="Mail" disabled="True">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceMailAccounts" quota="Mail.Accounts"/>
|
||||
<MenuItem pageID="SpaceMailForwardings" quota="Mail.Forwardings"/>
|
||||
<MenuItem pageID="SpaceMailGroups" quota="Mail.Groups"/>
|
||||
<MenuItem pageID="SpaceMailLists" quota="Mail.Lists"/>
|
||||
<MenuItem pageID="SpaceMailDomains" resourceGroup="Mail"/>
|
||||
</MenuItems>
|
||||
</MenuItem>
|
||||
<MenuItem pageID="SpaceDatabases" disabled="True">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceMsSql2000" resourceGroup="MsSQL2000"/>
|
||||
<MenuItem pageID="SpaceMsSql2005" resourceGroup="MsSQL2005"/>
|
||||
<MenuItem pageID="SpaceMsSql2008" resourceGroup="MsSQL2008"/>
|
||||
<MenuItem pageID="SpaceMySql4" resourceGroup="MySQL4"/>
|
||||
<MenuItem pageID="SpaceMySql5" resourceGroup="MySQL5"/>
|
||||
</MenuItems>
|
||||
</MenuItem>
|
||||
<MenuItem pageID="SpaceSharePoint" resourceGroup="SharePoint" disabled="True">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceSharePointSites"/>
|
||||
<MenuItem pageID="SpaceSharePointUsers"/>
|
||||
</MenuItems>
|
||||
</MenuItem>
|
||||
<MenuItem pageID="SpaceVPS" resourceGroup="VPS"/>
|
||||
<MenuItem pageID="SpaceVPSForPC" resourceGroup="VPSForPC"/>
|
||||
<MenuItem pageID="SpaceExchangeHostedEdition" resourceGroup="ExchangeHostedEdition"/>
|
||||
<MenuItem pageID="SpaceExchangeServer" resourceGroup="Hosted Organizations"/>
|
||||
<MenuItem pageID="SpaceSharedSSL" resourceGroup="OS" quota="Web.SharedSSL"/>
|
||||
<MenuItem pageID="SpaceAdvancedStatistics" resourceGroup="Statistics"/>
|
||||
<MenuItem pageID="SpaceOdbc" resourceGroup="OS" quota="OS.ODBC"/>
|
||||
<MenuItem pageID="SpaceFileManager" resourceGroup="OS" quota="OS.FileManager"/>
|
||||
<MenuItem pageID="SpaceWebApplicationsGallery" resourceGroup="Web" quota="Web.WebAppGallery"/>
|
||||
<MenuItem pageID="SpaceApplicationsInstaller" resourceGroup="OS" quota="OS.AppInstaller"/>
|
||||
<MenuItem pageID="SpaceScheduledTasks" resourceGroup="OS" quota="OS.ScheduledTasks"/>
|
||||
<!--MenuItem url="http://phpmysqladmin.com" title="phpMyAdmin" target="_blank"
|
||||
resourceGroup="MySQL4"/-->
|
||||
</ModuleData>
|
||||
|
||||
<ModuleData id="SpaceIcons">
|
||||
<Icon pageID="SpaceDomains" resourceGroup="OS" imageUrl="icons/world_48.png" />
|
||||
<Icon pageID="SpaceWeb" disabled="True" imageUrl="icons/location_48.png">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceWebSites" resourceGroup="Web" />
|
||||
<MenuItem pageID="SpaceWebIPAddresses" resourceGroup="Web" />
|
||||
<MenuItem pageID="SpaceSharedSSL" resourceGroup="OS" quota="Web.SharedSSL" />
|
||||
<MenuItem pageID="SpaceAdvancedStatistics" resourceGroup="Statistics" />
|
||||
</MenuItems>
|
||||
</Icon>
|
||||
<Icon pageID="SpaceFtpAccounts" resourceGroup="FTP" imageUrl="icons/folder_up_48.png"/>
|
||||
<Icon pageID="SpaceFileManager" resourceGroup="OS" quota="OS.FileManager" imageUrl="icons/cabinet_48.png"/>
|
||||
<Icon pageID="SpaceDatabases" disabled="True" imageUrl="icons/database2_48.png">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceMsSql2000" resourceGroup="MsSQL2000"/>
|
||||
<MenuItem pageID="SpaceMsSql2005" resourceGroup="MsSQL2005"/>
|
||||
<MenuItem pageID="SpaceMsSql2008" resourceGroup="MsSQL2008"/>
|
||||
<MenuItem pageID="SpaceMySql4" resourceGroup="MySQL4"/>
|
||||
<MenuItem pageID="SpaceMySql5" resourceGroup="MySQL5"/>
|
||||
<MenuItem pageID="SpaceOdbc" resourceGroup="OS" quota="OS.ODBC"/>
|
||||
</MenuItems>
|
||||
</Icon>
|
||||
<Icon pageID="SpaceMail" resourceGroup="Mail" disabled="True" imageUrl="icons/mail_48.png">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceMailAccounts" quota="Mail.Accounts"/>
|
||||
<MenuItem pageID="SpaceMailForwardings" quota="Mail.Forwardings"/>
|
||||
<MenuItem pageID="SpaceMailGroups" quota="Mail.Groups"/>
|
||||
<MenuItem pageID="SpaceMailLists" quota="Mail.Lists"/>
|
||||
<MenuItem pageID="SpaceMailDomains" resourceGroup="Mail"/>
|
||||
</MenuItems>
|
||||
</Icon>
|
||||
<Icon pageID="SpaceSharePoint" resourceGroup="SharePoint" disabled="True" imageUrl="icons/colors_48.png">
|
||||
<MenuItems>
|
||||
<MenuItem pageID="SpaceSharePointSites"/>
|
||||
<MenuItem pageID="SpaceSharePointUsers"/>
|
||||
</MenuItems>
|
||||
</Icon>
|
||||
<Icon pageID="SpaceVPS" resourceGroup="VPS" imageUrl="images/vps/servers_48.png" />
|
||||
<Icon pageID="SpaceVPSForPC" resourceGroup="VPSForPC" imageUrl="images/vps/icon-home-botbar-cloud.png" />
|
||||
<Icon pageID="SpaceExchangeHostedEdition" resourceGroup="ExchangeHostedEdition" imageUrl="icons/enterprise.png"/>
|
||||
<Icon pageID="SpaceExchangeServer" resourceGroup="Hosted Organizations" imageUrl="icons/enterprise.png"/>
|
||||
<Icon pageID="SpaceWebApplicationsGallery" resourceGroup="Web" quota="Web.WebAppGallery" imageUrl="icons/dvd_disc_48.png"/>
|
||||
<Icon pageID="SpaceApplicationsInstaller" resourceGroup="OS" quota="OS.AppInstaller" imageUrl="icons/dvd_disc_48.png"/>
|
||||
<Icon pageID="SpaceScheduledTasks" resourceGroup="OS" quota="OS.ScheduledTasks" imageUrl="icons/calendar_month_2_clock_48.png"/>
|
||||
<!--MenuItem url="http://phpmysqladmin.com" title="phpMyAdmin" target="_blank"
|
||||
resourceGroup="MySQL4"/-->
|
||||
</ModuleData>
|
||||
|
||||
<ModuleData id="HostedSolutionMenu">
|
||||
<MenuItem pageID="SpaceDomains"/>
|
||||
<MenuItem pageID="Userds"/>
|
||||
<MenuItem pageID="SpaceOrganizationHostedSharePoint" resourceGroup="Hosted SharePoint"/>
|
||||
<MenuItem pageID="SpaceExchanged"/>
|
||||
</ModuleData>
|
||||
|
||||
</ModulesData>
|
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<SiteSettings>
|
||||
<!-- Display Settings -->
|
||||
<PortalName>WebsitePanel</PortalName>
|
||||
<!-- Enterprise Server -->
|
||||
<EnterpriseServer>http://localhost:9002</EnterpriseServer>
|
||||
<!-- General Settings -->
|
||||
<CultureCookieName>UserCulture</CultureCookieName>
|
||||
<ThemeCookieName>UserTheme</ThemeCookieName>
|
||||
<!-- Mail Settings -->
|
||||
<AdminEmail>
|
||||
</AdminEmail>
|
||||
<SmtpHost>
|
||||
</SmtpHost>
|
||||
<SmtpPort>
|
||||
</SmtpPort>
|
||||
<SmtpUsername>
|
||||
</SmtpUsername>
|
||||
<SmtpPassword>
|
||||
</SmtpPassword>
|
||||
<FromEmail>
|
||||
</FromEmail>
|
||||
<!-- Pages -->
|
||||
<DefaultPage>Home</DefaultPage>
|
||||
<LoginPage>Login</LoginPage>
|
||||
<UserHomePage>Home</UserHomePage>
|
||||
<UserCustomersPage>UserCustomers</UserCustomersPage>
|
||||
<SpaceHomePage>SpaceHome</SpaceHomePage>
|
||||
<NestedSpacesPage>NestedSpaces</NestedSpacesPage>
|
||||
<UsersSearchPage>SearchUsers</UsersSearchPage>
|
||||
<SpacesSearchPage>SearchSpaces</SpacesSearchPage>
|
||||
<LoggedUserAccountPage>LoggedUserDetails</LoggedUserAccountPage>
|
||||
<!-- Skins and Containers -->
|
||||
<PortalSkin>Browse2.ascx</PortalSkin>
|
||||
<PortalContainer>Browse.ascx</PortalContainer>
|
||||
<AdminSkin>Edit.ascx</AdminSkin>
|
||||
<AdminContainer>Edit.ascx</AdminContainer>
|
||||
<!-- SSL Settings -->
|
||||
<UseSSL>false</UseSSL>
|
||||
</SiteSettings>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<SupportedLocales>
|
||||
<Locale name="English" key="en-US" fallback="" />
|
||||
</SupportedLocales>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Themes>
|
||||
<Theme name="Default" title="Energy Blue" />
|
||||
</Themes>
|
|
@ -0,0 +1,596 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ModuleDefinitions>
|
||||
|
||||
<!-- Common Modules -->
|
||||
<ModuleDefinition id="SystemSettings">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SystemSettings.ascx" title="SearchUsers" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="TextHTML">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/TextHTML.ascx" title="TextHTML" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<!-- Common Modules -->
|
||||
<ModuleDefinition id="SearchUsers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SearchUsers.ascx" title="SearchUsers" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SearchSpaces">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SearchSpaces.ascx" title="SearchSpaces" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<!-- User Account -->
|
||||
<ModuleDefinition id="LoggedUserDetails">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/LoggedUserEditDetails.ascx" title="LoggedUserDetails" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserAccountMenu">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserAccountMenu.ascx" title="UserAccountMenu" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserCustomers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserCustomers.ascx" title="UserCustomersSummary" type="View" />
|
||||
<Control key="create_user" src="WebsitePanel/UserCreateUserAccount.ascx" title="UserCreateUserAccount" type="View" icon="user_add_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserCustomersSummary">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserCustomersSummary.ascx" title="UserCustomersSummary" type="View" />
|
||||
<Control key="create_user" src="WebsitePanel/UserCreateUserAccount.ascx" title="UserCreateUserAccount" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserSpaces">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserSpaces.ascx" title="UserSpaces" type="View" />
|
||||
<Control key="create_space" src="WebsitePanel/UserCreateSpace.ascx" title="UserCreateSpace" type="View" icon="sphere_add_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserNotes">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserAccountNotes.ascx" title="UserAccountNotes" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserDetails">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserAccountDetails.ascx" title="UserAccountDetails" type="View" />
|
||||
<Control key="summary_letter" src="WebsitePanel/UserAccountSummaryLetter.ascx" title="UserAccountSummaryLetter" type="View" icon="admin_info_48.png" />
|
||||
<Control key="edit_details" src="WebsitePanel/UserAccountEditDetails.ascx" title="UserAccountEditDetails" type="View" icon="admin_write_48.png" />
|
||||
<Control key="change_password" src="WebsitePanel/UserAccountChangePassword.ascx" title="UserAccountChangePassword" type="View" icon="admin_lock_48.png" />
|
||||
<Control key="delete" src="WebsitePanel/UserDeleteUserAccount.ascx" title="UserDeleteUserAccount" type="View" icon="admin_close_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserResellerSettings">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserAccountSettings.ascx" title="UserAccountSettings" type="View" />
|
||||
<Control key="mail_templates" src="WebsitePanel/UserAccountMailTemplateSettings.ascx" title="UserAccountMailTemplateSettings" type="View" icon="user_config_48.png" />
|
||||
<Control key="policies" src="WebsitePanel/UserAccountPolicySettings.ascx" title="UserAccountPolicySettings" type="View" icon="user_config_48.png" />
|
||||
<Control key="edit_settings" src="WebsitePanel/SettingsEditor.ascx" title="UserAccountSettingsEditor" type="View" icon="user_config_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserTools">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UserAccountTools.ascx" title="UserAccountTools" type="View" />
|
||||
<Control key="backup" src="WebsitePanel/BackupWizard.ascx" title="BackupUser" type="View" />
|
||||
<Control key="restore" src="WebsitePanel/RestoreWizard.ascx" title="RestoreUser" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="Tasks">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Tasks.ascx" title="Tasks" type="View" />
|
||||
<Control key="view_details" src="WebsitePanel/TasksTaskDetails.ascx" title="TasksTaskDetails" type="View" icon="hourglass_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
|
||||
<!-- Space -->
|
||||
<ModuleDefinition id="SpaceMenu">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceMenu.ascx" title="SpaceMenu" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="HostedSolutionMenu">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceMenu.ascx" title="SpaceMenu" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="SpaceQuotas">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceQuotas.ascx" title="SpaceQuotas" type="View" />
|
||||
<Control key="view_quotas" src="WebsitePanel/SpaceViewQuotas.ascx" title="SpaceViewQuotas" type="View" icon="sphere_level_48.png" />
|
||||
<Control key="view_addon" src="WebsitePanel/SpaceViewAddon.ascx" title="SpaceViewAddon" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SpaceNestedSpacesSummary">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceNestedSpacesSummary.ascx" title="SpaceNestedSpacesSummary" type="View" />
|
||||
<Control key="spaces" src="WebsitePanel/SpaceNestedSpaces.ascx" title="SpaceNestedSpaces" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SpaceNotes">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceNotes.ascx" title="SpaceNotes" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SpaceDetails">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceDetails.ascx" title="SpaceDetails" type="View" />
|
||||
<Control key="edit_details" src="WebsitePanel/SpaceEditDetails.ascx" title="SpaceEditDetails" type="View" icon="sphere_write_48.png" />
|
||||
<Control key="summary_letter" src="WebsitePanel/SpaceSummaryLetter.ascx" title="SpaceSummaryLetter" type="View" icon="sphere_info_48.png" />
|
||||
<Control key="delete" src="WebsitePanel/SpaceDeleteSpace.ascx" title="SpaceDeleteSpace" type="View" icon="sphere_close_48.png" />
|
||||
<Control key="edit_addon" src="WebsitePanel/SpaceEditAddon.ascx" title="SpaceEditAddon" type="View" icon="sphere_star_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SpaceSettings">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceSettings.ascx" title="SpaceSettings" type="View" />
|
||||
<Control key="edit_settings" src="WebsitePanel/SpaceSettingsEditor.ascx" title="SpaceSettingsEditor" type="View" icon="sphere_config_48.png" />
|
||||
<Control key="edit_globaldns" src="WebsitePanel/SpaceEditDnsRecords.ascx" title="SpaceEditDnsRecords" type="View" icon="sphere_config_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SpaceTools">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceTools.ascx" title="SpaceTools" type="View" />
|
||||
<Control key="backup" src="WebsitePanel/BackupWizard.ascx" title="BackupSpace" type="View" />
|
||||
<Control key="restore" src="WebsitePanel/RestoreWizard.ascx" title="RestoreSpace" type="View" />
|
||||
<Control key="import" src="WebsitePanel/SpaceImportResources.ascx" title="ImportSpaceResources" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="NestedSpaces">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SpaceNestedSpaces.ascx" title="SpaceNestedSpaces" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
|
||||
<ModuleDefinition id="IPAddresses">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/IPAddresses.ascx" title="IPAddressesManager" type="View" />
|
||||
<Control key="add_ip" src="WebsitePanel/IPAddressesAddIPAddress.ascx" title="AddIPAddress" type="View" icon="adress_add_48.png" />
|
||||
<Control key="edit_ip" src="WebsitePanel/IPAddressesEditIPAddress.ascx" title="EditIPAddress" type="View" icon="adress_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="Servers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Servers.ascx" title="Servers" type="View" />
|
||||
<Control key="add_ip" src="WebsitePanel/IPAddressesAddIPAddress.ascx" title="AddIPAddress" type="View" icon="adress_add_48.png" />
|
||||
<Control key="add_server" src="WebsitePanel/ServersAddServer.ascx" title="AddServer" type="View" icon="computer_add_48.png" />
|
||||
<Control key="add_service" src="WebsitePanel/ServersAddService.ascx" title="AddNewService" type="View" icon="computer_config_48.png" />
|
||||
<Control key="edit_eventviewer" src="WebsitePanel/ServersEditEventViewer.ascx" title="ServerEventViewer" type="View" icon="table_48.png" />
|
||||
<Control key="edit_ip" src="WebsitePanel/IPAddressesEditIPAddress.ascx" title="EditIPAddress" type="View" icon="adress_48.png" />
|
||||
<Control key="edit_processes" src="WebsitePanel/ServersEditSystemProcesses.ascx" title="ManageServerSystemProcesses" type="View" icon="windows_window_48.png" />
|
||||
<Control key="edit_reboot" src="WebsitePanel/ServersEditReboot.ascx" title="RebootServer" type="View" icon="switch_off_48.png" />
|
||||
<Control key="edit_server" src="WebsitePanel/ServersEditServer.ascx" title="ServerProperties" type="View" icon="computer_48.png" />
|
||||
<Control key="edit_service" src="WebsitePanel/ServersEditService.ascx" title="ServiceProperties" type="View" icon="computer_config_48.png" />
|
||||
<Control key="edit_termservices" src="WebsitePanel/ServersEditTerminalConnections.ascx" title="ManageTerminalConnections" type="View" icon="windows_window_zoom_48.png" />
|
||||
<Control key="edit_winservices" src="WebsitePanel/ServersEditWindowsServices.ascx" title="ManageWindowsServices" type="View" icon="windows_window_config_48.png" />
|
||||
<Control key="backup" src="WebsitePanel/BackupWizard.ascx" title="BackupServer" type="View" />
|
||||
<Control key="restore" src="WebsitePanel/RestoreWizard.ascx" title="RestoreServer" type="View" />
|
||||
<Control key="edit_htaccessfolder" src="WebsitePanel/WebSitesEditHeliconApeFolder.ascx" title="HeliconApeFolderProperties" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="VirtualServers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/VirtualServers.ascx" title="VirtualServers" type="View" />
|
||||
<Control key="add_server" src="WebsitePanel/VirtualServersAddServer.ascx" title="AddNewVirtualServer" type="View" icon="network_add_48.png" />
|
||||
<Control key="add_services" src="WebsitePanel/VirtualServersAddServices.ascx" title="AddVirtualServerServices" type="View" icon="network_config_48.png" />
|
||||
<Control key="edit_server" src="WebsitePanel/VirtualServersEditServer.ascx" title="EditVirtualServer" type="View" icon="network_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MyUsers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Users.ascx" title="Users" type="View" />
|
||||
<Control key="delete_user" src="WebsitePanel/UsersDeleteUser.ascx" title="DeleteUserAccount" type="View" />
|
||||
<Control key="edit_user" src="WebsitePanel/UsersEditUser.ascx" title="EditUserDetails" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UserPeers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Peers.ascx" title="PeerAccounts" type="View" />
|
||||
<Control key="edit_peer" src="WebsitePanel/PeersEditPeer.ascx" title="EditPeerAccount" type="View" icon="motion_blur_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="HostingPlans">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/HostingPlans.ascx" title="HostingPlans" type="View" />
|
||||
<Control key="edit_plan" src="WebsitePanel/HostingPlansEditPlan.ascx" title="EditHostingPlan" type="View" icon="inventory_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="HostingAddons">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/HostingAddons.ascx" title="HostingAddOns" type="View" />
|
||||
<Control key="edit_addon" src="WebsitePanel/HostingAddonsEditAddon.ascx" title="EditHostingAddOn" type="View" icon="inventory_add_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="Domains">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Domains.ascx" title="Domains" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomainSelectType.ascx" title="AddNewDomain" type="View" icon="world_add_48.png" />
|
||||
<Control key="add_domain_step2" src="WebsitePanel/DomainsAddDomain.ascx" title="AddNewDomain" type="View" icon="world_add_48.png" />
|
||||
<Control key="edit_item" src="WebsitePanel/DomainsEditDomain.ascx" title="EditDomain" type="View" icon="world_48.png" />
|
||||
<Control key="zone_records" src="WebsitePanel/DnsZoneRecords.ascx" title="DNSZoneRecords" type="View" icon="world_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
|
||||
|
||||
<ModuleDefinition id="HostedSharePointSiteCollections">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/HostedSharePointSiteCollections.ascx" title="HostedSharePointSiteCollections" type="View" icon="colors_48.png"/>
|
||||
<Control key="edit_item" src="WebsitePanel/HostedSharePointEditSiteCollection.ascx" title="HostedSharePointSiteCollection" type="View" icon="colors_48.png" />
|
||||
<Control key="backup" src="WebsitePanel/HostedSharePointBackupSiteCollection.ascx" title="HostedSharePointBackupSiteCollection" type="View"/>
|
||||
<Control key="restore" src="WebsitePanel/HostedSharePointRestoreSiteCollection.ascx" title="HostedSharePointRestoreSiteCollection" type="View"/>
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
|
||||
<ModuleDefinition id="FileManager">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/FileManager.ascx" title="HostingSpaceFiles" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="WebSites">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/WebSites.ascx" title="WebSites" type="View" />
|
||||
<Control key="add_pointer" src="WebsitePanel/WebSitesAddPointer.ascx" title="AddWebSiteDomainPointer" type="View" />
|
||||
<Control key="add_site" src="WebsitePanel/WebSitesAddSite.ascx" title="AddWebSite" type="View" icon="location_add_48.png" />
|
||||
<Control key="add_vdir" src="WebsitePanel/WebSitesAddVirtualDir.ascx" title="AddVirtualDirectory" type="View" icon="file_add_48.png" />
|
||||
<Control key="edit_item" src="WebsitePanel/WebSitesEditSite.ascx" title="WebSiteProperties" type="View" icon="location_48.png" />
|
||||
<Control key="edit_vdir" src="WebsitePanel/WebSitesEditVirtualDir.ascx" title="VirtualDirectoryProperties" type="View" icon="file_48.png" />
|
||||
<Control key="edit_webfolder" src="WebsitePanel/WebSitesEditWebFolder.ascx" title="SecuredFolderProperties" type="View" />
|
||||
<Control key="edit_webgroup" src="WebsitePanel/WebSitesEditWebGroup.ascx" title="SecureGroupProperties" type="View" />
|
||||
<Control key="edit_webuser" src="WebsitePanel/WebSitesEditWebUser.ascx" title="SecureUserProperties" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomain.ascx" title="AddDomain" type="View" />
|
||||
<Control key="edit_htaccessfolder" src="WebsitePanel/WebSitesEditHeliconApeFolder.ascx" title="HeliconApeFolderProperties" type="View" />
|
||||
<Control key="edit_htaccessfolderauth" src="WebsitePanel/WebSitesEditHeliconApeFolderAuth.ascx" title="HeliconApeFolderAuthProperties" type="View" />
|
||||
<Control key="edit_htaccessgroup" src="WebsitePanel/WebSitesEditHeliconApeGroup.ascx" title="HeliconApeGroupProperties" type="View" />
|
||||
<Control key="edit_htaccessuser" src="WebsitePanel/WebSitesEditHeliconApeUser.ascx" title="HeliconApeUserProperties" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="WebSiteIPAddresses">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/WebSitesIPAddresses.ascx" title="WebSitesIPAddresses" type="View" />
|
||||
<Control key="allocate_addresses" src="WebsitePanel/WebSitesAllocateIPAddresses.ascx" title="WebSitesAllocateIPAddresses" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="FtpAccounts">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/FtpAccounts.ascx" title="FTPAccounts" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/FtpAccountEditAccount.ascx" title="FTPAccountProperties" type="View" icon="folder_up_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MailAccounts">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/MailAccounts.ascx" title="MailAccounts" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomain.ascx" title="AddNewDomain" type="View" icon="" />
|
||||
<Control key="edit_item" src="WebsitePanel/MailAccountsEditAccount.ascx" title="MailAccountProperties" type="View" icon="accounting_mail_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MailForwardings">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/MailForwardings.ascx" title="MailForwardings" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomain.ascx" title="AddNewDomain" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/MailForwardingsEditForwarding.ascx" title="MailForwardingProperties" type="View" icon="safe-mail_next_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MailGroups">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/MailGroups.ascx" title="MailGroups" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomain.ascx" title="AddNewDomain" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/MailGroupsEditGroup.ascx" title="MailGroupProperties" type="View" icon="contacts_mail_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MailLists">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/MailLists.ascx" title="MailLists" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomain.ascx" title="AddNewDomain" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/MailListsEditList.ascx" title="MailListProperties" type="View" icon="discussion_group_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MailDomains">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/MailDomains.ascx" title="MailDomains" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/DomainsAddDomain.ascx" title="AddNewDomain" type="View" />
|
||||
<Control key="add_pointer" src="WebsitePanel/MailDomainsAddPointer.ascx" title="AddMailDomainPointer" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/MailDomainsEditDomain.ascx" title="MailDomainProperties" type="View" icon="web_mail_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SqlDatabases">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SqlDatabases.ascx" title="SQLDatabases" type="View" />
|
||||
<Control key="backup" src="WebsitePanel/SqlBackupDatabase.ascx" title="BackupSQLDatabase" type="View" icon="database2_save_48.png" />
|
||||
<Control key="edit_item" src="WebsitePanel/SqlEditDatabase.ascx" title="SQLDatabaseProperties" type="View" icon="database2_48.png" />
|
||||
<Control key="restore" src="WebsitePanel/SqlRestoreDatabase.ascx" title="RestoreSQLDatabase" type="View" icon="database2_reload_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SqlUsers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SqlUsers.ascx" title="SQLUsers" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/SqlEditUser.ascx" title="SQLUserProperties" type="View" icon="db_user_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SharePointUsers">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SharePointUsers.ascx" title="SharePointUsers" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/SharePointUsersEditUser.ascx" title="SharePointUserProperties" type="View" icon="user_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SharePointGroups">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SharePointGroups.ascx" title="SharePointGroups" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/SharePointGroupsEditGroup.ascx" title="SharePointGroup" type="View" icon="group_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="AdvancedStatistics">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Statistics.ascx" title="AdvancedStatistics" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/StatisticsEditStatistics.ascx" title="AdvancedStatisticsInstallation" type="View" icon="stadistics_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="UsersWizard">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/UsersCreationWizard.ascx" title="AccountCreationWizard" type="View" />
|
||||
<Control key="complete" src="WebsitePanel/UsersCreationWizardComplete.ascx" title="AccountCreationComplete" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="WebApplicationsGallery">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/WebApplicationGallery.ascx" title="WebApplicationsGallery" type="View" />
|
||||
<Control key="complete" src="WebsitePanel/InstallerInstallApplicationComplete.ascx" title="InstallationComplete" type="View" icon="dvd_disc_ok_48.png" />
|
||||
<Control key="edit" src="WebsitePanel/WebApplicationGalleryInstall.ascx" title="DownloadWebApplication" type="View" icon="dvd_disc_48.png" />
|
||||
<Control key="editParams" src="WebsitePanel/WebApplicationGalleryParams.ascx" title="WebApplicationParameters" type="View" icon="dvd_disc_48.png" />
|
||||
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
|
||||
<ModuleDefinition id="Login">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Login.ascx" title="SignIn" type="View" />
|
||||
<Control key="forgot_password" src="WebsitePanel/LoginForgotPassword.ascx" title="PasswordReminder" type="View" />
|
||||
<Control key="scpa" src="WebsitePanel/SetupControlPanelAccounts.ascx" title="SetupControlPanelAccounts" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="AuditLog">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/AuditLog.ascx" title="AuditLog" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ScheduledTasks">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/Schedules.ascx" title="ScheduledTasks" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/SchedulesEditSchedule.ascx" title="ScheduledTaskProperties" type="View" icon="calendar_month_2_clock_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="OverusageReport">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/OverusageReport.ascx" title="OverusageReport" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="DiskspaceReport">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/DiskspaceReport.ascx" title="DiskSpaceSummary" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/DiskspaceReportPackageDetails.ascx" title="HostingSpaceDiskSpaceDetails" type="View" icon="stadistics_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="BandwidthReport">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/BandwidthReport.ascx" title="BandwidthReport" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/BandwidthReportPackageDetails.ascx" title="HostingSpaceBandwidthDetails" type="View" icon="stadistics_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MyWeb">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/IconsPad.ascx" title="Icons" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/IconsPadEditIcon.ascx" title="EditIconProperties" type="View" />
|
||||
<Control key="settings" src="WebsitePanel/IconsPadSettings.ascx" title="IconsPadSettings" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MyMail">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/IconsPad.ascx" title="Icons" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/IconsPadEditIcon.ascx" title="EditIconProperties" type="View" />
|
||||
<Control key="settings" src="WebsitePanel/IconsPadSettings.ascx" title="IconsPadSettings" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MyDatabases">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/IconsPad.ascx" title="Icons" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/IconsPadEditIcon.ascx" title="EditIconProperties" type="View" />
|
||||
<Control key="settings" src="WebsitePanel/IconsPadSettings.ascx" title="IconsPadSettings" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="MyExtras">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/IconsPad.ascx" title="Icons" type="View" />
|
||||
<Control key="edit" src="WebsitePanel/IconsPadEditIcon.ascx" title="EditIconProperties" type="View" />
|
||||
<Control key="settings" src="WebsitePanel/IconsPadSettings.ascx" title="IconsPadSettings" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="ODBC">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/OdbcSources.ascx" title="ODBCDSNs" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/OdbcEditSource.ascx" title="ODBCDSNProperties" type="View" icon="export_db_back_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
<ModuleDefinition id="SharePointSites">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SharePointSites.ascx" title="SharePointSites" type="View" />
|
||||
<Control key="backup" src="WebsitePanel/SharePointBackupSite.ascx" title="BackupSharePointSite" type="View" />
|
||||
<Control key="edit_item" src="WebsitePanel/SharePointEditSite.ascx" title="SharePointSite" type="View" icon="colors_48.png" />
|
||||
<Control key="install_webparts" src="WebsitePanel/SharePointInstallWebPartPackage.ascx" title="InstallSharePointWebPartsPackage" type="View" />
|
||||
<Control key="restore" src="WebsitePanel/SharePointRestoreSite.ascx" title="RestoreSharePointSite" type="View" />
|
||||
<Control key="webparts" src="WebsitePanel/SharePointWebPartPackages.ascx" title="InstalledSharePointWebPartPackages" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="SharedSSL">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/SharedSSLFolders.ascx" title="SharedSSLFolders" type="View" />
|
||||
<Control key="add" src="WebsitePanel/SharedSSLAddFolder.ascx" title="AddSharedSSLFolder" type="View" icon="world_lock_48.png" />
|
||||
<Control key="edit_item" src="WebsitePanel/SharedSSLEditFolder.ascx" title="SharedSSLFolderProperties" type="View" icon="world_lock_48.png" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="ExchangeServer">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/ExchangeServer/Organizations.ascx" title="Organizations" type="View" />
|
||||
<Control key="edit_user" src="WebsitePanel/ExchangeServer/OrganizationUserGeneralSettings.ascx" title="OrganizationUserGeneralSettings" type="View" />
|
||||
<Control key="users" src="WebsitePanel/ExchangeServer/OrganizationUsers.ascx" title="OrganizationUsers" type="View" />
|
||||
<Control key="create_user" src="WebsitePanel/ExchangeServer/OrganizationCreateUser.ascx" title="CreateUser" type="View" />
|
||||
<Control key="create_organization" src="WebsitePanel/ExchangeServer/OrganizationCreateOrganization.ascx" title="OrganizationCreateOrganization" type="View" />
|
||||
<Control key="organization_home" src="WebsitePanel/ExchangeServer/OrganizationHome.ascx" title="OrganizationHome" type="View" />
|
||||
<Control key="organization_user_setup" src="WebsitePanel/ExchangeServer/OrganizationUserSetupInstructions.ascx" title="OrganizationUserSetupInstructions" type="View" />
|
||||
<Control key="mailboxes" src="WebsitePanel/ExchangeServer/ExchangeMailboxes.ascx" title="ExchangeMailboxes" type="View" />
|
||||
<Control key="create_mailbox" src="WebsitePanel/ExchangeServer/ExchangeCreateMailbox.ascx" title="ExchangeCreateMailbox" type="View" />
|
||||
<Control key="mailbox_settings" src="WebsitePanel/ExchangeServer/ExchangeMailboxGeneralSettings.ascx" title="ExchangeMailboxGeneralSettings" type="View" />
|
||||
<Control key="mailbox_mobile" src="WebsitePanel/ExchangeServer/ExchangeMailboxMobile.ascx" title="ExchangeMailboxMobile" type="View" />
|
||||
<Control key="mailbox_mobile_details" src="WebsitePanel/ExchangeServer/ExchangeMailboxMobileDetails.ascx" title="ExchangeMailboxMobile" type="View" />
|
||||
<Control key="mailbox_addresses" src="WebsitePanel/ExchangeServer/ExchangeMailboxEmailAddresses.ascx" title="ExchangeMailboxEmailAddresses" type="View" />
|
||||
<Control key="mailbox_mailflow" src="WebsitePanel/ExchangeServer/ExchangeMailboxMailFlowSettings.ascx" title="ExchangeMailboxMailFlowSettings" type="View" />
|
||||
<Control key="mailbox_permissions" src="WebsitePanel/ExchangeServer/ExchangeMailboxPermissions.ascx" title="ExchangeMailboxPermissions" type="View" />
|
||||
<Control key="mailbox_advanced" src="WebsitePanel/ExchangeServer/ExchangeMailboxAdvancedSettings.ascx" title="ExchangeMailboxAdvancedSettings" type="View" />
|
||||
<Control key="mailbox_setup" src="WebsitePanel/ExchangeServer/ExchangeMailboxSetupInstructions.ascx" title="ExchangeMailboxSetupInstructions" type="View" />
|
||||
<Control key="contacts" src="WebsitePanel/ExchangeServer/ExchangeContacts.ascx" title="ExchangeContacts" type="View" />
|
||||
<Control key="create_contact" src="WebsitePanel/ExchangeServer/ExchangeCreateContact.ascx" title="ExchangeCreateContact" type="View" />
|
||||
<Control key="contact_settings" src="WebsitePanel/ExchangeServer/ExchangeContactGeneralSettings.ascx" title="ExchangeContactGeneralSettings" type="View" />
|
||||
<Control key="contact_mailflow" src="WebsitePanel/ExchangeServer/ExchangeContactMailFlowSettings.ascx" title="ExchangeContactMailFlowSettings" type="View" />
|
||||
<Control key="dlists" src="WebsitePanel/ExchangeServer/ExchangeDistributionLists.ascx" title="ExchangeDistributionLists" type="View" />
|
||||
<Control key="create_dlist" src="WebsitePanel/ExchangeServer/ExchangeCreateDistributionList.ascx" title="ExchangeCreateDistributionList" type="View" />
|
||||
<Control key="dlist_settings" src="WebsitePanel/ExchangeServer/ExchangeDistributionListGeneralSettings.ascx" title="ExchangeDistributionListGeneralSettings" type="View" />
|
||||
<Control key="dlist_addresses" src="WebsitePanel/ExchangeServer/ExchangeDistributionListEmailAddresses.ascx" title="ExchangeDistributionListEmailAddresses" type="View" />
|
||||
<Control key="dlist_mailflow" src="WebsitePanel/ExchangeServer/ExchangeDistributionListMailFlowSettings.ascx" title="ExchangeDistributionListMailFlowSettings" type="View" />
|
||||
<Control key="dlist_permissions" src="WebsitePanel/ExchangeServer/ExchangeDistributionListPermissions.ascx" title="ExchangeDistributionListMailFlowSettings" type="View" />
|
||||
|
||||
<Control key="public_folders" src="WebsitePanel/ExchangeServer/ExchangePublicFolders.ascx" title="ExchangePublicFolders" type="View" />
|
||||
<Control key="create_public_folder" src="WebsitePanel/ExchangeServer/ExchangeCreatePublicFolder.ascx" title="ExchangeCreatePublicFolder" type="View" />
|
||||
<Control key="public_folder_settings" src="WebsitePanel/ExchangeServer/ExchangePublicFolderGeneralSettings.ascx" title="ExchangePublicFolderGeneralSettings" type="View" />
|
||||
<Control key="public_folder_addresses" src="WebsitePanel/ExchangeServer/ExchangePublicFolderEmailAddresses.ascx" title="ExchangePublicFolderEmailAddresses" type="View" />
|
||||
<Control key="public_folder_mailflow" src="WebsitePanel/ExchangeServer/ExchangePublicFolderMailFlowSettings.ascx" title="ExchangePublicFolderMailFlowSettings" type="View" />
|
||||
<Control key="public_folder_mailenable" src="WebsitePanel/ExchangeServer/ExchangePublicFolderMailEnable.ascx" title="ExchangePublicFolderMailEnable" type="View" />
|
||||
<Control key="domains" src="WebsitePanel/ExchangeServer/ExchangeDomainNames.ascx" title="ExchangeDomainNames" type="View" />
|
||||
<Control key="add_domain" src="WebsitePanel/ExchangeServer/ExchangeAddDomainName.ascx" title="ExchangeAddDomainName" type="View" />
|
||||
<Control key="domain_records" src="WebsitePanel/ExchangeServer/ExchangeDomainRecords.ascx" title="ExchangeDomainRecords" type="View" />
|
||||
<Control key="storage_usage" src="WebsitePanel/ExchangeServer/ExchangeStorageUsage.ascx" title="ExchangeStorageUsage" type="View" />
|
||||
<Control key="storage_usage_details" src="WebsitePanel/ExchangeServer/ExchangeStorageUsageBreakdown.ascx" title="ExchangeStorageUsageBreakdown" type="View" />
|
||||
<Control key="storage_limits" src="WebsitePanel/ExchangeServer/ExchangeStorageLimits.ascx" title="ExchangeStorageLimits" type="View" />
|
||||
<Control key="activesync_policy" src="WebsitePanel/ExchangeServer/ExchangeActiveSyncSettings.ascx" title="ExchangeActiveSyncSettings" type="View" />
|
||||
<Control key="CRMOrganizationDetails" src="WebsitePanel/CRM/CRMOrganizationDetails.ascx" title="ExchangeActiveSyncSettings" type="View" />
|
||||
<Control key="CRMUsers" src="WebsitePanel/CRM/CRMUsers.ascx" title="CRM Users" type="View" />
|
||||
<Control key="CRMUserRoles" src="WebsitePanel/CRM/CRMUserRoles.ascx" title="CRM User Roles" type="View" />
|
||||
<Control key="create_crm_user" src="WebsitePanel/CRM/CreateCRMUser.ascx" title="Create CRM User" type="View" />
|
||||
|
||||
|
||||
<Control key="sharepoint_sitecollections" src="WebsitePanel/HostedSharePointSiteCollections.ascx" title="HostedSharePointSiteCollections" type="View" icon="colors_48.png"/>
|
||||
<Control key="sharepoint_edit_sitecollection" src="WebsitePanel/HostedSharePointEditSiteCollection.ascx" title="HostedSharePointSiteCollection" type="View" icon="colors_48.png" />
|
||||
<Control key="sharepoint_backup_sitecollection" src="WebsitePanel/HostedSharePointBackupSiteCollection.ascx" title="HostedSharePointBackupSiteCollection" type="View"/>
|
||||
<Control key="sharepoint_restore_sitecollection" src="WebsitePanel/HostedSharePointRestoreSiteCollection.ascx" title="HostedSharePointRestoreSiteCollection" type="View"/>
|
||||
<Control key="sharepoint_storage_settings" src="WebsitePanel/HostedSharePointStorageSettings.ascx" title="HostedSharePointRestoreSiteCollection" type="View"/>
|
||||
<Control key="sharepoint_storage_usage" src="WebsitePanel/HostedSharePointStorageUsage.ascx" title="HostedSharePointRestoreSiteCollection" type="View"/>
|
||||
|
||||
|
||||
<Control key="blackberry_users" src="WebsitePanel/BlackBerry/BlackBerryUsers.ascx" title="BlackBerry Users" type="View" />
|
||||
<Control key="create_new_blackberry_user" src="WebsitePanel/BlackBerry/CreateNewBlackBerryUser.ascx" title="Create New BlackBerry User" type="View" />
|
||||
<Control key="edit_blackberry_user" src="WebsitePanel/BlackBerry/EditBlackBerryUser.ascx" title="Edit BlackBerry User" type="View" />
|
||||
|
||||
<Control key="ocs_users" src="WebsitePanel/OCS/OCSUsers.ascx" title="OCS Users" type="View" />
|
||||
<Control key="create_new_ocs_user" src="WebsitePanel/OCS/CreateOCSUser.ascx" title="Create New OCS User" type="View" />
|
||||
<Control key="edit_ocs_user" src="WebsitePanel/OCS/EditOCSUser.ascx" title="Edit OCS User" type="View" />
|
||||
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="VPS">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/VPS/VdcHome.ascx" title="VdcHome" type="View" />
|
||||
<Control key="vdc_create_server" src="WebsitePanel/VPS/VdcCreateServer.ascx" title="VdcCreateServer" type="View" />
|
||||
<Control key="vdc_import_server" src="WebsitePanel/VPS/VdcImportServer.ascx" title="VdcImportServer" type="View" />
|
||||
<Control key="vdc_external_network" src="WebsitePanel/VPS/VdcExternalNetwork.ascx" title="VdcExternalNetwork" type="View" />
|
||||
<Control key="vdc_management_network" src="WebsitePanel/VPS/VdcManagementNetwork.ascx" title="VdcManagementNetwork" type="View" />
|
||||
<Control key="vdc_allocate_external_ip" src="WebsitePanel/VPS/VdcAddExternalAddress.ascx" title="VdcAddExternalAddress" type="View" />
|
||||
<Control key="vdc_private_network" src="WebsitePanel/VPS/VdcPrivateNetwork.ascx" title="VdcPrivateNetwork" type="View" />
|
||||
<Control key="vdc_permissions" src="WebsitePanel/VPS/VdcPermissions.ascx" title="VdcPermissions" type="View" />
|
||||
<Control key="vdc_audit_log" src="WebsitePanel/VPS/VdcAuditLog.ascx" title="VdcAuditLog" type="View" />
|
||||
|
||||
<Control key="vps_general" src="WebsitePanel/VPS/VpsDetailsGeneral.ascx" title="VpsDetailsGeneral" type="View" />
|
||||
<Control key="vps_config" src="WebsitePanel/VPS/VpsDetailsConfiguration.ascx" title="VpsDetailsConfiguration" type="View" />
|
||||
<Control key="vps_edit_config" src="WebsitePanel/VPS/VpsDetailsEditConfiguration.ascx" title="VpsDetailsEditConfiguration" type="View" />
|
||||
<Control key="vps_dvd" src="WebsitePanel/VPS/VpsDetailsDvd.ascx" title="VpsDetailsDvd" type="View" />
|
||||
<Control key="vps_insert_dvd" src="WebsitePanel/VPS/VpsDetailsInsertDvd.ascx" title="VpsDetailsInsertDvd" type="View" />
|
||||
<Control key="vps_snapshots" src="WebsitePanel/VPS/VpsDetailsSnapshots.ascx" title="VpsDetailsSnapshots" type="View" />
|
||||
<Control key="vps_network" src="WebsitePanel/VPS/VpsDetailsNetwork.ascx" title="VpsDetailsNetwork" type="View" />
|
||||
<Control key="vps_add_external_ip" src="WebsitePanel/VPS/VpsDetailsAddExternalAddress.ascx" title="VpsDetailsAddExternalAddress" type="View" />
|
||||
<Control key="vps_add_private_ip" src="WebsitePanel/VPS/VpsDetailsAddPrivateAddress.ascx" title="VpsDetailsAddPrivateAddress" type="View" />
|
||||
<Control key="vps_permissions" src="WebsitePanel/VPS/VpsDetailsPermissions.ascx" title="VpsDetailsNetworking" type="View" />
|
||||
<Control key="vps_tools" src="WebsitePanel/VPS/VpsDetailsTools.ascx" title="VpsDetailsTools" type="View" />
|
||||
<Control key="vps_audit_log" src="WebsitePanel/VPS/VpsDetailsAuditLog.ascx" title="VpsDetailsAuditLog" type="View" />
|
||||
<Control key="vps_help" src="WebsitePanel/VPS/VpsDetailsHelp.ascx" title="VpsDetailsHelp" type="View" />
|
||||
<Control key="vps_tools_delete" src="WebsitePanel/VPS/VpsToolsDeleteServer.ascx" title="VpsToolsDeleteServer" type="View" />
|
||||
<Control key="vps_tools_move" src="WebsitePanel/VPS/VpsMoveServer.ascx" title="VpsMoveServer" type="View" />
|
||||
<Control key="vps_tools_reinstall" src="WebsitePanel/VPS/VpsToolsReinstallServer.ascx" title="VpsToolsReinstallServer" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="VPSForPC">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/VPSForPC/VdcHome.ascx" title="VdcHome" type="View" />
|
||||
<Control key="vdc_create_server" src="WebsitePanel/VPSForPC/VdcCreateServer.ascx" title="VdcCreateServer" type="View" />
|
||||
<Control key="vdc_import_server" src="WebsitePanel/VPSForPC/VdcImportServer.ascx" title="VdcImportServer" type="View" />
|
||||
<Control key="vdc_FastCreate_server" src="WebsitePanel/VPSForPC/VdcFastCreateServer.ascx" title="VdcFastCreateServer" type="View" />
|
||||
<Control key="vdc_external_network" src="WebsitePanel/VPSForPC/VdcExternalNetwork.ascx" title="VdcExternalNetwork" type="View" />
|
||||
<Control key="vdc_management_network" src="WebsitePanel/VPSForPC/VdcManagementNetwork.ascx" title="VdcManagementNetwork" type="View" />
|
||||
<Control key="vdc_allocate_external_ip" src="WebsitePanel/VPSForPC/VdcAddExternalAddress.ascx" title="VdcAddExternalAddress" type="View" />
|
||||
<Control key="vdc_private_network" src="WebsitePanel/VPSForPC/VdcPrivateNetwork.ascx" title="VdcPrivateNetwork" type="View" />
|
||||
<Control key="vdc_permissions" src="WebsitePanel/VPSForPC/VdcPermissions.ascx" title="VdcPermissions" type="View" />
|
||||
<Control key="vdc_audit_log" src="WebsitePanel/VPSForPC/VdcAuditLog.ascx" title="VdcAuditLog" type="View" />
|
||||
<Control key="vdc_account_vlan_network" src="WebsitePanel/VPSForPC/VdcAccountVLanNetwork.ascx" title="VdcAccountVLanNetwork" type="View" />
|
||||
<Control key="vdc_account_vLan_add" src="WebsitePanel/VPSForPC/VdcAccountVLanAdd.ascx" title="VdcAccountVLanAdd" type="View" />
|
||||
|
||||
<Control key="vps_general" src="WebsitePanel/VPSForPC/VpsDetailsGeneral.ascx" title="VpsDetailsGeneral" type="View" />
|
||||
<Control key="vps_config" src="WebsitePanel/VPSForPC/VpsDetailsConfiguration.ascx" title="VpsDetailsConfiguration" type="View" />
|
||||
<Control key="vps_edit_config" src="WebsitePanel/VPSForPC/VpsDetailsEditConfiguration.ascx" title="VpsDetailsEditConfiguration" type="View" />
|
||||
<Control key="vps_dvd" src="WebsitePanel/VPSForPC/VpsDetailsDvd.ascx" title="VpsDetailsDvd" type="View" />
|
||||
<Control key="vps_insert_dvd" src="WebsitePanel/VPSForPC/VpsDetailsInsertDvd.ascx" title="VpsDetailsInsertDvd" type="View" />
|
||||
<Control key="vps_snapshots" src="WebsitePanel/VPSForPC/VpsDetailsSnapshots.ascx" title="VpsDetailsSnapshots" type="View" />
|
||||
<Control key="vps_network" src="WebsitePanel/VPSForPC/VpsDetailsNetwork.ascx" title="VpsDetailsNetwork" type="View" />
|
||||
<Control key="vps_add_external_ip" src="WebsitePanel/VPSForPC/VpsDetailsAddExternalAddress.ascx" title="VpsDetailsAddExternalAddress" type="View" />
|
||||
<Control key="vps_add_private_ip" src="WebsitePanel/VPSForPC/VpsDetailsAddPrivateAddress.ascx" title="VpsDetailsAddPrivateAddress" type="View" />
|
||||
<Control key="vps_permissions" src="WebsitePanel/VPSForPC/VpsDetailsPermissions.ascx" title="VpsDetailsNetworking" type="View" />
|
||||
<Control key="vps_tools" src="WebsitePanel/VPSForPC/VpsDetailsTools.ascx" title="VpsDetailsTools" type="View" />
|
||||
<Control key="vps_audit_log" src="WebsitePanel/VPSForPC/VpsDetailsAuditLog.ascx" title="VpsDetailsAuditLog" type="View" />
|
||||
<Control key="vps_help" src="WebsitePanel/VPSForPC/VpsDetailsHelp.ascx" title="VpsDetailsHelp" type="View" />
|
||||
<Control key="vps_tools_delete" src="WebsitePanel/VPSForPC/VpsToolsDeleteServer.ascx" title="VpsToolsDeleteServer" type="View" />
|
||||
<Control key="vps_tools_move" src="WebsitePanel/VPSForPC/VpsMoveServer.ascx" title="VpsMoveServer" type="View" />
|
||||
<Control key="vps_tools_reinstall" src="WebsitePanel/VPSForPC/VpsToolsReinstallServer.ascx" title="VpsToolsReinstallServer" type="View" />
|
||||
<Control key="vps_events_log" src="WebsitePanel/VPSForPC/VpsEventsLog.ascx" title="VpsEventsLog" type="View" />
|
||||
<Control key="vps_alerts_log" src="WebsitePanel/VPSForPC/VpsAlertsLog.ascx" title="VpsAlertsLog" type="View" />
|
||||
<Control key="vps_monitoring" src="WebsitePanel/VPSForPC/VpsMonitoring.ascx" title="VpsMonitoring" type="View" />
|
||||
<Control key="vps_checkpoints" src="WebsitePanel/VPSForPC/VpsCheckPoints.ascx" title="VpsCheckPoints" type="View" />
|
||||
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
<ModuleDefinition id="ExchangeHostedEdition">
|
||||
<Controls>
|
||||
<Control key="" src="WebsitePanel/ExchangeHostedEdition/OrganizationDetails.ascx" title="HostedExchangeOrganizationDetails" type="View" />
|
||||
<Control key="create_org" src="WebsitePanel/ExchangeHostedEdition/CreateOrganization.ascx" title="HostedExchangeCreateOrganization" type="View" />
|
||||
<Control key="update_org_quotas" src="WebsitePanel/ExchangeHostedEdition/UpdateOrganizationQuotas.ascx" title="HostedExchangeUpdateOrganizationQuotas" type="View" />
|
||||
<Control key="update_org_catchall" src="WebsitePanel/ExchangeHostedEdition/UpdateOrganizationCatchAll.ascx" title="HostedExchangeUpdateOrganizationCatchAll" type="View" />
|
||||
<Control key="update_org_plan" src="WebsitePanel/ExchangeHostedEdition/UpdateOrganizationServicePlan.ascx" title="HostedExchangeUpdateOrganizationServicePlan" type="View" />
|
||||
<Control key="add_org_domain" src="WebsitePanel/ExchangeHostedEdition/AddOrganizationDomain.ascx" title="HostedExchangeAddOrganizationDomain" type="View" />
|
||||
<Control key="delete_org" src="WebsitePanel/ExchangeHostedEdition/DeleteOrganization.ascx" title="HostedExchangeDeleteOrganization" type="View" />
|
||||
</Controls>
|
||||
</ModuleDefinition>
|
||||
|
||||
</ModuleDefinitions>
|
|
@ -0,0 +1,552 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Pages>
|
||||
|
||||
<include file="ModulesData.config" />
|
||||
|
||||
<Page name="Login" roles="?" skin="Login.ascx" adminskin="Login.ascx" hidden="True">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="Login" title="SignIn" container="Login.ascx" icon="admin_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="LoggedUserDetails" roles="Administrator,Reseller,User" hidden="True" skin="Edit.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="LoggedUserDetails" title="LoggedUserDetails" icon="user_write_48.png" container="Edit.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SearchUsers" roles="Administrator,Reseller,User" hidden="True" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SearchUsers" title="SearchUsers" icon="user_zoom_48.png" container="Edit.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SearchSpaces" roles="Administrator,Reseller,User" hidden="True" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SearchSpaces" title="SearchSpaces" icon="sphere_zoom_48.png" container="Edit.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="Home" roles="Administrator,Reseller,User" skin="Browse3.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="UserCustomersSummary" title="UserCustomersSummary" container="Browse.ascx" icon="group_48.png"/>
|
||||
<Module moduleDefinitionID="UserSpaces" title="UserSpaces" container="Browse.ascx" roles="Administrator,Reseller" icon="sphere_48.png">
|
||||
<ModuleData ref="SpaceIcons"/>
|
||||
</Module>
|
||||
<Module moduleDefinitionID="UserNotes" title="UserNotes" container="Browse.ascx" roles="Administrator,Reseller" icon="notes_48.png" />
|
||||
<!--Module moduleDefinitionID="TextHTML" title="Test Text Module" container="Clear.ascx" roles="Administrator,Reseller">
|
||||
<ModuleData>
|
||||
<Content resourcekey="" template="true">
|
||||
<![CDATA[<div class="Normal">Hello #user.FirstName#!</div>]]>
|
||||
</Content>
|
||||
</ModuleData>
|
||||
</Module-->
|
||||
</Content>
|
||||
<Content id="RightPane">
|
||||
<Module moduleDefinitionID="UserDetails" title="UserDetails" container="Clear.ascx" />
|
||||
<Module moduleDefinitionID="UserResellerSettings" title="UserResellerSettings" container="Clear.ascx" roles="Administrator,Reseller" />
|
||||
<!--Module moduleDefinitionID="UserTools" title="UserTools" container="Clear.ascx" /-->
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<!-- User Account Menu Pages -->
|
||||
<Page name="UserCustomers" roles="Administrator,Reseller" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="UserCustomers" title="UserCustomers" icon="group_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="UserSpaces" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="UserSpaces" title="UserSpaces" icon="sphere_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="UserPeers" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="UserPeers" title="UserPeers" icon="motion_blur_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="HostingPlans" roles="Administrator,Reseller" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="HostingPlans" title="HostingPlans" icon="inventory_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="HostingAddons" roles="Administrator,Reseller" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="HostingAddons" title="HostingAddons" icon="inventory_add_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="UserTasks" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="Tasks" title="Tasks" icon="hourglass_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="AuditLog" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="UserAccountMenu" title="UserMenu" container="Clear.ascx">
|
||||
<ModuleData ref="UserMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="AuditLog" title="AuditLog" icon="record_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<!-- Space Home Page -->
|
||||
<Page name="SpaceHome" roles="Administrator,Reseller,User" hidden="True" skin="Browse3.ascx">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SpaceQuotas" title="SpaceQuotas" container="Browse.ascx" icon="stadistics_48.png" />
|
||||
<Module moduleDefinitionID="SpaceNestedSpacesSummary" title="SpaceNestedSpacesSummary" container="Browse.ascx" roles="Administrator,Reseller" icon="sphere_down_48.png" />
|
||||
<Module moduleDefinitionID="SpaceNotes" title="SpaceNotes" container="Browse.ascx" roles="Administrator,Reseller" icon="notes_48.png" />
|
||||
</Content>
|
||||
<Content id="RightPane">
|
||||
<Module moduleDefinitionID="SpaceDetails" title="SpaceDetails" container="Clear.ascx" />
|
||||
<Module moduleDefinitionID="SpaceSettings" title="SpaceSettings" container="Clear.ascx" roles="Administrator,Reseller" />
|
||||
<Module moduleDefinitionID="SpaceTools" title="SpaceTools" container="Clear.ascx" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<!-- Nested Spaces Page -->
|
||||
<Page name="NestedSpaces" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="NestedSpaces" title="NestedSpaces" icon="sphere_down_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
|
||||
|
||||
<Page name="SpaceOrganizationHostedSharePoint" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="HostedSolutionMenu" title="HostedSolutionMenu" container="Clear.ascx">
|
||||
<ModuleData ref="HostedSolutionMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="HostedSharePointSiteCollections" title="HostedSharePointSiteCollections" icon="colors_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceDomains" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="Domains" title="Domains" icon="world_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceWeb" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="WebSites" title="WebSites" icon="location_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceWebSites" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="WebSites" title="WebSites" icon="location_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceWebIPAddresses" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="WebSiteIPAddresses" title="WebSiteIPAddresses" icon="adress_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceFtpAccounts" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="FtpAccounts" title="FtpAccounts" icon="folder_up_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMail" roles="*" hidden="True"/>
|
||||
<Page name="SpaceMailAccounts" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="MailAccounts" title="MailAccounts" icon="accounting_mail_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMailForwardings" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="MailForwardings" title="MailForwardings" icon="safe-mail_next_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMailGroups" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="MailGroups" title="MailGroups" icon="contacts_mail_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMailLists" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="MailLists" title="MailLists" icon="discussion_group_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMailDomains" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="MailDomains" title="MailDomains" icon="web_mail_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceDatabases" roles="*" hidden="True"/>
|
||||
<Page name="SpaceMsSql2000" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SqlDatabases" title="Sql2000Databases" icon="mssql_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MsSQL2000" />
|
||||
</Settings>
|
||||
</Module>
|
||||
<Module moduleDefinitionID="SqlUsers" title="Sql2000Users" icon="db_user_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MsSQL2000" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMsSql2005" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SqlDatabases" title="Sql2005Databases" icon="mssql_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MsSQL2005" />
|
||||
</Settings>
|
||||
</Module>
|
||||
<Module moduleDefinitionID="SqlUsers" title="Sql2005Users" icon="db_user_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MsSQL2005" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceMsSql2008" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SqlDatabases" title="Sql2008Databases" icon="mssql_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MsSQL2008" />
|
||||
</Settings>
|
||||
</Module>
|
||||
<Module moduleDefinitionID="SqlUsers" title="Sql2008Users" icon="db_user_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MsSQL2008" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceMySql4" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SqlDatabases" title="MySql4Databases" icon="mysql_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MySQL4" />
|
||||
</Settings>
|
||||
</Module>
|
||||
<Module moduleDefinitionID="SqlUsers" title="MySql4Users" icon="db_user_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MySQL4" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceMySql5" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SqlDatabases" title="MySql5Databases" icon="mysql_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MySQL5" />
|
||||
</Settings>
|
||||
</Module>
|
||||
<Module moduleDefinitionID="SqlUsers" title="MySql5Users" icon="db_user_48.png">
|
||||
<Settings>
|
||||
<Add name="GroupName" value="MySQL5" />
|
||||
</Settings>
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceSharedSSL" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SharedSSL" title="SharedSSL" icon="world_lock_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceAdvancedStatistics" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="AdvancedStatistics" title="AdvancedStatistics" icon="stadistics_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceOdbc" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ODBC" title="ODBC" icon="export_db_back_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceScheduledTasks" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ScheduledTasks" title="ScheduledTasks" icon="calendar_month_2_clock_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceFileManager" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="FileManager" title="FileManager" icon="cabinet_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceWebApplicationsGallery" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="WebApplicationsGallery" title="WebApplicationsGallery" container="Browse.ascx" icon="dvd_disc_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
|
||||
<Page name="SpaceSharePoint" roles="Administrator,Reseller,User" hidden="True"/>
|
||||
<Page name="SpaceSharePointSites" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="HostedSolutionMenu" title="HostedSolutionMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SharePointSites" title="SharePointSites" icon="colors_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SpaceSharePointUsers" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SharePointUsers" title="SharePointUsers" icon="user_48.png" />
|
||||
<Module moduleDefinitionID="SharePointGroups" title="SharePointGroups" icon="group_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="Backup" roles="Administrator,Reseller,User" hidden="True">
|
||||
<!-- Do not remove this stub page -->
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceExchangeServer" roles="Administrator,Reseller,User" hidden="True" skin="Exchange.ascx" adminskin="Exchange.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ExchangeServer" title="ExchangeServer" icon="" container="Exchange.ascx" admincontainer="Exchange.ascx"/>
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceVPS" roles="Administrator,Reseller,User" hidden="True" skin="VPS.ascx" adminskin="VPS.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="VPS" title="VirtualPrivateServers" icon="" container="VPS.ascx" admincontainer="VPS.ascx"/>
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceVPSForPC" roles="Administrator,Reseller,User" hidden="True" skin="VPS.ascx" adminskin="VPS.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="VPSForPC" title="VirtualPrivateServersForPrivateCloud" icon="" container="VPSForPC.ascx" admincontainer="VPSForPC.ascx"/>
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
|
||||
<Page name="OverusageReport" roles="Administrator,Reseller" hidden="True" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="OverusageReport" title="OverusageReport" container="Edit.ascx" icon="table_zoom_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
<Page name="Reporting" roles="Administrator,Reseller,User" enabled="false">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="User" title="User" container="Clear.ascx" />
|
||||
<Module moduleDefinitionID="HostingSpace" title="HostingSpace" container="Clear.ascx" />
|
||||
</Content>
|
||||
<Pages>
|
||||
<Page name="DiskspaceReport" roles="Administrator,Reseller,User" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="DiskspaceReport" title="DiskspaceReport" container="Edit.ascx" icon="table_zoom_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="BandwidthReport" roles="Administrator,Reseller,User" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="BandwidthReport" title="BandwidthReport" container="Edit.ascx" icon="table_zoom_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
</Pages>
|
||||
</Page>
|
||||
<Page name="Configuration" roles="Administrator" enabled="false">
|
||||
<Pages>
|
||||
<Page name="VirtualServers" roles="Administrator" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="VirtualServers" title="VirtualServers" container="Edit.ascx" icon="network_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="Servers" roles="Administrator" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="Servers" title="Servers" container="Edit.ascx" icon="computer_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="IPAddresses" roles="Administrator" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="IPAddresses" title="IPAddresses" container="Edit.ascx" icon="adress_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
<Page name="SystemSettings" roles="Administrator" skin="Browse1.ascx">
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="SystemSettings" title="SystemSettings" container="Edit.ascx" icon="tool_48.png" />
|
||||
</Content>
|
||||
</Page>
|
||||
</Pages>
|
||||
</Page>
|
||||
|
||||
<Page name="SpaceExchangeHostedEdition" roles="Administrator,Reseller,User" hidden="True">
|
||||
<Content id="LeftPane">
|
||||
<Module moduleDefinitionID="SpaceMenu" title="SpaceMenu" container="Clear.ascx">
|
||||
<ModuleData ref="SpaceMenu"/>
|
||||
</Module>
|
||||
</Content>
|
||||
<Content id="ContentPane">
|
||||
<Module moduleDefinitionID="ExchangeHostedEdition" title="ExchangeHostedEdition" icon="enterprise.png">
|
||||
</Module>
|
||||
</Content>
|
||||
</Page>
|
||||
|
||||
</Pages>
|
|
@ -0,0 +1,378 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="ModuleTitle.ecTermsAndConds" xml:space="preserve">
|
||||
<value>Terms And Conditions</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecStorefrontCatalogMenu" xml:space="preserve">
|
||||
<value>Catalog Menu</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecStoreCatalog" xml:space="preserve">
|
||||
<value>Store Catalog</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecShoppingCartMini" xml:space="preserve">
|
||||
<value>Mini Shopping Cart</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecOrderProduct" xml:space="preserve">
|
||||
<value>Order Product</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyShoppingCart" xml:space="preserve">
|
||||
<value>My Shopping Cart</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomerSignup" xml:space="preserve">
|
||||
<value>Customer Sign Up</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomerProfile" xml:space="preserve">
|
||||
<value>Customer Profile</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecSelectGateway" xml:space="preserve">
|
||||
<value>Select Payment Method</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecOrderCheckout" xml:space="preserve">
|
||||
<value>Order Checkout</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecOrderComplete" xml:space="preserve">
|
||||
<value>Order Complete</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecProductTypes" xml:space="preserve">
|
||||
<value>Product Types</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecStorefrontWelcome" xml:space="preserve">
|
||||
<value>Welcome</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecProducts" xml:space="preserve">
|
||||
<value>Products</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddons" xml:space="preserve">
|
||||
<value>Add-Ons</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCategories" xml:space="preserve">
|
||||
<value>Categories</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecSpacePlugins" xml:space="preserve">
|
||||
<value>Space Plugins</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecTLDExtensions" xml:space="preserve">
|
||||
<value>TLD Extensions</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecSystemSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddServiceAddon" xml:space="preserve">
|
||||
<value>Add Service Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditProductType" xml:space="preserve">
|
||||
<value>Edit Product Type</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddPlugin" xml:space="preserve">
|
||||
<value>Add Space Plugin</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddProduct" xml:space="preserve">
|
||||
<value>Add Product</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecConfigurePlugin" xml:space="preserve">
|
||||
<value>Configure Space Plugin</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditProduct" xml:space="preserve">
|
||||
<value>Edit Product</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyShoppingCartAddAddon" xml:space="preserve">
|
||||
<value>Add Product Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecSpaceInvoiceTemplate" xml:space="preserve">
|
||||
<value>Space Invoice Template</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecSpaceSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyInvoices" xml:space="preserve">
|
||||
<value>My Invoices</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyPayments" xml:space="preserve">
|
||||
<value>My Payments</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyServices" xml:space="preserve">
|
||||
<value>My Services</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecServiceUpgrade" xml:space="preserve">
|
||||
<value>Service Upgrade</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomersInvoices" xml:space="preserve">
|
||||
<value>Customers Invoices</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomersPayments" xml:space="preserve">
|
||||
<value>Customers Payments</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomersServices" xml:space="preserve">
|
||||
<value>Customers Services</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecViewInvoice" xml:space="preserve">
|
||||
<value>View Invoice</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecServiceDetails" xml:space="preserve">
|
||||
<value>View Service Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditAddon" xml:space="preserve">
|
||||
<value>Edit Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditCategory" xml:space="preserve">
|
||||
<value>Edit Category</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddProductType" xml:space="preserve">
|
||||
<value>Add Product Type</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditPlugin" xml:space="preserve">
|
||||
<value>Edit Space Plugin</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddAddon" xml:space="preserve">
|
||||
<value>Add Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddCategory" xml:space="preserve">
|
||||
<value>Add Category</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddTLDExtension" xml:space="preserve">
|
||||
<value>Add TLD Extension</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditTLDExtension" xml:space="preserve">
|
||||
<value>Edit TLD Extension</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyInvoiceDetails" xml:space="preserve">
|
||||
<value>My Invoice Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecMyServiceInfo" xml:space="preserve">
|
||||
<value>My Service Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecSpacePaymentDetails" xml:space="preserve">
|
||||
<value>Space Payment Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomerSignupCreateAccount" xml:space="preserve">
|
||||
<value>Create Customer Account</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecOrderFailed" xml:space="preserve">
|
||||
<value>Order Payment Failed</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecNotificationTemplate" xml:space="preserve">
|
||||
<value>Notifications Templates</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddDomainName" xml:space="preserve">
|
||||
<value>Add Domain Name</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddHostingAddon" xml:space="preserve">
|
||||
<value>Add Hosting Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddHostingPlan" xml:space="preserve">
|
||||
<value>Add Hosting Plan</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecDomainNames" xml:space="preserve">
|
||||
<value>Domain Names</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditDomainName" xml:space="preserve">
|
||||
<value>Edit Domain Name</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditHostingAddon" xml:space="preserve">
|
||||
<value>Edit Hosting Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditHostingPlan" xml:space="preserve">
|
||||
<value>Edit Hosting Plan</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecHostingAddons" xml:space="preserve">
|
||||
<value>Hosting Add-Ons</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecHostingPlans" xml:space="preserve">
|
||||
<value>Hosting Plans</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddBillingCycle" xml:space="preserve">
|
||||
<value>Add Billing Cycle</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecBillingCycles" xml:space="preserve">
|
||||
<value>Billing Cycles</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditBillingCycle" xml:space="preserve">
|
||||
<value>Edit Billing Cycle</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.QuickSignup" xml:space="preserve">
|
||||
<value>Quick Signup</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEcommerceSettings" xml:space="preserve">
|
||||
<value>Ecommerce Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCreditCardMethod" xml:space="preserve">
|
||||
<value>Credit Card Method Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ec2CheckoutMethod" xml:space="preserve">
|
||||
<value>2Checkout Method Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecOfflineMethod" xml:space="preserve">
|
||||
<value>Offline Payment Method Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecAddTax" xml:space="preserve">
|
||||
<value>Add Tax</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEditTax" xml:space="preserve">
|
||||
<value>Edit Tax</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecTaxations" xml:space="preserve">
|
||||
<value>Taxation Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecProductDetails" xml:space="preserve">
|
||||
<value>View Product Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecNotifyNewInvoice" xml:space="preserve">
|
||||
<value>New Invoice Notification</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecNotifyPaymentRcvd" xml:space="preserve">
|
||||
<value>Payment Received Notification</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecNotifySvcActivated" xml:space="preserve">
|
||||
<value>Service Activated Notification</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecNotifySvcSuspended" xml:space="preserve">
|
||||
<value>Service Suspended Notification</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecNotifySvcCancelled" xml:space="preserve">
|
||||
<value>Service Cancelled Notification</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecProvSettings" xml:space="preserve">
|
||||
<value>Provisioning Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecDirectiRegistrar" xml:space="preserve">
|
||||
<value>Directi Registrar Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecEnomRegistrar" xml:space="preserve">
|
||||
<value>Enom Registrar Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecOfflineRegistrar" xml:space="preserve">
|
||||
<value>Offline Registrar Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecViewCategory" xml:space="preserve">
|
||||
<value>View Products In Category</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecInvoiceDetails" xml:space="preserve">
|
||||
<value>View Invoice Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecStorefronWelcomeMsg" xml:space="preserve">
|
||||
<value>Storefront Welcome Message</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecPPAccountMethod" xml:space="preserve">
|
||||
<value>PayPal Account Method Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ecCustomerPaymentProfile" xml:space="preserve">
|
||||
<value>Manage Payment Profile</value>
|
||||
</data>
|
||||
</root>
|
|
@ -0,0 +1,336 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="PageName.ecTermsAndConditions" xml:space="preserve">
|
||||
<value>Terms And Conditions</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecTermsAndConditions" xml:space="preserve">
|
||||
<value>Terms And Conditions</value>
|
||||
</data>
|
||||
<data name="PageName.ecOnlineStore" xml:space="preserve">
|
||||
<value>Online Store</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecOnlineStore" xml:space="preserve">
|
||||
<value>Online Store</value>
|
||||
</data>
|
||||
<data name="PageName.ecOrderProduct" xml:space="preserve">
|
||||
<value>Order Product</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecOrderProduct" xml:space="preserve">
|
||||
<value>Order Product</value>
|
||||
</data>
|
||||
<data name="PageName.ecMyShoppingCart" xml:space="preserve">
|
||||
<value>My Cart</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecMyShoppingCart" xml:space="preserve">
|
||||
<value>My Cart</value>
|
||||
</data>
|
||||
<data name="PageName.ecCustomerSignup" xml:space="preserve">
|
||||
<value>Customer Sign Up</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecCustomerSignup" xml:space="preserve">
|
||||
<value>Customer Sign Up</value>
|
||||
</data>
|
||||
<data name="PageName.ecCustomerProfile" xml:space="preserve">
|
||||
<value>Customer Profile</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecCustomerProfile" xml:space="preserve">
|
||||
<value>Customer Profile</value>
|
||||
</data>
|
||||
<data name="PageName.ecSelectGateway" xml:space="preserve">
|
||||
<value>Select Payment Method</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecSelectGateway" xml:space="preserve">
|
||||
<value>Select Payment Method</value>
|
||||
</data>
|
||||
<data name="PageName.ecOrderCheckout" xml:space="preserve">
|
||||
<value>Order Checkout</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecOrderCheckout" xml:space="preserve">
|
||||
<value>Order Checkout</value>
|
||||
</data>
|
||||
<data name="PageName.ecOrderComplete" xml:space="preserve">
|
||||
<value>Order Complete</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecOrderComplete" xml:space="preserve">
|
||||
<value>Order Complete</value>
|
||||
</data>
|
||||
<data name="PageName.ecEcommerceAdmin" xml:space="preserve">
|
||||
<value>Ecommerce Admin</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecEcommerceAdmin" xml:space="preserve">
|
||||
<value>Ecommerce Settings</value>
|
||||
</data>
|
||||
<data name="PageName.ecProductTypes" xml:space="preserve">
|
||||
<value>Product Types</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecProductTypes" xml:space="preserve">
|
||||
<value>Product Types</value>
|
||||
</data>
|
||||
<data name="PageName.ecProducts" xml:space="preserve">
|
||||
<value>Products</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecProducts" xml:space="preserve">
|
||||
<value>Products</value>
|
||||
</data>
|
||||
<data name="PageName.ecHostingAddons" xml:space="preserve">
|
||||
<value>Hosting Add-Ons</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecHostingAddons" xml:space="preserve">
|
||||
<value>Hosting Add-Ons</value>
|
||||
</data>
|
||||
<data name="PageName.ecCategories" xml:space="preserve">
|
||||
<value>Categories</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecCategories" xml:space="preserve">
|
||||
<value>Categories</value>
|
||||
</data>
|
||||
<data name="PageName.ecSpacePlugins" xml:space="preserve">
|
||||
<value>Space Plugins</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecSpacePlugins" xml:space="preserve">
|
||||
<value>Space Plugins</value>
|
||||
</data>
|
||||
<data name="PageName.ecTLDExtensions" xml:space="preserve">
|
||||
<value>TLD Extensions</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecTLDExtensions" xml:space="preserve">
|
||||
<value>TLD Extensions</value>
|
||||
</data>
|
||||
<data name="PageName.ecCustomersPayments" xml:space="preserve">
|
||||
<value>Customers Payments</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecCustomersPayments" xml:space="preserve">
|
||||
<value>Customers Payments</value>
|
||||
</data>
|
||||
<data name="PageName.ecCustomersInvoices" xml:space="preserve">
|
||||
<value>Customers Invoices</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecCustomersInvoices" xml:space="preserve">
|
||||
<value>Customers Invoices</value>
|
||||
</data>
|
||||
<data name="PageName.ecCustomersServices" xml:space="preserve">
|
||||
<value>Customers Services</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecCustomersServices" xml:space="preserve">
|
||||
<value>Customers Services</value>
|
||||
</data>
|
||||
<data name="PageName.ecSystemSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecSystemSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="PageName.ecMyEcommerce" xml:space="preserve">
|
||||
<value>My Ecommerce</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecMyEcommerce" xml:space="preserve">
|
||||
<value>My Ecommerce</value>
|
||||
</data>
|
||||
<data name="PageName.ecMyPayments" xml:space="preserve">
|
||||
<value>My Payments</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecMyPayments" xml:space="preserve">
|
||||
<value>My Payments</value>
|
||||
</data>
|
||||
<data name="PageName.ecMyInvoices" xml:space="preserve">
|
||||
<value>My Invoices</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecMyInvoices" xml:space="preserve">
|
||||
<value>My Invoices</value>
|
||||
</data>
|
||||
<data name="PageName.ecMyServices" xml:space="preserve">
|
||||
<value>My Services</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecMyServices" xml:space="preserve">
|
||||
<value>My Services</value>
|
||||
</data>
|
||||
<data name="PageName.ecMyServiceUpgrade" xml:space="preserve">
|
||||
<value>Upgrade My Service</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecMyServiceUpgrade" xml:space="preserve">
|
||||
<value>Upgrade My Service</value>
|
||||
</data>
|
||||
<data name="PageName.ecProductAddOns" xml:space="preserve">
|
||||
<value>Product Add-Ons</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecProductAddOns" xml:space="preserve">
|
||||
<value>Product Add-Ons</value>
|
||||
</data>
|
||||
<data name="PageName.ecOrderFailed" xml:space="preserve">
|
||||
<value>Order Failed</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecOrderFailed" xml:space="preserve">
|
||||
<value>Order Failed</value>
|
||||
</data>
|
||||
<data name="PageName.ecDomainNames" xml:space="preserve">
|
||||
<value>Domain Names</value>
|
||||
</data>
|
||||
<data name="PageName.ecHostingPlans" xml:space="preserve">
|
||||
<value>Hosting Plans</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecDomainNames" xml:space="preserve">
|
||||
<value>Domain Names</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecHostingPlans" xml:space="preserve">
|
||||
<value>Hosting Plans</value>
|
||||
</data>
|
||||
<data name="PageName.ecBillingCycles" xml:space="preserve">
|
||||
<value>Billing Cycles</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecBillingCycles" xml:space="preserve">
|
||||
<value>Billing Cycles</value>
|
||||
</data>
|
||||
<data name="PageName.QuickSignup" xml:space="preserve">
|
||||
<value>Quick Signup</value>
|
||||
</data>
|
||||
<data name="PageTitle.QuickSignup" xml:space="preserve">
|
||||
<value>Quick Signup</value>
|
||||
</data>
|
||||
<data name="PageName.ecEcommerceSettings" xml:space="preserve">
|
||||
<value>Ecommerce Settings</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecEcommerceSettings" xml:space="preserve">
|
||||
<value>Ecommerce Settings</value>
|
||||
</data>
|
||||
<data name="PageName.ecTaxations" xml:space="preserve">
|
||||
<value>Taxation</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecTaxations" xml:space="preserve">
|
||||
<value>Taxation</value>
|
||||
</data>
|
||||
<data name="PageName.ecProductDetails" xml:space="preserve">
|
||||
<value>View Product Details</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecProductDetails" xml:space="preserve">
|
||||
<value>View Product Details</value>
|
||||
</data>
|
||||
<data name="PageName.ecViewCategory" xml:space="preserve">
|
||||
<value>View Products In Category</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecViewCategory" xml:space="preserve">
|
||||
<value>View Products In Category</value>
|
||||
</data>
|
||||
<data name="PageName.ecPaymentProfile" xml:space="preserve">
|
||||
<value>Payment Profile</value>
|
||||
</data>
|
||||
<data name="PageTitle.ecPaymentProfile" xml:space="preserve">
|
||||
<value>Payment Profile</value>
|
||||
</data>
|
||||
</root>
|
|
@ -0,0 +1,765 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="ModuleTitle.User" xml:space="preserve">
|
||||
<value>User</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpace" xml:space="preserve">
|
||||
<value>Hosting Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyWeb" xml:space="preserve">
|
||||
<value>My Web</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AccountCreationComplete" xml:space="preserve">
|
||||
<value>Account Creation Complete</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AccountCreationWizard" xml:space="preserve">
|
||||
<value>Account Creation Wizard</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AccountSettings" xml:space="preserve">
|
||||
<value>Account Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AccountsSynchronizationComplete" xml:space="preserve">
|
||||
<value>Accounts Synchronization Complete</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AccountSummaryLetter" xml:space="preserve">
|
||||
<value>Account Summary Letter</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddDomain" xml:space="preserve">
|
||||
<value>Add Domain</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddIPAddress" xml:space="preserve">
|
||||
<value>Add IP Address</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddMailDomainPointer" xml:space="preserve">
|
||||
<value>Add Mail Domain Pointer</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddNewDomain" xml:space="preserve">
|
||||
<value>Add New Domain</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddNewService" xml:space="preserve">
|
||||
<value>Add New Service</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddNewVirtualServer" xml:space="preserve">
|
||||
<value>Add New Virtual Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddServer" xml:space="preserve">
|
||||
<value>Add Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddSharedSSLFolder" xml:space="preserve">
|
||||
<value>Add Shared SSL Folder</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddVirtualDirectory" xml:space="preserve">
|
||||
<value>Add Virtual Directory</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddVirtualServerServices" xml:space="preserve">
|
||||
<value>Add Virtual Server Services</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddWebSite" xml:space="preserve">
|
||||
<value>Add Web Site</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AddWebSiteDomainPointer" xml:space="preserve">
|
||||
<value>Add Web Site Domain Pointer</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AdvancedStatistics" xml:space="preserve">
|
||||
<value>Advanced Web Statistics</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AdvancedStatisticsInstallation" xml:space="preserve">
|
||||
<value>Advanced Statistics Installation</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ApplicationsInstaller" xml:space="preserve">
|
||||
<value>Applications Installer</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebApplicationsGallery" xml:space="preserve">
|
||||
<value>Microsoft Web Application Gallery</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.AuditLog" xml:space="preserve">
|
||||
<value>Audit Log</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.BackupSharePointSite" xml:space="preserve">
|
||||
<value>Backup SharePoint Site</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.BackupSQLDatabase" xml:space="preserve">
|
||||
<value>Backup SQL Database</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.BandwidthReport" xml:space="preserve">
|
||||
<value>Bandwidth Report</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.CustomerSpaces" xml:space="preserve">
|
||||
<value>Customer Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.CustomizeSpaceGlobalDNSRecords" xml:space="preserve">
|
||||
<value>Customize Space Global DNS Records</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.DeleteHostingSpace" xml:space="preserve">
|
||||
<value>Delete Hosting Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.DeleteUserAccount" xml:space="preserve">
|
||||
<value>Delete User Account</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.DiskspaceReport" xml:space="preserve">
|
||||
<value>Disk Space Report</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.OverusageReport" xml:space="preserve">
|
||||
<value>Overusage Report</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.DiskSpaceSummary" xml:space="preserve">
|
||||
<value>Disk Space Summary</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WSPSQLDatabasesSettings" xml:space="preserve">
|
||||
<value>WebsitePanel SQL Databases Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WSPSQLUserSettings" xml:space="preserve">
|
||||
<value>WebsitePanel SQL User Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.DNSZoneRecords" xml:space="preserve">
|
||||
<value>DNS Zone Records</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Domains" xml:space="preserve">
|
||||
<value>Domains</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebsitePanelEnterpriseServerSettings" xml:space="preserve">
|
||||
<value>WebsitePanel Enterprise Server Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditAccountSettings" xml:space="preserve">
|
||||
<value>Edit Account Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditDomain" xml:space="preserve">
|
||||
<value>Edit Domain</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditHostingAddOn" xml:space="preserve">
|
||||
<value>Edit Hosting Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditHostingPlan" xml:space="preserve">
|
||||
<value>Edit Hosting Plan</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditHostingSpace" xml:space="preserve">
|
||||
<value>Edit Hosting Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditIconProperties" xml:space="preserve">
|
||||
<value>Edit Icon Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditIPAddress" xml:space="preserve">
|
||||
<value>Edit IP Address</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditPeerAccount" xml:space="preserve">
|
||||
<value>Edit Peer Account</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditUserDetails" xml:space="preserve">
|
||||
<value>Edit User Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EditVirtualServer" xml:space="preserve">
|
||||
<value>Edit Virtual Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.EnterpriseServer" xml:space="preserve">
|
||||
<value>Enterprise Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.FileManager" xml:space="preserve">
|
||||
<value>File Manager</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.FTPAccountProperties" xml:space="preserve">
|
||||
<value>FTP Account Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.FtpAccounts" xml:space="preserve">
|
||||
<value>FTP Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingAccountSettings" xml:space="preserve">
|
||||
<value>Hosting Account Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingAddons" xml:space="preserve">
|
||||
<value>Hosting Add-Ons</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingPlans" xml:space="preserve">
|
||||
<value>Hosting Plans</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceAddOn" xml:space="preserve">
|
||||
<value>Hosting Space Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceBandwidthDetails" xml:space="preserve">
|
||||
<value>Hosting Space Bandwidth Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceDetails" xml:space="preserve">
|
||||
<value>Hosting Space Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceDiskSpaceDetails" xml:space="preserve">
|
||||
<value>Hosting Space Disk Space Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceFiles" xml:space="preserve">
|
||||
<value>Hosting Space Files</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceSettings" xml:space="preserve">
|
||||
<value>Hosting Space Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostingSpaceSummaryLetter" xml:space="preserve">
|
||||
<value>Hosting Space Summary Information</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Icons" xml:space="preserve">
|
||||
<value>Icons</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.IconsPadSettings" xml:space="preserve">
|
||||
<value>Icons Pad Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.InstalledSharePointWebPartPackages" xml:space="preserve">
|
||||
<value>Installed SharePoint Web Part Packages</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.InstallSharePointWebPartsPackage" xml:space="preserve">
|
||||
<value>Install SharePoint Web Parts Package</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.InstallWebApplication" xml:space="preserve">
|
||||
<value>Install Web Application</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.DownloadWebApplication" xml:space="preserve">
|
||||
<value>Download Web Application</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebApplicationParameters" xml:space="preserve">
|
||||
<value>Web Application Parameters</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.IPAddresses" xml:space="preserve">
|
||||
<value>IP Addresses</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.IPAddressesManager" xml:space="preserve">
|
||||
<value>IP Addresses Manager</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SignIn" xml:space="preserve">
|
||||
<value>Sign In to Control Panel</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailAccountProperties" xml:space="preserve">
|
||||
<value>Mail Account Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailAccounts" xml:space="preserve">
|
||||
<value>Mail Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailDomainProperties" xml:space="preserve">
|
||||
<value>Mail Domain Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailDomains" xml:space="preserve">
|
||||
<value>Mail Domains</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailForwardingProperties" xml:space="preserve">
|
||||
<value>Mail Alias Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailForwardings" xml:space="preserve">
|
||||
<value>Mail Aliases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailGroupProperties" xml:space="preserve">
|
||||
<value>Mail Group Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailGroups" xml:space="preserve">
|
||||
<value>Mail Groups</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailListProperties" xml:space="preserve">
|
||||
<value>Mail List Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MailLists" xml:space="preserve">
|
||||
<value>Mail Lists</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ManageServerSystemProcesses" xml:space="preserve">
|
||||
<value>Manage Server System Processes</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ManageTerminalConnections" xml:space="preserve">
|
||||
<value>Manage Terminal Connections</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ManageWindowsServices" xml:space="preserve">
|
||||
<value>Manage Windows Services</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyDatabases" xml:space="preserve">
|
||||
<value>My Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyExtras" xml:space="preserve">
|
||||
<value>My Extras</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyHostingSpaces" xml:space="preserve">
|
||||
<value>My Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyMail" xml:space="preserve">
|
||||
<value>My Mail</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyPeers" xml:space="preserve">
|
||||
<value>My Peers</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MySpaces" xml:space="preserve">
|
||||
<value>My Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MySql4Databases" xml:space="preserve">
|
||||
<value>MySQL 4 Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MySql4Users" xml:space="preserve">
|
||||
<value>MySQL 4 Users</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MySql5Databases" xml:space="preserve">
|
||||
<value>MySQL 5 Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MySql5Users" xml:space="preserve">
|
||||
<value>MySQL 5 Users</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.MyUsers" xml:space="preserve">
|
||||
<value>My Users</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ODBC" xml:space="preserve">
|
||||
<value>ODBC Data Sources</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ODBCDSNProperties" xml:space="preserve">
|
||||
<value>ODBC DSN Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ODBCDSNs" xml:space="preserve">
|
||||
<value>ODBC DSNs</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.PasswordReminder" xml:space="preserve">
|
||||
<value>Password Reminder</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.PeerAccounts" xml:space="preserve">
|
||||
<value>Peer Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.RebootServer" xml:space="preserve">
|
||||
<value>Reboot Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.RestoreSharePointSite" xml:space="preserve">
|
||||
<value>Restore SharePoint Site</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.RestoreSQLDatabase" xml:space="preserve">
|
||||
<value>Restore SQL Database</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ScheduledTaskProperties" xml:space="preserve">
|
||||
<value>Scheduled Task Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ScheduledTasks" xml:space="preserve">
|
||||
<value>Scheduled Tasks</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SecuredFolderProperties" xml:space="preserve">
|
||||
<value>Secured Folder Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SecureGroupProperties" xml:space="preserve">
|
||||
<value>Secure Group Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SecureUserProperties" xml:space="preserve">
|
||||
<value>Secure User Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HeliconApeFolderProperties" xml:space="preserve">
|
||||
<value>.htaccess Folder Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HeliconApeFolderAuthProperties" xml:space="preserve">
|
||||
<value>.htaccess Folder Secure Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HeliconApeGroupProperties" xml:space="preserve">
|
||||
<value>Helicon Ape Group Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HeliconApeUserProperties" xml:space="preserve">
|
||||
<value>Helicon Ape User Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SelectUsertoWorkFor" xml:space="preserve">
|
||||
<value>Select User to Work For</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ServerEventViewer" xml:space="preserve">
|
||||
<value>Server Event Viewer</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ServerProperties" xml:space="preserve">
|
||||
<value>Server Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Servers" xml:space="preserve">
|
||||
<value>Servers</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ServiceProperties" xml:space="preserve">
|
||||
<value>Service Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharedSSL" xml:space="preserve">
|
||||
<value>Shared SSL Folders</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharedSSLFolderProperties" xml:space="preserve">
|
||||
<value>Shared SSL Folder Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharedSSLFolders" xml:space="preserve">
|
||||
<value>Shared SSL Folders</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharePointGroup" xml:space="preserve">
|
||||
<value>SharePoint Group</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharePointGroups" xml:space="preserve">
|
||||
<value>SharePoint Groups</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharePointSite" xml:space="preserve">
|
||||
<value>SharePoint Site</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharePointSites" xml:space="preserve">
|
||||
<value>SharePoint Sites</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharePointUserProperties" xml:space="preserve">
|
||||
<value>SharePoint User Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SharePointUsers" xml:space="preserve">
|
||||
<value>SharePoint Users</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Sql2000Databases" xml:space="preserve">
|
||||
<value>SQL Server 2000 Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Sql2000Users" xml:space="preserve">
|
||||
<value>SQL Server 2000 Logins</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Sql2005Databases" xml:space="preserve">
|
||||
<value>SQL Server 2005 Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Sql2005Users" xml:space="preserve">
|
||||
<value>SQL Server 2005 Logins</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Sql2008Databases" xml:space="preserve">
|
||||
<value>SQL Server 2008 Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Sql2008Users" xml:space="preserve">
|
||||
<value>SQL Server 2008 Logins</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SQLDatabaseProperties" xml:space="preserve">
|
||||
<value>SQL Database Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SQLDatabases" xml:space="preserve">
|
||||
<value>SQL Databases</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SQLUserProperties" xml:space="preserve">
|
||||
<value>SQL User Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SQLUsers" xml:space="preserve">
|
||||
<value>SQL Users</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SynchronizeDotNetNukeWebsitePanelUserAccounts" xml:space="preserve">
|
||||
<value>Synchronize DotNetNuke - WebsitePanel User Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountProperties" xml:space="preserve">
|
||||
<value>User Account Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserHostingSpaces" xml:space="preserve">
|
||||
<value>User Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Users" xml:space="preserve">
|
||||
<value>Users</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UsersWizard" xml:space="preserve">
|
||||
<value>User Creation Wizard</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.VirtualDirectoryProperties" xml:space="preserve">
|
||||
<value>Virtual Directory Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.VirtualServers" xml:space="preserve">
|
||||
<value>Virtual Servers</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebApplicationsInstaller" xml:space="preserve">
|
||||
<value>Web Applications Installer</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebSiteProperties" xml:space="preserve">
|
||||
<value>Web Site Properties</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebSites" xml:space="preserve">
|
||||
<value>Web Sites</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WorkFor" xml:space="preserve">
|
||||
<value>Work For</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.InstallationComplete" xml:space="preserve">
|
||||
<value>Installation Complete</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserNotes" xml:space="preserve">
|
||||
<value>User Account Notes</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserSpaces" xml:space="preserve">
|
||||
<value>Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserCustomersSummary" xml:space="preserve">
|
||||
<value>Customers</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserDeleteUserAccount" xml:space="preserve">
|
||||
<value>Delete User Account</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserDetails" xml:space="preserve">
|
||||
<value>User Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserMenu" xml:space="preserve">
|
||||
<value>User</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserResellerSettings" xml:space="preserve">
|
||||
<value>Reseller Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserTools" xml:space="preserve">
|
||||
<value>User Tools</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceDetails" xml:space="preserve">
|
||||
<value>Space Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceMenu" xml:space="preserve">
|
||||
<value>Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceNestedSpacesSummary" xml:space="preserve">
|
||||
<value>Nested Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceNotes" xml:space="preserve">
|
||||
<value>Notes</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceQuotas" xml:space="preserve">
|
||||
<value>Space Quotas</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.CreateNewOrganization" xml:space="preserve">
|
||||
<value>Create New Organization</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceSettings" xml:space="preserve">
|
||||
<value>Reseller Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceTools" xml:space="preserve">
|
||||
<value>Space Tools</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.LoggedUserDetails" xml:space="preserve">
|
||||
<value>My Account Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountChangePassword" xml:space="preserve">
|
||||
<value>Change Password</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountEditDetails" xml:space="preserve">
|
||||
<value>User Account Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountSummaryLetter" xml:space="preserve">
|
||||
<value>User Account Summary</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceSummaryLetter" xml:space="preserve">
|
||||
<value>Hosting Space Summary Information</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.BackupSpace" xml:space="preserve">
|
||||
<value>Backup Hosting Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.BackupUser" xml:space="preserve">
|
||||
<value>Backup User Account Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ImportSpaceResources" xml:space="preserve">
|
||||
<value>Import Hosting Space Resources</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.RestoreSpace" xml:space="preserve">
|
||||
<value>Restore Hosting Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.RestoreUser" xml:space="preserve">
|
||||
<value>Restore User Account Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.BackupServer" xml:space="preserve">
|
||||
<value>Backup Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.RestoreServer" xml:space="preserve">
|
||||
<value>Restore Server</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.NestedSpaces" xml:space="preserve">
|
||||
<value>Nested Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceDeleteSpace" xml:space="preserve">
|
||||
<value>Delete Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceEditAddon" xml:space="preserve">
|
||||
<value>Add/Edit Space Add-On</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceEditDetails" xml:space="preserve">
|
||||
<value>Space Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceEditDnsRecords" xml:space="preserve">
|
||||
<value>Space DNS Records</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceSettingsEditor" xml:space="preserve">
|
||||
<value>Edit Space Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SpaceViewQuotas" xml:space="preserve">
|
||||
<value>Space Resource Quotas</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountMailTemplateSettings" xml:space="preserve">
|
||||
<value>User Account Mail Templates</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountPolicySettings" xml:space="preserve">
|
||||
<value>User Account Policies</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountSettingsEditor" xml:space="preserve">
|
||||
<value>User Account Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserCreateSpace" xml:space="preserve">
|
||||
<value>Create Hosting Space</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserCreateUserAccount" xml:space="preserve">
|
||||
<value>Create User Account</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserCustomers" xml:space="preserve">
|
||||
<value>Customer User Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserPeers" xml:space="preserve">
|
||||
<value>Peer Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SystemSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SearchSpaces" xml:space="preserve">
|
||||
<value>Search Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SearchUsers" xml:space="preserve">
|
||||
<value>Search User Accounts</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.TasksTaskDetails" xml:space="preserve">
|
||||
<value>Task Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.Tasks" xml:space="preserve">
|
||||
<value>Tasks</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedSharePointSiteCollection" xml:space="preserve">
|
||||
<value>SharePoint Site Collection</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedSharePointSiteCollections" xml:space="preserve">
|
||||
<value>Hosted SharePoint Site Collections</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedSharePointBackupSiteCollection" xml:space="preserve">
|
||||
<value>Backup Site Collection</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedSharePointRestoreSiteCollection" xml:space="preserve">
|
||||
<value>Restore Site Collection</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebSiteIPAddresses" xml:space="preserve">
|
||||
<value>Web Site IP Addresses</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.WebSitesAllocateIPAddresses" xml:space="preserve">
|
||||
<value>Allocate Web Site IP Addresses</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.ExchangeHostedEdition" xml:space="preserve">
|
||||
<value>Exchange Hosting Mode</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeAddOrganizationDomain" xml:space="preserve">
|
||||
<value>Add Organization Domain</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeCreateOrganization" xml:space="preserve">
|
||||
<value>Create New Exchange 2010 Organization</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeDeleteOrganization" xml:space="preserve">
|
||||
<value>Delete Organization</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeOrganizationDetails" xml:space="preserve">
|
||||
<value>Organization Details</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeUpdateOrganizationCatchAll" xml:space="preserve">
|
||||
<value>Update Organization Catch-All</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeUpdateOrganizationQuotas" xml:space="preserve">
|
||||
<value>Update Organization Quotas</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.HostedExchangeUpdateOrganizationServicePlan" xml:space="preserve">
|
||||
<value>Update Organization Service Plan</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SystemCenterServerAddresses" xml:space="preserve">
|
||||
<value>System Center Server Addresses</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.UserAccountVLanCreate" xml:space="preserve">
|
||||
<value>Add VLan to user</value>
|
||||
</data>
|
||||
<data name="ModuleTitle.SetupControlPanelAccounts" xml:space="preserve">
|
||||
<value>Setup WebsitePanel Accounts</value>
|
||||
</data>
|
||||
</root>
|
|
@ -0,0 +1,462 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="PageName.Login" xml:space="preserve">
|
||||
<value>Sign In</value>
|
||||
</data>
|
||||
<data name="PageTitle.Login" xml:space="preserve">
|
||||
<value>Sign In</value>
|
||||
</data>
|
||||
<data name="PageName.LoggedUserDetails" xml:space="preserve">
|
||||
<value>My Account</value>
|
||||
</data>
|
||||
<data name="PageTitle.LoggedUserDetails" xml:space="preserve">
|
||||
<value>{user} - Edit Your Account</value>
|
||||
</data>
|
||||
<data name="PageName.SearchUsers" xml:space="preserve">
|
||||
<value>Search User Accounts</value>
|
||||
</data>
|
||||
<data name="PageTitle.SearchUsers" xml:space="preserve">
|
||||
<value>{user} - Search User Accounts</value>
|
||||
</data>
|
||||
<data name="PageName.SearchSpaces" xml:space="preserve">
|
||||
<value>Search Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="PageTitle.SearchSpaces" xml:space="preserve">
|
||||
<value>{user} - Search Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="PageName.Home" xml:space="preserve">
|
||||
<value>Account Home</value>
|
||||
</data>
|
||||
<data name="PageTitle.Home" xml:space="preserve">
|
||||
<value>{user} - Home</value>
|
||||
</data>
|
||||
<data name="PageName.UserCustomers" xml:space="preserve">
|
||||
<value>Customers</value>
|
||||
</data>
|
||||
<data name="PageTitle.UserCustomers" xml:space="preserve">
|
||||
<value>{user} - User Customers</value>
|
||||
</data>
|
||||
<data name="PageName.UserSpaces" xml:space="preserve">
|
||||
<value>Spaces</value>
|
||||
</data>
|
||||
<data name="PageTitle.UserSpaces" xml:space="preserve">
|
||||
<value>{user} - User Spaces</value>
|
||||
</data>
|
||||
<data name="PageName.UserPeers" xml:space="preserve">
|
||||
<value>Peers</value>
|
||||
</data>
|
||||
<data name="PageTitle.UserPeers" xml:space="preserve">
|
||||
<value>{user} - User Peers</value>
|
||||
</data>
|
||||
<data name="PageName.HostingPlans" xml:space="preserve">
|
||||
<value>Hosting Plans</value>
|
||||
</data>
|
||||
<data name="PageTitle.HostingPlans" xml:space="preserve">
|
||||
<value>{user} - Hosting Plans</value>
|
||||
</data>
|
||||
<data name="PageName.HostingAddons" xml:space="preserve">
|
||||
<value>Hosting Add-Ons</value>
|
||||
</data>
|
||||
<data name="PageTitle.HostingAddons" xml:space="preserve">
|
||||
<value>{user} - Hosting Add-Ons</value>
|
||||
</data>
|
||||
<data name="PageName.UserTasks" xml:space="preserve">
|
||||
<value>Running Tasks</value>
|
||||
</data>
|
||||
<data name="PageTitle.UserTasks" xml:space="preserve">
|
||||
<value>{user} - Running Tasks</value>
|
||||
</data>
|
||||
<data name="PageName.AuditLog" xml:space="preserve">
|
||||
<value>Audit Log</value>
|
||||
</data>
|
||||
<data name="PageTitle.AuditLog" xml:space="preserve">
|
||||
<value>{user} - Audit Log</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceHome" xml:space="preserve">
|
||||
<value>Space Home</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceHome" xml:space="preserve">
|
||||
<value>{user} - {space} - Space Home</value>
|
||||
</data>
|
||||
<data name="PageName.NestedSpaces" xml:space="preserve">
|
||||
<value>Nested Spaces</value>
|
||||
</data>
|
||||
<data name="PageTitle.NestedSpaces" xml:space="preserve">
|
||||
<value>{user} - {space} - Nested Hosting Spaces</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceDomains" xml:space="preserve">
|
||||
<value>Domains</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceDomains" xml:space="preserve">
|
||||
<value>{user} - {space} - Domains</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceOrganization" xml:space="preserve">
|
||||
<value>Organizations</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceOrganization" xml:space="preserve">
|
||||
<value>{user} - {space} - Organizations</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceWebSites" xml:space="preserve">
|
||||
<value>Web Sites</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceWebSites" xml:space="preserve">
|
||||
<value>{user} - {space} - Web Sites</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceFtpAccounts" xml:space="preserve">
|
||||
<value>FTP Accounts</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceFtpAccounts" xml:space="preserve">
|
||||
<value>{user} - {space} - FTP Accounts</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMail" xml:space="preserve">
|
||||
<value>Mail</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMail" xml:space="preserve">
|
||||
<value>[Not Set]</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMailAccounts" xml:space="preserve">
|
||||
<value>Accounts</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMailAccounts" xml:space="preserve">
|
||||
<value>{user} - {space} - Mail Accounts</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMailForwardings" xml:space="preserve">
|
||||
<value>Mail Aliases</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMailForwardings" xml:space="preserve">
|
||||
<value>{user} - {space} - Mail Aliases</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMailGroups" xml:space="preserve">
|
||||
<value>Groups</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMailGroups" xml:space="preserve">
|
||||
<value>{user} - {space} - Mail Groups</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMailLists" xml:space="preserve">
|
||||
<value>Lists</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMailLists" xml:space="preserve">
|
||||
<value>{user} - {space} - Mail Lists</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMailDomains" xml:space="preserve">
|
||||
<value>Domains</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMailDomains" xml:space="preserve">
|
||||
<value>{user} - {space} - Mail Domains</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceDatabases" xml:space="preserve">
|
||||
<value>Databases</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceDatabases" xml:space="preserve">
|
||||
<value>[Not Set]</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMsSql2000" xml:space="preserve">
|
||||
<value>SQL Server 2000</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMsSql2000" xml:space="preserve">
|
||||
<value>{user} - {space} - SQL Server 2000</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMsSql2005" xml:space="preserve">
|
||||
<value>SQL Server 2005</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMsSql2008" xml:space="preserve">
|
||||
<value>SQL Server 2008</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMsSql2008" xml:space="preserve">
|
||||
<value>{user} - {space} - SQL Server 2008</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMsSql2005" xml:space="preserve">
|
||||
<value>{user} - {space} - SQL Server 2005</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMySql4" xml:space="preserve">
|
||||
<value>MySQL 4.0</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMySql4" xml:space="preserve">
|
||||
<value>{user} - {space} - MySQL 4.0</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceMySql5" xml:space="preserve">
|
||||
<value>MySQL 5.x</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceMySql5" xml:space="preserve">
|
||||
<value>{user} - {space} - MySQL 5.x</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceSharedSSL" xml:space="preserve">
|
||||
<value>Shared SSL Folders</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceSharedSSL" xml:space="preserve">
|
||||
<value>{user} - {space} - Shared SSL Folders</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceAdvancedStatistics" xml:space="preserve">
|
||||
<value>Advanced Web Statistics</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceAdvancedStatistics" xml:space="preserve">
|
||||
<value>{user} - {space} - Advanced Web Statistics</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceOdbc" xml:space="preserve">
|
||||
<value>ODBC DSNs</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceOdbc" xml:space="preserve">
|
||||
<value>{user} - {space} - ODBC DSNs</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceScheduledTasks" xml:space="preserve">
|
||||
<value>Scheduled Tasks</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceScheduledTasks" xml:space="preserve">
|
||||
<value>{user} - {space} - Scheduled Tasks</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceFileManager" xml:space="preserve">
|
||||
<value>File Manager</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceFileManager" xml:space="preserve">
|
||||
<value>{user} - {space} - File Manager</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceApplicationsInstaller" xml:space="preserve">
|
||||
<value>Applications Installer</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceWebApplicationsGallery" xml:space="preserve">
|
||||
<value>Microsoft Web App Gallery</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceApplicationsInstaller" xml:space="preserve">
|
||||
<value>{user} - {space} - Applications Installer</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceSharePoint" xml:space="preserve">
|
||||
<value>SharePoint</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceSharePoint" xml:space="preserve">
|
||||
<value>[Not Set]</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceSharePointSites" xml:space="preserve">
|
||||
<value>SharePoint Sites</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceSharePointSites" xml:space="preserve">
|
||||
<value>{user} - {space} - SharePoint Sites</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceSharePointUsers" xml:space="preserve">
|
||||
<value>SharePoint Users</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceSharePointUsers" xml:space="preserve">
|
||||
<value>{user} - {space} - SharePoint Users & Groups</value>
|
||||
</data>
|
||||
<data name="PageName.Backup" xml:space="preserve">
|
||||
<value>[Not Set]</value>
|
||||
</data>
|
||||
<data name="PageTitle.Backup" xml:space="preserve">
|
||||
<value>[Not Set]</value>
|
||||
</data>
|
||||
<data name="PageName.Reporting" xml:space="preserve">
|
||||
<value>Reporting</value>
|
||||
</data>
|
||||
<data name="PageTitle.Reporting" xml:space="preserve">
|
||||
<value>Reporting</value>
|
||||
</data>
|
||||
<data name="PageName.DiskspaceReport" xml:space="preserve">
|
||||
<value>Disk Space Report</value>
|
||||
</data>
|
||||
<data name="PageName.OverusageReport" xml:space="preserve">
|
||||
<value>Overusage Report</value>
|
||||
</data>
|
||||
<data name="PageTitle.DiskspaceReport" xml:space="preserve">
|
||||
<value>{user} - Disk Space Report</value>
|
||||
</data>
|
||||
<data name="PageTitle.OverusageReport" xml:space="preserve">
|
||||
<value>{user} - Overusage Report</value>
|
||||
</data>
|
||||
<data name="PageName.BandwidthReport" xml:space="preserve">
|
||||
<value>Bandwidth Report</value>
|
||||
</data>
|
||||
<data name="PageTitle.BandwidthReport" xml:space="preserve">
|
||||
<value>{user} - Bandwidth Report</value>
|
||||
</data>
|
||||
<data name="PageName.Configuration" xml:space="preserve">
|
||||
<value>Configuration</value>
|
||||
</data>
|
||||
<data name="PageTitle.Configuration" xml:space="preserve">
|
||||
<value>Configuration</value>
|
||||
</data>
|
||||
<data name="PageName.VirtualServers" xml:space="preserve">
|
||||
<value>Virtual Servers</value>
|
||||
</data>
|
||||
<data name="PageTitle.VirtualServers" xml:space="preserve">
|
||||
<value>Virtual Servers</value>
|
||||
</data>
|
||||
<data name="PageName.Servers" xml:space="preserve">
|
||||
<value>Servers</value>
|
||||
</data>
|
||||
<data name="PageTitle.Servers" xml:space="preserve">
|
||||
<value>Servers</value>
|
||||
</data>
|
||||
<data name="PageName.IPAddresses" xml:space="preserve">
|
||||
<value>IP Addresses</value>
|
||||
</data>
|
||||
<data name="PageTitle.IPAddresses" xml:space="preserve">
|
||||
<value>IP Addresses</value>
|
||||
</data>
|
||||
<data name="PageName.SystemSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="PageTitle.SystemSettings" xml:space="preserve">
|
||||
<value>System Settings</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceExchangeServer" xml:space="preserve">
|
||||
<value>Hosted Organizations</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceExchangeServer" xml:space="preserve">
|
||||
<value>{user} - {space} - Hosted Organizations</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceOrganizationHostedSharePoint" xml:space="preserve">
|
||||
<value>Hosted SharePoint</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceOrganizationHostedSharePoint" xml:space="preserve">
|
||||
<value>{user} - {space} - Hosted SharePoint</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceVPS" xml:space="preserve">
|
||||
<value>Virtual Private Servers</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceVPS" xml:space="preserve">
|
||||
<value>{user} - {space} - Virtual Private Servers</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceWebIPAddresses" xml:space="preserve">
|
||||
<value>IP Addresses</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceWebIPAddresses" xml:space="preserve">
|
||||
<value>{user} - {space} - Web Site IP Addresses</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceWebApplicationsGallery" xml:space="preserve">
|
||||
<value>{user} - {space} - Microsoft Web Application Gallery</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceWeb" xml:space="preserve">
|
||||
<value>Web</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceWeb" xml:space="preserve">
|
||||
<value>{user} - {space} - Web</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceExchangeHostedEdition" xml:space="preserve">
|
||||
<value>Exchange Hosting Mode</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceExchangeHostedEdition" xml:space="preserve">
|
||||
<value>{user} - {space} - Exchange Hosting Mode</value>
|
||||
</data>
|
||||
<data name="PageName.SpaceVPSForPC" xml:space="preserve">
|
||||
<value>Virtual Private Cloud</value>
|
||||
</data>
|
||||
<data name="PageTitle.SpaceVPSForPC" xml:space="preserve">
|
||||
<value>{user} - {space} - Virtual Private Servers for Private Cloud</value>
|
||||
</data>
|
||||
</root>
|
|
@ -0,0 +1,50 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="GlobalSearch" Src="~/DesktopModules/WebsitePanel/SkinControls/GlobalSearch.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="UserSpaceBreadcrumb" Src="~/DesktopModules/WebsitePanel/SkinControls/UserSpaceBreadcrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="Search">
|
||||
<wsp:GlobalSearch ID="globalSearch" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:UserSpaceBreadcrumb ID="breadcrumb" runat="server"/>
|
||||
</div>
|
||||
|
||||
<div id="ContentOneColumn">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,56 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="GlobalSearch" Src="~/DesktopModules/WebsitePanel/SkinControls/GlobalSearch.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="UserSpaceBreadcrumb" Src="~/DesktopModules/WebsitePanel/SkinControls/UserSpaceBreadcrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" AsyncPostBackTimeout="1800" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="Search">
|
||||
<wsp:GlobalSearch ID="globalSearch" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:UserSpaceBreadcrumb ID="breadcrumb" runat="server"/>
|
||||
</div>
|
||||
|
||||
<div id="Left">
|
||||
<asp:PlaceHolder ID="LeftPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
|
||||
<div id="Content">
|
||||
<div id="CenterOneColumn">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,59 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="GlobalSearch" Src="~/DesktopModules/WebsitePanel/SkinControls/GlobalSearch.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="UserSpaceBreadcrumb" Src="~/DesktopModules/WebsitePanel/SkinControls/UserSpaceBreadcrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="Search">
|
||||
<wsp:GlobalSearch ID="globalSearch" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:UserSpaceBreadcrumb ID="breadcrumb" runat="server"/>
|
||||
</div>
|
||||
|
||||
<div id="Left">
|
||||
<asp:PlaceHolder ID="LeftPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
|
||||
<div id="Content">
|
||||
<div id="Center">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
<div id="Right">
|
||||
<asp:PlaceHolder ID="RightPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,50 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="GlobalSearch" Src="~/DesktopModules/WebsitePanel/SkinControls/GlobalSearch.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="UserSpaceBreadcrumb" Src="~/DesktopModules/WebsitePanel/SkinControls/UserSpaceBreadcrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" AsyncPostBackTimeout="1800" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="Search">
|
||||
<wsp:GlobalSearch ID="globalSearch" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:UserSpaceBreadcrumb ID="breadcrumb" runat="server"/>
|
||||
</div>
|
||||
|
||||
<div id="ContentOneColumn">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="SiteFooter1" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,50 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="GlobalSearch" Src="~/DesktopModules/WebsitePanel/SkinControls/GlobalSearch.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="UserSpaceBreadcrumb" Src="~/DesktopModules/WebsitePanel/SkinControls/UserSpaceBreadcrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="Search">
|
||||
<wsp:GlobalSearch ID="globalSearch" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:UserSpaceBreadcrumb ID="breadcrumb" runat="server"/>
|
||||
</div>
|
||||
|
||||
<div id="ContentOneColumnNoPadding">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,17 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
|
||||
<div id="LoginSkinOutline">
|
||||
<div id="LoginSkinContent">
|
||||
<div id="HeaderLogin">
|
||||
<a href='<%= Page.ResolveUrl("~/") %>'><asp:Image runat="server" SkinID="Logo" /></a>
|
||||
</div>
|
||||
<div id="ContentLogin">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="SiteFooter1" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,7 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<style> BODY { background-color: #FFFFFF!important; } </style>
|
||||
|
||||
<div id="SimpleWhiteOutline">
|
||||
<asp:PlaceHolder runat="server" ID="ContentPane" />
|
||||
</div>
|
|
@ -0,0 +1,40 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td> </td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="ContentOneColumn">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,51 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="CatalogBreadCrumb" Src="~/DesktopModules/Ecommerce/SkinControls/CatalogBreadCrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td> </td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:CatalogBreadCrumb runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Left">
|
||||
<asp:PlaceHolder ID="LeftPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
|
||||
<div id="StorefrontCenter">
|
||||
<div>
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,50 @@
|
|||
<%@ Control AutoEventWireup="true" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SiteFooter" Src="~/DesktopModules/WebsitePanel/SkinControls/SiteFooter.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="TopMenu" Src="~/DesktopModules/WebsitePanel/SkinControls/TopMenu.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="Logo" Src="~/DesktopModules/WebsitePanel/SkinControls/Logo.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="SignedInUser" Src="~/DesktopModules/WebsitePanel/SkinControls/SignedInUser.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="GlobalSearch" Src="~/DesktopModules/WebsitePanel/SkinControls/GlobalSearch.ascx" %>
|
||||
<%@ Register TagPrefix="wsp" TagName="UserSpaceBreadcrumb" Src="~/DesktopModules/WebsitePanel/SkinControls/UserSpaceBreadcrumb.ascx" %>
|
||||
|
||||
<asp:ScriptManager ID="scriptManager" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
<Services>
|
||||
<asp:ServiceReference Path="~/DesktopModules/WebsitePanel/TaskManager.asmx" />
|
||||
</Services>
|
||||
</asp:ScriptManager>
|
||||
|
||||
<div id="SkinOutline">
|
||||
<div id="SkinContent">
|
||||
<div id="Header">
|
||||
<table class="Container" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td class="Logo" rowspan="2">
|
||||
<wsp:Logo ID="logo" runat="server" />
|
||||
</td>
|
||||
<td class="Account">
|
||||
<wsp:SignedInUser ID="signedInUser" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="Search">
|
||||
<wsp:GlobalSearch ID="globalSearch" runat="server" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="TopMenu">
|
||||
<wsp:TopMenu ID="menu" runat="server" />
|
||||
</div>
|
||||
|
||||
<div id="Top">
|
||||
<wsp:UserSpaceBreadcrumb ID="breadcrumb" runat="server" CurrentNodeVisible="false" />
|
||||
</div>
|
||||
|
||||
<div id="ContentOneColumnNoPadding">
|
||||
<asp:PlaceHolder ID="ContentPane" runat="server"></asp:PlaceHolder>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer">
|
||||
<wsp:SiteFooter ID="footer" runat="server" />
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,41 @@
|
|||
<%--
|
||||
Default skin template. The following skins are provided as examples only.
|
||||
|
||||
1. Named control skin. The SkinId should be uniquely defined because
|
||||
duplicate SkinId's per control type are not allowed in the same theme.
|
||||
|
||||
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
|
||||
<AlternatingRowStyle BackColor="Blue" />
|
||||
</asp:GridView>
|
||||
|
||||
2. Default skin. The SkinId is not defined. Only one default
|
||||
control skin per control type is allowed in the same theme.
|
||||
|
||||
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
|
||||
--%>
|
||||
<asp:ImageButton SkinID="SearchButton" runat="server" ImageUrl="Images/search_button.png" ImageAlign="AbsMiddle" Width="21" Height="22"></asp:ImageButton>
|
||||
|
||||
<asp:ImageButton SkinID="EditFile" runat="server" ImageUrl="Images/edit_doc.gif" hspace="1" ImageAlign="AbsMiddle"></asp:ImageButton>
|
||||
<asp:ImageButton SkinID="EditPermissions" runat="server" ImageUrl="Images/lock_16.gif" hspace="1" ImageAlign="AbsMiddle"></asp:ImageButton>
|
||||
<asp:ImageButton SkinID="RenameFile" runat="server" ImageUrl="Images/rename.gif" hspace="1" ImageAlign="AbsMiddle"></asp:ImageButton>
|
||||
<asp:ImageButton SkinID="DeleteSmall" runat="server" ImageUrl="Images/delete_16.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
<asp:ImageButton SkinID="ExchangeDelete" runat="server" ImageUrl="Images/Exchange/delete.gif" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
<asp:ImageButton SkinID="EditSmall" runat="server" ImageUrl="Images/pencil_16.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
|
||||
<asp:ImageButton SkinID="Pause" runat="server" ImageUrl="Images/pause_32.png" ImageAlign="AbsMiddle" Width="32" Height="32" />
|
||||
<asp:ImageButton SkinID="Start" runat="server" ImageUrl="Images/play_32.png" ImageAlign="AbsMiddle" Width="32" Height="32"/>
|
||||
<asp:ImageButton SkinID="Stop" runat="server" ImageUrl="Images/stop_32.png" ImageAlign="AbsMiddle" Width="32" Height="32"/>
|
||||
<asp:ImageButton SkinID="Continue" runat="server" ImageUrl="Images/forward_32.png" ImageAlign="AbsMiddle" Width="32" Height="32"/>
|
||||
|
||||
<asp:ImageButton SkinID="PauseMedium" runat="server" ImageUrl="Images/pause_24.png" ImageAlign="AbsMiddle" Width="24" Height="24"/>
|
||||
<asp:ImageButton SkinID="StartMedium" runat="server" ImageUrl="Images/play_24.png" ImageAlign="AbsMiddle" Width="24" Height="24"/>
|
||||
<asp:ImageButton SkinID="StopMedium" runat="server" ImageUrl="Images/stop_24.png" ImageAlign="AbsMiddle" Width="24" Height="24"/>
|
||||
<asp:ImageButton SkinID="ContinueMedium" runat="server" ImageUrl="Images/play_24.png" ImageAlign="AbsMiddle" Width="24" Height="24"/>
|
||||
|
||||
<asp:ImageButton SkinID="PauseSmall" runat="server" ImageUrl="Images/pause_16.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
<asp:ImageButton SkinID="StartSmall" runat="server" ImageUrl="Images/play_16.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
<asp:ImageButton SkinID="StopSmall" runat="server" ImageUrl="Images/stop_16.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
<asp:ImageButton SkinID="ContinueSmall" runat="server" ImageUrl="Images/play_16.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
||||
|
||||
|
||||
<asp:ImageButton SkinID="VpsDelete" runat="server" ImageUrl="Images/VPS/delete.png" ImageAlign="AbsMiddle" Width="16" Height="16"/>
|
|
@ -0,0 +1,34 @@
|
|||
<%--
|
||||
Default skin template. The following skins are provided as examples only.
|
||||
|
||||
1. Named control skin. The SkinId should be uniquely defined because
|
||||
duplicate SkinId's per control type are not allowed in the same theme.
|
||||
|
||||
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
|
||||
<AlternatingRowStyle BackColor="Blue" />
|
||||
</asp:GridView>
|
||||
|
||||
2. Default skin. The SkinId is not defined. Only one default
|
||||
control skin per control type is allowed in the same theme.
|
||||
|
||||
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
|
||||
--%>
|
||||
|
||||
<asp:HyperLink runat="server" SkinID="CommandButton" CssClass="CommandButton"></asp:HyperLink>
|
||||
|
||||
<asp:LinkButton runat="server" SkinID="CommandButton" CssClass="CommandButton"></asp:LinkButton>
|
||||
<asp:LinkButton runat="server" SkinID="SmallCommandButton" CssClass="SmallCommandButton"></asp:LinkButton>
|
||||
|
||||
|
||||
<asp:Calendar runat="server" CssClass="Calendar"
|
||||
CellPadding="0" DayNameFormat="Shortest"
|
||||
Font-Names="Verdana" Font-Size="8pt" ForeColor="Black">
|
||||
<TitleStyle CssClass="CalendarTitle" BackColor="#E5F2FF" />
|
||||
<SelectedDayStyle CssClass="CalendarSelectedDate" />
|
||||
<TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
|
||||
<SelectorStyle CssClass="CalendarSelectedDate" />
|
||||
<WeekendDayStyle CssClass="CalendarWeekEnd" />
|
||||
<OtherMonthDayStyle ForeColor="#808080" />
|
||||
<NextPrevStyle VerticalAlign="Bottom" />
|
||||
<DayHeaderStyle CssClass="CalendarDayHeader" Font-Bold="True" Font-Size="7pt" />
|
||||
</asp:Calendar>
|
|
@ -0,0 +1,27 @@
|
|||
<%--
|
||||
Default skin template. The following skins are provided as examples only.
|
||||
|
||||
1. Named control skin. The SkinId should be uniquely defined because
|
||||
duplicate SkinId's per control type are not allowed in the same theme.
|
||||
|
||||
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
|
||||
<AlternatingRowStyle BackColor="Blue" />
|
||||
</asp:GridView>
|
||||
|
||||
2. Default skin. The SkinId is not defined. Only one default
|
||||
control skin per control type is allowed in the same theme.
|
||||
|
||||
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
|
||||
--%>
|
||||
|
||||
<asp:DataList runat="server" SkinID="HorizontalTabs" RepeatDirection="Horizontal">
|
||||
<ItemTemplate>
|
||||
<asp:LinkButton ID="btnSelectTab" runat="server" CommandName="select"></asp:LinkButton>
|
||||
</ItemTemplate>
|
||||
<SelectedItemTemplate>
|
||||
<b><i><asp:Label ID="lblTabName" runat="server"></asp:Label></i></b>
|
||||
</SelectedItemTemplate>
|
||||
</asp:DataList>
|
||||
|
||||
<asp:BulletedList runat="server" SkinID="BackupSetSummary" BulletStyle="Disc"
|
||||
Style="margin-top: 0px; padding-top: 0px;" />
|
|
@ -0,0 +1,87 @@
|
|||
<%--
|
||||
Default skin template. The following skins are provided as examples only.
|
||||
|
||||
1. Named control skin. The SkinId should be uniquely defined because
|
||||
duplicate SkinId's per control type are not allowed in the same theme.
|
||||
|
||||
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
|
||||
<AlternatingRowStyle BackColor="Blue" />
|
||||
</asp:GridView>
|
||||
|
||||
2. Default skin. The SkinId is not defined. Only one default
|
||||
control skin per control type is allowed in the same theme.
|
||||
|
||||
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
|
||||
--%>
|
||||
|
||||
<%-- Entity Icons --%>
|
||||
<asp:Image SkinID="Admin" runat="server" ImageUrl="icons/admin_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Admin128" runat="server" ImageUrl="icons/operator_128.png" ImageAlign="AbsMiddle" Width="128" Height="128"></asp:Image>
|
||||
<asp:Image SkinID="Reseller128" runat="server" ImageUrl="icons/admin_128.png" ImageAlign="AbsMiddle" Width="128" Height="128"></asp:Image>
|
||||
<asp:Image SkinID="User" runat="server" ImageUrl="icons/user_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="User128" runat="server" ImageUrl="icons/user_128.png" ImageAlign="AbsMiddle" Width="128" Height="128"></asp:Image>
|
||||
<asp:Image SkinID="Space" runat="server" ImageUrl="icons/sphere_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Space128" runat="server" ImageUrl="icons/sphere_128.png" ImageAlign="AbsMiddle" Width="128" Height="128"></asp:Image>
|
||||
|
||||
<%-- Command Icons --%>
|
||||
<asp:ImageButton SkinID="DropDown" runat="server" ImageUrl="images/user.gif" ImageAlign="AbsMiddle" hspace="3"></asp:ImageButton>
|
||||
|
||||
<%-- Shopping Cart Icons --%>
|
||||
<asp:Image SkinID="Basket128" runat="server" ImageUrl="icons/basket_128.png" ImageAlign="AbsMiddle" Width="128" Height="128"></asp:Image>
|
||||
<asp:Image SkinID="Storehouse128" runat="server" ImageUrl="icons/store_house_128.png" ImageAlign="AbsMiddle" Width="128" Height="128"></asp:Image>
|
||||
|
||||
|
||||
<asp:Image SkinID="Organization48" runat="server" ImageUrl="images/Exchange/company__48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="OrganizationAdd48" runat="server" ImageUrl="images/Exchange/company__add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
|
||||
<asp:Image SkinID="OrganizationUser48" runat="server" ImageUrl="images/Exchange/admin_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="OrganizationUserAdd48" runat="server" ImageUrl="images/Exchange/admin_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
|
||||
<%-- Exchange Icons --%>
|
||||
<asp:Image SkinID="ExchangeOrg48" runat="server" ImageUrl="images/Exchange/server_mail_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeOrgAdd48" runat="server" ImageUrl="images/Exchange/server_mail_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeSetup48" runat="server" ImageUrl="images/Exchange/setup_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeMailbox48" runat="server" ImageUrl="images/Exchange/accounting_mail_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeMailboxAdd48" runat="server" ImageUrl="images/Exchange/accounting_mail_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeContact48" runat="server" ImageUrl="images/Exchange/contacts_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeContactAdd48" runat="server" ImageUrl="images/Exchange/contacts_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangePublicFolder48" runat="server" ImageUrl="images/Exchange/publicfolder_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangePublicFolderAdd48" runat="server" ImageUrl="images/Exchange/publicfolder_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeDomainName48" runat="server" ImageUrl="images/Exchange/mail_domain_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeDomainNameAdd48" runat="server" ImageUrl="images/Exchange/mail_domain_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeStorage48" runat="server" ImageUrl="images/Exchange/storage_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeStorageConfig48" runat="server" ImageUrl="images/Exchange/storage_limits_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeList48" runat="server" ImageUrl="images/Exchange/distribution_list_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeListAdd48" runat="server" ImageUrl="images/Exchange/distribution_list_add_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeActiveSyncConfig48" runat="server" ImageUrl="images/Exchange/activesync_config_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeOrganization" runat="server" ImageUrl="images/Exchange/building.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ExchangeModule" runat="server" ImageUrl="images/Exchange/building.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="SharePointModule" runat="server" ImageUrl="images/Exchange/building.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
|
||||
<asp:Image SkinID="SharePointSiteCollection48" runat="server" ImageUrl="images/colors_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
|
||||
|
||||
<asp:ImageButton SkinID="ExchangeAddressBook16" runat="server" ImageUrl="images/Exchange/address_book.gif" ImageAlign="AbsMiddle" Width="16" Height="16"></asp:ImageButton>
|
||||
<asp:Image SkinID="Checkbox16" runat="server" ImageUrl="images/Exchange/checkbox.png" ImageAlign="AbsMiddle" Width="16" Height="16"></asp:Image>
|
||||
<asp:Image SkinID="CRMLogo" runat="server" ImageUrl="images/crm_48.png" ImageAlign="AbsMiddle"/>
|
||||
<asp:Image SkinID="OCSLogo" runat="server" ImageUrl="images/ocs48.png" ImageAlign="AbsMiddle"/>
|
||||
|
||||
<%-- BlackBerry Icons --%>
|
||||
<asp:Image SkinID="BlackBerryUsersLogo" runat="server" ImageUrl="images/bbuser48.png" ImageAlign="AbsMiddle"/>
|
||||
<%-- VPS Icons --%>
|
||||
<asp:Image SkinID="Servers48" runat="server" ImageUrl="images/VPS/servers_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Server48" runat="server" ImageUrl="images/Exchange/setup_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Dvd48" runat="server" ImageUrl="icons/dvd_disc_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="DvdDrive48" runat="server" ImageUrl="images/VPS/dvd_drive_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Network48" runat="server" ImageUrl="images/VPS/network_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="AuditLog48" runat="server" ImageUrl="icons/record_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Help48" runat="server" ImageUrl="images/VPS/help_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Snapshot48" runat="server" ImageUrl="images/VPS/snapshot_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="ServerConfig48" runat="server" ImageUrl="images/VPS/server_config_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="AddServer48" runat="server" ImageUrl="images/VPS/add_server_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="DeleteServer48" runat="server" ImageUrl="images/VPS/delete_server_48.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="EventLog48" runat="server" ImageUrl="images/VPS/event_log_icon.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="AlertLog48" runat="server" ImageUrl="images/VPS/alert_icon.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="Monitoring48" runat="server" ImageUrl="images/VPS/monitoring_icon.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="PCServers48" runat="server" ImageUrl="images/VPS/icon-home-botbar-cloud.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
||||
<asp:Image SkinID="VLanNetwork" runat="server" ImageUrl="images/VPSForPC/vlan_icon.png" ImageAlign="AbsMiddle" Width="48" Height="48"></asp:Image>
|
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 834 B |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 659 B |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 7.6 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 7.4 KiB |