Update of /cvsroot/logicampus/logicampus/src/logicreate/lib/PBDO
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25188/src/logicreate/lib/PBDO
Modified Files:
LobClassMetadata.php LobMetadata.php
Log Message:
Adding source to the metadata.
Index: LobMetadata.php
===================================================================
RCS file: /cvsroot/logicampus/logicampus/src/logicreate/lib/PBDO/LobMetadata.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** LobMetadata.php 26 Sep 2007 20:30:37 -0000 1.2
--- LobMetadata.php 17 Feb 2008 04:35:03 -0000 1.3
***************
*** 12,15 ****
--- 12,16 ----
var $subdisc;
var $author;
+ var $source;
var $copyright;
var $license;
***************
*** 25,28 ****
--- 26,30 ----
'subdisc'=>'varchar',
'author'=>'varchar',
+ 'source'=>'varchar',
'copyright'=>'varchar',
'license'=>'varchar',
***************
*** 127,130 ****
--- 129,133 ----
$st->fields['subdisc'] = 'subdisc';
$st->fields['author'] = 'author';
+ $st->fields['source'] = 'source';
$st->fields['copyright'] = 'copyright';
$st->fields['license'] = 'license';
***************
*** 152,155 ****
--- 155,159 ----
$st->fields['subdisc'] = $this->subdisc;
$st->fields['author'] = $this->author;
+ $st->fields['source'] = $this->source;
$st->fields['copyright'] = $this->copyright;
$st->fields['license'] = $this->license;
***************
*** 179,182 ****
--- 183,187 ----
$st->fields['subdisc'] = $obj->subdisc;
$st->fields['author'] = $obj->author;
+ $st->fields['source'] = $obj->source;
$st->fields['copyright'] = $obj->copyright;
$st->fields['license'] = $obj->license;
***************
*** 248,251 ****
--- 253,257 ----
$x->subdisc = $row['subdisc'];
$x->author = $row['author'];
+ $x->source = $row['source'];
$x->copyright = $row['copyright'];
$x->license = $row['license'];
Index: LobClassMetadata.php
===================================================================
RCS file: /cvsroot/logicampus/logicampus/src/logicreate/lib/PBDO/LobClassMetadata.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** LobClassMetadata.php 2 Oct 2007 17:06:37 -0000 1.1
--- LobClassMetadata.php 17 Feb 2008 04:35:03 -0000 1.2
***************
*** 12,15 ****
--- 12,16 ----
var $subdisc;
var $author;
+ var $source;
var $copyright;
var $license;
***************
*** 25,28 ****
--- 26,30 ----
'subdisc'=>'varchar',
'author'=>'varchar',
+ 'source'=>'varchar',
'copyright'=>'varchar',
'license'=>'varchar',
***************
*** 127,130 ****
--- 129,133 ----
$st->fields['subdisc'] = 'subdisc';
$st->fields['author'] = 'author';
+ $st->fields['source'] = 'source';
$st->fields['copyright'] = 'copyright';
$st->fields['license'] = 'license';
***************
*** 152,155 ****
--- 155,159 ----
$st->fields['subdisc'] = $this->subdisc;
$st->fields['author'] = $this->author;
+ $st->fields['source'] = $this->source;
$st->fields['copyright'] = $this->copyright;
$st->fields['license'] = $this->license;
***************
*** 179,182 ****
--- 183,187 ----
$st->fields['subdisc'] = $obj->subdisc;
$st->fields['author'] = $obj->author;
+ $st->fields['source'] = $obj->source;
$st->fields['copyright'] = $obj->copyright;
$st->fields['license'] = $obj->license;
***************
*** 248,251 ****
--- 253,257 ----
$x->subdisc = $row['subdisc'];
$x->author = $row['author'];
+ $x->source = $row['source'];
$x->copyright = $row['copyright'];
$x->license = $row['license'];
|