Update of /cvsroot/phpwiki/phpwiki/lib/WikiDB
In directory usw-pr-cvs1:/tmp/cvs-serv23113/lib/WikiDB
Modified Files:
cvs.php
Log Message:
extended the functionality of the cvs backend, extended the unit test
for the backend. have yet to start on th
Index: cvs.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/WikiDB/cvs.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** cvs.php 2001/09/28 14:28:21 1.1
--- cvs.php 2001/11/08 11:01:16 1.2
***************
*** 11,19 ****
* Author: Gerrit Riessen, ger...@op...
*/
! class WikiDB_cvs
extends WikiDB
! {
! function WikiDB_cvs( $dbparams ) {
! $backend = new WikiDB_backend_cvs( $dbparams );
}
}
--- 11,25 ----
* Author: Gerrit Riessen, ger...@op...
*/
! class WikiDB_cvs
extends WikiDB
! {
! var $_backend;
!
! /**
! * Constructor requires the DB parameters.
! */
! function WikiDB_cvs( $dbparams )
! {
! $this->_backend = new WikiDB_backend_cvs( $dbparams );
}
}
|