[phpwebapp-commits] CVS: web_app/parser package.ParseRender.php,1.1.1.1,1.2 class.WebPage.php,1.3,1.
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-11 16:25:04
|
Update of /cvsroot/phpwebapp/web_app/parser In directory sc8-pr-cvs1:/tmp/cvs-serv29261/parser Modified Files: package.ParseRender.php class.WebPage.php class.WebObjectTpl.php class.WebObject.php class.WebClassTpl.php class.VarStack.php class.Template.php class.RepeatTpl.php class.Render.php class.Parser.php class.MainTpl.php class.IfTpl.php class.FileTpl.php Log Message: * added some comments (that are handled by phpDocumentor) for dividing the code into packages and subpackages * replaced .gif images by .png images Index: package.ParseRender.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/package.ParseRender.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** package.ParseRender.php 21 Feb 2003 08:16:57 -0000 1.1.1.1 --- package.ParseRender.php 11 Aug 2003 16:17:51 -0000 1.2 *************** *** 1,3 **** --- 1,6 ---- <?php + /** @package parser */ + + /** */ include_once PARSER_PATH."class.WebPage.php"; include_once PARSER_PATH."class.VarStack.php"; Index: class.WebPage.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebPage.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.WebPage.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.WebPage.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 1,4 **** <?php ! //include timing functions include_once TIMER_PATH."class.Timer.php"; --- 1,4 ---- <?php ! /** include timing functions */ include_once TIMER_PATH."class.Timer.php"; *************** *** 6,9 **** --- 6,11 ---- * Keeps the templates, recordsets etc. that are used * to build an HTML page. + * + * @package parser */ class WebPage Index: class.WebObjectTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebObjectTpl.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.WebObjectTpl.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.WebObjectTpl.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 1,4 **** <?php ! class WebObjectTpl extends Template { --- 1,4 ---- <?php ! /** @package parser */ class WebObjectTpl extends Template { Index: class.WebObject.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebObject.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.WebObject.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.WebObject.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 1,6 **** <?php ! //This is like an interface or a general class that should be ! //extended by all the PHP classes of the <WebClass>-es. ! class WebObject extends WebObjectTpl { --- 1,9 ---- <?php ! /** ! * This is like an interface or a general class that should be ! * extended by all the PHP classes of the <WebClass>-es. ! * ! * @package parser ! */ class WebObject extends WebObjectTpl { Index: class.WebClassTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebClassTpl.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** class.WebClassTpl.php 7 Aug 2003 16:12:22 -0000 1.4 --- class.WebClassTpl.php 11 Aug 2003 16:17:51 -0000 1.5 *************** *** 1,3 **** --- 1,4 ---- <?php + /** @package parser */ class WebClassTpl extends Template { Index: class.VarStack.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.VarStack.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.VarStack.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.VarStack.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 1,8 **** <?php ! /**********************************************************************/ ! /* CLASS VARSTACK ! /* A stack of associative arrays, keeping variables in nesting scopes. ! /**********************************************************************/ ! class VarStack { --- 1,7 ---- <?php ! /** ! * A stack of associative arrays, keeping variables in nesting scopes. ! * @package parser ! */ class VarStack { Index: class.Template.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.Template.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.Template.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.Template.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 1,6 **** <?php ! /** ! * class Template ! */ class Template { --- 1,4 ---- <?php ! /** @package parser */ class Template { Index: class.RepeatTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.RepeatTpl.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** class.RepeatTpl.php 16 Jul 2003 09:27:59 -0000 1.2 --- class.RepeatTpl.php 11 Aug 2003 16:17:51 -0000 1.3 *************** *** 2,5 **** --- 2,6 ---- /** * A template that is repeated for each record of a recordset. + * @package parser */ class RepeatTpl extends Template Index: class.Render.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.Render.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.Render.php 7 Aug 2003 16:12:22 -0000 1.3 --- class.Render.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 2,5 **** --- 2,6 ---- /** * Renders an HTML page from the templates and structures of the $webPage. + * @package parser */ class Render Index: class.Parser.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.Parser.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.Parser.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.Parser.php 11 Aug 2003 16:17:51 -0000 1.4 *************** *** 1,3 **** --- 1,4 ---- <?php + /** @package parser */ class Parser { Index: class.MainTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.MainTpl.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.MainTpl.php 16 Jul 2003 12:05:23 -0000 1.3 --- class.MainTpl.php 11 Aug 2003 16:17:52 -0000 1.4 *************** *** 2,5 **** --- 2,7 ---- /** * Represents the main (root) template in the page configuration. + * + * @package parser */ class MainTpl extends FileTpl Index: class.IfTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.IfTpl.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** class.IfTpl.php 16 Jul 2003 09:27:59 -0000 1.2 --- class.IfTpl.php 11 Aug 2003 16:17:52 -0000 1.3 *************** *** 2,5 **** --- 2,7 ---- /** * A template that is renderd if the condition evaluates to true. + * + * @package parser */ class IfTpl extends Template Index: class.FileTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.FileTpl.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** class.FileTpl.php 16 Jul 2003 09:27:59 -0000 1.2 --- class.FileTpl.php 11 Aug 2003 16:17:52 -0000 1.3 *************** *** 3,6 **** --- 3,8 ---- * A template that contains the content of a file that is * being parsed, e.g. the main file or a file that is included. + * + * @package parser */ class FileTpl extends Template |