Initial checking from CVS

This commit is contained in:
Deon George
2011-01-14 01:45:19 +11:00
commit fe11dd5f51
70 changed files with 10950 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 648 B

BIN
htdocs/images/error.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
htdocs/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
htdocs/images/home-big.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

55
htdocs/images/index.php Normal file
View File

@@ -0,0 +1,55 @@
<?php
// $Header: /cvsroot/phptsmadmin/phpTSMadmin/htdocs/images/index.php,v 1.1 2008/01/15 10:15:28 wurley Exp $
/**
* This will show a nice table of all the icons used by this application.
*
* @package leenooksApp
*/
echo '<html>';
echo '<title>Application Icons</title>';
echo '<head><link type="text/css" rel="stylesheet" href="../css/style.css" media="screen" /></head>';
echo '<body>';
echo '<h3 class="title">Application Icons</h3>';
echo '<br />';
echo '<center>';
$dir = opendir('.');
while (($file = readdir($dir)) !== false) {
if ($file == '.' || $file == '..')
continue;
if (! preg_match('/\.png$/',$file))
continue;
$files[filesize($file).'_'.$file] = $file;
}
sort($files);
$cell_style = 'color: #888; text-align:center; padding: 10px; padding-bottom: 20px; vertical-align: bottom;';
printf('<center><b>The %s icons used by this application.</b></center>',count($files));
echo '<table style="font-family: arial; font-size: 12px;">';
$counter = 0;
foreach ($files as $file) {
if ($counter % 6 == 0) {
if ($counter)
echo '</tr>'."\n";
flush();
echo '<tr>';
}
$counter++;
printf('<td style="%s"><img title="%s" src="%s" /><br />%s</td>',$cell_style,htmlspecialchars($file),htmlspecialchars($file),$file);
}
echo '</tr>';
echo '</table>';
echo '</center>';
echo '</body>';
echo '</html>';
?>

BIN
htdocs/images/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 733 B

BIN
htdocs/images/key.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
htdocs/images/logout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 829 B

BIN
htdocs/images/minus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 B

BIN
htdocs/images/plus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 B

BIN
htdocs/images/server.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
htdocs/images/timeout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

BIN
htdocs/images/trash-big.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
htdocs/images/uid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

BIN
htdocs/images/warning.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB