[CS-Project-svn_notify] SF.net SVN: cs-project:[959] trunk/1.2/includes/setup
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-02-10 16:05:20
|
Revision: 959 http://cs-project.svn.sourceforge.net/cs-project/?rev=959&view=rev Author: crazedsanity Date: 2009-02-10 16:05:13 +0000 (Tue, 10 Feb 2009) Log Message: ----------- More updating of class names. Modified Paths: -------------- trunk/1.2/includes/setup/1.inc trunk/1.2/includes/setup/2.inc trunk/1.2/includes/setup/5.inc Modified: trunk/1.2/includes/setup/1.inc =================================================================== --- trunk/1.2/includes/setup/1.inc 2009-02-10 16:04:50 UTC (rev 958) +++ trunk/1.2/includes/setup/1.inc 2009-02-10 16:05:13 UTC (rev 959) @@ -42,7 +42,7 @@ } else { //check if the /lib dir is writeable, so they've been warned. - $fsObj = new cs_fileSystemClass(dirname(__FILE__) .'/../../lib'); + $fsObj = new cs_fileSystem(dirname(__FILE__) .'/../../lib'); if(!$fsObj->is_writable(NULL)) { $page->set_message_wrapper(array( 'title' => "Warning", Modified: trunk/1.2/includes/setup/2.inc =================================================================== --- trunk/1.2/includes/setup/2.inc 2009-02-10 16:04:50 UTC (rev 958) +++ trunk/1.2/includes/setup/2.inc 2009-02-10 16:05:13 UTC (rev 959) @@ -68,7 +68,7 @@ //========================================================================= public function __construct(cs_phpDB &$db, cs_genericPage &$page) { $this->db = $db; - $this->fsObj = new cs_fileSystemClass(dirname(__FILE__) .'/../../docs/sql/setup'); + $this->fsObj = new cs_fileSystem(dirname(__FILE__) .'/../../docs/sql/setup'); $this->gfObj = new cs_globalFunctions; $this->page = $page; Modified: trunk/1.2/includes/setup/5.inc =================================================================== --- trunk/1.2/includes/setup/5.inc 2009-02-10 16:04:50 UTC (rev 958) +++ trunk/1.2/includes/setup/5.inc 2009-02-10 16:05:13 UTC (rev 959) @@ -51,7 +51,7 @@ unset($this->stepData[5]); $this->gfObj = new cs_globalFunctions; - $this->fsObj = new cs_fileSystemClass(dirname(__FILE__) ."/../../". CONFIG_DIRECTORY); + $this->fsObj = new cs_fileSystem(dirname(__FILE__) ."/../../". CONFIG_DIRECTORY); }//end __construct() //========================================================================= @@ -74,7 +74,7 @@ } //now that we've built the array successfully, now let's turn it into XML. - $xmlCreator = new xmlCreator('config'); + $xmlCreator = new cs_phpxmlCreator('config/main'); foreach($myData as $index=>$value) { $xmlCreator->add_tag($index, $value); } @@ -82,7 +82,7 @@ 'generated' => date('Y-m-d H:m:s'), 'version' => $myData['version_string'] ); - $xmlCreator->add_attribute('/config', $extraAttributes); + $xmlCreator->add_attribute('/config/main', $extraAttributes); //now, create an XML string... $xmlString = $xmlCreator->create_xml_string(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |