[CS-Project-svn_notify] SF.net SVN: cs-project:[958] trunk/1.2
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-02-10 16:04:53
|
Revision: 958 http://cs-project.svn.sourceforge.net/cs-project/?rev=958&view=rev Author: crazedsanity Date: 2009-02-10 16:04:50 +0000 (Tue, 10 Feb 2009) Log Message: ----------- Update class names. Modified Paths: -------------- trunk/1.2/lib/_unitTests_/cs-content_tests.php trunk/1.2/lib/abstractClasses/dbAbstract.class.php trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php Modified: trunk/1.2/lib/_unitTests_/cs-content_tests.php =================================================================== --- trunk/1.2/lib/_unitTests_/cs-content_tests.php 2009-02-10 15:59:16 UTC (rev 957) +++ trunk/1.2/lib/_unitTests_/cs-content_tests.php 2009-02-10 16:04:50 UTC (rev 958) @@ -10,7 +10,7 @@ function setUp() { $this->gfObj = new cs_globalFunctions; - $this->fsObj = new cs_fileSystemClass; + $this->fsObj = new cs_fileSystem; $this->contentObj = new contentSystem; }//end setUp() @@ -32,7 +32,7 @@ function testFileReading() { unset($this->fsObj); - $this->fsObj = new cs_fileSystemClass(dirname(__FILE__)); + $this->fsObj = new cs_fileSystem(dirname(__FILE__)); $dirData = $this->fsObj->ls(); if($this->assertTrue(is_array($dirData)) && $this->assertTrue(isset($dirData['data'])) && $this->assertTrue($dirData['data']['type'] == 'dir')) { Modified: trunk/1.2/lib/abstractClasses/dbAbstract.class.php =================================================================== --- trunk/1.2/lib/abstractClasses/dbAbstract.class.php 2009-02-10 15:59:16 UTC (rev 957) +++ trunk/1.2/lib/abstractClasses/dbAbstract.class.php 2009-02-10 16:04:50 UTC (rev 958) @@ -65,7 +65,7 @@ //========================================================================= final public function run_sql_file($filename) { if(!is_object($this->fsObj)) { - $this->fsObj = new cs_fileSystemClass; + $this->fsObj = new cs_fileSystem; } $this->lastSQLFile = $filename; Modified: trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php =================================================================== --- trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php 2009-02-10 15:59:16 UTC (rev 957) +++ trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php 2009-02-10 16:04:50 UTC (rev 958) @@ -104,7 +104,7 @@ //========================================================================= public function update_config_file() { - $fs = new cs_fileSystemClass(dirname(__FILE__) .'/../'); + $fs = new cs_fileSystem(dirname(__FILE__) .'/../'); $sampleXmlObj = new cs_phpxmlParser($fs->read('docs/samples/sample_config.xml')); $siteXmlObj = new cs_phpxmlParser($fs->read(CONFIG_FILE_LOCATION)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |