Rev 2305 Rev 2859
Line 68... Line 68...
68   68  
69 // Local repositories (without and with optional group): 69 // Local repositories (without and with optional group):
70 // 70 //
71 // $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)'); 71 // $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)');
72 // $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)', 'group'); 72 // $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)', 'group');
73 $config->addRepository('MLAB', 'file:///home/MLAB'); 73 $config->addRepository('MLAB', 'file:///data/svnData/MLAB');
74 $config->addRepository('library', 'file:///home/library'); 74 $config->addRepository('library', 'file:///data/svnData/library');
75 $config->addRepository('svnkaklik', 'file:///home/svnkaklik'); 75 $config->addRepository('svnkaklik', 'file:///data/svnData/svnkaklik');
76 $config->addRepository('MLAB_E', 'file:///home/MLAB_E'); 76 $config->addRepository('MLAB_E', 'file:///data/svnData/MLAB_E');
77 $config->addRepository('8magsvn', 'file:///home/8magsvn'); 77 $config->addRepository('8magsvn', 'file:///data/svnData/8magsvn');
78 // Remote repositories (without and with optional group): 78 // Remote repositories (without and with optional group):
79 // 79 //
80 // $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', NULL, 'username', 'password'); 80 // $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', NULL, 'username', 'password');
81 // $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', 'group', 'username', 'password'); 81 // $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', 'group', 'username', 'password');
82 // 82 //
Line 198... Line 198...
198 // $config->useAuthenticationFile('/path/to/accessfile'); // Global access file 198 // $config->useAuthenticationFile('/path/to/accessfile'); // Global access file
199   199  
200 // You may also specify a per repository access file by uncommenting and copying the following 200 // You may also specify a per repository access file by uncommenting and copying the following
201 // line as necessary. Use the convention 'groupname.myrep' if your repository is in a group. 201 // line as necessary. Use the convention 'groupname.myrep' if your repository is in a group.
202   202  
203 $config->useAuthenticationFile('/home/MLAB/conf/authz', 'MLAB'); // Access file for MLAB 203 $config->useAuthenticationFile('/data/svnData/MLAB/conf/authz', 'MLAB'); // Access file for MLAB
204 $config->useAuthenticationFile('/home/svnkaklik/conf/authz', 'svnkaklik'); // Access file for svnkaklik 204 $config->useAuthenticationFile('/data/svnData/svnkaklik/conf/authz', 'svnkaklik'); // Access file for svnkaklik
205   205  
206 // }}} 206 // }}}
207   207  
208 // {{{ FILE CONTENT --- 208 // {{{ FILE CONTENT ---
209 // 209 //