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 102... |
Line 102... |
102 |
// $config->setTemplatePath('$locwebsvnreal/templates/Standard/', 'myrep'); // Access file for myrep |
102 |
// $config->setTemplatePath('$locwebsvnreal/templates/Standard/', 'myrep'); // Access file for myrep |
103 |
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "MLAB"); |
103 |
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "MLAB"); |
104 |
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "library"); |
104 |
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "library"); |
105 |
$config->setTemplatePath("$locwebsvnreal/templates/BlueGrey/", "8magsvn"); |
105 |
$config->setTemplatePath("$locwebsvnreal/templates/BlueGrey/", "8magsvn"); |
106 |
$config->setTemplatePath("$locwebsvnreal/templates/Standard/", "svnkaklik"); |
106 |
$config->setTemplatePath("$locwebsvnreal/templates/Standard/", "svnkaklik"); |
107 |
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "MLAB_E"); |
107 |
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "MLAB_E"); |
108 |
// The index page containing the projects may either be displayed as a flat view (the default), |
108 |
// The index page containing the projects may either be displayed as a flat view (the default), |
109 |
// where grouped repositories are displayed as "GroupName.RepName" or as a tree view. |
109 |
// where grouped repositories are displayed as "GroupName.RepName" or as a tree view. |
110 |
// In the case of a tree view, you may choose whether the entire tree is open by default. |
110 |
// In the case of a tree view, you may choose whether the entire tree is open by default. |
111 |
|
111 |
|
112 |
// $config->useTreeIndex(false); // Tree index, closed by default |
112 |
// $config->useTreeIndex(false); // Tree index, closed by default |
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 |
// |