added initial sysadmin menu items and dialogs, fixed a few things about dialog
operation here and there
This commit is contained in:
35
venice-data/dialogs/sysadmin/email.dlg.xml
Normal file
35
venice-data/dialogs/sysadmin/email.dlg.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0"?>
|
||||
<!--
|
||||
The contents of this file are subject to the Mozilla Public License Version 1.1
|
||||
(the "License"); you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
||||
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
||||
language governing rights and limitations under the License.
|
||||
|
||||
The Original Code is the Venice Web Communities System.
|
||||
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
||||
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
-->
|
||||
<dialog name="email_props" defaultbutton="update">
|
||||
<title>E-Mail Parameters</title>
|
||||
<action>sysadmin/email.js.vs</action>
|
||||
|
||||
<text name="host" caption="SMTP host" required="true" size="32" maxlength="254"/>
|
||||
<text name="fromaddr" caption="Mail sender address" required="true" size="32" maxlength="254"/>
|
||||
<text name="fromname" caption="Mail sender name" required="true" size="32" maxlength="254"/>
|
||||
<text name="mailer" caption="X-Mailer name" required="true" size="32" maxlength="254"/>
|
||||
<text name="uinfo" caption="Header name for user info" required="true" size="32" maxlength="254"/>
|
||||
<textbox name="disclaimer" caption="User disclaimer header lines" required="true" rows="4" cols="60"
|
||||
maxlength="65535" wrap="soft"/>
|
||||
<textbox name="sig" caption="Automatic E-mail signature" required="true" rows="4" cols="60" maxlength="65535"
|
||||
wrap="soft"/>
|
||||
|
||||
<button name="update"/>
|
||||
<button name="cancel"/>
|
||||
</dialog>
|
||||
@@ -18,35 +18,46 @@
|
||||
-->
|
||||
<dialog name="frame_laf" defaultbutton="update">
|
||||
<title>Frame Look-And-Feel Parameters</title>
|
||||
<action>TODO</action>
|
||||
<action>sysadmin/frame_laf.js.vs</action>
|
||||
|
||||
<header name="bas_hdr" caption="Basic Information"/>
|
||||
<text name="sitetitle" caption="Site Title" required="true" size="32" maxlength="254"/>
|
||||
<text name="siteurl" caption="Site Base URL" required="true" size="32" maxlength="254"/>
|
||||
<text name="template" caption="Frame Template Resource" required="true" size="32" maxlength="254"
|
||||
caption2="(Do NOT change this unless you know what you are doing!)"/>
|
||||
<text name="fptitle" caption="Front Page Title" required="true" size="32" maxlength="254"/>
|
||||
<text name="sitetitle" caption="Site title" required="true" size="32" maxlength="254"/>
|
||||
<text name="siteurl" caption="Site base URL" required="true" size="32" maxlength="254"/>
|
||||
<text name="template" caption="Frame template resource" required="true" size="32" maxlength="254"
|
||||
caption2="(Do NOT change this unless you know what you're doing!)"/>
|
||||
<text name="fptitle" caption="Front page title" required="true" size="32" maxlength="254"/>
|
||||
|
||||
<header name="lay_hdr" caption="Layout Information"/>
|
||||
<int name="lbarwidth" caption="Left Frame Bar Width" caption2="(in pixels)" required="true" min="1" max="512"/>
|
||||
<int name="lbarwidth" caption="Left frame bar width" caption2="(in pixels)" required="true" min="1" max="512"/>
|
||||
<checkbox name="comments" caption="Display optional HTML comments"/>
|
||||
<checkbox name="smarttags" caption="Allow Microsoft Smart Tags to display on pages" caption2="(not recommended)"/>
|
||||
|
||||
<header name="logo_hdr" caption="Site Logo">
|
||||
This image is displayed in the upper-left portion of the frame.
|
||||
</header>
|
||||
<text name="logourl" caption="Site Logo URL" required="true" size="32" maxlength="254"/>
|
||||
<linktypelist name="logourltype" caption="Site Logo URL Type" required="true"/>
|
||||
<int name="logowidth" caption="Site Logo Width" caption2="(in pixels)" required="true" min="1" max="1024"/>
|
||||
<int name="logoheight" caption="Site Logo Height" caption2="(in pixels)" required="true" min="1" max="1024"/>
|
||||
<text name="logourl" caption="Site logo URL" required="true" size="32" maxlength="254"/>
|
||||
<linktypelist name="logourltype" caption="Site logo URL type" required="true"/>
|
||||
<int name="logowidth" caption="Site logo width" caption2="(in pixels)" required="true" min="1" max="1024"/>
|
||||
<int name="logoheight" caption="Site logo height" caption2="(in pixels)" required="true" min="1" max="1024"/>
|
||||
|
||||
<header name="foot_hdr" caption="Page Footer"/>
|
||||
<textbox name="footer" caption="Page footer text" required="true" rows="4" cols="60" maxlength="65535" wrap="soft"/>
|
||||
<int name="fscale" caption="Footer image scaling" caption2="(in percent)" required="true" min="1" max="100"/>
|
||||
<checkbox name="fbreak" caption="Add linebreaks to footer text"/>
|
||||
|
||||
<header name="icon_hdr" caption="Page Icon">
|
||||
This is a small image file of any format used as a page icon by Mozilla and other browsers.
|
||||
</header>
|
||||
<text name="pgi_url" caption="Page Icon URL" size="32" maxlength="254"/>
|
||||
<linktypelist name="pgi_urltype" caption="Page Icon URL Type"/>
|
||||
<text name="pgi_mime" caption="Page Icon MIME Type" size="32" maxlength="254"/>
|
||||
<text name="pgi_url" caption="Page icon URL" size="32" maxlength="254"/>
|
||||
<linktypelist name="pgi_urltype" caption="Page icon URL type"/>
|
||||
<text name="pgi_mime" caption="Page icon MIME type" size="32" maxlength="254"/>
|
||||
|
||||
<header name="fav_hdr" caption="Page FavIcon">
|
||||
This is a Microsoft-format .ICO file used by Internet Explorer.
|
||||
</header>
|
||||
<text name="fav_url" caption="FavIcon URL" size="32" maxlength="254"/>
|
||||
<linktypelist name="fav_urltype" caption="FavIcon URL Type"/>
|
||||
<linktypelist name="fav_urltype" caption="FavIcon URL type"/>
|
||||
|
||||
<button name="update"/>
|
||||
<button name="cancel"/>
|
||||
</dialog>
|
||||
|
||||
32
venice-data/dialogs/sysadmin/session.dlg.xml
Normal file
32
venice-data/dialogs/sysadmin/session.dlg.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0"?>
|
||||
<!--
|
||||
The contents of this file are subject to the Mozilla Public License Version 1.1
|
||||
(the "License"); you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
||||
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
||||
language governing rights and limitations under the License.
|
||||
|
||||
The Original Code is the Venice Web Communities System.
|
||||
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
||||
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
-->
|
||||
<dialog name="session_props" defaultbutton="update">
|
||||
<title>Session Parameters</title>
|
||||
<action>sysadmin/session.js.vs</action>
|
||||
|
||||
<text name="init" caption="Session initialization script resource" required="true" size="64" maxlength="254"
|
||||
caption2="(Do NOT change this unless you know what you're doing!)"/>
|
||||
<text name="cookie" caption="Login cookie name" required="true" size="64" maxlength="254"/>
|
||||
<int name="cookieage" caption="Maximum login cookie age" caption2="(in days)" required="true" min="1" max="1825"/>
|
||||
<int name="recovery" caption="Maximum password recovery time" caption2="(in minutes)" required="true"
|
||||
min="5" max="1440"/>
|
||||
|
||||
<button name="update"/>
|
||||
<button name="cancel"/>
|
||||
</dialog>
|
||||
Reference in New Issue
Block a user