/Web/Downloads.cs.html
74,15 → 74,15
</p>
<table>
<tr>
<td> <i>svn://svn.mlab.cz/home/MLAB/</i> </td>
<td> <i>svn://svn.mlab.cz/MLAB/</i> </td>
<td> hlavní databáze </td>
</tr>
<tr>
<td> <i>svn://svn.mlab.cz/home/MLAB_E</i> </td>
<td> <i>svn://svn.mlab.cz/MLAB_E</i> </td>
<td> Externí projekty zatím nezařazené do hlavní databáze (hlavně experimenty a ročníkové práce škol) </td>
</tr>
<tr>
<td> <i>svn://svn.mlab.cz/home/library/</i> </td>
<td> <i>svn://svn.mlab.cz/library/</i> </td>
<td> knihovny OrCAD, PADS, ... </td>
</tr>
</table>
/Web/Downloads.en.html
71,15 → 71,15
</p>
<table>
<tr>
<td> <i>svn://svn.mlab.cz/home/MLAB/</i> </td>
<td> <i>svn://svn.mlab.cz/MLAB/</i> </td>
<td> main repository </td>
</tr>
<tr>
<td> <i>svn://svn.mlab.cz/home/MLAB_E</i> </td>
<td> <i>svn://svn.mlab.cz/MLAB_E</i> </td>
<td> repository for external projects and documentation of educational experiments from schools </td>
</tr>
<tr>
<td> <i>svn://svn.mlab.cz/home/library/</i> </td>
<td> <i>svn://svn.mlab.cz/library/</i> </td>
<td> libraries OrCAD, PADS, ... </td>
</tr>
</table>
/Web/Maintenance/CommitLog.php
1,6 → 1,6
<?php
if (isset($last)) unset ($last);
Exec("svnlook youngest /home/MLAB", $last);
Exec("svnlook youngest /data/svnData/MLAB", $last);
$last=$last[0]; // Poslední revize
?>
<h1> Commit Log </h1>
33,7 → 33,7
</table>
<?php
if (isset($x)) unset ($x);
Exec("svn status /home/Apache/MLAB-WWW", $x);
Exec("svn status /data/wwwData/cz.mlab.www", $x);
$x=preg_replace("/\n/","",$x); // Ukousni konce řádek
$x=implode("\n",$x); // Slož řádky
if ($x=="")
61,7 → 61,7
<h2> Revision <?php echo $last; ?> </h2>
<?php
if (isset($x)) unset ($x);
Exec("svnlook info /home/MLAB -r $last", $x);
Exec("svnlook info /data/svnData/MLAB -r $last", $x);
?>
<table>
<tr>
79,7 → 79,7
<tr>
<td colspan=2> <code><?php
if (isset($x)) unset($x);
Exec("svnlook changed /home/MLAB -r $last", $x);
Exec("svnlook changed /data/svnaData/MLAB -r $last", $x);
echo implode("\n", $x); ?></code> </td>
</table>
 
/WebSVN/include/config.inc
70,11 → 70,11
//
// $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)');
// $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)', 'group');
$config->addRepository('MLAB', 'file:///home/MLAB');
$config->addRepository('library', 'file:///home/library');
$config->addRepository('svnkaklik', 'file:///home/svnkaklik');
$config->addRepository('MLAB_E', 'file:///home/MLAB_E');
$config->addRepository('8magsvn', 'file:///home/8magsvn');
$config->addRepository('MLAB', 'file:///data/svnData/MLAB');
$config->addRepository('library', 'file:///data/svnData/library');
$config->addRepository('svnkaklik', 'file:///data/svnData/svnkaklik');
$config->addRepository('MLAB_E', 'file:///data/svnData/MLAB_E');
$config->addRepository('8magsvn', 'file:///data/svnData/8magsvn');
// Remote repositories (without and with optional group):
//
// $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', NULL, 'username', 'password');
104,7 → 104,7
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "library");
$config->setTemplatePath("$locwebsvnreal/templates/BlueGrey/", "8magsvn");
$config->setTemplatePath("$locwebsvnreal/templates/Standard/", "svnkaklik");
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "MLAB_E");
$config->setTemplatePath("$locwebsvnreal/templates/MLAB/", "MLAB_E");
// The index page containing the projects may either be displayed as a flat view (the default),
// where grouped repositories are displayed as "GroupName.RepName" or as a tree view.
// In the case of a tree view, you may choose whether the entire tree is open by default.
200,8 → 200,8
// You may also specify a per repository access file by uncommenting and copying the following
// line as necessary. Use the convention 'groupname.myrep' if your repository is in a group.
 
$config->useAuthenticationFile('/home/MLAB/conf/authz', 'MLAB'); // Access file for MLAB
$config->useAuthenticationFile('/home/svnkaklik/conf/authz', 'svnkaklik'); // Access file for svnkaklik
$config->useAuthenticationFile('/data/svnData/MLAB/conf/authz', 'MLAB'); // Access file for MLAB
$config->useAuthenticationFile('/data/svnData/svnkaklik/conf/authz', 'svnkaklik'); // Access file for svnkaklik
 
// }}}