[phpwebapp-commits] CVS: web_app/doc to_do.txt,1.7,1.8
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-21 17:04:44
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2634/doc Modified Files: to_do.txt Log Message: Index: to_do.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/to_do.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** to_do.txt 16 Jul 2004 14:45:14 -0000 1.7 --- to_do.txt 21 Jul 2004 17:04:31 -0000 1.8 *************** *** 1,8 **** ! - Use the new framework with the other web applications (app1, ! app2, app3, documentation, top10, smewapp, ilar, kushtetuta, ! doc-book, etc.) in order to test the new parser (and the XHTML conversion tool(s)). - Reformat all the files (automatically with emacs). --- 1,11 ---- ! - Use the new framework with the other web applications ! (top10, smewapp, ilar, kushtetuta, doc-book, etc.) ! in order to test the new parser (and the XHTML conversion tool(s)). + - Fix some bugs in the documentation application and improve its + contents a little bit. + - Reformat all the files (automatically with emacs). *************** *** 27,31 **** 2 - Replace 'not-equal operator' <> by !=, in the condition of <If> elements: <If condition="'{{CurrPage}}'<>'{{PrevPage}}'"> - This can be done automatically by a script. 3 - Replace the old usage of 'checked' in checkboxes with the new --- 30,33 ---- *************** *** 34,47 **** replace {{selected_var}} with selected="{{selected_var}}" ! 4 - Use 'tidy' (with some appropriate options) to convert all the ! templates to clean XHTML code (convert all tags and attributes ! to lowercase, replace <img...> by <img ... />, etc.). ! A script would be usefull for this. ! ! 5 - In case that some formating of tidy is not satisfactory, then ! use an XSLT transformer(stylesheet) and xsltproc to convert ! the templates to a better formating. ! 6 - Add these lines at the beginning of the root templates: <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" --- 36,46 ---- replace {{selected_var}} with selected="{{selected_var}}" ! 4 - Convert all the templates to clean XHTML code (convert all tags ! and attributes to lowercase, replace <img...> by <img ... />, ! etc.). Maybe 'tidy' can be used for this, however sometimes ! it does not produce the desired results (because of the framework ! tags). ! 5 - Add these lines at the beginning of the root templates: <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" *************** *** 49,50 **** --- 48,59 ---- <html xmlns="http://www.w3.org/1999/xhtml" lang="EN"> + 6 - Each xml parser is required to process the entities: & < + > " and ' and to return the corresponding character + instead of the entity itself. So, it is neccessary to replace + in the templates all the xml builtin entities, like this: + & --> &amp; + < --> &lt; + > --> &gt; + " --> &quot; + ' --> &apos; + |