Path types no more!
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 22 Jan 2006 23:27:43 +0000 (23:27 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 22 Jan 2006 23:27:43 +0000 (23:27 +0000)
includes/config.php.new
includes/init.php

index 1acd27719f872b94acd09e9c283d69131f0e928b..574b7b73ce9abb753425709580aeba1a7b15c2db 100644 (file)
@@ -59,15 +59,6 @@ $conf['paths']['svn'] = '/usr/local/bin/svn';
 // Choose which directory to use in templates/ as the template set.
 $conf['paths']['templateset'] = 'default';
 
-// ###################################################################
-// ///////////////////////// PATH SYSTEM
-// -------------------------------------------------------------------
-// ViewSVN has two ways in which the current location is passed in the
-// URL bar. Type 1 is the simple one: blame.php?path=/repos/somedir
-// you should only need to use this if the second one fails. The more
-// advanced (and default) type 2 uses blame.php/repos/somedir/.
-$conf['other']['pathtype'] = 2;
-
 // ###################################################################
 // ///////////////////////// DATABASE SERVER
 // -------------------------------------------------------------------
index f4043cc45b2bdd6818e7a98b13bca801fa10ff5d..646be1751687245ce866477feb9b7492460ab50a 100644 (file)
@@ -83,8 +83,6 @@ $viewsvn->repos =& new Repository($conf['repository']['path'], $conf['repository
 // ###################################################################
 // path manager
 require_once('./includes/paths.php');
-$viewsvn->path = $conf['paths']['web'];
-$viewsvn->paths =& new Paths($conf['other']['pathtype']);
 
 /*=====================================================================*\
 || ###################################################################