o: ActiveSupport::Cache::Entry :@compressedF:@value"(™""™
| Web/News.en.html | ||
|---|---|---|
| 57 | 57 |
There are missing project info files <b>ProjectInfo.xml</b>. |
| 58 | 58 |
I am going to add them by the time. I am going to write scripts for |
| 59 | 59 |
automatic generation of index pages (modules, designs and articles). |
| 60 |
All other features should work. |
|
| 60 |
All other features should work. Photogalery is beeing tested.
|
|
| 61 | 61 |
</p> |
| 62 | 62 |
|
| 63 | 63 |
<h1> History </h1> |
| 64 | 64 |
|
| 65 |
<h3> 2006/10/29 </h3> |
|
| 66 |
<p> |
|
| 67 |
<i>MIHO:</i> |
|
| 68 |
Maintenance page updated. |
|
| 69 |
</p> |
|
| 70 |
|
|
| 65 | 71 |
<h3> 2006/10/28 </h3> |
| 66 | 72 |
<p> |
| 67 | 73 |
<i>KAKLIK:</i> |
| ... | ... | |
| 70 | 76 |
|
| 71 | 77 |
<h3> 2006/10/22 </h3> |
| 72 | 78 |
<p> |
| 73 |
<i>MIHO</i> |
|
| 79 |
<i>MIHO:</i>
|
|
| 74 | 80 |
Web changed from <b>http://test.mlab.cz</b> to |
| 75 | 81 |
<b>http://www.mlab.cz</b>. |
| 76 | 82 |
</p> |
| Web/Maintenance/CommitLog.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
if (isset($last)) unset ($last); |
| 3 | 3 |
Exec("svnlook youngest /home/MLAB", $last);
|
| 4 |
$last=$last[0]; // Poslední revize
|
|
| 4 |
$last=$last[0]; // Poslední revize
|
|
| 5 | 5 |
?> |
| 6 | 6 |
<h1> Commit Log </h1> |
| 7 | 7 |
<?php |
| 8 | 8 |
if (isset($x)) unset ($x); |
| 9 |
$x=@file("DynData/svn.err"); // Chybový soubor
|
|
| 10 |
if ($x!="")
|
|
| 11 |
{
|
|
| 12 |
$x=preg_replace("/\n/","",$x); // Ukousni konce řádek
|
|
| 13 |
$x=implode("\n",$x); // Slož řádky
|
|
| 14 |
if ($x=="")
|
|
| 15 |
{
|
|
| 16 |
$x="O.K."; // Soubor existuje a je prázdný
|
|
| 17 |
}
|
|
| 18 |
}
|
|
| 19 |
else
|
|
| 20 |
{
|
|
| 21 |
$x="Missing Error File"; // Pokud není chybový soubor
|
|
| 22 |
}
|
|
| 9 |
$x=@file("DynData/svn.err"); // Chybový soubor
|
|
| 10 |
if ($x!="")
|
|
| 11 |
{
|
|
| 12 |
$x=preg_replace("/\n/","",$x); // Ukousni konce řádek
|
|
| 13 |
$x=implode("\n",$x); // Slož řádky
|
|
| 14 |
if ($x=="")
|
|
| 15 |
{
|
|
| 16 |
$x="O.K."; // Soubor existuje a je prázdný
|
|
| 17 |
}
|
|
| 18 |
}
|
|
| 19 |
else
|
|
| 20 |
{
|
|
| 21 |
$x="Missing Error File"; // Pokud není chybový soubor
|
|
| 22 |
}
|
|
| 23 | 23 |
?> |
| 24 | 24 |
<table> |
| 25 |
<tr>
|
|
| 26 |
<th> Last Error </th>
|
|
| 27 |
<td> <code><?php echo $x; ?> </code></td>
|
|
| 28 |
</tr>
|
|
| 29 |
</table>
|
|
| 25 |
<tr>
|
|
| 26 |
<th> Last Error </th>
|
|
| 27 |
<td> <code><?php echo $x; ?> </code></td>
|
|
| 28 |
</tr>
|
|
| 29 |
</table> |
|
| 30 | 30 |
|
| 31 | 31 |
<?php |
| 32 | 32 |
// Cyklus přes posledních několik commitů |
| 33 |
for($i=1; $i<=5; $i++, $last--) {
|
|
| 33 |
for($i=1; $i<=5; $i++, $last--) {
|
|
| 34 | 34 |
?> |
| 35 |
|
|
| 35 |
|
|
| 36 | 36 |
<h2> Revision <?php echo $last; ?> </h2> |
| 37 | 37 |
<?php |
| 38 | 38 |
if (isset($x)) unset ($x); |
| 39 | 39 |
Exec("svnlook info /home/MLAB -r $last", $x);
|
| 40 | 40 |
?> |
| 41 | 41 |
<table> |
| 42 |
<tr>
|
|
| 42 |
<tr> |
|
| 43 | 43 |
<th> Author </th> |
| 44 | 44 |
<td> <?php echo $x[0]; ?> </td> |
| 45 | 45 |
</tr> |
| ... | ... | |
| 47 | 47 |
<th> Date </th> |
| 48 | 48 |
<td> <?php echo $x[1]; ?> </td> |
| 49 | 49 |
</tr> |
| 50 |
<tr>
|
|
| 51 |
<th> Comment </th>
|
|
| 52 |
<td> <?php echo $x[3]; ?> </td>
|
|
| 53 |
</tr>
|
|
| 54 |
<tr>
|
|
| 55 |
<td colspan=2>
|
|
| 56 |
<code><?php
|
|
| 50 |
<tr>
|
|
| 51 |
<th> Comment </th>
|
|
| 52 |
<td> <?php echo $x[3]; ?> </td>
|
|
| 53 |
</tr>
|
|
| 54 |
<tr>
|
|
| 55 |
<td colspan=2>
|
|
| 56 |
<code><?php
|
|
| 57 | 57 |
if (isset($x)) unset($x); |
| 58 | 58 |
Exec("svnlook changed /home/MLAB -r $last", $x);
|
| 59 | 59 |
echo implode("\n", $x); ?></code> </td>
|
| 60 | 60 |
</table> |
| 61 |
|
|
| 61 |
|
|
| 62 | 62 |
<?php |
| 63 | 63 |
// Konec cyklu |
| 64 |
} |
|
| 65 |
?> |
|
| 64 |
} |
|
| 65 |
?> |
|
| Web/Maintenance/List.php | ||
|---|---|---|
| 1 | 1 |
<table> |
| 2 | 2 |
<tr> |
| 3 |
<th colspan=2 class="Center"> Záznamy o změnách </th>
|
|
| 4 |
</tr>
|
|
| 3 |
<th colspan=2 class="Center"> Záznamy o změnách </th>
|
|
| 4 |
</tr>
|
|
| 5 | 5 |
<tr> |
| 6 | 6 |
<td> Poslední commity </td> |
| 7 |
<td> <a href="?selection=CommitLog">CommitLog</a> </td>
|
|
| 8 |
</tr>
|
|
| 7 |
<td> <a href="?selection=CommitLog">CommitLog</a> </td>
|
|
| 8 |
</tr>
|
|
| 9 | 9 |
<tr> |
| 10 | 10 |
<td> Změny v konfiguraci </td> |
| 11 |
<td> <a href="?selection=HistoryLog">HistoryLog</a> </td>
|
|
| 12 |
</tr>
|
|
| 11 |
<td> <a href="?selection=HistoryLog">HistoryLog</a> </td>
|
|
| 12 |
</tr>
|
|
| 13 | 13 |
</table> |
| 14 |
|
|
| 14 |
|
|
| 15 | 15 |
<table> |
| 16 | 16 |
<tr> |
| 17 |
<th colspan=2 class="Center"> Údržba PHP </th>
|
|
| 18 |
</tr>
|
|
| 17 |
<th colspan=2 class="Center"> Údržba PHP </th>
|
|
| 18 |
</tr>
|
|
| 19 | 19 |
<tr> |
| 20 | 20 |
<td> Výpis stavu PHP </td> |
| 21 |
<td> <a href="PhpInfo.php">PhpInfo</a> </td>
|
|
| 22 |
</tr>
|
|
| 21 |
<td> <a href="PhpInfo.php">PhpInfo</a> </td>
|
|
| 22 |
</tr>
|
|
| 23 | 23 |
<tr> |
| 24 | 24 |
<td> Administrace </td> |
| 25 |
<td> <a href="phpMyAdmin/index.php">phpMyAdmin</a> </td>
|
|
| 26 |
</tr>
|
|
| 25 |
<td> <a href="phpMyAdmin/index.php">phpMyAdmin</a> </td>
|
|
| 26 |
</tr>
|
|
| 27 | 27 |
</table> |
| 28 | 28 |
|
| 29 | 29 |
<table> |
| 30 | 30 |
<tr> |
| 31 |
<th colspan=2 class="Center"> Vzorové stránky </th>
|
|
| 32 |
</tr>
|
|
| 31 |
<th colspan=2 class="Center"> Vzorové stránky </th>
|
|
| 32 |
</tr>
|
|
| 33 | 33 |
<tr> |
| 34 | 34 |
<td> Vzorová stránka </td> |
| 35 |
<td> <a href="../Templates/Template.cs.html">CS</a>
|
|
| 35 |
<td> <a href="../Templates/Template.cs.html">CS</a>
|
|
| 36 | 36 |
<a href="../Templates/Template.en.html">EN</a> </td> |
| 37 |
</tr>
|
|
| 37 |
</tr>
|
|
| 38 | 38 |
<tr> |
| 39 | 39 |
<td> Prázdná stránka </td> |
| 40 |
<td> <a href="../Templates/Empty.cs.html">CS</a>
|
|
| 40 |
<td> <a href="../Templates/Empty.cs.html">CS</a>
|
|
| 41 | 41 |
<a href="../Templates/Empty.en.html">EN</a> </td> |
| 42 |
</tr>
|
|
| 42 |
</tr>
|
|
| 43 | 43 |
</table> |
| 44 | 44 |
|
| 45 | 45 |
<p> |
| Web/News.cs.html | ||
|---|---|---|
| 58 | 58 |
Budu je postupně doplňovat. Teď budu pracovat na skriptech pro |
| 59 | 59 |
automatické generování seznamů (modulů, konstrukcí a textů). To zatím |
| 60 | 60 |
nebude na první pohled vidět. Všechno ostatní by v zásadě mělo fungovat. |
| 61 |
Fotogalerie se zatím jen testuje. |
|
| 61 | 62 |
</p> |
| 62 | 63 |
|
| 63 | 64 |
<h1> Historie </h1> |
| 64 | 65 |
|
| 66 |
<h3> 29.10.2006 </h3> |
|
| 67 |
<p> |
|
| 68 |
<i>MIHO:</i> |
|
| 69 |
Upravena stránka údržby. |
|
| 70 |
</p> |
|
| 71 |
|
|
| 65 | 72 |
<h3> 28.10.2006 </h3> |
| 66 | 73 |
<p> |
| 67 | 74 |
<i>KAKLIK:</i> |
| ... | ... | |
| 70 | 77 |
|
| 71 | 78 |
<h3> 22.10.2006 </h3> |
| 72 | 79 |
<p> |
| 73 |
<i>MIHO</i> |
|
| 80 |
<i>MIHO:</i>
|
|
| 74 | 81 |
Změna umístění webu z <b>http://test.mlab.cz</b> na |
| 75 | 82 |
<b>http://www.mlab.cz</b>. |
| 76 | 83 |
</p> |
| Web/Maintenance.cs.html | ||
|---|---|---|
| 54 | 54 |
</p> |
| 55 | 55 |
<p> |
| 56 | 56 |
Tato stránka slouží správci webu pro údržbu systému. Stránka |
| 57 |
<b>není</b> určena pro <b>běžné</b> uživatele protože může zůsobit
|
|
| 58 |
poškození webu. Stránka obsahuje pomocné odkazy a odkazy na rozpracované
|
|
| 59 |
stránky. Funkčnost objektů na této stránce není zaručena.
|
|
| 57 |
<b>není</b> určena pro <b>běžné</b> uživatele protože může zůsobit
|
|
| 58 |
poškození webu. Stránka obsahuje pomocné odkazy a odkazy na rozpracované
|
|
| 59 |
stránky. Funkčnost objektů na této stránce není zaručena.
|
|
| 60 | 60 |
</p> |
| 61 | 61 |
<hr> |
| 62 | 62 |
<h2 class="Center"><a href="http://www.mlab.cz/Web/Maintenance/Maintenance.cs.php"> Přilásit se ... </a></h2> |