s/Node_Controller/Controller/g
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 22 Jan 2006 18:47:29 +0000 (18:47 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 22 Jan 2006 18:47:29 +0000 (18:47 +0000)
global.php
includes/controller.php
includes/paths.php

index 7d08725e60998db1f174a539a80be4d13466cbae..c679ead7a99ff1cc95039426ca335e9687adce66 100644 (file)
@@ -25,7 +25,7 @@ require_once('./includes/controller.php');
 $dochooser = ((defined('PATH_OVERRIDE') AND PATH_OVERRIDE == 1) ? false : true);
 if ($dochooser)
 {
-       $controller = new Node_Controller(Paths::init());
+       $controller = new Controller(Paths::init());
        
        if (isset($viewsvn->in['rebuild']) AND $viewsvn->in['rebuild'] == 1 AND $viewsvn->get('debug') == true)
        {
index f8d6146fb5b9764e42fe0f17db3ee96c2b895b7c..09c0f2c258df8af2c303f93230d7ecf8cccaf0f1 100644 (file)
@@ -33,7 +33,7 @@
 * @package             ViewSVN
 * 
 */
-class Node_Controller
+class Controller
 {
        /**
        * Registry class
@@ -111,7 +111,7 @@ class Node_Controller
        *
        * @access       public
        */
-       function Node_Controller($nodepath)
+       function Controller($nodepath)
        {
                global $viewsvn;
                
index 95fb4fdc033e246cc3450a1fd8e433bf7b2ae9cf..f64fc1aff6c17f69a97f162e2c3fa1f655011fec 100644 (file)
@@ -46,7 +46,7 @@ class Paths
        // ###################################################################
        /**
        * Parses the incoming path variables and returns a sanitized path that
-       * is used to init the Node_Controller
+       * is used to init the Controller
        *
        * @access       public
        *