No changes between revisions
| /Server/PrjInfo/Templates/DirInfo.txt |
|---|
| 0,0 → 1,59 |
| // |
| // Toto je popisný soubor pro popis obsahu adresáře (příklad) |
| // |
| // Syntaxe je tato: |
| // |
| // - Všechny řádky začínající znaky // jsou komentáře |
| // |
| // - Soubor je v kódování UTF8 |
| // |
| // - Informace je uvozena značkou [Key] |
| // [Key] je klíč, který říká co je to za informaci |
| // [Key.en] je klíč s informací pro jazyk en |
| // Informace v jazyce má přednost před informací bez jazyka |
| // |
| // - Pokud klíč začíná Info (například [InfoShortDescription] ) tak se tato |
| // informace vloží do místa v templejtu označeném jako $InfoShortDescription |
| // |
| // - Konec souboru je uvozen značkou [End] |
| // |
| // - Informace je prostý text (nepoužívejte HTML značky) |
| // |
| // - Na pořadí položek v souboru nezáleží |
| // |
| // Zavedené klíče, příklad: |
| // |
| // [InfoShortDescription.cs] |
| // Krátký popis (nadpis) v češtině |
| // |
| // [InfoShortDescription.en] |
| // Short description (title) in English |
| // |
| // [InfoShortDescription] |
| // Short descriptpion for other languages |
| // |
| // [InfoLongDescription.en] |
| // A longer description (one paragraph, 2-4 lines max). The whole sentences |
| // with period et the end. |
| // |
| // [InfoLongDescription.cs] |
| // Delší popis na jeden odstavec, tak do 2-4 řádek. V celých větách a tečkou |
| // na konci |
| // |
| // [SortPreferences] |
| // Seznam adresářů pro třídění |
| // |
| [InfoShortDescription.en] |
| [InfoShortDescription.cs] |
| [InfoLongDescription.en] |
| [InfoLongDescription.cs] |
| [InfoBuyUST] |
| [SortPreferences] |
| [End] |
| /Server/PrjInfo/Templates/ListDir.cs.ihtml |
|---|
| 0,0 → 1,186 |
| <!-- Templejt pro tvorbu indexu --> |
| <!-- |
| Templejt |
| ======== |
| Tento templejt je zpracováván substitučním strojem, který funguje tak, že |
| provede tyto úkony: |
| - načte templejt (do své paměti) |
| - vyhodí tento komentář (všechny komentáře před první platnou řádkou) |
| - najde v něm všechny proměnné ve tvaru $InfoXXX a zapamatuje si je |
| - najde v něm všechna nastavení proměnných ve tvaru $InfoXXX = "YYY" a zapamatuje si je |
| - vyhodí z templejtu definice proměnných a případný komentář bezprostředně před definicí |
| Poté je možné programem upravit obsah proměnných (typicky se generují |
| data na základě jiných proměnných a dat z disku na webu). Všechny proměnné |
| jsou programu dostupné v podobě pole, kde klíčem je jméno proměnné (bez |
| dolaru) a hodnotou je řetězec (i prázdý). Program může proměnné modifikovat |
| a definovat další (které se nepoužijí nejsou-li v právě použitém templejtu |
| použity). |
| - provede substituci proměnných jejich obsahem |
| - výsledný řetězec - html stránku - předá klientovi |
| Proměnné |
| ======== |
| Proměnné jsou definovány pouze v templejtu. Co není v templejtu |
| označeno jako proměnná nenahradí se skutečným obsahem. Aby mohl být |
| templejt přehledný je dovoleno používat víceřádkové obsahy proměnných. |
| Definice hodnot je ve tvaru $InfoXXX = "YYY", kde |
| $InfoXXX je jméno proměnné (XXX jsou písmena, číslice, - a _ ) |
| YYY je hodnota proměnné (je v uvozovkách, uvnitř použijte apostrofy) |
| Hodnota proměnné může být na více řádků a může obsahovat odakazy na proměnné, |
| které se nahradí hodnotou těchto proměnných. |
| Definice hodnot proměnných bez jejich použití v templejtu se používá například |
| při definici jazykově závislých řetězců pro program (program je jazykově |
| nezávislý). |
| Substituce |
| ========== |
| Úvodní komentáře na začátku templejtu budou odstraněny. |
| Všechny výskyty proměnných v templejtu budou nahrazeny hodnotou proměnných. |
| Hodnota proměnné může být prázdná, definovaná v templejtu nebo vypočítaná |
| programem. Proměnné mouhou být v templejtu i vícekrát (nahradí se všude). |
| Všechny definice hodnot proměnných se z templejtu odstraní. Nezáleží na místě |
| definice v templejtu. Vícenásobné uvedení hodnoty si (asi) zapamatuje poslední |
| uvedenou hodnotu. |
| --> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> $InfoHeadTitle $InfoSection </title> |
| <meta name="keywords" content="$InfoKeyWords"> |
| <meta name="description" content="$InfoDescription"> |
| <!-- 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="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script 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> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </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> |
| <p><b> Pro zobrazení (vložení) menu je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| $InfoNoText = "Popis není k dispozici" |
| <p class="Title"> |
| $InfoShortDescription |
| </p> |
| <p class="Subtitle"> |
| $InfoLongDescription |
| </p> |
| <!-- Klikací řádka s cestou --> |
| <h1 class="Small"> $InfoPath </h1> |
| $InfoPathTitle = "Klikací cesta zpět" |
| <!-- PermaLink --> |
| <p> |
| Permanentní odkaz: |
| <a href="$InfoPermaLink" |
| title="Permanentní odkaz je zkrácený odkaz na projekt nebo sekci, který se nezmění ani při změně struktury webu.">$InfoPermaLink</a> |
| </p> |
| <table> |
| <tr> |
| <th>Název</th> |
| <th>Náhled</th> |
| <th>Popis</th> |
| <th>Projektová data</th> |
| <th>Možnost nákupu</th> |
| <th>Dokumentace</th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoName</td> |
| <td> $InfoPicture</td> |
| <td> <p><i> $InfoDescripion</i></p> |
| <p class='Small'> $InfoLongDescription</p></td> |
| <td> $InfoWebSVN <br> $InfoWIKI</td> |
| <td> $InfoBuy</td> |
| <td> $InfoPDF <br> $InfoHTML</td> |
| </tr> |
| " |
| <!-- Formát elementu pro oddělení adresářů a projektů --> |
| $InfoSeparator = |
| " |
| <tr> |
| <td colspan='6'> <hr> </td> |
| </tr>" |
| <!-- Lepidlo pro spojování více odkazů najednou v jedné položce --> |
| $InfoGlue = "<br>" |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPicture = "NoPicture.jpg" |
| $InfoNoInfo = "--" |
| $InfoSVNTitle = "Přístup ke všem souborům" |
| $InfoWikiTitle = "Wiki stránka pro modul" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== PATIČKA ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/ListDir.en.ihtml |
|---|
| 0,0 → 1,129 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> $InfoHeadTitle $InfoSection </title> |
| <meta name="keywords" content="$InfoKeyWords"> |
| <meta name="description" content="$InfoDescription"> |
| <!-- AUTOINCLUDE START "Page/Head.en.ihtml" DO NOT REMOVE --> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style"> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| </head> |
| <body lang="en"> |
| <!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== HEADER ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the header </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== MENU ============== --> |
| <div class="Menu"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawMenu(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the menu </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| $InfoNoText = "No Description Available" |
| <p class="Title"> |
| $InfoShortDescription |
| </p> |
| <p class="Subtitle"> |
| $InfoLongDescription |
| </p> |
| <!-- Klikací řádka s cestou --> |
| <h1 class="Small"> $InfoPath </h1> |
| $InfoPathTitle = "The Easy Way Back ..." |
| <!-- PermaLink --> |
| <p> |
| Permanent Link: |
| <a href="$InfoPermaLink" |
| title="Permanent Link is abbreviated link to project or section which will not be changed when web structure is updated.">$InfoPermaLink</a> |
| </p> |
| <table> |
| <tr> |
| <th>Name</th> |
| <th>View</th> |
| <th>Description</th> |
| <th>Project information</th> |
| <th>Buy possibility</th> |
| <th>Documentation</th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoName</td> |
| <td> $InfoPicture</td> |
| <td> <p><i> $InfoDescripion</i></p> |
| <p class='Small'> $InfoLongDescription</p></td> |
| <td> $InfoWebSVN <br> $InfoWIKI</td> |
| <td> $InfoBuy</td> |
| <td> $InfoPDF <br> $InfoHTML</td> |
| </tr> |
| " |
| <!-- Formát elementu pro oddělení adresářů a projektů --> |
| $InfoSeparator = |
| " |
| <tr> |
| <td colspan='6'> <hr> </td> |
| </tr>" |
| <!-- Lepidlo pro spojování více odkazů najednou v jedné položce --> |
| $InfoGlue = "<br>" |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPicture = "NoPicture.jpg" |
| $InfoNoInfo = "--" |
| $InfoSVNTitle = "Access to All Project Files" |
| $InfoWikiTitle = "Wiki Page for Module" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== FOOTER ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the footer </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/ListPrj.cs.ihtml |
|---|
| 0,0 → 1,134 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> $InfoHeadTitle $InfoSection </title> |
| <meta name="keywords" content="$InfoKeyWords"> |
| <meta name="description" content="$InfoDescription"> |
| <!-- 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="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script 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> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </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> |
| <p><b> Pro zobrazení (vložení) menu je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| $InfoNoText = "Popis není k dispozici" |
| <p class="Title"> |
| $InfoShortDescription |
| </p> |
| <p class="Center"> |
| $InfoPictures |
| $InfoPicturesGlue = " " |
| <p> |
| <p class="Subtitle"> |
| $InfoLongDescription |
| </p> |
| <!-- Klikací řádka s cestou --> |
| <h1 class="Small"> $InfoPath </h1> |
| $InfoPathTitle = "Klikací cesta zpět" |
| <!-- PermaLink --> |
| <p> |
| Permanentní odkaz: |
| <a href="$InfoPermaLink" |
| title="Permanentní odkaz je zkrácený odkaz na projekt nebo sekci, který se nezmění ani při změně struktury webu.">$InfoPermaLink</a> |
| </p> |
| <table> |
| <tr> |
| <th> Textová Část </th> |
| <td> $InfoText </td> |
| </tr> |
| $InfoSchema |
| $InfoWebSVN |
| $InfoWIKI |
| $InfoBuy |
| <!-- Definice jednotlivých položek --> |
| $InfoSchema = |
| " |
| <tr> |
| <th> Schéma a seznam součástek </th> |
| <td> $InfoSchema </td> |
| </tr> |
| " |
| $InfoWebSVN = |
| " |
| <tr> |
| <th> Všechny soubory projektu</th> |
| <td> $InfoWebSVN </td> |
| </tr> |
| " |
| $InfoBuy = |
| " |
| <tr> |
| <th> Možnost nákupu stavebnice </th> |
| <td> $InfoBuy </td> |
| </tr> |
| " |
| <!-- Lepidlo --> |
| $InfoGlue = "<br>" |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPictureXXXX = "NoPicture.jpg" |
| $InfoNoInfo = " " |
| $InfoSVNTitleXXXX = "Přístup ke všem souborům" |
| $InfoWikiTitleXXXX = "Wiki stránka pro modul" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== PATIČKA ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/ListPrj.en.ihtml |
|---|
| 0,0 → 1,129 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> $InfoHeadTitle $InfoSection </title> |
| <meta name="keywords" content="$InfoKeyWords"> |
| <meta name="description" content="$InfoDescription"> |
| <!-- AUTOINCLUDE START "Page/Head.en.ihtml" DO NOT REMOVE --> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style"> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| </head> |
| <body lang="en"> |
| <!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== HEADER ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the header </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== MENU ============== --> |
| <div class="Menu"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawMenu(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the menu </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| $InfoNoText = "No Description Available" |
| <p class="Title"> |
| $InfoShortDescription |
| </p> |
| <p class="Subtitle"> |
| $InfoLongDescription |
| </p> |
| <!-- Klikací řádka s cestou --> |
| <h1 class="Small"> $InfoPath </h1> |
| $InfoPathTitle = "The Easy Way Back ..." |
| <!-- PermaLink --> |
| <p> |
| Permanent Link: |
| <a href="$InfoPermaLink" |
| title="Permanent Link is abbreviated link to project or section which will not be changed when web structure is updated.">$InfoPermaLink</a> |
| </p> |
| <table> |
| <tr> |
| <th>Name</th> |
| <th>View</th> |
| <th>Description</th> |
| <th>Project information</th> |
| <th>Buy possibility</th> |
| <th>Documentation</th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoName</td> |
| <td> $InfoPicture</td> |
| <td> <p><i> $InfoDescripion</i></p> |
| <p class='Small'> $InfoLongDescription</p></td> |
| <td> $InfoWebSVN <br> $InfoWIKI</td> |
| <td> $InfoBuy</td> |
| <td> $InfoPDF <br> $InfoHTML</td> |
| </tr> |
| " |
| <!-- Formát elementu pro oddělení adresářů a projektů --> |
| $InfoSeparator = |
| " |
| <tr> |
| <td colspan='6'> <hr> </td> |
| </tr>" |
| <!-- Lepidlo pro spojování více odkazů najednou v jedné položce --> |
| $InfoGlue = "<br>" |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPicture = "NoPicture.jpg" |
| $InfoNoInfo = "--" |
| $InfoSVNTitle = "Access to All Project Files" |
| $InfoWikiTitle = "Wiki Page for Module" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== FOOTER ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the footer </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/NoPicture.jpg |
|---|
| Cannot display: file marked as a binary type. |
| svn:mime-type = application/octet-stream |
| Property changes: |
| Added: svn:mime-type |
| +application/octet-stream |
| \ No newline at end of property |
| /Server/PrjInfo/Templates/PermaLink.cs.ihtml |
|---|
| 0,0 → 1,140 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> PermaLink </title> |
| <meta name="keywords" content="PermaLink permanentní odkaz neměnný odkaz"> |
| <meta name="description" content="Stránka pro zpracování permanentních odkazů"> |
| <!-- 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="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| <style type="text/css"> |
| tr.Section td { |
| background-color: #EEFFEE; /* pozadí tabulky */ |
| } |
| tr.Project td { |
| background-color: #FFFFCC; /* pozadí tabulky */ |
| } |
| .Marked { /* Zvýrazněná část cesty */ |
| color: red; |
| /*font-size: 130%; /**/ |
| font-weight: bolder; |
| } |
| form { |
| background-color: #EEFFEE; |
| padding: 6px; |
| } |
| input { |
| background-color: #FFFFCC; |
| border: solid 1px red; |
| } |
| </style> |
| </head> |
| <body lang="cs" body onLoad="document.forms.FormPermaLink.PermaLink.focus()"> |
| <!-- AUTOINCLUDE START "Page/Header.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== HLAVICKA ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </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> |
| <p><b> Pro zobrazení (vložení) menu je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| <h1> Neúplný permanentní odkaz </h1> |
| <p> |
| <i> Zadali jste nejednoznačný nebo neplatný permanentní odkaz. |
| Můžete zadat odkaz přesněji, nebo si vybrat z nalezených kandidátů.</i> |
| <br> |
| Při hledání nezáleží na velikosti písmen, ani na češtině. Hledá se (i částečná) |
| shoda zadaného textu s názvem sekce (adresáře) nebo projektu (modulu). |
| Podrobnosti jak fungují permanentní odkazy naleznete v <a href='/PermaLink/PermaLink'>návodu</a>. |
| </p> |
| <form name="FormPermaLink" method="post" action="http://$InfoThisServer/PermaLink"> |
| <label for="PermaLink">Permanentní odkaz</label> |
| <input type="text" name="PermaLink" value="$InfoThisLink" size="50"> |
| </form> |
| <br> |
| <table> |
| <tr> |
| <th> PermaLink </th> |
| <th class='Center'> Náhled </th> |
| <th> Celá cesta na webu a popis </th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr class='$InfoType'> |
| <td> $InfoPermaLink </td> |
| <td class='Center'> $InfoPicture </td> |
| <td class='Top'> $InfoPath <br> |
| <p> <i> $InfoShortDescription </i> </p> |
| <p class='Small'> $InfoLongDescription </p> </td> |
| </tr> |
| " |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPicture = "NoPicture.jpg" |
| $InfoPictureGlue = "<br>" |
| $InfoPictureAlt = "Ilustrační obrázek" |
| $InfoNoText = "Popis není k dispozici" |
| $InfoNoData = "<tr><td class='Center' colspan='3'> Žádná data </td></tr>" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== PATIČKA ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/PermaLink.en.ihtml |
|---|
| 0,0 → 1,139 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> PermaLink </title> |
| <meta name="keywords" content="PermaLink permanent link stable link"> |
| <meta name="description" content="The page for permanent link processing"> |
| <!-- AUTOINCLUDE START "Page/Head.cs.ihtml" DO NOT REMOVE --> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style"> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| <style type="text/css"> |
| tr.Section td { |
| background-color: #EEFFEE; /* pozadí tabulky */ |
| } |
| tr.Project td { |
| background-color: #FFFFCC; /* pozadí tabulky */ |
| } |
| .Marked { |
| color: red; /**/ |
| /*font-size: 130%; /**/ |
| font-weight: bolder; /**/ |
| } |
| form { |
| background-color: #EEFFEE; |
| padding: 6px; |
| } |
| input { |
| background-color: #FFFFCC; |
| border: solid 1px red; |
| } |
| </style> |
| </head> |
| <body lang="en" onLoad="document.forms.FormPermaLink.PermaLink.focus()"> |
| <!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== HEADER ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the header </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== MENU ============== --> |
| <div class="Menu"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawMenu(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the menu </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| <h1> Incomplete permanent link </h1> |
| <p> |
| <i> You have entered unambiguous or invalid link. |
| You may enter the link more precisely or you can choose from founded items.</i> |
| <br> |
| Search engine ignores letter case and accent. It looks for (partial) |
| correspondence of given text and section (directory) name or project (module) name. |
| How do permanent liks work is written in <a href='/PermaLink/PermaLink'>documentation</a>. |
| </p> |
| <form name="FormPermaLink" method="post" action="http://$InfoThisServer/PermaLink"> |
| <label for="PermaLink">Permanent Link</label> |
| <input type="text" name="PermaLink" value="$InfoThisLink" size="50"> |
| </form> |
| <br> |
| <table> |
| <tr> |
| <th> PermaLink </th> |
| <th class='Center'> View </th> |
| <th> WEB Path and Description </th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoPermaLink </td> |
| <td class='Center'> $InfoPicture </td> |
| <td class='Top'> $InfoPath <br> |
| <p> <i> $InfoShortDescription </i> </p> |
| <p class='Small'> $InfoLongDescription </p> </td> |
| </tr> |
| " |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPicture = "NoPicture.jpg" |
| $InfoPictureGlue = "<br>" |
| $InfoPictureAlt = "Illustrational Picture" |
| $InfoNoText = "No Description Available" |
| $InfoNoData = "<tr><td class='Center' colspan='3'> Nothing Found </td></tr>" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== FOOTER ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the footer </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/PermaLinkPath.cs.ihtml |
|---|
| 0,0 → 1,117 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> PermaLink </title> |
| <meta name="keywords" content="PermaLink permanentní odkaz neměnný odkaz"> |
| <meta name="description" content="Stránka pro zpracování permanentních odkazů"> |
| <!-- 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="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| <style type="text/css"> |
| form { |
| background-color: #EEFFEE; |
| padding: 6px; |
| } |
| input { |
| background-color: #FFFFCC; |
| border: solid 1px red; |
| } |
| </style> |
| </head> |
| <body lang="cs" body onLoad="document.forms.FormPermaLink.PermaLink.focus()"> |
| <!-- AUTOINCLUDE START "Page/Header.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== HLAVICKA ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </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> |
| <p><b> Pro zobrazení (vložení) menu je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| <h1> Permanentní odkaz s cestou k souborům </h1> |
| <p> |
| <i> Odkazu odpovídá více souborů nebo žádný soubor. |
| Můžete odkaz zadat přesněji, nebo si vybrat z nalezených souborů.</i> |
| <br> |
| Při hledání nezáleží na velikosti písmen, ani na češtině. |
| Podrobnosti jak fungují permanentní odkazy naleznete v <a href='/PermaLink/PermaLink'>návodu</a>. |
| </p> |
| <form name="FormPermaLink" method="post" action="http://$InfoThisServer/PermaLink"> |
| <label for="PermaLink">Permanentní odkaz</label> |
| <input type="text" name="PermaLink" value="$InfoThisLink" size="50"> |
| </form> |
| <br> |
| <table> |
| <tr> |
| <th> Cesta </th> |
| <th> Soubory </th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoPath </td> |
| <td> $InfoNames </td> |
| </tr> |
| " |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNamesGlue = "<br>" |
| $InfoNoData = "<tr><td class='Center' colspan='2'> Žádná data </td></tr>" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== PATIČKA ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/PermaLinkPath.en.ihtml |
|---|
| 0,0 → 1,117 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> PermaLink </title> |
| <meta name="keywords" content="PermaLink permanent link stable link"> |
| <meta name="description" content="The page for permanent link processing"> |
| <!-- AUTOINCLUDE START "Page/Head.cs.ihtml" DO NOT REMOVE --> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style"> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| <style type="text/css"> |
| form { |
| background-color: #EEFFEE; |
| padding: 6px; |
| } |
| input { |
| background-color: #FFFFCC; |
| border: solid 1px red; |
| } |
| </style> |
| </head> |
| <body lang="en" onLoad="document.forms.FormPermaLink.PermaLink.focus()"> |
| <!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== HEADER ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the header </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== MENU ============== --> |
| <div class="Menu"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawMenu(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the menu </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| <h1> Permanent link with path to file </h1> |
| <p> |
| <i> More than one or none file was found. |
| You may enter the link more precise or you can choose from founded files.</i> |
| <br> |
| It does not matter on letter case nor letter accent. |
| How do permanent liks work is written in <a href='/PermaLink/PermaLink'>documentation</a>. |
| </p> |
| <form name="FormPermaLink" method="post" action="http://$InfoThisServer/PermaLink"> |
| <label for="PermaLink">Permanent Link</label> |
| <input type="text" name="PermaLink" value="$InfoThisLink" size="50"> |
| </form> |
| <br> |
| <table> |
| <tr> |
| <th> Path </th> |
| <th> Files </th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoPath </td> |
| <td> $InfoNames </td> |
| </tr> |
| " |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNamesGlue = "<br>" |
| $InfoNoData = "<tr><td class='Center' colspan='2'> Nothinh Found </td></tr>" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== FOOTER ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the footer </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/PrjInfo.cs.ihtml |
|---|
| 0,0 → 1,134 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> $InfoHeadTitle $InfoSection </title> |
| <meta name="keywords" content="$InfoKeyWords"> |
| <meta name="description" content="$InfoDescription"> |
| <!-- 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="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script 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> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </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> |
| <p><b> Pro zobrazení (vložení) menu je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| $InfoNoText = "Popis není k dispozici" |
| <p class="Title"> |
| $InfoShortDescription |
| </p> |
| <p class="Center"> |
| $InfoPictures |
| $InfoPicturesGlue = " " |
| <p> |
| <p class="Subtitle"> |
| $InfoLongDescription |
| </p> |
| <!-- Klikací řádka s cestou --> |
| <h1 class="Small"> $InfoPath </h1> |
| $InfoPathTitle = "Klikací cesta zpět" |
| <!-- PermaLink --> |
| <p> |
| Permanentní odkaz: |
| <a href="$InfoPermaLink" |
| title="Permanentní odkaz je zkrácený odkaz na projekt nebo sekci, který se nezmění ani při změně struktury webu.">$InfoPermaLink</a> |
| </p> |
| <table> |
| <tr> |
| <th> Textová Část </th> |
| <td> $InfoText </td> |
| </tr> |
| $InfoSchema |
| $InfoWebSVN |
| $InfoWIKI |
| $InfoBuy |
| <!-- Definice jednotlivých položek --> |
| $InfoSchema = |
| " |
| <tr> |
| <th> Schéma a seznam součástek </th> |
| <td> $InfoSchema </td> |
| </tr> |
| " |
| $InfoWebSVN = |
| " |
| <tr> |
| <th> Všechny soubory projektu</th> |
| <td> $InfoWebSVN </td> |
| </tr> |
| " |
| $InfoBuy = |
| " |
| <tr> |
| <th> Možnost nákupu stavebnice </th> |
| <td> $InfoBuy </td> |
| </tr> |
| " |
| <!-- Lepidlo --> |
| $InfoGlue = "<br>" |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPictureXXXX = "NoPicture.jpg" |
| $InfoNoInfo = " " |
| $InfoSVNTitleXXXX = "Přístup ke všem souborům" |
| $InfoWikiTitleXXXX = "Wiki stránka pro modul" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE --> |
| <!-- ============== PATIČKA ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> Pro zobrazení (vložení) hlavičky je potřeba JavaScript </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |
| /Server/PrjInfo/Templates/PrjInfo.en.ihtml |
|---|
| 0,0 → 1,129 |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title> $InfoHeadTitle $InfoSection </title> |
| <meta name="keywords" content="$InfoKeyWords"> |
| <meta name="description" content="$InfoDescription"> |
| <!-- AUTOINCLUDE START "Page/Head.en.ihtml" DO NOT REMOVE --> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style"> |
| <link rel="StyleSheet" href="/Web/CSS/MLAB_Print.css" type="text/css" media="print"> |
| <link rel="shortcut icon" type="image/x-icon" href="/Web/PIC/MLAB.ico"> |
| <script type="text/javascript" src="/Web/JS/MLAB_Menu.js"></script> |
| <!-- AUTOINCLUDE END --> |
| </head> |
| <body lang="en"> |
| <!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== HEADER ============== --> |
| <div class="Header"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawHeader(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the header </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== MENU ============== --> |
| <div class="Menu"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawMenu(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the menu </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| <!-- ============== TEXT ============== --> |
| <div class="Text"> |
| $InfoNoText = "No Description Available" |
| <p class="Title"> |
| $InfoShortDescription |
| </p> |
| <p class="Subtitle"> |
| $InfoLongDescription |
| </p> |
| <!-- Klikací řádka s cestou --> |
| <h1 class="Small"> $InfoPath </h1> |
| $InfoPathTitle = "The Easy Way Back ..." |
| <!-- PermaLink --> |
| <p> |
| Permanent Link: |
| <a href="$InfoPermaLink" |
| title="Permanent Link is abbreviated link to project or section which will not be changed when web structure is updated.">$InfoPermaLink</a> |
| </p> |
| <table> |
| <tr> |
| <th>Name</th> |
| <th>View</th> |
| <th>Description</th> |
| <th>Project information</th> |
| <th>Buy possibility</th> |
| <th>Documentation</th> |
| </tr> |
| <!-- Řádky indexu se vkládají sem --> |
| $InfoLine |
| <!-- Formát vkládané řádky --> |
| $InfoLine = |
| " |
| <tr> |
| <td> $InfoName</td> |
| <td> $InfoPicture</td> |
| <td> <p><i> $InfoDescripion</i></p> |
| <p class='Small'> $InfoLongDescription</p></td> |
| <td> $InfoWebSVN <br> $InfoWIKI</td> |
| <td> $InfoBuy</td> |
| <td> $InfoPDF <br> $InfoHTML</td> |
| </tr> |
| " |
| <!-- Formát elementu pro oddělení adresářů a projektů --> |
| $InfoSeparator = |
| " |
| <tr> |
| <td colspan='6'> <hr> </td> |
| </tr>" |
| <!-- Lepidlo pro spojování více odkazů najednou v jedné položce --> |
| $InfoGlue = "<br>" |
| <!-- Co se dává do položek, které nemají obsah --> |
| $InfoNoPicture = "NoPicture.jpg" |
| $InfoNoInfo = "--" |
| $InfoSVNTitle = "Access to All Project Files" |
| $InfoWikiTitle = "Wiki Page for Module" |
| </table> |
| </div> |
| <!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE --> |
| <!-- ============== FOOTER ============== --> |
| <div class="Footer"> |
| <script type="text/javascript"> |
| <!-- |
| SetRelativePath("/"); |
| DrawFooter(); |
| // --> |
| </script> |
| <noscript> |
| <p><b> JavaScript is required for including of the footer </b></p> |
| </noscript> |
| </div> |
| <!-- AUTOINCLUDE END --> |
| </body> |
| </html> |