Update of /cvsroot/phpwebapp/web_app/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16073/parser
Modified Files:
class.WebPage.php class.WebObject.php class.Template.php
Log Message:
Index: class.WebPage.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebPage.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** class.WebPage.php 15 Jul 2004 13:36:13 -0000 1.11
--- class.WebPage.php 15 Jul 2004 14:46:04 -0000 1.12
***************
*** 229,233 ****
function template_list()
{
! $html = "<a name='top'> </a>\n";
$html .= "<div class='webapp'>\n";
$html .= "<strong>List of Templates of the Page:</strong>\n";
--- 229,233 ----
function template_list()
{
! $html = "<a name='top' id='top'> </a>\n";
$html .= "<div class='webapp'>\n";
$html .= "<strong>List of Templates of the Page:</strong>\n";
***************
*** 262,266 ****
{
$tree = "<hr />\n";
! $tree .= "<a name='top'> </a>\n";
$tree .= "<pre class='webapp'>\n";
$tree .= "<strong>The tree structure of the templates:</strong>\n\n";
--- 262,266 ----
{
$tree = "<hr />\n";
! $tree .= "<a name='top' id='top'> </a>\n";
$tree .= "<pre class='webapp'>\n";
$tree .= "<strong>The tree structure of the templates:</strong>\n\n";
Index: class.WebObject.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebObject.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** class.WebObject.php 14 Jul 2004 14:45:41 -0000 1.8
--- class.WebObject.php 15 Jul 2004 14:46:04 -0000 1.9
***************
*** 202,206 ****
$html = "
<br />
! <a name='$this->id'> </a>[<a href='tree'>Top</a>]
<table bgcolor='#aaaaaa' border='0' cellspacing='1' cellpadding='2'>
<tr>
--- 202,206 ----
$html = "
<br />
! <a name='$this->id' id='$this->id'> </a>[<a href='tree'>Top</a>]
<table bgcolor='#aaaaaa' border='0' cellspacing='1' cellpadding='2'>
<tr>
Index: class.Template.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/parser/class.Template.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** class.Template.php 15 Jul 2004 13:36:13 -0000 1.11
--- class.Template.php 15 Jul 2004 14:46:04 -0000 1.12
***************
*** 158,162 ****
$htmlTable = "
<br />
! <a name='$this->id'> </a>[<a href='javascript: back()'>Back</a>]
<table class='webapp' width='90%' bgcolor='#aaaaaa' border='0' cellspacing='1' cellpadding='2'>". $this->attribs2html() . $this->vars2html() . "
<tr><td colspan='2' bgcolor='#f9f9ff'>
--- 158,162 ----
$htmlTable = "
<br />
! <a name='$this->id' id='$this->id'> </a>[<a href='javascript: back()'>Back</a>]
<table class='webapp' width='90%' bgcolor='#aaaaaa' border='0' cellspacing='1' cellpadding='2'>". $this->attribs2html() . $this->vars2html() . "
<tr><td colspan='2' bgcolor='#f9f9ff'>
|