Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1399 → Rev 1400

/website/subproj/index.php
13,7 → 13,7
<h1><?php echo $PROJNAME; ?></h1>
<p class="copyr"><?php echo $SHORT ?></p>
 
<p><?php echo $LONG; ?></p>
<?php echo $LONGHTML; ?>
 
<h2>DOWNLOAD</h2>
 
22,7 → 22,6
$flist = scandir("./", SCANDIR_SORT_DESCENDING);
foreach ($flist as $f) {
if (strpos($f, '.zip') == false) continue;
if (!stristr($f, 'svarcom')) continue;
$fsz = intval(filesize($f) / 1024);
echo "<tr><td><a href=\"{$f}\">{$f}</a></td><td class=\"siz\"> {$fsz} KiB</td></tr>\n";
}
/website/sved/settings.php
1,13 → 1,25
<?php
 
$PROJNAME = 'Sved';
$SHORT = 'text editor';
$PROJNAME = 'SVED';
$SHORT = 'the SvarDOS text editor';
 
$LONG = '
The SvarDOS editor (SVED) is designed for basic editing of configuration files
$LONGHTML = '
<p>The SvarDOS editor (SVED) is designed for basic editing of configuration files
and such. It is NOT meant to be a full-featured text editor. On the pro side,
it has a low memory footprint and is only a couple kilobytes big, which makes
it a good fit for bootdisks or systems with extremely limited ressources.
it a good fit for bootdisks or systems with extremely limited ressources.</p>
 
<ul>
<li>runs comfortably on a 8086-class PC with 256 KiB of RAM</li>
<li>supports color and monochrome video modes</li>
<li>supports extended text modes like 80x43, 80x50...</li>
<li>multilingual UI</li>
<li>less than 7 KiB of disk footprint</li>
<li>loads files larger than 64 KiB</li>
<li>no limit on line lengths</li>
<li>can load up to 10 files simulteanously</li>
<li>handles CR/LF and LF line endings and can convert between the two</li>
</ul>
';
 
$COPYRDATE = '2023';