Rev Author Line No. Line
663 Dawon 1 <html>
2 <head>
703 Dawon 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4 <title> MLAB moduly </title>
5 <meta name="keywords" content="stavebnice MLAB univerzální moduly seznam pøehled">
6 <meta name="description" content="Projekt MLAB, moduly">
7 <!-- AUTOINCLUDE START "Page/Head.cs.ihtml" DO NOT REMOVE -->
8 <link rel="StyleSheet" href="../Web/CSS/MLAB.css" type="text/css" title="MLAB základní styl">
9 <link rel="StyleSheet" href="../Web/CSS/MLAB_Print.css" type="text/css" media="print">
10 <link rel="shortcut icon" type="image/x-icon" href="../Web/PIC/MLAB.ico">
11 <script type="text/javascript" src="../Web/JS/MLAB_Menu.js"></script>
12 <!-- AUTOINCLUDE END -->
663 Dawon 13 </head>
14 <body>
15  
704 Dawon 16 <!-- AUTOINCLUDE START "Page/Header.cs.ihtml" DO NOT REMOVE -->
17 <!-- ============== HLAVICKA ============== -->
18 <div class="Header">
19 <script type="text/javascript">
20 <!--
21 SetRelativePath("../");
22 DrawHeader();
23 // -->
24 </script>
25 <noscript>
26 <p><b> Pro zobrazení (vložení) hlavièky je potøeba JavaScript </b></p>
27 </noscript>
28 </div>
29 <!-- AUTOINCLUDE END -->
683 Dawon 30  
704 Dawon 31 <!-- AUTOINCLUDE START "Page/Menu.cs.ihtml" DO NOT REMOVE -->
32 <!-- ============== MENU ============== -->
33 <div class="Menu">
34 <script type="text/javascript">
35 <!--
36 SetRelativePath("../");
37 DrawMenu();
38 // -->
39 </script>
40 <noscript>
41 <p><b> Pro zobrazení (vložení) menu je potøeba JavaScript </b></p>
42 </noscript>
43 </div>
44 <!-- AUTOINCLUDE END -->
45  
46  
47  
663 Dawon 48 <?php
49 /* KONFIGURACE */
665 Dawon 50 $path = '/var/www/Web';
664 Dawon 51 $www = 'http://www.mlab.cz';
666 Dawon 52 $folder = '/../Modules';
667 Dawon 53 /*$img = 'preview.jpg';*/
678 Dawon 54 $info = 'ProjectInfo.xml';
663 Dawon 55  
56 /* KONEC KONFIGURACE */
57  
58  
59  
60  
61  
62  
63 $adresar = opendir($path.$folder);
64 while ($soubor = readdir($adresar)){
671 Dawon 65 if ((Is_Dir($path.$folder."/".$soubor)) && (substr($soubor,0,1) <> ".") && (substr($soubor,0,1) <> "!")) {
677 Dawon 66 $img = $soubor."_Small.jpg";
663 Dawon 67  
68 ?>
69 <table border=0>
673 Dawon 70 <tr><td><b><?php echo $soubor; ?></b></td></tr>
668 Dawon 71 <?php
72  
677 Dawon 73 if (file_exists($path.$folder."/".$soubor."/CAM_AMA")) {
74 if (file_exists($path.$folder.'/'.$soubor."/".$img)) { echo "<tr><td><img src=\"".$www.$folder.'/'.$soubor."/".$img."\" width=\"150\"></td></tr>\n"; }
75 if (file_exists($path.$folder.'/'.$soubor."/".$info)) {
76 echo "<tr><td>\n";
77 xml_parse ($path.$folder.'/'.$soubor."/".$info);
78 echo "\n</td></tr>\n";
79 }
668 Dawon 80  
677 Dawon 81 } else {
663 Dawon 82  
668 Dawon 83 ?>
84 <tr><td>
85 <?php
663 Dawon 86  
677 Dawon 87 $adresar1 = opendir($path.$folder."/".$soubor);
88 while ($soubor1 = readdir($adresar1)){
89 if ((Is_Dir($path.$folder."/".$soubor."/".$soubor1)) && (substr($soubor1,0,1) <> ".") && (substr($soubor1,0,1) <> "!")) {
90 $img = $soubor1."_Small.jpg";
663 Dawon 91  
668 Dawon 92 ?>
701 Dawon 93 <table border=0>
674 Dawon 94 <?php
687 Dawon 95 /*<tr><td colspan="2"><center><?php echo $soubor1; ?></center></td></tr>*/
96  
677 Dawon 97 if (file_exists($path.$folder.'/'.$soubor."/".$soubor1."/".$img)) {
674 Dawon 98 ?>
685 Dawon 99 <tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$soubor1."/".$img; ?>" width="150"></td>
674 Dawon 100 <?php
697 Dawon 101 } else { echo "<tr><td><img src=\"http://www.mlab.cz/Web/PIC/nopicture2.jpg\" width=\"150\"></td>\n"; }
702 Dawon 102 echo "<td>".$soubor1."</td>\n";
677 Dawon 103 if (file_exists($path.$folder.'/'.$soubor."/".$soubor1."/".$info)) {
694 Dawon 104 echo "<td><iframe src=".$www.$folder.'/'.$soubor."/".$soubor1."/".$info." name=hlavni scrolling=AUTO align=middle frameborder=0>
681 Dawon 105 Chce to novej prohlížeè...</iframe>\n";
677 Dawon 106 echo "\n</td></tr>\n";
700 Dawon 107 } else { echo "<td><i>Description isn't availible!!</i></td>\n"; }
674 Dawon 108 ?>
668 Dawon 109 </table>
110 </td></tr>
111 <?php
677 Dawon 112 }
113 }
114 }
668 Dawon 115  
116 ?>
117 </table>
118 <?php
663 Dawon 119 }
120 }
121 ?>
122  
683 Dawon 123  
704 Dawon 124 <!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE -->
125 <!-- ============== PATIÈKA ============== -->
126 <div class="Footer">
127 <script type="text/javascript">
128 <!--
129 SetRelativePath("../");
130 DrawFooter();
131 // -->
132 </script>
133 <noscript>
134 <p><b> Pro zobrazení (vložení) hlavièky je potøeba JavaScript </b></p>
135 </noscript>
136 </div>
137 <!-- AUTOINCLUDE END -->
138  
139  
140  
663 Dawon 141 </body>
142 </html>