/Web/Maintenance/CommitLog.php
File deleted
/Web/Maintenance/List.php
File deleted
/Web/Maintenance/Maintenance.cs.php
52,8 → 52,14
<p class="Subtitle">
Stránka údržby webu. Je určena <b>pouze</b> pro <b>správce</b> webu.
</p>
<p>
Tato stránka slouží správci webu pro údržbu systému. Stránka
<b>není</b> určena pro <b>běžné</b> uživatele protože může zůsobit
poškození webu. Stránka obsahuje pomocné odkazy a odkazy na rozpracované
stránky. Funkčnost objektů na této stránce není zaručena.
</p>
<hr>
<?php
$lang="cs";
require_once("Maintenance.php");
?>
</div>
/Web/Maintenance/Maintenance.en.php
52,8 → 52,14
<p class=Subtitle>
Maintenance Page is intended for <b>webmaster only</b>.
</p>
<p>
This page is <b>not</b> for ordinary <b>users</b> because it
can cause demage of the web. The page contains auxiliary links
and links to not finished pages. The functionality of the objects
on this page is not guaranteed.
</p>
<hr>
<?php
$lang="en";
require_once("Maintenance.php");
?>
</div>
/Web/Maintenance/Maintenance.php
1,13 → 1,19
<?php
// Zpracování parametru
// Parametrem "selection" je jméno skriptu v aktuálním adresáři
// bez přípony (php). Pokud neexistuje volí se defaultní volba.
if (isset($selection)) unset($selection); // vyčisti proměnnou
$selection=$_GET["selection"]; // vezmi parametr "selection"
$selection=preg_replace("/[^a-zA-Z0-9]/e","",$selection); // ponech jen písmenka
$selection.=".php"; // přidej příponu
//echo $selection;
if (!file_exists($selection)) // otestuj existenci
$selection="List.php"; // defaultní volba
include($selection); // vlož zvolený obsah
?>
<p>
Zobraz vzorovou stránku
<a href="../Templates/Template.cs.html">CS</a>
<a href="../Templates/Template.en.html">EN</a>
<br>
Zobraz prázdnou stránku
<a href="../Templates/Empty.cs.html">CS</a>
<a href="../Templates/Empty.en.html">EN</a>
<br>
<a href="Log.php">Výpis naposled změněných souborů</a>
<br>
<a href="PhpInfo.php">Výpis PhpInfo()</a>
<br>
<a href="HistoryLog.php">Výpis history.log</a>
<br>
<a href="ToDoList.html">To Do List</a>
<br>
<a href="./phpMyAdmin/index.php">phpMyAdmin</a>
</p>
/Web/Maintenance/HistoryLog.php
1,6 → 1,6
<h1> /root/history.log </h1>
<pre>
<?php
@readfile("/root/history.log");
readfile("/root/history.log");
?>
</pre>
/Web/Maintenance/Log2.php
0,0 → 1,87
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3c.org/TR/html4/strict.dtd">
 
<html>
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> Log </title>
<meta name="keywords" content="Web log" />
<meta name="description" content="Web log" />
<!-- AUTOINCLUDE START "Page/Head.cs.ihtml" DO NOT REMOVE -->
<link rel="StyleSheet" href="../Web/CSS/MLAB.css" type="text/css" title="MLAB základní styl" />
<link rel="shortcut icon" type="image/x-icon" href="../Web/PIC/MLAB.ico" />
<script language="JavaScript" type="text/javascript" src="../Web/JS/MLAB_Menu.js"></script>
<!-- AUTOINCLUDE END -->
</head>
 
<body lang="cs">
 
<!-- AUTOINCLUDE START "Page/Header.cs.ihtml" DO NOT REMOVE -->
<!-- ============== HLAVICKA ============== -->
<div class="Header">
<script type="text/javascript">
<!--
SetRelativePath("");
DrawHeader();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
 
<!-- AUTOINCLUDE START "Page/Menu.cs.ihtml" DO NOT REMOVE -->
<!-- ============== MENU ============== -->
<div class="Menu">
<script type="text/javascript">
<!--
SetRelativePath("");
DrawMenu();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) menu je potřeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
 
<!-- ============== TEXT ============== -->
<div class="Text">
<h1> Postcommit Status </h1>
<h2> Author </h2>
<p>
<?php
Exec("svnlook author /home/MLAB", $x);
echo implode("\n", $x);
unset($x);
?>
</p>
<h2> Last Changed </h2>
<pre><?php
Exec("svnlook changed /home/MLAB", $x);
echo implode("\n", $x);
unset($x);
?></pre>
<h2> Errors </h2>
<pre><?php @readfile("Data/svn.err"); ?></pre>
</div>
 
<!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE -->
<!-- ============== PATIČKA ============== -->
<div class="Footer">
<script type="text/javascript">
<!--
SetRelativePath("");
DrawFooter();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
 
</body>
 
</html>
/Web/Maintenance/Log.php
0,0 → 1,23
<html>
<head>
<link rel="stylesheet" type="text/css" href="Web/CSS/MLAB.css" title="MLAB Basic Style"/>
</head>
<body>
<h1> Postcommit Status </h1>
<h2>Author</h1>
<p><pre>
miho
</pre></p>
<h2>Errors</h1>
<p><pre>
</pre></p>
<h2>Last Changed</h1>
<p><pre>
<?php
if (isset($x)) unset($x);
Exec("svnlook changed /home/MLAB", $x);
echo implode("\n", $x);
?>
</pre></p>
</body>
</html>