Subversion Repositories SvarDOS

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1405 → Rev 1406

/website/svarlang/index.php
1,44 → 1,0
<!DOCTYPE html>
<html lang="en">
<head>
<title>SvarLANG</title>
<meta name="author" content="Mateusz Viste">
<meta name="robots" content="index, follow">
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
 
<h1>SvarLANG</h1>
<p class="copyr">the SvarDOS l18n library</p>
 
<p>SvarLANG is a C library and toolset for enabling DOS applications to easily support multiple languages. It is part of the SvarDOS project and is designed with lightness in mind. Requires the OpenWatcom suite.</p>
 
<p>All documentation is available in the distributed archive.</p>
 
<h2>DOWNLOAD</h2>
 
<table>
<?php
$flist = scandir("./", SCANDIR_SORT_DESCENDING);
foreach ($flist as $f) {
if (strpos($f, '.zip') == false) continue;
if (!stristr($f, 'svarlang')) continue;
$fsz = intval(filesize($f) / 1024);
echo "<tr><td><a href=\"{$f}\">{$f}</a></td><td class=\"siz\"> {$fsz} KiB</td></tr>\n";
}
?>
</table>
 
<h2>LICENSE (MIT)</h2>
 
<p>Copyright &copy; 2021-2023 Mateusz Viste</p>
 
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
 
<p>- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
 
<p>- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
 
</body>
</html>
link ../subproj/index.php
Property changes:
Added: svn:special
+*
\ No newline at end of property
/website/svarlang/settings.php
0,0 → 1,14
<?php
 
$PROJNAME = 'SvarLANG';
$SHORT = 'the SvarDOS l18n library';
 
$LONGHTML = '
<p>SvarLANG is a C library and toolset for enabling DOS applications to easily support multiple languages. It is part of the SvarDOS project and is designed with lightness in mind. Requires the OpenWatcom suite.</p>
 
<p>All documentation is available in the distributed archive.</p>
';
 
$COPYRDATE = '2021-2023';
 
?>
/website/svarlang/style.css
1,89 → 1,0
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');
 
h1 {
font-size: 1.35em;
margin: 0 auto;
text-align: center;
font-weight: 600;
}
 
p.copyr {
font-size: 1.00em;
margin: 0 auto 4.5em auto;
color: #999;
text-align: center;
}
 
h2 {
font-size: 1.1em;
font-weight: bold;
margin: 1.75em 0 0 0;
text-align: left;
}
 
p {
font-size: 1.00em;
margin: 0.5em 0 0 0;
text-align: justify;
}
 
html {
margin: 0;
padding: 0;
background-color: #ccc;
}
 
body {
font-size: 1.15em;
background-color: #fff;
font-family: "Noto Sans JP", sans-serif;
margin: 0 auto;
padding: 3em 0.5em 0.5em 0.5em;
box-sizing: border-box;
width: 100%;
max-width: 60em;
border: 1px #999 solid;
border-top: 0;
}
 
a:link { /* unvisited link */
color: #008; text-decoration: none;
}
 
a:visited { /* visited link */
color: #008; text-decoration: none;
}
 
a:hover { /* mouse over link */
color: #00F; text-decoration: none;
}
 
a:active { /* selected link */
color: #008; text-decoration: none;
}
 
a.mateusz {
color: inherit; text-decoration: none;
}
 
table {
margin: 1em 0;
border-spacing: 0;
border-collapse: collapse;
text-align: left;
border: 1px #aaa solid;
border-radius: 0.5em;
}
 
table tr:nth-child(odd) {
background-color: #f5f5f5;
}
 
table tr td {
padding: 0.1em 0.5em;
}
 
table tr td.siz {
text-align: right;
color: #555;
}
link ../subproj/style.css
Property changes:
Added: svn:special
+*
\ No newline at end of property