fb0887d6eeec833fab9ce0886c88dca82216ebb2
[infodrom.org/oldenburg.linux.de] / src / Infos / index.wml
1 #include <LUGO.style>
2
3 <page name="Informationen">
4
5 <h3>Allgemeine Informationen</h3>
6
7 <p>Linux ist der Kern eines freien Unix-artigen Betriebssystems für Rechner der Intel
8 x86er-Klasse ab 80386 sowie für viele weitere Prozessorarchitekturen
9 (u.a. Alpha,
10 Sun Sparc, PowerPC, HP PA-RISC, Motorola 680x0, IBM S/390, ARM, MIPS
11 etc.).  GNU/Linux ist das Betriebssystem auf Basis des Linux-Kernels, das echtes Multitasking und
12 vernünftige Unterstützung für Multiuser-Umgebungen bietet.  Durch
13 seine breite Hardwareunterstützung ist es für Privatanwender
14 genauso interessant, wie für den gewerblichen Einsatz.<p>
15
16 <p>Der Oldenburger Linux-Stammtisch existiert seit Januar 1995, die
17 Linux User Group Oldenburg (LUGO) offiziell seit Februar 1999 und ist
18 eine offene Benutzergruppe ohne Vereinscharakter.  Zu den regelmäßigen
19 <a href="stammtisch.html">Treffen</a> sind alle interessierte Personen
20 eingeladen.</p>
21
22 <h3>Weiteres</h3>
23
24 <center><table border=0 cellspacing=10 width=70%>
25 <:
26 # Spalte:url:name
27    $config = "
28 #0|stammtisch.html|Linux-Stammtisch
29 #0|history.html|Geschichte (OL)
30 #0|liste.html|Mailing-Liste
31 #0|lugs.html|LUGs in der Region
32 #0|linux.html|GNU/Linux
33 #1|magazine.html|Zeitschriften
34 #1|distribs.html|Distributionen
35 #1|archs.html|Architekturen
36 #1|myths.html|Mythen
37 0|stammtisch.html|Stammtisch
38 0|history.html|Geschichte
39 0|liste.html|Mailing-Liste
40 1|lugs.html|LUGs
41 1|linux.html|GNU/Linux
42 1|einladungen.php|Einladungen
43 2|archs.html|Architekturen
44 2|magazine.html|Zeitschriften
45 2|distribs.html|Distributionen
46 3|spam.html|Spam
47 3|myths.html|Mythen
48 3|http://wiki.ffis.de/|Wiki
49 # 3:eurolugs.html:Euro-LUGs
50 ";
51
52     foreach $line (split (/\n/, $config)) {
53         next if ($line =~ /^\s*$/);
54         chomp;
55         @row = split (/\|/, $line);
56         $name{$row[1]} = $row[2];
57         push (@{$elem[$row[0]]}, $row[1]);
58     }
59
60     $cols = $#elem+1;
61     $width = 100 / $cols;
62
63     $rows=0;
64     for ($col=0; $col < $cols; $col++) {
65         $rows = $#{$elem[$col]}+1 if ($rows < $#{$elem[$col]});
66     }
67
68     for ($row=0; $row < $rows; $row++) {
69         print "<tr>";
70         for ($col=0; $col < $cols; $col++) {
71             if ($elem[$col][$row]) {
72                 printf "<td class=infotable align=center width=%d%%>"
73                      . "<a href=\"%s\">%s</a></td>",
74                     $width, $elem[$col][$row], $name{$elem[$col][$row]};
75             } else {
76                 printf "<td width=%d%%>&nbsp;</td>", $width;
77             }
78         }
79         print "</tr>";
80     }
81 :>
82 </table></center><p>
83
84 </page>
85
86 # Local variables:
87 # mode: indented-text
88 # mode: auto-fill
89 # mode: iso-accents
90 # end: