#!/usr/bin/perl -w
# vim: set sw=4 ts=4 si et:
# Author: Guido Socher, guido@bearix.oche.de
# Patch for -t option by Floris.Lambrechts@linuxfocus.org
# This software ist distributed under the conditions of the 
# GNU public license.
use strict;
use vars qw($opt_h $opt_l $opt_t $opt_i);
use Getopt::Std;
#
my $l=0;
# we read all the themes into ram:
my %themesptr;
my %issueptr;
my @issuenames;
my $theme;
my $tname;
my $ver="version 0.7.1";
# small change to be able to link to .shtml files instead of .html if not available
my $bg;
my $i;
my @line;
my %templates;
my $articlefile;
my $iarticlefile;
my $abstract;
my $title;
my $today;
my $lang="en";
# LinuxFocus got messy over the initiative to change the article location
# from MonthYear to articles directory. 
# This tells us per issue where things are. The syntax is 
# 'issue_name'=>'directory'
# issue_name is the term that comes after the "month:" in the defintion file.
# 
my %whereiswhat=(
    'en'=>{"November1997"=>'November1997',"January1998"=>'January1998',"March1998"=>'March1998',"May1998"=>'May1998','July1998'=>'articles','September1998'=>'articles','October1998'=>'articles','November1998'=>'articles','December1998'=>'articles','January1999'=>'articles','Next'=>'../WorkSpace/Nextissue','July1999'=>'July1999','September1999'=>'September1999','November1999'=>'November1999','January2000'=>'January2000','March2000'=>'March2000','May2000'=>'May2000'},
    'cn'=>{"November1997"=>'November1997',"January1998"=>'January1998',"March1998"=>'March1998',"May1998"=>'May1998','July1998'=>'July1998','September1998'=>'September1998','October1998'=>'October1998','November1998'=>'November1998','December1998'=>'December1998','January1999'=>'January1999','Next'=>'../WorkSpace/Nextissue','July1999'=>'July1999','September1999'=>'September1999','November1999'=>'November1999','May2000'=>'May2000'},
    'de'=>{"November1997"=>'November1997',"January1998"=>'January1998',"March1998"=>'March1998',"May1998"=>'May1998','July1998'=>'July1998','September1998'=>'September1998','October1998'=>'October1998','November1998'=>'November1998','December1998'=>'December1998','January1999'=>'January1999','Next'=>'../WorkSpace/Nextissue','July1999'=>'July1999','September1999'=>'September1999','November1999'=>'November1999','May2000'=>'May2000'},
    'fr'=>{"November1997"=>'November1997',"January1998"=>'January1998',"March1998"=>'March1998',"May1998"=>'May1998','July1998'=>'July1998','September1998'=>'September1998','October1998'=>'October1998','November1998'=>'November1998','December1998'=>'articles','January1999'=>'articles','Next'=>'../WorkSpace/Nextissue','July1999'=>'July1999','September1999'=>'September1999','November1999'=>'November1999','May2000'=>'May2000'},
    'nl'=>{"November1997"=>'November1997',"January1998"=>'January1998',"March1998"=>'March1998',"May1998"=>'May1998','July1998'=>'articles','September1998'=>'articles','October1998'=>'articles','November1998'=>'articles','December1998'=>'articles','January1999'=>'articles','Next'=>'../WorkSpace/Nextissue','July1999'=>'articles','September1999'=>'September1999','November1999'=>'November1999','January2000'=>'January2000','March2000'=>'March2000','May2000'=>'May2000'},
    'es'=>{"November1997"=>'November1997',"January1998"=>'January1998',"March1998"=>'March1998',"May1998"=>'May1998','July1998'=>'July1998','September1998'=>'articles','October1998'=>'articles','November1998'=>'articles','December1998'=>'articles','January1999'=>'articles','Next'=>'../WorkSpace/Nextissue','July1999'=>'July1999','September1999'=>'September1999','November1999'=>'November1999','May2000'=>'May2000'}
    );
#
my %validcat=('Forum'=>1,'Applications'=>1,'Hardware'=>1,'Webdesign'=>1,
    'System Administration'=>1,'Software Development'=>1,'Graphics'=>1,
    'UNIX Basics'=>1,'Kernel Corner'=>1,'Interviews'=>1,'Community'=>1,
    'Games'=>1
    );
my %abbrevcat=('appl'=>'Applications','hw'=>'Hardware','www'=>'Webdesign',
    'sysadm'=>'System Administration','sdev'=>'Software Development',
    'grx'=>'Graphics',
    'ubx'=>'UNIX Basics','kernel'=>'Kernel Corner');
#
&getopts("l:hti:")||exit 1;
&help if ($opt_h);
&help if (scalar(@ARGV) < 1);
die "ERROR: can not read file $ARGV[0]\n" unless (-r "$ARGV[0]");
$today=&today;
if ($opt_l){
    if ($whereiswhat{$opt_l}){
        $lang=$opt_l;
    }else{
        die "ERROR: no language extension $opt_l defined, yet. Please add it\n";
    }
}
&readtemplates();
&readthemestxt($ARGV[0]);
unless (-d "Themes"){
    print STDERR "making directory Themes...\n";
    mkdir "Themes",0755 || die "ERROR: could not mkdir Themes\n";
}
#----------
print STDERR "writing ./Themes/index.html...\n";
open(OUT,">Themes/index.html")||die "ERROR: can not write to Themes/index.html\n";
&printtemplate("__head_$lang");
&printtemplate("__img_th_$lang");
&printtemplate("__index_$lang");
&printtemplate("__foot_th_$lang");
close OUT;
#----------
foreach $theme (keys %validcat){
    $tname=$theme;
    print STDERR "writing ./Themes/$tname.html...\n";
    $tname=~s/ /_/g;
    open(OUT,">Themes/$tname.html")|| die "ERROR: can not write to Themes/$tname.html\n";
    &printtemplate("__head_$lang");
    &printtemplate("__img_th_$lang");
    &printtemplate("__${tname}_$lang");
    if ($themesptr{$theme}){
        foreach $articlefile (sort keys %{$themesptr{$theme}}){
            $title=$themesptr{$theme}{$articlefile}{'title'};
            $abstract=$themesptr{$theme}{$articlefile}{'short_abstract'};
            if ($themesptr{$theme}{$articlefile}{'status'} eq "translated"){
                if (!-e "Themes/$articlefile") {
                  $articlefile =~ s/html/shtml/;
                }
                print OUT "<LI type=\"circle\"><A href=\"$articlefile\">$title</A>\n";
                print OUT "<BR>$abstract<P></LI>\n";
            }else{
                print OUT "<LI type=\"circle\"><A href=\"../../English/Themes/$articlefile\">$title <FONT SIZE=\"-1\">[Engelse versie]</FONT></A>\n";
                print OUT "<BR>$abstract<P></LI>\n";
            }

        }
    }else{
        print OUT "<LI>Sorry, no article available in this category.</LI>\n";
    }
    &printtemplate("__foot_th_$lang");
}
#----------
print STDERR "writing ./issues.html...\n";
open(OUT,">issues.html")||die "ERROR: can not write to issues.html\n";
&printtemplate("__head_$lang");
&printtemplate("__img_i_$lang");
&printtemplate("__issue_$lang");
#----------
foreach $i (@issuenames){
    print OUT "<h2>$i</h2>\n<UL>\n";
    foreach $iarticlefile (sort keys %{$issueptr{$i}}){
        $title=$issueptr{$i}{$iarticlefile}{'title'};
        $abstract=$issueptr{$i}{$iarticlefile}{'short_abstract'};
        if ($issueptr{$i}{$iarticlefile}{'status'} eq "translated"){
            print OUT "<LI type=\"circle\"><A href=\"$iarticlefile\">$title</A>\n";
            print OUT "<BR>$abstract<P></LI>\n";
        }else{
            print OUT "<LI type=\"circle\"><A href=\"../English/$iarticlefile\">$title <FONT SIZE=\"-1\">[Engelse versie]</FONT></A>\n";
            print OUT "<BR>$abstract<P></LI>\n";
        }

    }
    print OUT "</UL>\n<HR noshade=\"noshade\" size=2>\n";
}

if ($opt_t){   # you want to make an index of all translated articles
   print STDERR "writing ./vertaald.html...\n";
   open(OUT,">vertaald.html")||die "ERROR: can not write to vertaald.html\n";
   &printtemplate("__head_$lang");
   &printtemplate("__img_i_$lang");
   &printtemplate("__translated_$lang");
   #----------
   foreach $i (@issuenames){
       print OUT "<h2>$i</h2>\n<UL>\n";
       foreach $iarticlefile (sort keys %{$issueptr{$i}}){
           $title=$issueptr{$i}{$iarticlefile}{'title'};
           $abstract=$issueptr{$i}{$iarticlefile}{'short_abstract'};
           if ($issueptr{$i}{$iarticlefile}{'status'} eq "translated"){
               print OUT "<LI type=\"circle\"><A href=\"$iarticlefile\">$title</A>\n";
               print OUT "<BR>$abstract<P></LI>\n";
           }
       }
       print OUT "</UL>\n<HR noshade=\"noshade\" size=2>\n";
   }
   if ($opt_i){  # you want to include an HTML section at the end of
                 # the file translated.html. The HTML is in the file
                 # $opt_i
      open(INCLUDE,"$opt_i")||die "ERROR: can not read the file $opt_i\n";
      print OUT "\n<!-- include file $opt_i -->\n\n<br><br>\n";
      while(<INCLUDE>){
         print OUT "$_";
      }
      close INCLUDE;
      print OUT "<!-- end include $opt_i -->\n";
    }
}
&printtemplate("__foot_i_$lang");


#------------------
# read in the database:
#--------------
sub readthemestxt($){
    my $file=shift;
    my $dir;
    my $endir;
    my $iname;
    open(FF,"$file")||die "ERROR: can not read $file\n";
    while(<FF>){
        $l++;
        next if (/^#/);  # ignore comment
        next unless (/\w/); # ignore empty line
        chomp;
        s/\s+/ /g; # manny space to 1 space
        s/^ //g; # leading space
        @line=split(/\+\+/);
        if (/^month:/){
            # set the directory for English and the selected language
            $line[0]=~ s/^month://;
            $line[0]=~s/ +//g;
            die "ERROR: update the \%whereiswhat variable in this program or download a new version. The location of $line[0] at line $l in $file is not defined for the English language\n" unless ($whereiswhat{'en'}{$line[0]});
            die "ERROR: update the \%whereiswhat variable in this program or download a new version. The location of $line[0] at line $l in $file is not defined for the English language\n" unless ($whereiswhat{$lang}{$line[0]});
            $dir=$whereiswhat{$lang}{$line[0]};
            $endir=$whereiswhat{'en'}{$line[0]};
            die "ERROR: issue name missing at line $l\n" unless($line[1]=~/\w/);
            $line[1]=~s/ +/ /g;
            $iname=$line[1];
            push(@issuenames,$iname);
            next;
        }
        if (scalar(@line) < 3){
            print STDERR "ERROR: line $l does not look correct, ignored\n";
            next;
        }
        unless ($line[2] && $line[2]=~/\w\w/){
            print STDERR "ERROR: line $l does not have an article title\n";
            next;
        }
        unless(/^\d/ || $line[1]=~ /\w\w\w/){
            print STDERR "ERROR: line $l does not start with a digit and at the same time no full path to non-english page is given\n";
            next;
        }
        for $i (0..4){
            # take care of empty fields:
            if (defined $line[$i] && $line[$i] =~ /\w/){
                $line[$i] =~ s/\s//g if ($i == 0);
                $line[$i] =~ s/^ //; # we have max one space
                $line[$i] =~ s/ $//;
            }else{
                $line[$i] = " ";
            }   
        }
        $line[3]=$abbrevcat{$line[3]} if ($abbrevcat{$line[3]});
        unless($validcat{$line[3]}){
            print STDERR "ERROR: line $l, no category or invalid category, ignoring line\n";
            next;
        }
        if ($line[1] =~/x/i){
            # it's translated
            $articlefile="../" .$dir . "/article". $line[0] .".html";
            $iarticlefile=$dir . "/article". $line[0] .".html";
            # store by category, articlefile
            $themesptr{$line[3]}{$articlefile}{'status'}="translated";
            $issueptr{$iname}{$iarticlefile}{'status'}="translated";
        }else{
            # not translated
            $articlefile="../" .$endir . "/article". $line[0] .".html";
            $iarticlefile=$endir . "/article". $line[0] .".html";
            # store by category, articlefile
            $themesptr{$line[3]}{$articlefile}{'status'}="english";
            $issueptr{$iname}{$iarticlefile}{'status'}="english";
        }
        $themesptr{$line[3]}{$articlefile}{'title'}=$line[2];
        $themesptr{$line[3]}{$articlefile}{'short_abstract'}=$line[4];
        $issueptr{$iname}{$iarticlefile}{'title'}=$line[2];
        $issueptr{$iname}{$iarticlefile}{'short_abstract'}=$line[4];
    }
    close FF;
}
#--------------
sub today{
    my @ltime = localtime;
    #return a date in yyyy-mm-dd format
    my $today;

    $today =  sprintf("%04d-%02d-%02d",1900 + $ltime[5],$ltime[4] + 1,$ltime[3]);
    $today;
}      
#--------------
sub printtemplate($){
    my $name=shift;
    if (defined $templates{$name}){
        foreach (@{$templates{$name}}){
            print OUT;
        }
    }else{
        # try english
        print STDERR "Warning, no template $name, trying english version\n";
        $name=~s/_[a-z]+$/_en/;
        if (defined $templates{$name}){
            foreach (@{$templates{$name}}){
                print OUT;
            }
        }else{
            die "ERROR: No such template $name\n";
        }
    }
}
#--------------
sub readtemplates(){
    my $templatename="nix";
    #read and print any text between "^__ xxx" and the next __
    while(<DATA>){
        next if (/^#/);
        if (/^(__\w+)/){
            $templatename=$1;
            next;
        }
        s/\$date/$today/o;
        push(@{$templates{$templatename}},$_);
    }
}                  
#-------------
sub help{
print "lfthemes -- generate a linuxfocus subject index page (themes)

USAGE:   lfthemes [-h][-t][-i include.txtl][-l cn|de|en|es|nl|fr] themes_definition_file
OPTIONS: -h this help text
         -l select a language for the output. Supported are de, en, fr, nl
            and cn. You need to translate the provided lfthemes_lang
            file to your language and send it to guido.socher\@linuxfocus.org.
         -t generate also a a file translated.html (contains the same as the
            file, but only for transtlated articles)
         -i include the file 'include.txt'  at the end of translated.html 

EXAMPLE: lfthemes -l es -ti include.txt spanish_themse_def.txt
         This generates in the current directory the subdirectory Themes
         where it stores all the web-pages. lfthemes generates also the file
         issues.html in the current directory. All Images are linked to
         ../../common/images/

The latest version of this program is at 
   http://www.linuxfocus.org/developer/Guido/
This program was written by Guido Socher 
$ver
\n";
exit;
}
__END__ 
__head_en
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>LinuxFocus Index</TITLE>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000" alink="#336633" link="#336633">

__img_th_en
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="../index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="../map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="../indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Search" href="../Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="News" href="../News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archives" href="../Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="../Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="About LF" href="../aboutus.html">
</MAP>
<CENTER>
<IMG src="../../common/images/Topbar-en.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../../common/images/Bottombar-en.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__img_i_en
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Search" href="Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="News" href="News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archives" href="Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="About LF" href="aboutus.html">
</MAP>
<CENTER>
<IMG src="../common/images/Topbar-en.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../common/images/Bottombar-en.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__index_en
<H1>Linux<FONT color="#ff0000">Focus</FONT>Themes Index</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/colage.jpg" alt="[Themes Picture]" width="200" height="200">
</TD>
<TD>
This is the index of the first free multi-lingual web magazine for Linux sorted by subject.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Forum</A>
	<BR>What famous people think about Linux and related issues.<p></LI>
      <LI type="circle"><A href="Community.html">Community</A>
	<BR>What's going on in the community.<p></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<p></LI>
      <LI type="circle"><A href="Applications.html">Applications under Linux</A>
	<BR>Useful applications to work with.<P></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Reviews</A>
	<BR>Hardware hints and issues.<P></LI>
      <LI type="circle"><A href="System_Administration.html">System Administration</A>
	<BR>Manage your system or network.<P></LI>
      <LI type="circle"><A href="Software_Development.html">Software Development</A>
	<BR>Linux is a great developpment lab.<P></LI>
      <LI type="circle"><A href="Webdesign.html">Web-design</A>
	<BR>Software Development related to web-design.<P></LI>
      <LI type="circle"><A href="Graphics.html">Graphics Corner</A>
	<BR>Find out about all these tools to become an artist.<P></LI>
      <LI type="circle"><A href="UNIX_Basics.html">UNIX/Linux Basics</A>
	<BR>Good thinks to knows to get the best out of your free system.<P></LI>
      <LI type="circle"><A href="Kernel_Corner.html">Kernel Corner</A>
	<BR>The nuts and bolts of Linux.<P></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>People involved with Linux tell us what they do.<P></LI>

__foot_th_en
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#666666">
<TR><TD ALIGN=CENTER>
<A HREF="../../common/lfteam.html"><FONT COLOR="#FFFFFF">Webpages maintained by the LinuxFocus Editor team</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 1999</FONT>
</TD>
<TD ALIGN=RIGHT>
<FONT SIZE="1" COLOR="#FFFFFF">generated by lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_en
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#666666">
<TR><TD ALIGN=CENTER>
<A HREF="../common/lfteam.html"><FONT COLOR="#FFFFFF">Webpages maintained by the LinuxFocus Editor team</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 1999</FONT>
</TD>
<TD ALIGN=RIGHT>
<FONT SIZE="1" COLOR="#FFFFFF">generated by lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_en
<H1>Linux Forum </H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Forum.jpg" alt="[Forum Picture]" width="200" height="200">
</TD>
<TD>
Index of articles that voice the opinions of experts and users of linux. 
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Games_en
<H1>Games</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Game.gif" alt="[Games Picture]" width="200" height="200">
</TD>
<TD>
Index of articles that review games for Linux or talk about funny things.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Applications_en
<H1>Applications</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Tools.jpg" alt="[Applications Picture]" width="200" height="200">
</TD>
<TD>
Index of articles that introduce and review applications and tools available for Linux
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Webdesign_en
<H1>Webdesign</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Webdesign.gif" alt="[Webdesign Picture]" width="200" height="200">
</TD>
<TD>
List of articles about Webdesign and the WWW in general.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Hardware_en
<H1>Harware Review</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Hardware.jpg" alt="[Hardware Picture]" width="200" height="200">
</TD>
<TD>
List of articles devoted to hardware, its use and configuration under Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__System_Administration_en
<H1>System Administration</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Admin.jpg" alt="[Sysadmin Picture]" width="200" height="200">
</TD>
<TD>
List of articles about Linux system administration.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Software_Development_en
<H1>Software Development</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Development.jpg" alt="[Development Picture]" width="200" height="200">
</TD>
<TD>
List of articles about software development under Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Graphics_en
<H1>Graphics</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Infography.jpg" alt="[Infography Picture]" width="200" height="200">
</TD>
<TD>
List of articles about graphics software under Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__UNIX_Basics_en
<H1>Unix Basics</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Unix.jpg" alt="[Unix Picture]" width="200" height="200">
</TD>
<TD>
Unix tips, tricks and principles.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Kernel_Corner_en
<H1>Kernel Corner</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Kernel.jpg" alt="[Kernel Picture]" width="200" height="200">
</TD>
<TD>
Articles about the heart of the Linux OS.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Community_en
<H1>Community</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Community.jpg" alt="[Community Picture]" width="200" height="200">
</TD>
<TD>
Stories about the Linux community and what is going on there.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__Interviews_en
<H1>Interviews</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Interviews.jpg" alt="[Interviews Picture]" width="200" height="200">
</TD>
<TD>
Various interviews with people from the world of Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__issue_en
<H1>Index by LinuxFocus issue</H1>
<p>This is an index of all LinuxFocus articles sorted by issue.</p>
<HR noshade="noshade" size=2>
</CENTER>

__translated_en
<H1>Translated articles by LinuxFocus issue</H1>
</CENTER>
<P>This is an index of all LinuxFocus articles that are already translated in
 this language, sorted by issue.</P>
<HR noshade="noshade" size=2>
</CENTER>

<!-- NEXT LANG -->

__head_de
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//DE">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>LinuxFocus Index</TITLE>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000" alink="#336633" link="#336633">

__img_th_de
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="../index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="../map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="../indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Suchen" href="../Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="Nachrichten" href="../News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archiv" href="../Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="../Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="&Uuml;ber LF" href="../aboutus.html">
</MAP>
<CENTER>
<IMG src="../../common/images/Topbar-en.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../../common/images/Bottombar-en.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__img_i_de
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Suchen" href="Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="Nachrichten" href="News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archiv" href="Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="&Uuml;ber LF" href="aboutus.html">
</MAP>
<CENTER>
<IMG src="../common/images/Topbar-en.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../common/images/Bottombar-en.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__index_de
<H1>Linux<FONT color="#ff0000">Focus</FONT> Themenindex</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/colage.jpg" alt="[Themes Picture]" width="200" height="200">
</TD>
<TD>
Dies ist der Index des ersten mehrsprachigen Web-Magazins f&uuml;r Linux sortiert nach Artikel&uuml;berschriften.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Forum</A>
	<BR>Was bekannte Leute zu Linux meinen.<p></LI>
      <LI type="circle"><A href="Community.html">Die Linuxgemeinde</A>
	<BR>Aktuelles zu Linux.<p></LI>
      <LI type="circle"><A href="Games.html">Spiele f&uuml; Linux</A>
	<BR>Spiele Software und lustige Geschichten.<p></LI>
      <LI type="circle"><A href="Applications.html">Applikationen unter Linux</A>
	<BR>Interessante Applikationen f&uuml;r Linux.<P></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Review</A>
	<BR>Alles über Linux-Hardware.<P></LI>
      <LI type="circle"><A href="System_Administration.html">Systemadministration</A>
	<BR>Wie man sein Linuxsystem und Netzwerk managen kann.<P></LI>
      <LI type="circle"><A href="Software_Development.html">Softwareentwicklung</A>
	<BR>Linux ist ein gro&szlig;artiges Softwareentwicklungslabor.<P></LI>
      <LI type="circle"><A href="Webdesign.html">Web-Design</A>
	<BR>Wie man Webseiten entwickelt.<P></LI>
      <LI type="circle"><A href="Graphics.html">Grafikecke</A>
	<BR>Grafiksoftware f&uuml;r den K&uuml;nstler und Designer.<P></LI>
      <LI type="circle"><A href="UNIX_Basics.html">UNIX/Linux Grundlagen</A>
	<BR>Tips und Tricks f&uuml;r den Linuxbenutzer.<P></LI>
      <LI type="circle"><A href="Kernel_Corner.html">Kernelecke</A>
	<BR>Das Herzst&uuml;ck von Linux.<P></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>Interviews mit Leuten aus der Linuxgemeinde.<P></LI>

__foot_i_de
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../common/lfteam.html"><FONT COLOR="#FFFFFF">An das LinuxFocus Team schreiben</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 1999</FONT>
</TD>
<TD ALIGN=RIGHT BGCOLOR="#666666">
<FONT SIZE="1" COLOR="#FFFFFF">generated by lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_th_de
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../../common/lfteam.html"><FONT COLOR="#FFFFFF">An das LinuxFocus Team schreiben</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 1999</FONT>
</TD>
<TD ALIGN=RIGHT BGCOLOR="#666666">
<FONT SIZE="1" COLOR="#FFFFFF">generated by lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_de
<H1>Linux Forum </H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Forum.jpg" alt="[Forum Picture]" width="200" height="200">
</TD>
<TD>
Die Meinungen verschiedenster bekannter Leute aus der Computerwelt zu Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Games_de
<H1>Games</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Game.gif" alt="[Games Picture]" width="200" height="200">
</TD>
<TD>
Spiele f&uuml;r Linux und lustige Artikel zu Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Applications_de
<H1>Applikationen</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Tools.jpg" alt="[Applications Picture]" width="200" height="200">
</TD>
<TD>
Eine &Uuml;bersicht von Artikeln mit Tutorien und Testberichten von Programmen und
verschiedenen Applikationen f&uuml;r Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Webdesign_de
<H1>Web-Design</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Webdesign.gif" alt="[Webdesign Picture]" width="200" height="200">
</TD>
<TD>
Eine Liste von Artikeln zu Webseitenentwicklung und das WWW im allgemeinen.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Hardware_de
<H1>Harware Review</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Hardware.jpg" alt="[Hardware Picture]" width="200" height="200">
</TD>
<TD>
Hardware, Reviews und Konfiguration unter Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__System_Administration_de
<H1>System Administration</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Admin.jpg" alt="[Sysadmin Picture]" width="200" height="200">
</TD>
<TD>
Eine Liste von Artikeln über Linux-Systemadministration.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Software_Development_de
<H1>Softwareentwicklung</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Development.jpg" alt="[Development Picture]" width="200" height="200">
</TD>
<TD>
Eine Liste von Artikeln zur Softwareentwicklung unter Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Graphics_de
<H1>Grafik</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Infography.jpg" alt="[Infography Picture]" width="200" height="200">
</TD>
<TD>
Eine Liste von Artikeln zu Grafiksoftware unter Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__UNIX_Basics_de
<H1>Unix Grundlagen</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Unix.jpg" alt="[Unix Picture]" width="200" height="200">
</TD>
<TD>
Unix-Grundlagen mit Tips und Tricks zu Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Kernel_Corner_de
<H1>Kernel Ecke</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Kernel.jpg" alt="[Kernel Picture]" width="200" height="200">
</TD>
<TD>
Artikel &uuml;ber das &quot;Herz&quot; Deines Linuxsystems.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Community_de
<H1>Die Linuxgemeinde</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Community.jpg" alt="[Community Picture]" width="200" height="200">
</TD>
<TD>
Geschichten aus der Linuxgemeinde.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__Interviews_de
<H1>Interviews</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Interviews.jpg" alt="[Interviews Picture]" width="200" height="200">
</TD>
<TD>
Verschiedene Interviews mit Leuten aus der Linuxwelt.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__issue_de
<H1>Index sortiert nach Ausgabe.</H1>
<p>Dies ist ein Index mit allen Linuxfocusartikeln sortiert nach Ausgaben.
</p>
<HR noshade="noshade" size=2>
</CENTER>
<!-- NEXT_LANG -->


__head_nl
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//NL">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>LinuxFocus Index</TITLE>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000" alink="#336633" link="#336633" >

__img_th_nl
<!-- MAP voor bovenste navigatiebalk -->
<MAP name="boven">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="../index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="../map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="../indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Zoek" href="../Search/index.html">
</MAP>
<!-- MAP voor onderste navigatiebalk -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="Nieuws" href="../News/index.html">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archieven" href="../Archives/index.html">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="../Links/index.html">
<AREA shape="rect" coords="436, 0,  523, 15" alt="Over LF" href="../aboutus.html">
</MAP>
<CENTER>
<IMG src="../../common/images/Topbar-nl.gif" width="600" height="40" border="0" alt="[Bovenste Balk]" ismap usemap="#boven"><BR>
<IMG src="../../common/images/Bottombar-nl.gif" width="600" height="21" border="0" alt="[Onderste Balk]" ismap usemap="#onder">

__img_i_nl
<!-- MAP voor bovenste balk -->
<MAP name="boven">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Zoek" href="Search/index.html">
</MAP>
<!-- MAP voor onderste balk -->
<MAP name="onder">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="Nieuws" href="News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archieven" href="Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="Over LF" href="aboutus.html">
</MAP>
<CENTER>
<IMG src="../common/images/Topbar-nl.gif" width="600" height="40" border="0" alt="[Bovenste Balk]" ismap usemap="#boven"><BR>
<IMG src="../common/images/Bottombar-nl.gif" width="600" height="21" border="0" alt="[Onderste Balk]" ismap usemap="#onder">

__index_nl
<H1>Linux<FONT color="#ff0000">Focus</FONT>Thema's Index</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/colage.jpg" alt="[Thema's Illustratie]" width="200" height="200">
</TD>
<TD>
Dit is de index van het eerste gratis meertalig web magazine, gesorteerd per onderwerp.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Forum</A>
	<BR>Wat beroemde mensen denken over Linux en aanverwante zaken.<p></LI>
      <LI type="circle"><A href="Community.html">Gemeenschap</A>
	<BR>Wat er gebeurt in de gemeenschap.<p></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<p></LI>
      <LI type="circle"><A href="Applications.html">Applicaties onder Linux</A>
	<BR>Nuttige programma's om mee te werken.<P></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Besprekingen</A>
	<BR>Hardware tips en besprekingen.<P></LI>
      <LI type="circle"><A href="System_Administration.html">Systeembeheer</A>
	<BR>Beheer je systeem of netwerk.<P></LI>
      <LI type="circle"><A href="Software_Development.html">Software Ontwikkeling</A>
	<BR>Linux is een groot ontwikkelingslabo.<P></LI>
      <LI type="circle"><A href="Webdesign.html">Web-design</A>
	<BR>Alles in verband met het publiceren op het Web.<P></LI>
      <LI type="circle"><A href="Graphics.html">Grafische Hoek</A>
	<BR>Ontdek alles over de gereedscahppen van de artiest.<P></LI>
      <LI type="circle"><A href="UNIX_Basics.html">UNIX/Linux Basics</A>
	<BR>Handig om het beste uit je gratis systeem te halen.<P></LI>
      <LI type="circle"><A href="Kernel_Corner.html">Kernel Hoek</A>
	<BR>Een blik onder de motorkap van Linux.<P></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>Mensen uit de Linux-gemeenschap vertellen over hun werk.<P></LI>

__foot_i_nl
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../common/lfteam.html"><FONT COLOR="#FFFFFF">Webpagina's onderhouden door het LinuxFocus Editors team</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 2000.</FONT>
</TD>
<TD ALIGN=RIGHT BGCOLOR="#666666">
<FONT SIZE="1" COLOR="#FFFFFF"> Gemaakt door lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_th_nl
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../../common/lfteam.html"><FONT COLOR="#FFFFFF">Webpagina's onderhouden door het LinuxFocus Editors team</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 2000.</FONT>
</TD>
<TD ALIGN=RIGHT BGCOLOR="#666666">
<FONT SIZE="1" COLOR="#FFFFFF"> Gemaakt door lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_nl
<H1>Linux Forum </H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Forum.jpg" alt="[Forum Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van artikels over de meningen van Linux-gebruikers en -experts. 
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Games_nl
<H1>Games</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Game.gif" alt="[Games Picture]" width="200" height="200">
</TD>
<TD>
Index of articles that review games for Linux or talk about funny things.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Applications_nl
<H1>Applicaties</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Tools.jpg" alt="[Applicaties Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van artikels over tools en programma's voor Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Webdesign_nl
<H1>Webdesign</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Webdesign.gif" alt="[Webdesign Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van artikels over Webdesign en het WWW in het algemeen.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Hardware_nl
<H1>Harware Besprekingen</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Hardware.jpg" alt="[Hardware Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van artikels over hardware zelf, het gebruik ervan en de configuratie onder Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__System_Administration_nl
<H1>Systeembeheer</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Admin.jpg" alt="[Systeembeheer Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van artikels over Linux systeembeheer.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Software_Development_nl
<H1>Software Ontwikkeling</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Development.jpg" alt="[Ontwikkeling Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van artikels over software ontwikkeling onder Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Graphics_nl
<H1>Grafische Hoek</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Infography.jpg" alt="[Grafisch Illustratie]" width="200" height="200">
</TD>
<TD>
Overzicht van de artikels over software onder Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__UNIX_Basics_nl
<H1>Unix Basics</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Unix.jpg" alt="[Unix Illustratie]" width="200" height="200">
</TD>
<TD>
Unix tips, trucks en vaardigheden.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Kernel_Corner_nl
<H1>Kernel Hoek</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Kernel.jpg" alt="[Kernel Illustratie]" width="200" height="200">
</TD>
<TD>
Artikels over het Linux besturingssysteem.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Community_nl
<H1>Gemeenschap</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Community.jpg" alt="[Gemeenschap Illustratie]" width="200" height="200">
</TD>
<TD>
Verslagen over wat er omgaat in de Linux gemeenschap.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__Interviews_nl
<H1>Interviews</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Interviews.jpg" alt="[Interviews Illustratie]" width="200" height="200">
</TD>
<TD>
Interviews met mensen uit de Linux-wereld.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__issue_nl
<H1>Overzicht per LinuxFocus nummer</H1>
<p>Dit is een overzicht van alle LinuxFocus artikels gesorteerd per nummer.</p>
<HR noshade="noshade" size=2>
</CENTER>
<!-- NEXT_LANG -->

__translated_nl
<H1>Vertaalde artikelen</H1>
</CENTER>
<P>Hier kunt u alle artikels terugvinden die reeds vertaald zijn in het
Nederlands. Als u exact wilt weten wie wat vertaald heeft, en waar we nog
mee bezig zijn, dan kunt u het bestand <A href="mainindex.html">mainindex.html</A>
raadplegen. Wilt u graag zelf meehelpen aan LinuxFocus, dan vindt meer info in
<A href="info.html#help">info.html</A><br>
 
__head_cn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=Big5">
<TITLE>LinuxFocus ¯Á¤Þ</TITLE>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000" alink="#336633" link="#336633">

__img_th_cn
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="­º­¶" href="../index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="¦a¹Ï" href="../map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="¯Á¤Þ" href="../indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="·j´M" href="../Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="·s»D" href="../News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="«e´ÁÂø»x" href="../Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="¬ÛÃöºô¯¸" href="../Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="Ãö©ó LinuxFocus" href="../aboutus.html">
</MAP>
<CENTER>
<IMG src="../../common/images/Topbar-cn.gif" width="600" height="40" border="0" alt="[¥\¯àªí 1]" ismap usemap="#top"><BR>
<IMG src="../../common/images/Bottombar-cn.gif" width="600" height="21" border="0" alt="[¥\¯àªí 2]" ismap usemap="#bottom">

__img_i_cn
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="¥D­¶" href="index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="¦a¹Ï" href="map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="¯Á¤Þ" href="indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="·j´M" href="Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="·s»D" href="News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="«e´ÁÂø»x" href="Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="¬ÛÃöÁpµ²" href="Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="Ãö©ó LinuxFocus" href="aboutus.html">
</MAP>
<CENTER>
<IMG src="../common/images/Topbar-cn.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../common/images/Bottombar-cn.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__index_cn
<H1>Linux<FONT color="#ff0000">Focus</FONT>¥DÃD¯Á¤Þ</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/colage.jpg" alt="[¥DÃD´¡¹Ï]" width="200" height="200">
</TD>
<TD>
³o¬O²Ä¤@¥÷¦h»y Linux ºô¸ôÂø»xªº¥DÃD¯Á¤Þ¡C
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux °Q½×°Ï</A>
	<BR>±M®a¬Ýªk»PÅªªÌ·N¨£<p></LI>
      <LI type="circle"><A href="Community.html">¥æ¬y¶é¦a</A>
	<BR>³Ì·sªº°T®§<p></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<p></LI>
      <LI type="circle"><A href="Applications.html">Linux ªº³nÅé</A>
	<BR>Linux ©³¤U¹ê¥Îªº³nÅé¤¶²Ð»Pµû½×<P></LI>
      <LI type="circle"><A href="Hardware.html">µwÅéµû½×</A>
	<BR>µwÅé°ÝÃD©M§Þ¥©´£¥Ü<P></LI>
      <LI type="circle"><A href="System_Administration.html">¨t²ÎºÞ²z</A>
	<BR>¨t²Î©Mºô¸ôªººÞ²z<P></LI>
      <LI type="circle"><A href="Software_Development.html">³nÅé³]­p</A>
	<BR>Linux ¥»¨­´N¬O¤@­Ó¶W¤jªº³nÅé³]­p¤u§@«Ç!<P></LI>
      <LI type="circle"><A href="Webdesign.html">ºô­¶³]­p</A>
	<BR>¦³Ãöºô­¶³]­pªº³nÅé<P></LI>
      <LI type="circle"><A href="Graphics.html">¬ü³N³]­p</A>
	<BR>¦¨¬°¬ü³N®a¥²³Æ¤u¨ã«ü«n<P></LI>
      <LI type="circle"><A href="UNIX_Basics.html">UNIX/Linux °òÂ¦</A>
	<BR>±q³Ì°ò¥»ªº·§©À¶}©l¨Ó¾Ç²ß UNIX ©M Linux ¨t²Î<P></LI>
      <LI type="circle"><A href="Kernel_Corner.html">®Ö¤ß¤@¨¤</A>
	<BR>©Ò¦³¦³Ãö Linux ®Ö¤ß (Kernel) ªº°Q½×<P></LI>
      <LI type="circle"><A href="Interviews.html">³X½Í°O¿ý</A>
	<BR>³X°Ý©M Linux ¦³Ãöªº¦W¤H<P></LI>

__foot_th_cn
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../../common/lfteam.html"><FONT COLOR="#FFFFFF">ºô­¶ºûÅ@¡GLinuxFocus ½s¿è²Õ</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; ª©Åv©Ò¦³ LinuxFocus 1999</FONT>
</TD>
<TD ALIGN=RIGHT BGCOLOR="#666666">
<FONT SIZE="1" COLOR="#FFFFFF">generated by lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_cn
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../common/lfteam.html"><FONT COLOR="#FFFFFF">ºô­¶ºûÅ@¡GLinuxFocus ½s¿è²Õ</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; ª©Åv©Ò¦³ LinuxFocus 1999</FONT>
</TD>
<TD ALIGN=RIGHT BGCOLOR="#666666">
<FONT SIZE="1" COLOR="#FFFFFF">generated by lfthemes, $date</FONT></TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_cn
<H1>Linux °Q½×°Ï</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Forum.jpg" alt="[Linux °Q½×°Ï]" width="200" height="200">
</TD>
<TD>
±M®a¬Ýªk»PÅªªÌ·N¨£
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Games_cn
<H1>Games</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Game.gif" alt="[Games Picture]" width="200" height="200">
</TD>
<TD>
Index of articles that review games for Linux or talk about funny things.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__Applications_cn
<H1>Linux ªº³nÅé</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Tools.jpg" alt="[Linux ªº³nÅé]" width="200" height="200">
</TD>
<TD>
Linux ©³¤U¹ê¥Îªº³nÅé¤¶²Ð»Pµû½×
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Webdesign_cn
<H1>ºô­¶³]­p</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Webdesign.gif" alt="[ºô­¶³]­p]" width="200" height="200">
</TD>
<TD>
¦³Ãöºô­¶³]­pªº¤å³¹©M³nÅé¤¶²Ð
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Hardware_cn
<H1>µwÅéµû½×</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Hardware.jpg" alt="[µwÅéµû½×]" width="200" height="200">
</TD>
<TD>
±Mªù±´°QµwÅéªº¤å³¹¡A¤Î¦b Linux ¤U¨Ï¥Î¦UºØµwÅéªº§Þ¥©
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__System_Administration_cn
<H1>¨t²ÎºÞ²z</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Admin.jpg" alt="[¨t²ÎºÞ²z]" width="200" height="200">
</TD>
<TD>
¨t²Î©Mºô¸ôªººÞ²z
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Software_Development_cn
<H1>³nÅé³]­p</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Development.jpg" alt="[³nÅé³]­p]" width="200" height="200">
</TD>
<TD>
©Ò¦³¦³Ãö¦b Linux Àô¹Ò¤Uªº³nÅé³]­p°Q½×¤å³¹
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Graphics_cn
<H1>¬ü³N³]­p</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Infography.jpg" alt="[¬ü³N³]­p]" width="200" height="200">
</TD>
<TD>
¦¨¬°¬ü³N®a¥²³Æ¤u¨ã«ü«n
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__UNIX_Basics_cn
<H1>Unix/Linux °òÂ¦</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Unix.jpg" alt="[Unix/Linux °òÂ¦]" width="200" height="200">
</TD>
<TD>
Unix ªº§Þ¥©¡BÂ¬ªù©M²z½×
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Kernel_Corner_cn
<H1>®Ö¤ß¤@¨¤</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Kernel.jpg" alt="[®Ö¤ß¤@¨¤]" width="200" height="200">
</TD>
<TD>
Ãö©ó Linux ªº¨t²Î®Ö¤ß¡]Kernel¡^ªº°Q½×
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Community_cn
<H1>¥æ¬y¶é¦a</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Community.jpg" alt="[¥æ¬y¶é¦a]" width="200" height="200">
</TD>
<TD>
¦³Ãö¼s¤jªº Linux ¨Ï¥ÎªÌ¸sªº³Ì·s®ø®§©M¬G¨Æ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__Interviews_cn
<H1>³X½Í°O¿ý</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Interviews.jpg" alt="[³X½Í°O¿ý]" width="200" height="200">
</TD>
<TD>
³X°Ý©M Linux ¦³Ãöªº¦W¤H
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__issue_cn
<H1>LinuxFocus Âø»x¤ë¥÷¯Á¤Þ</H1>
<p>©³¤U¬O©Ò¦³ªº LinuxFocus Âø»x¨Ì·Ó¤ë¥÷±Æ¦C«áªº¯Á¤Þ¡C</p>
<HR noshade="noshade" size=2>
</CENTER>
<!-- NEXT_LANG -->

__head_fr
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//FR">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>LinuxFocus Index</TITLE>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000" alink="#336633" link="#336633">

__img_th_fr
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="../index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="../map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="../indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Search" href="../Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="News" href="../News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archives" href="../Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="../Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="About LF" href="../aboutus.html">
</MAP>
<CENTER>
<IMG src="../../common/images/Topbar-fr.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../../common/images/Bottombar-fr.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__img_i_fr
<!-- MAP for top navegation bar -->
<MAP name="top">
<AREA shape="rect" coords="367, 9, 418, 30" alt="Home" href="index.html">
<AREA shape="rect" coords="423, 9, 457, 30" alt="Map" href="map.html">
<AREA shape="rect" coords="463, 9, 508, 30" alt="Index" href="indice.html">
<AREA shape="rect" coords="514, 9, 558, 30" alt="Search" href="Search/">
</MAP>
<!-- MAP for bottom navegation bar -->
<MAP name="bottom">
<AREA shape="rect" coords="78, 0, 163, 15"   alt="News" href="News/">
<AREA shape="rect" coords="189, 0, 284, 15"  alt="Archives" href="Archives/">
<AREA shape="rect" coords="319, 0,  395, 15" alt="Links" href="Links/">
<AREA shape="rect" coords="436, 0,  523, 15" alt="About LF" href="aboutus.html">
</MAP>
<CENTER>
<IMG src="../common/images/Topbar-fr.gif" width="600" height="40" border="0" alt="[Top Bar]" ismap usemap="#top"><BR>
<IMG src="../common/images/Bottombar-fr.gif" width="600" height="21" border="0" alt="[Bottom Bar]" ismap usemap="#bottom">

__index_fr
<H1>Index des th&egrave;mes Linux<FONT color="#ff0000">Focus</FONT></H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/colage.jpg" alt="[Themes Picture]" width="200" height="200">
</TD>
<TD>
Index des th&egrave;mes du premier magazine en ligne multi-langue pour Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Forum Linux</A>
	<BR>Ce que des sp&eacute;cialistes pensent de Linux et des sujets associ&eacute;s.<p></LI>
      <LI type="circle"><A href="Community.html">Communit&eacute;</A>
	<BR>Ce qui se passe dans la communaut&eacute; Linux.<p></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<p></LI>
      <LI type="circle"><A href="Applications.html">Applications sous Linux</A>
	<BR>Des applications utiles pour travailler.<P></LI>
      <LI type="circle"><A href="Hardware.html">Le mat&eacute;riel</A>
	<BR>Le mat&eacute;riel et Linux.<P></LI>
      <LI type="circle"><A href="System_Administration.html">Administration syst&egrave;me</A>
	<BR>G&eacute;rez votre syst&egrave;me ou votre r&eacute;seau avec le savoir et les outils appropri&eacute;s.<P></LI>
      <LI type="circle"><A href="Software_Development.html">Developpement logiciel</A>
	<BR>Linux est une excellente plateforme de developpement. Faites votre choix.<P></LI>
      <LI type="circle"><A href="Webdesign.html">Design Web</A>
	<BR>Developpement logiciel relatif au Design<P></LI>
      <LI type="circle"><A href="Graphics.html"Infographie</A>
	<BR>Decouvrez tous les outils pour devenir artiste.<P></LI>
      <LI type="circle"><A href="UNIX_Basics.html">Les bases d'UNIX/Linux</A>
	<BR>Ce qu'il faut savoir pour bien d&eacute;buter avec Linux.<P></LI>
      <LI type="circle"><A href="Kernel_Corner.html">Le noyau</A>
	<BR>Les entrailles de Linux.<P></LI>
      <LI type="circle"><A href="Interviews.html">Entretien</A>
	<BR>Des gens impliqu&eacute;s dans Linux nous expliquent comment ils l'utilisent.<P></LI>

__foot_th_fr
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../../common/lfteam.html"><FONT COLOR="#FFFFFF">Pages maintenues par l'&eacute;quipe d'&eacute;dition de LinuxFocus</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 1999</FONT>
</TD></TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_fr
</UL>
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#666666">
<A HREF="../common/lfteam.html"><FONT COLOR="#FFFFFF">Pages maintenues par l'&eacute;quipe d'&eacute;dition de LinuxFocus</FONT></A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus 1999</FONT>
</TD></TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_fr
<H1>Forum Linux </H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Forum.jpg" alt="[Forum Picture]" width="200" height="200">
</TD>
<TD>
Index des articles de LinuxFocus o&ugrave; se d&eacute;battent des id&eacute;es g&eacute;n&eacute;rales sur Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Games_fr
<H1>Games</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Game.gif" alt="[Games Picture]" width="200" height="200">
</TD>
<TD>
Index of articles that review games for Linux or talk about funny things.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Applications_fr
<H1>Applications sous Linux</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Tools.jpg" alt="[Applications Picture]" width="200" height="200">
</TD>
<TD>
Index des articles qui pr&eacute;sentent et &eacute;valuent des Applications sous Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Webdesign_fr
<H1>Design web</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Webdesign.gif" alt="[Webdesign Picture]" width="200" height="200">
</TD>
<TD>
Liste des articles traitant du design et du web en g&eacute;n&eacute;ral.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Hardware_fr
<H1>Le mat&eacute;riel</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Hardware.jpg" alt="[Hardware Picture]" width="200" height="200">
</TD>
<TD>
Liste des articles consacr&eacute;s aux mat&eacute;riels, &agrave; leur fonctionnement et leur utilisation sous Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__System_Administration_fr
<H1>Administration syst&egrave;me</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Admin.jpg" alt="[Sysadmin Picture]" width="200" height="200">
</TD>
<TD>
Liste des articles de LinuxFocus consacr&eacute;s &agrave; l'Administration du syst&egrave;me.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Software_Development_fr
<H1>Developpement logiciel</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Development.jpg" alt="[Development Picture]" width="200" height="200">
</TD>
<TD>
Liste des articles de LinuxFocus d&eacute;di&eacute;s au d&eacute;veloppement logiciel. 

</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Graphics_fr
<H1>Infographie</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Infography.jpg" alt="[Infography Picture]" width="200" height="200">
</TD>
<TD>
Liste des articles consacr&eacute;s &agrave; l'infographie sous Linux. 
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__UNIX_Basics_fr
<H1>Les Bases d'Unix</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Unix.jpg" alt="[Unix Picture]" width="200" height="200">
</TD>
<TD>
Trucs, astuces et principe d'Unix.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Kernel_Corner_fr
<H1>Le coin du noyau</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Kernel.jpg" alt="[Kernel Picture]" width="200" height="200">
</TD>
<TD>
LinuxFocus vous ouvre les portes du noyau de Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>

__Community_fr
<H1>Communit&eacute;</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Community.jpg" alt="[Community Picture]" width="200" height="200">
</TD>
<TD>
Histoire sur la communaut&eacute; Linux et qu'est-ce qui s'y passe.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__Interviews_fr
<H1>Entretiens</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Interviews.jpg" alt="[Interviews Picture]" width="200" height="200">
</TD>
<TD>
Divers entretien avec des gens du monde Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>


__issue_fr
<H1>Index LinuxFocus par num&eacute;ro</H1>
<p>Liste de tous les articles de LinuxFocus class&eacute;s par num&eacute;ro.</p>
<HR noshade="noshade" size=2>
</CENTER>


__fin

