CVS update: /cowiki/htdocs/setup/class/task/

[email protected] 12 May 2005 17:09:09 -0000
Newsgroups gmane.comp.php.cowiki.cvs
Message-ID <[email protected]>
User: dgorski 
Date: 2005/05/12 10:09:09

Modified:
   cowiki/htdocs/setup/class/task/class.TaskDocumentStorageContainerChooser.php

Log:
 Method(s) has been renamed

File Changes:

Directory: /cowiki/htdocs/setup/class/task/
===========================================

File [changed]: class.TaskDocumentStorageContainerChooser.php
Url: http://cowiki.tigris.org/source/browse/cowiki/htdocs/setup/class/task/class.TaskDocumentStorageContainerChooser.php?r1=1.3&r2=1.4
Delta lines:  +8 -8
-------------------
--- class.TaskDocumentStorageContainerChooser.php	8 May 2005 01:00:52 -0000	1.3
+++ class.TaskDocumentStorageContainerChooser.php	12 May 2005 17:09:06 -0000	1.4
@@ -2,7 +2,7 @@
 
 /**
  *
- * $Id: class.TaskDocumentStorageContainerChooser.php,v 1.3 2005/05/08 01:00:52 dgorski Exp $
+ * $Id: class.TaskDocumentStorageContainerChooser.php,v 1.4 2005/05/12 17:09:06 dgorski Exp $
  *
  * This file is part of coWiki. coWiki is free software under the terms of
  * the GNU General Public License (GPL). Read the LICENSE file. If you did
@@ -17,7 +17,7 @@
  * @author      Daniel T. Gorski, <[email protected]>
  * @copyright   (C) Daniel T. Gorski, {@link http://www.develnet.org}
  * @license     http://www.gnu.org/licenses/gpl.html
- * @version     $Revision: 1.3 $
+ * @version     $Revision: 1.4 $
  *
  */
 
@@ -60,11 +60,11 @@
 
             $this->State->setDocStorageScheme($UriInfo->get('scheme'));
 
-            $this->State->setMustCreateNewDocumentDatabase(
+            $this->State->setShallCreateNewDocumentDatabase(
                 $this->State->isInitialSetup()
             );
 
-            $this->State->setMustCreateNewConnectorUser(
+            $this->State->setShallCreateNewConnectorUser(
                 $this->State->isInitialSetup()
             );
 
@@ -84,10 +84,10 @@
 
         // Store submitted values
         $this->State->setDocStorageScheme(@$_POST['scheme']);
-        $this->State->setMustCreateNewDocumentDatabase(
+        $this->State->setShallCreateNewDocumentDatabase(
             @$_POST['create'] == 'new'
         );
-        $this->State->setMustCreateNewConnectorUser(
+        $this->State->setShallCreateNewConnectorUser(
             @$_POST['create'] == 'new'
         );
         return true;
@@ -158,7 +158,7 @@
         $sStr .=                '<input id="existing" type="radio"';
         $sStr .=                ' name="create" value="existing"';
 
-        if (!$this->State->mustCreateNewDocumentDatabase()) {
+        if (!$this->State->shallCreateNewDocumentDatabase()) {
             $sStr .=  ' checked="true"';
         }
 
@@ -180,7 +180,7 @@
         $sStr .=                '<input id="new" type="radio"';
         $sStr .=                ' name="create" value="new"';
 
-        if ($this->State->mustCreateNewDocumentDatabase()) {
+        if ($this->State->shallCreateNewDocumentDatabase()) {
             $sStr .=  ' checked="true"';
         }