Update of /cvsroot/phpwebapp/web_app/webobjects/dbTable
In directory sc8-pr-cvs1:/tmp/cvs-serv29261/webobjects/dbTable
Modified Files:
editRecord.php dbTable.php dbTable.html
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: editRecord.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/webobjects/dbTable/editRecord.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** editRecord.php 16 Jul 2003 09:27:59 -0000 1.2
--- editRecord.php 11 Aug 2003 16:17:51 -0000 1.3
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * @package webobjects
+ * @subpackage dbTable
+ */
class editRecord extends WebObject
{
Index: dbTable.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/webobjects/dbTable/dbTable.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** dbTable.php 16 Jul 2003 09:27:59 -0000 1.2
--- dbTable.php 11 Aug 2003 16:17:51 -0000 1.3
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * @package webobjects
+ * @subpackage dbTable
+ */
class dbTable extends WebObject
{
Index: dbTable.html
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/webobjects/dbTable/dbTable.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** dbTable.html 16 Jul 2003 09:27:59 -0000 1.2
--- dbTable.html 11 Aug 2003 16:17:51 -0000 1.3
***************
*** 21,25 ****
<If condition="{{selectable}}">
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_select('{{obj_id}}', '{{UNDEFINED}}')"><img border="0" src="{{GRAPHICS}}blue_tri.gif"></a>
</th>
</If>
--- 21,25 ----
<If condition="{{selectable}}">
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_select('{{obj_id}}', '{{UNDEFINED}}')"><img border="0" src="{{GRAPHICS}}blue_tri.png"></a>
</th>
</If>
***************
*** 43,47 ****
<td bgcolor="{{bgcolor}}">
<a href="javascript: dbTable_select('{{obj_id}}', '{{rec_id}}')">
! <img border="0" src="{{GRAPHICS}}blue_tri.gif">
</a>
</td>
--- 43,47 ----
<td bgcolor="{{bgcolor}}">
<a href="javascript: dbTable_select('{{obj_id}}', '{{rec_id}}')">
! <img border="0" src="{{./}}select.png">
</a>
</td>
|