[Zapp-cvs-commit] ZApp/skins/zapp_generic zapp_cmf_object_edit_form.pt,1.2,1.3 zapp_cmf_object_get_i
Brought to you by:
sspickle
|
From: <ssp...@us...> - 2003-08-18 14:02:10
|
Update of /cvsroot/zapp/ZApp/skins/zapp_generic
In directory sc8-pr-cvs1:/tmp/cvs-serv27146/skins/zapp_generic
Modified Files:
zapp_cmf_object_edit_form.pt zapp_cmf_object_get_info.py
zapp_cmf_object_type_edit_form.pt
Log Message:
clean up zapp_cmf skins a bit..
Index: zapp_cmf_object_edit_form.pt
===================================================================
RCS file: /cvsroot/zapp/ZApp/skins/zapp_generic/zapp_cmf_object_edit_form.pt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** zapp_cmf_object_edit_form.pt 3 Jul 2003 22:30:02 -0000 1.2
--- zapp_cmf_object_edit_form.pt 18 Aug 2003 13:38:09 -0000 1.3
***************
*** 81,85 ****
<table tal:condition="python:subObject and (propType=='records')">
<tr>
! <td><input type="radio" name="propToChange" tal:attributes="value string:${propName}"></td>
<td tal:repeat="subDef subDefs"><span tal:content="string:${subDef/name}(${subDef/type})"/></td>
</tr>
--- 81,85 ----
<table tal:condition="python:subObject and (propType=='records')">
<tr>
! <td><span tal:content="string:${propName}: "/> <input type="radio" name="propToChange" tal:attributes="value string:${propName}"></td>
<td tal:repeat="subDef subDefs"><span tal:content="string:${subDef/name}(${subDef/type})"/></td>
</tr>
Index: zapp_cmf_object_get_info.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/skins/zapp_generic/zapp_cmf_object_get_info.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** zapp_cmf_object_get_info.py 25 Jun 2003 11:45:53 -0000 1.1
--- zapp_cmf_object_get_info.py 18 Aug 2003 13:38:09 -0000 1.2
***************
*** 1,3 ****
# Example code:
! return context.safeMiscData.getXMLAttr('questionInfo')
--- 1,3 ----
# Example code:
! return context.safeMiscData.getXMLDict()
Index: zapp_cmf_object_type_edit_form.pt
===================================================================
RCS file: /cvsroot/zapp/ZApp/skins/zapp_generic/zapp_cmf_object_type_edit_form.pt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** zapp_cmf_object_type_edit_form.pt 7 Aug 2003 13:50:32 -0000 1.3
--- zapp_cmf_object_type_edit_form.pt 18 Aug 2003 13:38:09 -0000 1.4
***************
*** 67,71 ****
subDefs subObject/zapp_properties | python:[]">
! <table tal:condition="python:propType in ['float','int','long','string','date','boolean']">
<tr><td><input type="checkbox" name="names:list" tal:attributes="value propName"/></td> <td tal:content="string:${propName}(${propType})"/></tr>
</table>
--- 67,71 ----
subDefs subObject/zapp_properties | python:[]">
! <table tal:condition="python:propType in ['float','int','long','string','date','boolean','text']">
<tr><td><input type="checkbox" name="names:list" tal:attributes="value propName"/></td> <td tal:content="string:${propName}(${propType})"/></tr>
</table>
|