Update of /cvsroot/phpwebapp/web_app/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16073/doc
Modified Files:
to_do.txt changes.txt
Log Message:
Index: to_do.txt
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/doc/to_do.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** to_do.txt 15 Jul 2004 13:36:13 -0000 1.4
--- to_do.txt 15 Jul 2004 14:46:04 -0000 1.5
***************
*** 4,7 ****
--- 4,14 ----
+ Why the navigation vars work even without a <RSNavig> template?
+ - <input type="checkbox" {{checked}} /> does not work anymore because
+ it is not well-formed xml. Think about a solution for this.
+ The same for 'selected'. Maybe it can be solved like this:
+ <input type="checkbox" checked="{{checked}}" />
+ and then the attribute 'checked' is removed (by the parser or the
+ renderer) if its value is '' (empty) or 'false'.
+
- Use 'tidy' or any shell scripts for converting from HTML to XHTML.
After this, use an XSLT transformer to reformat the templates
Index: changes.txt
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** changes.txt 14 Jul 2004 14:45:41 -0000 1.4
--- changes.txt 15 Jul 2004 14:46:04 -0000 1.5
***************
*** 9,12 ****
--- 9,16 ----
-------------------------------------------------------------------
-------------------------------------------------------------------
+ * - This is wrong: <If condition="'{{CurrPage}}'<>'{{PrevPage}}'">
+ This is wright: <If condition="'{{CurrPage}}'!='{{PrevPage}}'">
+ because the xml parser complains about the characters < and >
+ inside the value of an attribute.
-------------------------------------------------------------------
* Added the tag <example>. It can be used like this:
|