From: <ian...@us...> - 2003-03-30 17:25:34
|
Update of /cvsroot/funformkit/FunFormKit In directory sc8-pr-cvs1:/tmp/cvs-serv16871 Modified Files: Field.py Log Message: Per Luke O.'s suggestion, image submits now take options for the images, small bug fix in same, docs. Index: Field.py =================================================================== RCS file: /cvsroot/funformkit/FunFormKit/Field.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Field.py 11 Feb 2003 07:52:08 -0000 1.22 --- Field.py 30 Mar 2003 17:25:31 -0000 1.23 *************** *** 637,643 **** name=nameMap(self.name()), value=self.description(), ! srg=self._imgSrc, ! height=self._imgHeight, ! width=self._imgWidth, border=self._border) --- 637,646 ---- name=nameMap(self.name()), value=self.description(), ! src=self.option('imgSrc', options=options, ! default=self._imgSrc), ! height=self.option('imgHeight', options=options, ! default=self._imgHeight), ! width=self.option('imgWidth', options=options, ! default=self._imgWidth), border=self._border) |