[CMF-checkins] CVS: CMF/CMFSetup/www - siteAddForm.zpt:1.1

Tres Seaver tseaver at zope.com
Thu Jul 1 19:14:23 EDT 2004


Update of /cvs-repository/CMF/CMFSetup/www
In directory cvs.zope.org:/tmp/cvs-serv17492/www

Added Files:
	siteAddForm.zpt 
Log Message:


  - __init__.py:

    o Complete setup of "configured CMF Site" factory.

    o Register our default profile, so that we can use it.

  - actions.py:

    o Ensure we pass a proper ActionInformation object to 'listActions'.

    o Ensure we *don't* call 'listActions' on an old-style provider.

  - context.py:

    o Suppress Unicode IDs in ZODB.

  - interfaces.py:

    o Note that 'product' is an optional attribute of a profile.

  - registry.py:

    o Capture 'product' when registering profiles.

  - typeinfo.py:

    o Fix buglet in writing typeinfo XML files in subdir.

  - worfklow.py:

    o Fix buglet in writing definition XML files in subdir.

    o Fix buglets when workflow tool does not yet have overrides.


=== Added File CMF/CMFSetup/www/siteAddForm.zpt ===
<h1 tal:replace="structure here/manage_page_header" >PAGE HEADER</h1>

<p class="form-help">
Please select a setup profile (path) for this site
</p>

<form action="addConfiguredSite" method="post">
<table cellspacing="0" cellpadding="2" border="0">
  <tr>
    <td align="left" valign="top">
    <div class="form-label">
    Site Id
    </div>
    </td>
    <td align="left" valign="top">
    <input type="text" name="site_id" />
    </td>
  </tr>
  <tr>
    <td align="left" valign="top">
    <div class="form-label">
    Setup profile
    </div>
    </td>
    <td align="left" valign="top">
    <select name="profile_id">
      <option value="PROFILE_ID"
              tal:repeat="info options/profiles"
              tal:attributes="value info/id"
              tal:content="info/title">PROFILE TITLE</option>
    </select>
    </td>
  </tr>
  <tr>
    <td align="left" valign="top">
    </td>
    <td align="left" valign="top">
    <div class="form-element">
    <input class="form-element" type="submit" name="submit" 
     value=" Add " /> 
    </div>
    </td>
  </tr>
</table>
</form>
<h1 tal:replace="structure here/manage_page_footer" >PAGE FOOTER</h1>




More information about the CMF-checkins mailing list