[Zope-CVS] CVS: Packages/MoZTop/moztop/content/zopetop - connection-wizard.xul:1.1

Stephan Richter srichter@cbu.edu
Thu, 9 Jan 2003 15:30:50 -0500


Update of /cvs-repository/Packages/MoZTop/moztop/content/zopetop
In directory cvs.zope.org:/tmp/cvs-serv13633/content

Added Files:
	connection-wizard.xul 
Log Message:
Added a simple initial Connection Wizard. It does not do much.


=== Added File Packages/MoZTop/moztop/content/zopetop/connection-wizard.xul ===
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://moztop/content/moztop.css" type="text/css"?>

<wizard id="add-conn-wizard" title="Create a new Connection to Zope 3"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

  <wizardpage>
    <description>
      This Wizard will help you to connect to a new server.
    </description>
    <label value="Server:"/>
    <textbox id="field_servername" value="www.zope3.org"/>
    <label value="Port:"/>
    <textbox id="field_port" value="8081"/>
  </wizardpage>

  <wizardpage description="Available Users">
    <label value="Please select a user:"/>
    <listbox id="field_username">
      <listitem label="ev (Paul Everitt)"/>
      <listitem label="srichter (Stephan Richter)"/>
      <listitem label="zope3 (Zope 3 USer)"/>
    </listbox>
    <label value="Enter the password:"/>
    <textbox id="field_password" type="password" />
  </wizardpage>

</wizard>