Subversion Repositories SvarDOS

Rev

Rev 110 | Rev 179 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 110 Rev 175
Line 1... Line 1...
1
<!DOCTYPE html>
1
<!DOCTYPE html>
2
<html lang="en">
2
<html lang="en">
3
  <head>
3
  <head>
4
    <title>Svarog386 - a FreeDOS distribution for 386+</title>
4
    <title>SvarDOS</title>
5
    <meta name="keywords" content="svarog386,freedos">
5
    <meta name="keywords" content="svardos,svarog386,freedos">
6
    <meta name="author" content="Mateusz Viste">
6
    <meta name="author" content="Mateusz Viste">
7
    <meta name="robots" content="index, follow">
7
    <meta name="robots" content="index, follow">
8
    <meta charset="UTF-8">
8
    <meta charset="UTF-8">
9
    <link rel="icon" type="image/png" href="icon.png">
9
    <link rel="icon" type="image/png" href="icon.png">
10
    <link rel="stylesheet" href="style.css">
10
    <link rel="stylesheet" href="style.css">
11
  </head>
11
  </head>
12
  <body>
12
  <body>
13
 
13
 
14
    <div style="background-color: #FAFAFA; width: 70%; min-width: 800px; margin: 0 auto; height: auto !important; min-height: 100%; box-shadow: 0 0 2em 0.25em #202020;"><div style="padding: 0.5em 0.5em 2em 0.5em;">
-
 
15
 
-
 
16
    <p style="margin: 0 0 -1em auto; font-size: 0.9em; text-align: right;"><a href="/">Main page</a> I <a href="?p=why">Why Svarog386</a> I <a href="?p=tech">Tech</a> I <a href="?p=nls">NLS</a></p>
14
    <p style="margin: 0 0 -1em auto; font-size: 0.9em; text-align: right;"><a href="/">Main page</a> I <a href="?p=why">Why SvarDOS</a> I <a href="?p=tech">Tech</a> I <a href="?p=nls">NLS</a></p>
17
 
15
 
18
<?php
16
<?php
19
 
17
 
20
    $p = '';
18
    $p = '';
21
    if (! empty($_GET['p'])) $p = $_GET['p'];
19
    if (! empty($_GET['p'])) $p = $_GET['p'];
Line 26... Line 24...
26
      include 'index-tech.php';
24
      include 'index-tech.php';
27
    } else if ($p == 'nls') {
25
    } else if ($p == 'nls') {
28
      readfile('index-nls.htm');
26
      readfile('index-nls.htm');
29
    } else if ($p == 'test') {
27
    } else if ($p == 'test') {
30
      include 'index-test.php';
28
      include 'index-test.php';
31
    } else if ($p == 'pkgincl') { // this one should be removed soon, once the tech version is discovered by search engines -- 26 Aug 2016
-
 
32
      echo '
-
 
33
      <p class="title">Svarog386 package inclusion rules</p>
-
 
34
      <p class="copyr"></p>
-
 
35
      <p>Svarog386 is a FreeDOS&trade; distribution that comes with plenty of third-party packages. With time, packages gets updated and new packages are being added. However, Svarog386 is not a shareware distribution CD, nor it is a "warez" production of any kind! Every software that is distributed within Svarog386 must comply to a few common sense rules, as listed below.</p>
-
 
36
 
-
 
37
      <p class="chapt">Objective usefulness</p>
-
 
38
      <p>The distributed software must be useful. There is no point in distributing hundreds of "Hello World" programs for example. The software must be useable as a finished product and provide some features that are proven to be seeked by at least a subset of the user base. Games are considered useful, as long as they fulfill their goal of providing actual distraction.</p>
-
 
39
 
-
 
40
      <p class="chapt">Reasonable quality</p>
-
 
41
      <p>The packaged program must exhibit traits of reasonable quality. This means that it should have a deterministic behavior, and be free of undesirable side-effects to the user\'s computer (not crashing, freezing, resulting in unexpected loss of data, etc). It should also provide clear, non-ambiguous instructions to the user about how the program is meant to be used.</p>
-
 
42
 
-
 
43
      <p class="chapt">Free (no cost)</p>
-
 
44
      <p>The program must be free - that is, available at no financial cost. It doesn\'t have to comply to an OSI-approved license or be open-source (even if that would be prefered), but at the very least it must be free for personal, non-commercial use.</p>
-
 
45
 
-
 
46
      <p class="chapt">Distribution allowed</p>
-
 
47
      <p>The program must allow distribution without restrictions, and must not forbid being redistributed in a re-packaged form.</p>
-
 
48
      ';
-
 
49
    } else { // else display the front page
29
    } else { // else display the front page
50
      include 'index-main.php';
30
      //include 'index-main.php';
-
 
31
      include 'wip.htm';
51
    }
32
    }
52
?>
33
?>
53
    </div></div>
-
 
54
  </body>
34
  </body>
55
</html>
35
</html>