[Zapp-cvs-commit] ZApp ZApp_MiscData.py,1.12,1.13 ZApp_RelationshipManager.py,1.3,1.4 addZApp_Specia
Brought to you by:
sspickle
|
From: <ssp...@us...> - 2003-07-03 18:23:15
|
Update of /cvsroot/zapp/ZApp
In directory sc8-pr-cvs1:/tmp/cvs-serv21670
Modified Files:
ZApp_MiscData.py ZApp_RelationshipManager.py
addZApp_SpecialistForm.dtml
Log Message:
fixed a couple more that turned up while working on image display issue..
Index: ZApp_MiscData.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_MiscData.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** ZApp_MiscData.py 25 Jun 2003 11:45:53 -0000 1.12
--- ZApp_MiscData.py 3 Jul 2003 18:23:10 -0000 1.13
***************
*** 366,371 ****
if p['id']:
val = getattr(self, p['id'])
! if p['type'] != 'string':
! val = `val`
result[p['id']] = val
--- 366,375 ----
if p['id']:
val = getattr(self, p['id'])
! if p['type'] == 'date':
! val = val.ISO()
! elif p['type'] != 'string':
! if val:
! val = `val`
!
result[p['id']] = val
Index: ZApp_RelationshipManager.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_RelationshipManager.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ZApp_RelationshipManager.py 3 Jul 2003 18:05:07 -0000 1.3
--- ZApp_RelationshipManager.py 3 Jul 2003 18:23:10 -0000 1.4
***************
*** 332,336 ****
ZApp_Specialist.setupClassInit(subClass=ZApp_RelationshipManager)
! manage_addZApp_RelationshipManagerForm = DTMLFile('addZApp_SpecialistForm',
globals(),
RacksMetaTypes = PlugInFinder(Specialist.RacksGroup),
--- 332,336 ----
ZApp_Specialist.setupClassInit(subClass=ZApp_RelationshipManager)
! manage_addZApp_RelationshipManagerForm = DTMLFile('addZApp_RelationshipManagerForm',
globals(),
RacksMetaTypes = PlugInFinder(Specialist.RacksGroup),
Index: addZApp_SpecialistForm.dtml
===================================================================
RCS file: /cvsroot/zapp/ZApp/addZApp_SpecialistForm.dtml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** addZApp_SpecialistForm.dtml 30 Jun 2003 20:25:05 -0000 1.3
--- addZApp_SpecialistForm.dtml 3 Jul 2003 18:23:10 -0000 1.4
***************
*** 12,21 ****
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
- <dtml-if ZApp_Specialist_SubclassID>
- &dtml-ZApp_Specialist_SubclassID;
- <INPUT type="hidden" name="id" value="&dtml-ZApp_Specialist_SubclassID;">
- <dtml-else>
<INPUT TYPE="TEXT" NAME="id" SIZE="40" VALUE="">
- </dtml-if>
</TD>
</TR>
--- 12,16 ----
***************
*** 56,64 ****
<TD></TD>
<TD>
- <dtml-if ZApp_subClass_addMethod>
- <INPUT class="form-element" name="&dtml-ZApp_subClass_addMethod;:method" "TYPE="SUBMIT" VALUE=" Add ">
- <dtml-else>
<INPUT class="form-element" name="manage_addZApp_Specialist:method" "TYPE="SUBMIT" VALUE=" Add ">
- </dtml-if>
</TD>
</TR>
--- 51,55 ----
|