[CMF-checkins] CVS: CMF/CMFSetup/xml - isrExport.xml:1.1
esrExport.xml:1.3 ssrExport.xml:NONE
Tres Seaver
tseaver at zope.com
Sun May 23 14:57:42 EDT 2004
Update of /cvs-repository/CMF/CMFSetup/xml
In directory cvs.zope.org:/tmp/cvs-serv26424/xml
Modified Files:
esrExport.xml
Added Files:
isrExport.xml
Removed Files:
ssrExport.xml
Log Message:
o interfaces.py:
- Centralize interface declarations.
- Remove notion of 'profile', for the nonce.
- Declare interfaces for registries.
- Declare interface for tool.
o registry.py:
- Rationalize names ( s/SetupStep/ImportStep/, s/ExportScript/ExportStep/).
- Add interface assertions, and test.
- Document common pseudo-interfaces for callables.
o tool.py:
- Skeleton implementation of tool interface.
=== Added File CMF/CMFSetup/xml/isrExport.xml ===
<?xml version="1.0"?>
<import-steps xmlns:tal="http://xml.zope.org/namespaces/tal">
<import-step id="STEP_ID"
version="STEP_VERSION"
handler="DOTTED.NAME"
title="TITLE"
tal:repeat="step here/listStepMetadata"
tal:attributes="id step/id;
version step/version;
handler step/handler;
title step/title
">
<dependency step="DEPENDENCY"
tal:repeat="dep step/dependencies"
tal:attributes="step dep" />
<span tal:replace="step/description">DESCRIPTION</span>
</import-step>
</import-steps>
=== CMF/CMFSetup/xml/esrExport.xml 1.2 => 1.3 ===
--- CMF/CMFSetup/xml/esrExport.xml:1.2 Fri May 14 08:45:30 2004
+++ CMF/CMFSetup/xml/esrExport.xml Sun May 23 14:57:40 2004
@@ -1,13 +1,13 @@
<?xml version="1.0"?>
-<export-scripts xmlns:tal="http://xml.zope.org/namespaces/tal">
- <export-script id="STEP_ID"
+<export-steps xmlns:tal="http://xml.zope.org/namespaces/tal">
+ <export-step id="STEP_ID"
handler="DOTTED.NAME"
title="TITLE"
- tal:repeat="script here/listScriptMetadata"
- tal:attributes="id script/id;
- handler script/handler;
- title script/title
+ tal:repeat="step here/listStepMetadata"
+ tal:attributes="id step/id;
+ handler step/handler;
+ title step/title
">
- <span tal:replace="script/description">DESCRIPTION</span>
- </export-script>
-</export-scripts>
+ <span tal:replace="step/description">DESCRIPTION</span>
+ </export-step>
+</export-steps>
=== Removed File CMF/CMFSetup/xml/ssrExport.xml ===
More information about the CMF-checkins
mailing list