]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Cambios estéticos, se borra el bit de ejecución en las templates y el ejemplo y
authorLeandro Lucarella <llucax@gmail.com>
Sat, 31 Jul 2004 03:20:35 +0000 (03:20 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 31 Jul 2004 03:20:35 +0000 (03:20 +0000)
se agrega ejemplo a documentación de doxygen de FileDir.

17 files changed:
lib/MLIB/Tpl/FileDir.php
test/Tpl/FileDir/TPLS/body.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/body/cell.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/body/row.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/body/table.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/footer/cell.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/footer/link_meconlib_dev.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/footer/row.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/footer/table.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/footer/text.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/header/cell.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/header/logo.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/header/row.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/header/table.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/TPLS/source/div.tpl.html [changed mode: 0755->0644]
test/Tpl/FileDir/img/logo.jpg [changed mode: 0755->0644]
test/Tpl/FileDir/test.php [moved from test/Tpl/FileDir/test_MLIB_Tpl_FileDir.php with 81% similarity, mode: 0644]

index d2cb5c3dee25d33791a3d0ec3c6293fdcf467ae7..e088b89dace2d2c1ccb558cc7a96bceae1f028ce 100644 (file)
@@ -31,6 +31,8 @@ require_once 'MLIB/Tpl.php';
  * Hooks vs IT (HIT) is a simple template implementation, based on hooks and IT 
  * template systems.
  *
  * Hooks vs IT (HIT) is a simple template implementation, based on hooks and IT 
  * template systems.
  *
+ * @exapmle MLIB/Tpl/FileDir/test.php
+ *
  * @note This class was originally created as a part of BIFE.
  * @author Leandro Lucarella <luca@llucax.hn.org>
  * @todo Add a global example and an explanation of the directory structure to
  * @note This class was originally created as a part of BIFE.
  * @author Leandro Lucarella <luca@llucax.hn.org>
  * @todo Add a global example and an explanation of the directory structure to
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
similarity index 81%
rename from test/Tpl/FileDir/test_MLIB_Tpl_FileDir.php
rename to test/Tpl/FileDir/test.php
index c2d77dd..e84c0e2
@@ -1,4 +1,4 @@
-<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
+<?php /* vim: set binary noeol et ts=4 sw=4 tw=80 foldmethod=marker:
 -------------------------------------------------------------------------------
                                     mlib
 -------------------------------------------------------------------------------
 -------------------------------------------------------------------------------
                                     mlib
 -------------------------------------------------------------------------------
@@ -22,7 +22,7 @@ Created: jue jul 29 09:42:56 ART 2004
 Authors: Martín Marrese <m_marrese@argentina.com>
          Leandro Lucarella <luca@llucax.hn.org>
 -------------------------------------------------------------------------------
 Authors: Martín Marrese <m_marrese@argentina.com>
          Leandro Lucarella <luca@llucax.hn.org>
 -------------------------------------------------------------------------------
-$Id: Tpl.php 584 2004-07-30 05:50:10Z luca $
+$Id$
 -----------------------------------------------------------------------------*/
 
 //{{{Explanation of this example.
 -----------------------------------------------------------------------------*/
 
 //{{{Explanation of this example.
@@ -32,6 +32,7 @@ $Id: Tpl.php 584 2004-07-30 05:50:10Z luca $
 //}}}
 
 //{{{ Require Once.
 //}}}
 
 //{{{ Require Once.
+ini_set('include_path', '../../../lib:' . ini_get('include_path'));
 require_once 'MLIB/Tpl/FileDir.php';
 //}}}
 
 require_once 'MLIB/Tpl/FileDir.php';
 //}}}
 
@@ -41,8 +42,8 @@ $img_source = './img/logo.jpg';
 //}}}
 
 //{{{ Create a page from a template.
 //}}}
 
 //{{{ Create a page from a template.
-$HIT =& new MLIB_Tpl_FileDir ('TPLS'); // Where TPLS is the subdirectory where I'll
-                                   // put my html_templates.
+$TPL =& new MLIB_Tpl_FileDir ('TPLS'); // Where TPLS is the subdirectory where I'll
+                                       // put my html_templates.
 //}}}
 
 //{{{ Show this source
 //}}}
 
 //{{{ Show this source
@@ -59,14 +60,14 @@ if (@$_GET['source'])
 else
 {
     //{{{ Add header group of templates.
 else
 {
     //{{{ Add header group of templates.
-    $HIT->pushGroup('header');
+    $TPL->pushGroup('header');
 
     //{{{ First ROW
     //{{{ Obtain the data cells of the first row.
 
     //{{{ First ROW
     //{{{ Obtain the data cells of the first row.
-    $cells = $HIT->parse('cell', 
+    $cells = $TPL->parse('cell', 
             array (
                 'ATTR' => 'width="20%" align="center"', //Sets the width of the cell.
             array (
                 'ATTR' => 'width="20%" align="center"', //Sets the width of the cell.
-                'CELL' => $HIT->parse('logo', //Add the logo image to this cell.
+                'CELL' => $TPL->parse('logo', //Add the logo image to this cell.
                     array(
                         'SRC' => $img_source,   //Source of the image.
                         'ATTR' => 'border="0"', //Image attributes
                     array(
                         'SRC' => $img_source,   //Source of the image.
                         'ATTR' => 'border="0"', //Image attributes
@@ -75,7 +76,7 @@ else
                     )
                 )
             );
                     )
                 )
             );
-    $cells.= $HIT->parse('cell', 
+    $cells.= $TPL->parse('cell', 
             array (
                 'ATTR' => 'width="80%" align="center"', //Sets the width of the cell.
                 'CELL' => 'MLIB_Tpl_FileDir Example' //Title.
             array (
                 'ATTR' => 'width="80%" align="center"', //Sets the width of the cell.
                 'CELL' => 'MLIB_Tpl_FileDir Example' //Title.
@@ -84,12 +85,12 @@ else
     //}}}
 
     // Obtain the first row of the header table.
     //}}}
 
     // Obtain the first row of the header table.
-    $rows = $HIT->parse('row', 'CELL', $cells);
+    $rows = $TPL->parse('row', 'CELL', $cells);
     //}}}
 
     //{{{ Second Row
     // Obtain the data cells of the first row.
     //}}}
 
     //{{{ Second Row
     // Obtain the data cells of the first row.
-    $cells = $HIT->parse('cell', 
+    $cells = $TPL->parse('cell', 
             array (
                 'ATTR' => 'colspan="2" align="center"', //Sets the width of the cell.
                 'CELL' => '<b>This is the second row of the header table.</b>'
             array (
                 'ATTR' => 'colspan="2" align="center"', //Sets the width of the cell.
                 'CELL' => '<b>This is the second row of the header table.</b>'
@@ -97,11 +98,11 @@ else
             );
 
     // Obtain the first row of the header table.
             );
 
     // Obtain the first row of the header table.
-    $rows.= $HIT->parse('row', 'CELL', $cells);
+    $rows.= $TPL->parse('row', 'CELL', $cells);
     //}}}
 
     // Obtain the parsed templates and add it to the header "main" template.
     //}}}
 
     // Obtain the parsed templates and add it to the header "main" template.
-    $HEADER = $HIT->parse(
+    $HEADER = $TPL->parse(
             'table',
             array (
                 'ATTR' => $table_width . ' border="1" align="center"',
             'table',
             array (
                 'ATTR' => $table_width . ' border="1" align="center"',
@@ -109,14 +110,14 @@ else
                 )
             );
     // Remove from the group stack the header group.
                 )
             );
     // Remove from the group stack the header group.
-    $HIT->popGroup('header');
+    $TPL->popGroup('header');
     //}}}
 
     //{{{ Add body group of templates.
     //}}}
 
     //{{{ Add body group of templates.
-    $HIT->pushGroup('body');
+    $TPL->pushGroup('body');
 
     //{{{ First ROW
 
     //{{{ First ROW
-    $cells = $HIT->parse('cell', 
+    $cells = $TPL->parse('cell', 
             array (
                 'ATTR' => 'valign="center" align="center" height="370"', //Sets the width of the cell.
                 'CELL' => '<font size="1">BODY</font>'    //Body Content
             array (
                 'ATTR' => 'valign="center" align="center" height="370"', //Sets the width of the cell.
                 'CELL' => '<font size="1">BODY</font>'    //Body Content
@@ -124,11 +125,11 @@ else
             );
 
     // Obtain the first row of the header table.
             );
 
     // Obtain the first row of the header table.
-    $rows = $HIT->parse('row', 'CELL', $cells);
+    $rows = $TPL->parse('row', 'CELL', $cells);
     //}}}
 
     // Obtain the parsed templates and add it to the header "main" template.
     //}}}
 
     // Obtain the parsed templates and add it to the header "main" template.
-    $BODY = $HIT->parse(
+    $BODY = $TPL->parse(
             'table',
             array (
                 'ATTR' => $table_width . ' border="0" align="center"',
             'table',
             array (
                 'ATTR' => $table_width . ' border="0" align="center"',
@@ -136,33 +137,33 @@ else
                 )
             );
     // Remove from the group stack the header group.
                 )
             );
     // Remove from the group stack the header group.
-    $HIT->popGroup('body');
+    $TPL->popGroup('body');
     //}}}
 
     //{{{ Add footer group of templates.
     //}}}
 
     //{{{ Add footer group of templates.
-    $HIT->pushGroup('footer');
+    $TPL->pushGroup('footer');
 
     //{{{ First ROW
     //{{{ Obtain the data cells of the first row.
 
     //{{{ First ROW
     //{{{ Obtain the data cells of the first row.
-    $cells = $HIT->parse('cell', 
+    $cells = $TPL->parse('cell', 
             array (
                 'ATTR' => 'align="center"', //Sets the width of the cell.
             array (
                 'ATTR' => 'align="center"', //Sets the width of the cell.
-                'CELL' => $HIT->parse(
+                'CELL' => $TPL->parse(
                     'text', 
                     'LINK',
                     'text', 
                     'LINK',
-                    $HIT->parse('link_meconlib_dev')
+                    $TPL->parse('link_meconlib_dev')
                     )
                 )
             );
     //}}}
 
     // Obtain the first row of the header table.
                     )
                 )
             );
     //}}}
 
     // Obtain the first row of the header table.
-    $rows = $HIT->parse('row', 'CELL', $cells);
+    $rows = $TPL->parse('row', 'CELL', $cells);
     //}}}
 
 
     // Obtain the parsed templates and add it to the header "main" template.
     //}}}
 
 
     // Obtain the parsed templates and add it to the header "main" template.
-    $FOOTER = $HIT->parse(
+    $FOOTER = $TPL->parse(
             'table',
             array (
                 'ATTR' => $table_width . ' border="1" align="center"',
             'table',
             array (
                 'ATTR' => $table_width . ' border="1" align="center"',
@@ -170,25 +171,25 @@ else
                 )
             );
     // Remove from the group stack the header group.
                 )
             );
     // Remove from the group stack the header group.
-    $HIT->popGroup('footer');
+    $TPL->popGroup('footer');
     //}}}
 
     //{{{ Add SOURCE group of templates.
     //}}}
 
     //{{{ Add SOURCE group of templates.
-    $HIT->pushGroup('source');
+    $TPL->pushGroup('source');
 
     // Obtain the parsed templates and add it to the header "main" template.
 
     // Obtain the parsed templates and add it to the header "main" template.
-    $SOURCE = $HIT->parse('div');
+    $SOURCE = $TPL->parse('div');
     // Remove from the group stack the header group.
     // Remove from the group stack the header group.
-    $HIT->popGroup('source');
+    $TPL->popGroup('source');
     //}}}
 }
 //}}}
 
 //{{{ Add all the parsed templates to the main template.
     //}}}
 }
 //}}}
 
 //{{{ Add all the parsed templates to the main template.
-$RESULT = $HIT->parse(
+$RESULT = $TPL->parse(
         'body',
         array (
         'body',
         array (
-            'TITLE'  => 'MLIB_Tpl_HIT Test',
+            'TITLE'  => 'MLIB_Tpl_FileDir Test',
             'BODY'   => $HEADER . $BODY . $FOOTER,
             'SOURCE' => $SOURCE
             )
             'BODY'   => $HEADER . $BODY . $FOOTER,
             'SOURCE' => $SOURCE
             )
@@ -199,4 +200,4 @@ $RESULT = $HIT->parse(
 echo $RESULT;
 //}}}
 
 echo $RESULT;
 //}}}
 
-?>
+?>
\ No newline at end of file