#!/usr/bin/perl -w
# vim: set sw=4 ts=4 si et:
# Author: Guido Socher, guido@linuxfocus.org
# This software ist distributed under the conditions of the 
# GNU public license.
use strict;
use vars qw($opt_h $opt_a);
use Getopt::Std;
use IO::Handle;
#
sub mklinkstr($$$$$);
sub readdb($$);
sub today();
sub printheadder($$$);
sub printtemplate($$);
sub readtemplates();
sub help();
#
# we read all the themes into ram:
my %db_bytheme;
my %db_byissue;
my %db_byauthor;
my %numissue2dir;
my %authorinfo;
my %templates;
#
my $fd;
my $pwd=`pwd`;
my $today;
my $lang;
my $tmp;
my $file;
my $linkstr;
my $title;
my $abstract;
my @languages=();
#
my $ver="2.4";
#--------------------------------------
#
getopts("ha")||exit 1;
help() if ($opt_h);
if ($pwd =~/\/English/){
    print "English themes, linking to all languages by setting option -a ...\n";
    $opt_a=1;
}
#
if ($opt_a){
    eval("
    use lib '../common/db';
    use LFlanguages;
    ");
    @languages=LFlanguages::supportedLang();
}
#
$today=today();
$lang=`pwd`;
chomp($lang);
$lang=~s=^.*/==;
( -r "../common/db/textdb.txt" )||die "ERROR: can not read db file ../common/db/textdb.txt. Are you in the Lanugage directory (e.g English or Deutsch ...)?\n";
readtemplates();
# the second parameter is ignored if not existant:
readdb("../common/db/textdb.txt","db/titles.txt");
unless (-d "Themes"){
    print "making directory Themes...\n";
    mkdir "Themes",0755 || die "ERROR: could not mkdir Themes\n";
}
#----------
print "writing ./Themes/index.html\n";
open(OUT,">Themes/index.html")||die "ERROR: can not write to Themes/index.html\n";
$fd=new IO::Handle;
$fd->fdopen(fileno(OUT),"w")||die;
#----------
# print themses index:
printtemplate("__head_$lang",$fd);
printheadder("issueindex",$lang,$fd);
printtemplate("__index_$lang",$fd);
printtemplate("__foot_th_$lang",$fd);
#----------
$fd->close();
close OUT;
# now print the pages for all the themes:
# $theme is category:
foreach my $theme (keys %db_bytheme){
    print "writing ./Themes/$theme.html\n";
    open(OUT,">Themes/$theme.html")|| die "ERROR: can not write to Themes/$theme.html\n";
    $fd->fdopen(fileno(OUT),"w")||die;
    printtemplate("__head_$lang",$fd);
    printheadder("issueindex",$lang,$fd);
    printtemplate("__${theme}_$lang",$fd);
    $fd->print("<ul>\n");
    foreach my $articlenum (reverse sort { $a <=> $b } keys %{$db_bytheme{$theme}}){
        foreach my $dir (sort keys %{$db_bytheme{$theme}{$articlenum}}){
            $abstract=$db_bytheme{$theme}{$articlenum}{$dir}{'abstract'};
            $title=$db_bytheme{$theme}{$articlenum}{$dir}{'title'};
            $linkstr=mklinkstr($dir,$articlenum,$title,"../",$abstract);
            $fd->print("<LI>$linkstr</li>\n");
        }
    }
    $fd->print("</ul>\n");
    printtemplate("__foot_th_$lang",$fd);
    $fd->close();
    close OUT;
}
#----------
#----------
print "writing ./issues.html\n";
open(OUT,">issues.html")||die "ERROR: can not write to issues.html\n";
$fd->fdopen(fileno(OUT),"w")||die;
printtemplate("__head_$lang",$fd);
printheadder("langindex",$lang,$fd);
printtemplate("__issue_$lang",$fd);
#----------
foreach my $issue (reverse sort keys %db_byissue){
    $tmp=$issue;
    $tmp=~s=(\d{4})(\d\d)=$1/$2=;
    if ( -d "$numissue2dir{$issue}"){
        $fd->print("<h2><a href=\"".$numissue2dir{$issue} ."\">$tmp</a></h2>\n<UL>\n");
    }else{
        $fd->print("<h2><a href=\"../English/".$numissue2dir{$issue} ."\">$tmp</a></h2>\n<UL>\n");
    }
    foreach my $articlenum (sort { $a <=> $b } keys %{$db_byissue{$issue}}){
        foreach my $dir (sort keys %{$db_byissue{$issue}{$articlenum}}){
            $abstract=$db_byissue{$issue}{$articlenum}{$dir}{'abstract'};
            $title=$db_byissue{$issue}{$articlenum}{$dir}{'title'};
            $linkstr=mklinkstr($dir,$articlenum,$title,"",$abstract);
            $fd->print("<LI>$linkstr</li>\n");
        }
    }
    $fd->print("</UL>\n<HR noshade=\"noshade\" size=2>\n");
}
printtemplate("__foot_i_$lang",$fd);
$fd->close();
close OUT;
#------------------
#----------
print "writing ./indexbyauthor.html\n";
open(OUT,">indexbyauthor.html")||die "ERROR: can not write to issues.html\n";
$fd->fdopen(fileno(OUT),"w")||die;
printtemplate("__head_$lang",$fd);
printheadder("langindex",$lang,$fd);
printtemplate("__byauthor_$lang",$fd);
#----------
foreach my $author (sort keys %db_byauthor){
    $fd->print("<h2>".$authorinfo{$author}{'htmlname'} ." <small>[".$authorinfo{$author}{'count'}."]</small></h2>\n<UL>\n");
    foreach my $articlenum (reverse sort { $a <=> $b } keys %{$db_byauthor{$author}}){
        foreach my $dir (sort keys %{$db_byauthor{$author}{$articlenum}}){
            $abstract=$db_byauthor{$author}{$articlenum}{$dir}{'abstract'};
            $title=$db_byauthor{$author}{$articlenum}{$dir}{'title'};
            $linkstr=mklinkstr($dir,$articlenum,$title,"",$abstract);
            $fd->print("<LI>$linkstr</li>\n");
        }
    }
    $fd->print("</UL>\n<HR noshade=\"noshade\" size=2>\n");
}
printtemplate("__foot_i_$lang",$fd);
$fd->close();
close OUT;
#------------------
#------------------
# test where the article is and return a link string
# possibly including an image.
sub mklinkstr($$$$$){
    my $issuedir=shift;
    my $articlenum=shift;
    my $title=shift;
    my $prefixdir=shift; # empty string or "../"
    my $abstract=shift; 
    # test where the article is otherwise link to English
    my $tmp;
    my $foundcnt=0;
    my $lstr="";
    if ($opt_a){
        $lstr.='<div class="l">'.$articlenum .' [available in:';
        for my $l (@languages){
            for my $extention ('shtml','html'){
                $tmp="../$l/$issuedir/article$articlenum.$extention";
                if ( -f "$tmp"){
                    if ($foundcnt){
                        $lstr.= '&nbsp;|&nbsp;';
                    }
                    $foundcnt++;
                    $lstr.="<A class=\"l\" href=\"$prefixdir$tmp\">$l</A>";
                }
            }
        }
        $lstr.=']</div>';
    }
    $lstr.='<p class="indent">';
    for my $extention ('shtml','html'){
        $tmp="$issuedir/article$articlenum.$extention";
        if ( -f "$tmp"){
            $lstr.="<A href=\"$prefixdir$tmp\">$title</A>";
            $lstr.="<br>$abstract</p><br>\n";
            return($lstr);
        }
    }
    if ($opt_a){
        print STDERR "Warning could not find article article$articlenum neither in this language nor in ../English/$issuedir\n";
        $tmp="$issuedir/article$articlenum.shtml";
        $lstr.="<A href=\"$prefixdir$tmp\">$title</A>";
        $lstr.="<br>$abstract</p>\n";
        return($lstr);
    }
    # end of linking to all. Rest of code will only execute if -a is not given
    #
    # link to ../English
    my $img ="<img src=\"$prefixdir../common/images/frame_tuxgrey.gif\" width=\"27\" height=\"32\" alt=\"[not translated]\">";
    $tmp="../English/$issuedir/article$articlenum.shtml";
    if ( -f "$tmp"){
        $lstr="$img <A href=\"$prefixdir$tmp\">$title</A>";
        $lstr.="<br>$abstract</p>\n";
        return($lstr);
    }
    $tmp="../English/$issuedir/article$articlenum.html";
    if ( -f "$tmp"){
        $lstr="$img <A href=\"$prefixdir$tmp\">$title</A>";
        $lstr.="<br>$abstract</p>\n";
        return($lstr);
    }
    # default is shtml is nothing is found
    print STDERR "Warning could not find article article$articlenum neither in this language nor in ../English/$issuedir\n";
    $tmp="../English/$issuedir/article$articlenum.shtml";
    $lstr="$img <A href=\"$prefixdir$tmp\">$title</A> <!-- file not found -->";
    $lstr.="<br>$abstract</p>\n";
    return($lstr);
}
#------------------
# read in the database:
#--------------
sub readdb($$){
    my $textdb=shift;
    my $titledb=shift;
    my @line;
    my $l=0;
    my $artnum=0;
    my %ldb;
    if ( -r "$titledb"){
        print "reading translated titles from $titledb...\n";
        open(FF,"$titledb")||die "ERROR: can not read $titledb\n";
        $l=0;
        while(<FF>){
            $l++;
            next if (/^\s*#/);  # ignore comment
            next unless (/:/); 
            unless (/^\s*\d/){
                print $titledb.":".$l.":Syntax error, line does not start with article number\n";
            }

            chomp;
            unless(/:::/){
                print $titledb.":".$l.":Syntax error, missing sperator \":::\"\n";
                next;
            }
            @line=split(/\s*:::\s*/);
            print $titledb.":".$l.":Error, Duplicate article number $line[0]\n" if ($ldb{$line[0]}); 
            for my $i (0..2){
                $line[$i]="" unless($line[$i]);
            }
            # fix some html characters:
            $line[1]=~s/&(\W)/&amp;$1/g;
            $line[2]=~s/&(\W)/&amp;$1/g;
            $ldb{$line[0]}->{'title'}=$line[1];
            $ldb{$line[0]}->{'abstract'}=$line[2];
        }
        close FF;
    }else{
        print "Sorry, can not read $titledb, title and abstract will be English\n" unless ($pwd =~/\/English/);
    }
    print "reading $textdb ...\n";
    my ($ut_num,$ut_issuedir);
    open(FF,"$textdb")||die "ERROR: can not read $textdb\n";
    while(<FF>){
        $l++;
        next unless (/^art/);  # ignore comment
        chomp;
        @line=split(/~/);
        for my $i (0..12){
            $line[$i]="" unless($line[$i]);
        }
        next if ($line[3] eq "none"); # ignore not published
        # use language specific part where available
        if ($ldb{$line[1]}->{'title'}){
            $line[6]=$ldb{$line[1]}->{'title'};
        }
        if ($ldb{$line[1]}->{'abstract'}){
            $line[12]=$ldb{$line[1]}->{'abstract'};
        }
        #
        $line[6]=~s/</\&lt;/g;
        $line[6]=~s/>/\&gt;/g;
        $line[12]=~s/</\&lt;/g;
        $line[12]=~s/>/\&gt;/g;
        # fix some html characters:
        $line[12]=~s/&(\W)/&amp;$1/g;
        $line[6]=~s/&(\W)/&amp;$1/g;
        if ($line[3]=~/(\w+)/){
            $ut_issuedir=$1;
        }else{
            $ut_issuedir="unknown";
        }
        if ($line[1]=~/(\d+)/){
            $ut_num=$1;
        }else{
            $ut_num="000";
        }
        #
        # 1:article num  2:Theme 4:Issue numeric 3:issue dir 7:filename
        $db_byissue{$line[4]}{$line[1]}{$ut_issuedir}{'title'}=$line[6];
        $db_byissue{$line[4]}{$line[1]}{$ut_issuedir}{'abstract'}=$line[12];
        $db_bytheme{$line[2]}{$line[1]}{$ut_issuedir}{'title'}=$line[6];
        $db_bytheme{$line[2]}{$line[1]}{$ut_issuedir}{'abstract'}=$line[12];
        $db_byauthor{$line[10]}{$line[1]}{$ut_issuedir}{'title'}=$line[6];
        $db_byauthor{$line[10]}{$line[1]}{$ut_issuedir}{'abstract'}=$line[12];
        $numissue2dir{$line[4]}=$ut_issuedir;
        $authorinfo{$line[10]}{'htmlname'}=$line[11];
        $authorinfo{$line[10]}{'count'}++;
    }
    close FF;
}
#--------------
sub today(){
    my @ltime = localtime;
    #return a date in yyyy-mm-dd format
    sprintf("%04d-%02d-%02d",1900 + $ltime[5],$ltime[4] + 1,$ltime[3]);
}      
#--------------
# read the header files from ../common/headers and print them to $fd
sub printheadder($$$){
    my $type=shift; #issueindex or langindex
    my $lang=shift;
    my $fd=shift;
    my $id="../common/headers/dir2id.txt";
    open(ID,$id)||die "ERROR: can not read $id\n";
    my @l;
    my $langid="en";
    while(<ID>){
        next unless(/^\w/);
        @l=split;
        if($l[0] eq $lang){
            $langid=$l[1];
        }
    }
    close ID;
    my $f="../common/headers/lfheader_".$type."-$langid.txt";
    open(ID,$f)||die "ERROR: can not read $f\n";
    while(<ID>){
        $fd->print($_);
    }
    close ID;
}
#--------------
sub printtemplate($$){
    my $name=shift;
    my $fd=shift;
    if (defined $templates{$name}){
        foreach (@{$templates{$name}}){
            $fd->print($_);
        }
    }else{
        # try english
        print "Warning, no template $name, trying english version\n";
        $name=~s/_[A-Za-z0-9]+$/_English/;
        if (defined $templates{$name}){
            foreach (@{$templates{$name}}){
                $fd->print($_);
            }
        }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;
        s/\$ver/ver: $ver/o;
        push(@{$templates{$templatename}},$_);
    }
}                  
#-------------
sub help(){
print "lfthemes -- generate a linuxfocus subject index page (themes)

USAGE:   lfthemes [-ha]

OPTIONS: -h this help text
         -a link to all other languages (requires the LFlanguages.pm to
         be installed)

You need to stand in the directory for that language. You can not generate
the pages if you do not have the articles in the right directories as
the program need to find out if the articles is .shtml or a .html file.

If it can not find .shtml or  .html files then it will create links
to ../../English/ and puts the image ../../common/images/frame_tuxgrey.gif 
in front.

EXAMPLE: cd Castellano; lfthemes ../common/db
         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/

         It will read the files ../common/db/textdb.txt to get all the
         articles.  ../common/headers/ are read to get language specific
         headers.
         If existant ./db/titles.txt will be read to get
         translations for abstract and title.

The latest version of this program is at 
   http://main.linuxfocus.org/~guido/dev/
This program was written by Guido Socher 

version: $ver
\n";
exit;
}
__END__ 
__head_English
<!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>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm; color:#666; }
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">

__index_English
<CENTER>
<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.<br></LI>
      <LI type="circle"><A href="Community.html">Community</A>
	<BR>What's going on in the community.<br></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<br></LI>
      <LI type="circle"><A href="Applications.html">Applications under Linux</A>
	<BR>Useful applications to work with.<br></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Reviews</A>
	<BR>Hardware hints and issues.<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">System Administration</A>
	<BR>Manage your system or network.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Software Development</A>
	<BR>Linux is a great development lab.<br></LI>
      <LI type="circle"><A href="Webdesign.html">Web-design</A>
	<BR>Software Development related to web-design.<br></LI>
      <LI type="circle"><A href="Graphics.html">Graphics Corner</A>
	<BR>Find out about all these tools to become an artist.<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux Basics</A>
	<BR>Good thinks to knows to get the best out of your free system.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">Kernel Corner</A>
	<BR>The nuts and bolts of Linux.<br></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>People involved with Linux tell us what they do.<br></LI>
</ul>

__foot_th_English
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../../common/lfteam.html">Webpages maintained by the LinuxFocus Editor team</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
generated by lfthemes, $date, version: $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_English
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../common/lfteam.html">Webpages maintained by the LinuxFocus Editor team</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
generated by lfthemes, $date, version: $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_English
<H1>Linux Forum </H1>
<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>

__Games_English
<H1>Games</H1>
<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>

__Applications_English
<H1>Applications</H1>
<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>

__Webdesign_English
<H1>Webdesign</H1>
<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>

__Hardware_English
<H1>Harware Review</H1>
<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>

__SystemAdministration_English
<H1>System Administration</H1>
<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>

__SoftwareDevelopment_English
<H1>Software Development</H1>
<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>

__Graphics_English
<H1>Graphics</H1>
<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>

__UNIXBasics_English
<H1>Unix Basics</H1>
<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>

__KernelCorner_English
<H1>Kernel Corner</H1>
<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>

__Community_English
<H1>Community</H1>
<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>

__Interviews_English
<H1>Interviews</H1>
<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>

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

__byauthor_English
<H1>Article index by author</H1>
<p>This is an index of all LinuxFocus articles sorted by authorname.</p>
<HR noshade="noshade" size=2>
<!-- NEXT_BYAUTHOR -->

__head_Deutsch
<!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>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">

__index_Deutsch
<CENTER>
<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.<br></LI>
      <LI type="circle"><A href="Community.html">Die Linuxgemeinde</A>
	<BR>Aktuelles zu Linux.<br></LI>
      <LI type="circle"><A href="Games.html">Spiele f&uuml;r Linux</A>
	<BR>Spiele Software und lustige Geschichten.<br></LI>
      <LI type="circle"><A href="Applications.html">Applikationen unter Linux</A>
	<BR>Interessante Applikationen f&uuml;r Linux.<br></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Review</A>
	<BR>Alles ber Linux-Hardware.<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">Systemadministration</A>
	<BR>Wie man sein Linuxsystem und Netzwerk managen kann.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Softwareentwicklung</A>
	<BR>Linux ist ein gro&szlig;artiges Softwareentwicklungslabor.<br></LI>
      <LI type="circle"><A href="Webdesign.html">Web-Design</A>
	<BR>Wie man Webseiten entwickelt.<br></LI>
      <LI type="circle"><A href="Graphics.html">Grafikecke</A>
	<BR>Grafiksoftware f&uuml;r den K&uuml;nstler und Designer.<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux Grundlagen</A>
	<BR>Tips und Tricks f&uuml;r den Linuxbenutzer.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">Kernelecke</A>
	<BR>Das Herzst&uuml;ck von Linux.<br></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>Interviews mit Leuten aus der Linuxgemeinde.<br></LI>
</ul>

__foot_i_Deutsch
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../common/lfteam.html">An das LinuxFocus Team schreiben</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT BGCOLOR="#AAAAAA">
generated by lfthemes, $date, Version $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_th_Deutsch
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../../common/lfteam.html">An das LinuxFocus Team schreiben</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT BGCOLOR="#AAAAAA">
generated by lfthemes, $date, Version $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Deutsch
<H1>Linux Forum </H1>
<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>

__Games_Deutsch
<H1>Games</H1>
<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>

__Applications_Deutsch
<H1>Applikationen</H1>
<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>

__Webdesign_Deutsch
<H1>Web-Design</H1>
<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>

__Hardware_Deutsch
<H1>Harware Review</H1>
<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>

__SystemAdministration_Deutsch
<H1>System Administration</H1>
<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>

__SoftwareDevelopment_Deutsch
<H1>Softwareentwicklung</H1>
<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>

__Graphics_Deutsch
<H1>Grafik</H1>
<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>

__UNIXBasics_Deutsch
<H1>Unix Grundlagen</H1>
<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>

__KernelCorner_Deutsch
<H1>Kernel Ecke</H1>
<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>

__Community_Deutsch
<H1>Die Linuxgemeinde</H1>
<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>


__Interviews_Deutsch
<H1>Interviews</H1>
<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>


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

__byauthor_Deutsch
<H1>Index sortiert nach Autoren</H1>
<p>Dies ist ein Index mit allen Linuxfocusartikeln sortiert nach Autorname.
</p>
<HR noshade="noshade" size=2>
<!-- NEXT_BYAUTHOR -->


__head_Nederlands
<!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>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">


__index_Nederlands
<CENTER>
<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.<br></LI>
      <LI type="circle"><A href="Community.html">Gemeenschap</A>
	<BR>Wat er gebeurt in de gemeenschap.<br></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<br></LI>
      <LI type="circle"><A href="Applications.html">Applicaties onder Linux</A>
	<BR>Nuttige programma's om mee te werken.<br></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Besprekingen</A>
	<BR>Hardware tips en besprekingen.<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">Systeembeheer</A>
	<BR>Beheer je systeem of netwerk.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Software Ontwikkeling</A>
	<BR>Linux is een groot ontwikkelingslabo.<br></LI>
      <LI type="circle"><A href="Webdesign.html">Web-design</A>
	<BR>Alles in verband met het publiceren op het Web.<br></LI>
      <LI type="circle"><A href="Graphics.html">Grafische Hoek</A>
	<BR>Ontdek alles over de gereedscahppen van de artiest.<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux Basics</A>
	<BR>Handig om het beste uit je gratis systeem te halen.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">Kernel Hoek</A>
	<BR>Een blik onder de motorkap van Linux.<br></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>Mensen uit de Linux-gemeenschap vertellen over hun werk.<br></LI>
</ul>

__foot_i_Nederlands
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../common/lfteam.html">Webpagina's onderhouden door het LinuxFocus Editor team</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT BGCOLOR="#AAAAAA">
generated by lfthemes, $date</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_th_Nederlands
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../../common/lfteam.html">Webpagina's onderhouden door het LinuxFocus Editor team</A>
<BR>&copy; LinuxFocus 
</TD>
<TD ALIGN=RIGHT BGCOLOR="#AAAAAA">
generated by lfthemes, $date</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Nederlands
<H1>Linux Forum </H1>
<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>

__Games_Nederlands
<H1>Games</H1>
<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>

__Applications_Nederlands
<H1>Applicaties</H1>
<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>

__Webdesign_Nederlands
<H1>Webdesign</H1>
<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>

__Hardware_Nederlands
<H1>Harware Besprekingen</H1>
<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>

__SystemAdministration_Nederlands
<H1>Systeembeheer</H1>
<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>

__SoftwareDevelopment_Nederlands
<H1>Software Ontwikkeling</H1>
<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>

__Graphics_Nederlands
<H1>Grafische Hoek</H1>
<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>

__UNIXBasics_Nederlands
<H1>Unix Basics</H1>
<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>

__KernelCorner_Nederlands
<H1>Kernel Hoek</H1>
<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>

__Community_Nederlands
<H1>Gemeenschap</H1>
<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>


__Interviews_Nederlands
<H1>Interviews</H1>
<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>


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


__head_ChineseBig5
<!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>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">


__index_ChineseBig5
<CENTER>
<H1>Linux<FONT color="#ff0000">Focus</FONT>DD</H1>
</CENTER>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/colage.jpg" alt="[DD]" width="200" height="200">
</TD>
<TD>
oOĤ@hy Linux xDDޡC
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Qװ</A>
	<BR>MaݪkPŪ̷N<br></LI>
      <LI type="circle"><A href="Community.html">ya</A>
	<BR>̷sT<br></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<br></LI>
      <LI type="circle"><A href="Applications.html">Linux n</A>
	<BR>Linux UΪn餶лP<br></LI>
      <LI type="circle"><A href="Hardware.html">w</A>
	<BR>wDMޥ<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">tκ޲z</A>
	<BR>tΩM޲z<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">n]p</A>
	<BR>Linux NO@ӶWjn]pu@!<br></LI>
      <LI type="circle"><A href="Webdesign.html">]p</A>
	<BR>]pn<br></LI>
      <LI type="circle"><A href="Graphics.html">N]p</A>
	<BR>NaƤun<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux ¦</A>
	<BR>q̰򥻪}lӾǲ UNIX M Linux t<br></LI>
      <LI type="circle"><A href="KernelCorner.html">֤ߤ@</A>
	<BR>Ҧ Linux ֤ (Kernel) Q<br></LI>
      <LI type="circle"><A href="Interviews.html">XͰO</A>
	<BR>XݩM Linux WH<br></LI>
</ul>

__foot_th_ChineseBig5
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../../common/lfteam.html">@GLinuxFocus s</A>
<BR>&copy; vҦ LinuxFocus 
</TD>
<TD ALIGN=RIGHT BGCOLOR="#AAAAAA">
generated by lfthemes, $date</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_ChineseBig5
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../common/lfteam.html">@GLinuxFocus s</A>
<BR>&copy; vҦ LinuxFocus 
</TD>
<TD ALIGN=RIGHT BGCOLOR="#AAAAAA">
generated by lfthemes, $date</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_ChineseBig5
<H1>Linux Qװ</H1>
<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>
MaݪkPŪ̷N
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_ChineseBig5
<H1>Games</H1>
<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>

__Applications_ChineseBig5
<H1>Linux n</H1>
<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>

__Webdesign_ChineseBig5
<H1>]p</H1>
<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峹Mn餶
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Hardware_ChineseBig5
<H1>w</H1>
<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>
MQw骺峹AΦb Linux UϥΦUصw骺ޥ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SystemAdministration_ChineseBig5
<H1>tκ޲z</H1>
<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>

__SoftwareDevelopment_ChineseBig5
<H1>n]p</H1>
<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 ҤUn]pQפ峹
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Graphics_ChineseBig5
<H1>N]p</H1>
<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>
NaƤun
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_ChineseBig5
<H1>Unix/Linux ¦</H1>
<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¬Mz
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_ChineseBig5
<H1>֤ߤ@</H1>
<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>

__Community_ChineseBig5
<H1>ya</H1>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Community.jpg" alt="[ya]" width="200" height="200">
</TD>
<TD>
sj Linux ϥΪ̸s̷sMG
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>


__Interviews_ChineseBig5
<H1>XͰO</H1>
<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 WH
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__issue_ChineseBig5
<H1>LinuxFocus x</H1>
<p>UOҦ LinuxFocus x̷ӤƦC᪺ޡC</p>
<HR noshade="noshade" size=2>
<!-- NEXT_LANG -->

__head_ChineseGB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=gb2312">
<TITLE>LinuxFocus Index</TITLE>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">

__index_ChineseGB
<CENTER>
<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="[ͼƬ]" width="200" height="200">
</TD>
<TD>
ǵһɵ Linux Ի־İ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux ̳</A>
	<BR>ô Linux Լص⡣<br></LI>
      <LI type="circle"><A href="Community.html"></A>
	<BR>ڽеʲô<br></LI>
      <LI type="circle"><A href="Games.html">Ϸ</A>
	<BR>Linux µϷЦȤĶ<br></LI>
      <LI type="circle"><A href="Applications.html">LinuxµӦó</A>
	<BR>ڹõĳ<br></LI>
      <LI type="circle"><A href="Hardware.html">Ӳ</A>
	<BR>Ӳľػ⡣<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">ϵͳ</A>
	<BR>ϵͳ硣<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html"></A>
	<BR>Linux Ǹΰʵҡ<br></LI>
      <LI type="circle"><A href="Webdesign.html">Web </A>
	<BR>Web ص<br></LI>
      <LI type="circle"><A href="Graphics.html">ͼν</A>
	<BR>ҳڳΪҵĹߡ<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux </A>
	<BR>ɵϵͳõĺ⡣<br></LI>
      <LI type="circle"><A href="KernelCorner.html">ں԰</A>
	<BR>Linux ֡<br></LI>
      <LI type="circle"><A href="Interviews.html"≯</A>
	<BR>Linux Ĳ̸Ķ<br></LI>
</ul>

__foot_th_ChineseGB
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../../common/lfteam.html">ҳ LinuxFocus ༭Ŷά</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
 lfthemes, $date, 汾: $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_ChineseGB
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../common/lfteam.html">ҳ LinuxFocus ༭Ŷά</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
 lfthemes, $date, 汾: $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_ChineseGB
<H1>Linux ̳</H1>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Forum.jpg" alt="[̳ͼƬ]" width="200" height="200">
</TD>
<TD>
ӦרҺ Linux ûĹ۵µ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_ChineseGB
<H1>Ϸ</H1>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Game.gif" alt="[ϷͼƬ]" width="200" height="200">
</TD>
<TD>
 Linux µϷۺ̸Ȥµ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Applications_ChineseGB
<H1>Ӧó</H1>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Tools.jpg" alt="[ӦóͼƬ]" width="200" height="200">
</TD>
<TD>
 Linux µӦó͹ߵµ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Webdesign_ChineseGB
<H1>Web </H1>
<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>
й Web ƺ WWW µб
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Hardware_ChineseGB
<H1>Ӳ</H1>
<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>
רעӲ Linux µʹúõµб
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SystemAdministration_ChineseGB
<H1>ϵͳ</H1>
<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>
Linux ϵͳµб
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SoftwareDevelopment_ChineseGB
<H1></H1>
<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>
й Linux µб
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Graphics_ChineseGB
<H1>ͼ</H1>
<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>
Linux µͼصб
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_ChineseGB
<H1>Unix </H1>
<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 СԼ֪ʶ
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_ChineseGB
<H1>ں԰</H1>
<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>
 Linux ϵͳ¡
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Community_ChineseGB
<H1></H1>
<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>
LinuxĹԼз顣
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Interviews_ChineseGB
<H1≯</H1>
<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>
Linux еĲͬķ̸
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__issue_ChineseGB
<H1>LinuxFocus ڡ</H1>
<p>ȫ LinuxFocus µİʱ</p>
<HR noshade="noshade" size=2>
<!-- NEXT_LANG -->

__byauthor_ChineseGB
<H1>ߵ</H1>
<p>ȫ LinuxFocus °</p>
<HR noshade="noshade" size=2>
<!-- NEXT_BYAUTHOR -->

__head_Francais
<!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>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000">


__index_Francais
<CENTER>
<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.<br></LI>
      <LI type="circle"><A href="Community.html">Communit&eacute;</A>
	<BR>Ce qui se passe dans la communaut&eacute; Linux.<br></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux, jokes and funny things.<br></LI>
      <LI type="circle"><A href="Applications.html">Applications sous Linux</A>
	<BR>Des applications utiles pour travailler.<br></LI>
      <LI type="circle"><A href="Hardware.html">Le mat&eacute;riel</A>
	<BR>Le mat&eacute;riel et Linux.<br></LI>
      <LI type="circle"><A href="SystemAdministration.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.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Developement logiciel</A>
	<BR>Linux est une excellente plateforme de developement. Faites votre choix.<br></LI>
      <LI type="circle"><A href="Webdesign.html">Design Web</A>
	<BR>Developement logiciel relatif au Design<br></LI>
      <LI type="circle"><A href="Graphics.html"Infographie</A>
	<BR>Decouvrez tous les outils pour devenir artiste.<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">Les bases d'UNIX/Linux</A>
	<BR>Ce qu'il faut savoir pour bien d&eacute;buter avec Linux.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">Le noyau</A>
	<BR>Les entrailles de Linux.<br></LI>
      <LI type="circle"><A href="Interviews.html">Entretien</A>
	<BR>Des gens impliqu&eacute;s dans Linux nous expliquent comment ils l'utilisent.<br></LI>
</ul>

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

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

__Forum_Francais
<H1>Forum Linux </H1>
<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>

__Games_Francais
<H1>Games</H1>
<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>

__Applications_Francais
<H1>Applications sous Linux</H1>
<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>

__Webdesign_Francais
<H1>Design web</H1>
<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>

__Hardware_Francais
<H1>Le mat&eacute;riel</H1>
<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>

__SystemAdministration_Francais
<H1>Administration syst&egrave;me</H1>
<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>

__SoftwareDevelopment_Francais
<H1>Developement logiciel</H1>
<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>

__Graphics_Francais
<H1>Infographie</H1>
<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>

__UNIXBasics_Francais
<H1>Les Bases d'Unix</H1>
<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>

__KernelCorner_Francais
<H1>Le coin du noyau</H1>
<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>

__Community_Francais
<H1>Communit&eacute;</H1>
<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>


__Interviews_Francais
<H1>Entretiens</H1>
<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>


__issue_Francais
<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>


__head_Russian
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=koi8-r">
<TITLE>LinuxFocus Index</TITLE>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000">


__index_Russian
<CENTER>
<H1>   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>
 ,   ,    
online    Linux. 
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Forum</A>
	<BR>     Linux.<br></LI>
      <LI type="circle"><A href="Community.html">Community</A>
	<BR>   .<br></LI>
      <LI type="circle"><A href="Applications.html">Applications under Linux</A>
	<BR> .<br></LI>
      <LI type="circle"><A href="Hardware.html">Hardware Reviews</A>
	<BR>   .<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">System Administration</A>
	<BR>    .<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Software Development</A>
	<BR>Linux -   .<br></LI>
      <LI type="circle"><A href="Webdesign.html">Web-design</A>
	<BR>    - .<br></LI>
      <LI type="circle"><A href="Graphics.html">Graphics Corner</A>
	<BR>    .<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux Basics</A>
	<BR>      .<br></LI>
      <LI type="circle"><A href="KernelCorner.html">Kernel Corner</A>
	<BR>   Linux?<br></LI>
      <LI type="circle"><A href="Games.html">Games</A>
	<BR>Game software for Linux and funny things.<br></LI>
      <LI type="circle"><A href="Interviews.html">Interviews</A>
	<BR>   Linux       .<br></LI>
</ul>

__foot_th_Russian
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../../common/lfteam.html">Webpages maintained by the LinuxFocus Editor team</A>
<BR>&copy; LinuxFocus 
</TD></TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_Russian
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../common/lfteam.html">Webpages maintained by the LinuxFocus Editor team</A>
<BR>&copy; LinuxFocus 
</TD></TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Russian
<H1>Linux Forum </H1>
<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>
      Linux. 
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_Russian
<H1></H1>
<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>
,     Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Applications_Russian
<H1>Applications</H1>
<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>
,   ,    Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Webdesign_Russian
<H1>Webdesign</H1>
<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>
   -   WWW .
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Hardware_Russian
<H1>Harware Review</H1>
<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>
   ,       Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SystemAdministration_Russian
<H1>System Administration</H1>
<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>
     Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SoftwareDevelopment_Russian
<H1>Software Development</H1>
<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>
    Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Graphics_Russian
<H1>Graphics</H1>
<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>
      Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_Russian
<H1>Unix Basics</H1>
<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.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_Russian
<H1>Kernel Corner</H1>
<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>
    Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Community_Russian
<H1>Community</H1>
<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>
   Linux     .
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Interviews_Russian
<H1>Interviews</H1>
<TABLE  align="center" width="75%"  cellspacing="0" cellpadding="15" border="0">
<TR>
<TD>
<IMG src="../../common/images/Kernel.jpg" alt="[Interviews Picture]" width="200" height="200">
</TD>
<TD>
     Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>


__issue_Russian
<H1> LinuxFocus  </H1>
<p>   LinuxFocus,   .</p>
<HR noshade="noshade" size=2>


__head_Castellano
<!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>Indice de LinuxFocus</TITLE>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff"  text="#000000" >


__index_Castellano
<CENTER>
<H1>Indice de Materias de 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>
Este es el &iacute;ndice de materias de la primera revista libre y multi-lingue sobre Linux disponible en la web.
</TD>
</TR>
</TABLE>
<HR noshade=noshade size=2>
<UL>
   <LI type=circle><A href=Forum.html>F&oacute;rum sobre Linux</A>
      <BR>Opiniones de expertos y usuarios de Linux. </p></LI>
   <LI type=circle><A href=Applications.html>Aplicaciones</A>
      <BR>Aplicaciones &uacute;tiles para trabajar con Linux.</p></LI>
   <LI type=circle><A href=Webdesign.html>Dise&ntilde;o Web</A>
      <BR>Desarrollos de software relacionados con el dise&ntilde;o web.</p></LI>
   <LI type=circle><A href=Hardware.html>Revisiones de Harware</A>
      <BR>Art&iacute;culos dedicados al hardware, su uso y configuraci&oacute;n bajo Linux.</p></LI> 
   <LI type=circle><A href=SystemAdministration.html>Administraci&oacute;n de Sistemas</A>
      <BR>Administrar tu sistema o red local.</p></LI>
   <LI type=circle><A href=SoftwareDevelopment.html>Desarrollos de Software</A>
      <BR>Linux es un excelente laboratorio de desarrollo de software.</p></LI>
   <LI type=circle><A href=Graphics.html>Gr&aacute;ficos</A>
      <BR>Art&iacute;culos sobre software para gr&aacute;ficos bajo Linux.</p></LI>
   <LI type=circle><A href=UNIXBasics.html>Elemetos de Unix</A>
      <BR>Las cosas que se deben saber para obtener el mayor rendimiento del sistema.</p></LI>
   <LI type=circle><A href=KernelCorner.html>El rinc&oacute;n del Kernel</A>
      <BR>Art&iacute;culos sobre el coraz&oacute;n del SO Linux.</p></LI>
   <LI type=circle><A href=Community.html>Community</A>
      <BR>Historias sobre la comunidad Linux y lo que se cuece dentro de ella.</p></LI>
   <LI type=circle><A href=Interviews.html>Entrevistas</A>
      <BR>Personas relacionadas con Linux nos cuentan lo que est&aacute;n haciendo.</p></LI>
</UL>

__foot_th_Castellano
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../../common/lfteam.html">P&aacute;ginas
Web mantenidas por el equipo editorial de LinuxFocus</A>
<BR>&copy; LinuxFocus 
</TD></TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_Castellano
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%">
<TR><TD ALIGN=CENTER BGCOLOR="#AAAAAA">
<A class="nodec" HREF="../common/lfteam.html">P&aacute;ginas
Web mantenidas por el equipo editorial de LinuxFocus</A>
<BR><FONT COLOR="#FFFFFF">&copy; LinuxFocus </FONT>
</TD></TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Castellano
<H1>Linux Forum</H1>
<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>
Art&iacute;culos que expresan las opiniones de expertos y usuarios de linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Applications_Castellano
<H1>Aplicaciones</H1>
<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>
Aplicaciones &uacute;tiles para trabajar con Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Webdesign_Castellano
<H1>Dise&ntilde;o Web</H1>
<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>
Desarrollos de software relacionados con el dise&ntilde;o web.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Hardware_Castellano
<H1>Revisiones de Harware</H1>
<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>
Art&iacute;culos dedicados al hardware, su uso y configuraci&oacute;n bajo Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SystemAdministration_Castellano
<H1>Administraci&oacute;n de Sistemas</H1>
<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>
Administrar tu sistema o red local.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SoftwareDevelopment_Castellano
<H1>Desarrollos de Software</H1>
<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>
Linux es un excelente laboratorio de desarrollo de software.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Graphics_Castellano
<H1>Gr&aacute;ficos</H1>
<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>
Art&iacute;culos sobre software gr&aacute;fico bajo Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_Castellano
<H1>Elementos de Unix</H1>
<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>
Las cosas que se deben saber para obtener el mayor rendimiento del sistema.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_Castellano
<H1>El rinc&oacute;n del Kernel</H1>
<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>
El coraz&oacute;n del sistema operativo Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Community_Castellano
<H1>Community</H1>
<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>
Historias sobre la comunidad Linux, y lo que se mueve dentro de ella.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>


__Interviews_Castellano
<H1>Entrevistas</H1>
<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>
Personas relacionadas con Linux nos cuentan lo que est&aacute;n haciendo.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_Castellano
<H1>Juegos</H1>
<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>
Art&iacute;culos que hablan sobre juegos para Linux, o cosas divertidas.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>


__issue_Castellano
<H1>Indice de Linux<FONT color=#ff0000>Focus</FONT> por n&uacute;mero</H1>
<p>Este es un &iacute;ndice con todos los art&iacute;culos publicados
en Linux<FONT color=#ff0000>Focus</FONT>, ordenados seg&uacute;n el n&uacute;mero en el que aparecieron.</p>
<HR noshade="noshade" size=2>

__head_Italiano
<!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>Indice di LinuxFocus</TITLE>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">

__index_Italiano
<CENTER>
<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>
Questo &egrave; l'indice della prima rivista per linux multi-linguistica sul web, ordinato per argomento. 
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Forum</A>
	<BR>Cosa pensano di Linux le persone famose e argomenti correlati.<br></LI>
      <LI type="circle"><A href="Community.html">Community</A>
	<BR>Cosa sta succedendo nella comunit&agrave;.<br></LI>
      <LI type="circle"><A href="Games.html">Giochi</A>
	<BR>Giochi per Linux, scherzi e cose divertenti.<br></LI>
      <LI type="circle"><A href="Applications.html">Applicazioni sotto Linux</A>
	<BR>Applicazioni utili con cui lavorare. <br></LI>
      <LI type="circle"><A href="Hardware.html">Recensioni Hardware</A>
	<BR>Trucchi e problemi con l'Hardware.<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">Amministrazione di Sistema</A>
	<BR>Gestite il vostro sistema o la vostra rete.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Sviluppo Software</A>
	<BR>Linux &egrave; un grande laboratorio di sviluppo.<br></LI>
      <LI type="circle"><A href="Webdesign.html">Web-design</A>
	<BR>Sviluppo di Software riguardante il web-design.<br></LI>
      <LI type="circle"><A href="Graphics.html">L'Angolo della Grafica</A>
	<BR>Scoprite tutto sui tools per diventare artisti.<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">Basi di UNIX/Linux</A>
	<BR>Cose da conoscere per ricavare il meglio dal vostro sistema libero.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">L'Angolo del Kernel</A>
	<BR>Il funzionamento di Linux.<br></LI>
      <LI type="circle"><A href="Interviews.html">Interviste</A>
	<BR>Le persone coinvolte in Linux ci dicono quello che stanno facendo.<br></LI>
</ul>

__foot_th_Italiano
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../../common/lfteam.html">Pagine gestite dal team degli Editori di LinuxFocus</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
generato da lfthemes, $date, $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_Italiano
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../common/lfteam.html">Pagine gestite dal team degli Editori di LinuxFocus</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
generato da lfthemes, $date</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Italiano
<H1>Linux Forum </H1>
<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>
Indice degli articoli che danno voce agli esperti e agli utenti di Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_Italiano
<H1>Giochi</H1>
<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>
Indice degli recensioni di giochi per Linux e degli articoli su cose divertenti.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Applications_Italiano
<H1>Applicazioni</H1>
<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>
Indice degli articoli che presentano o recensiscono applicazioni e tools disponibili per linux
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Webdesign_Italiano
<H1>Webdesign</H1>
<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>
Lista degli articoli riguardanti il Webdesign e il WWW in genere.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Hardware_Italiano
<H1>Recensioni Harware</H1>
<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>
Lista degli articoli dedicati all'hardware, al suo uso e alla configurazione sotto Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SystemAdministration_Italiano
<H1>Amministrazione di Sistema</H1>
<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>
Lista degli articoli riguardanti l'amministrazione di un sistema Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SoftwareDevelopment_Italiano
<H1>Sviluppo di Software</H1>
<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>
Lista degli articoli riguardanti lo sviluppo di software sotto Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Graphics_Italiano
<H1>Grafica</H1>
<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>
Lista degli articoli riguardanti il software per la grafica sotto Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_Italiano
<H1>Basi di Unix</H1>
<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>
Trucchi, segreti e principi di Unix.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_Italiano
<H1>L'Angolo del Kernel</H1>
<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>
Articoli riguardanti il cuore del Sistema Operativo Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Community_Italiano
<H1>Community</H1>
<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>
Storie sulla comunit&agrave; Linux e su quello che vi succede.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Interviews_Italiano
<H1>Interviste</H1>
<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>
Interviste a diverse persone del mondo Linux.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__issue_Italiano
<H1>Indice per numero di LinuxFocus</H1>
<p>Questo &egrave; un indice di tutti gli articoli di LinuxFocus ordinati per uscita.</p>
<HR noshade="noshade" size=2>
<!-- NEXT_LANG -->


__head_Arabic
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML dir="rtl">
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=windows-1256">
<TITLE>   
</TITLE>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">

__index_Arabic
<CENTER>
<H1 >   </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>
          

</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL dir ="rtl">
      <LI type="circle"><A href="Forum.html"> </A>
	<BR>    <br></LI>
      <LI type="circle"><A href="Community.html"> </A>
	<BR>   
<br></LI>
      <LI type="circle"><A href="Games.html"></A>
	<BR>     .

.<br></LI>
      <LI type="circle"><A href="Applications.html"></A>
	<BR>  .<br></LI>
      <LI type="circle"><A href="Hardware.html"></A>
	<BR>    .
<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">ɠ</A>
	<BR>   
.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html"> 
</A>
	<BR>    
.<br></LI>
      <LI type="circle"><A href="Webdesign.html">  ڡ</A>
	<BR>   ڡ 
<br></LI>
      <LI type="circle"><A href="Graphics.html"> </A>
	<BR>      
<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">    </A>
	<BR>     
.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">  </A>
	<BR>   
.<br></LI>
      <LI type="circle"><A href="Interviews.html"></A>
	<BR>      

<br></LI>
</ul>

__foot_th_Arabic
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../../common/lfteam.html">   </A>
<BR>&copy;  
</TD>
<TD ALIGN=RIGHT>
ʠ lfthemes, $date, $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_Arabic
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../common/lfteam.html">   Ӡ </A>
<BR>&copy;  
</TD>
<TD ALIGN=RIGHT>
ʠܠ  lfthemes, $date</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Arabic
<H1>  </H1>
<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>
     
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_Arabic
<H1></H1>
<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>
     
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Applications_Arabic
<H1></H1>
<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>
      

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

__Webdesign_Arabic
<H1> </H1>
<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>
   . 

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

__Hardware_Arabic
<H1></H1>
<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>    


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

__SystemAdministration_Arabic
<H1>ɠ</H1>
<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>

   

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

__SoftwareDevelopment_Arabic
<H1> </H1>
<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>
     


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

__Graphics_Arabic
<H1>
</H1>
<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>
      
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_Arabic
<H1>    
</H1>
<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>
     
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_Arabic
<H1> 
</H1>
<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>
     
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Community_Arabic
<H1>
</H1>
<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>
      
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Interviews_Arabic
<H1>
</H1>
<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>      
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__issue_Arabic
<H1>   
</H1>
<p>    
</p>
<HR noshade="noshade" size=2>
<!-- NEXT_LANG -->

__head_Turkce
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<TITLE>LinuxFocus Konu erii</TITLE>
<style type="text/css">
<!--
td.top {font-family: Arial,Geneva,Verdana,Helvetica,sans-serif; font-size:12 }
a.nodec { text-decoration:none }
a.l { color:#555 }
div.l {  color:#666 }
p.indent { margin: 1px 1px 1px 0.5cm;}
-->
</style>
</HEAD>
<BODY bgcolor="#ffffff" text="#000000">

__index_Turkce
<CENTER>
<H1>Linux<FONT color="#ff0000">Focus</FONT>Konu erii</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>
Bu, Linux hakkndaki ilk parasz ve ok dilli derginin konularna gre ieriidir.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>
<UL>
      <LI type="circle"><A href="Forum.html">Linux Forum</A>
	<BR>nl kiilerin Linux hakkndaki dnceleri ve ilgili konular.<br></LI>
      <LI type="circle"><A href="Community.html">Topluluk</A>
	<BR>What's going on in the community.<br></LI>
      <LI type="circle"><A href="Games.html">Ouyunlar</A>
	<BR>Linux iin oyun yazlmlar, espiriler ve eylenceli eyler.<br></LI>
      <LI type="circle"><A href="Applications.html">Linux'taki Uygulamalar</A>
	<BR>Linux'la almak iin yararl uygulamalar.<br></LI>
      <LI type="circle"><A href="Hardware.html">Donanm Gzden Geirimi</A>
	<BR>Donanm konular ve nerileri.<br></LI>
      <LI type="circle"><A href="SystemAdministration.html">Sistem Ynetimi</A>
	<BR>Sistem ve a'nz ynetmek.<br></LI>
      <LI type="circle"><A href="SoftwareDevelopment.html">Yazlm Gelitirme</A>
	<BR>Linux, harika bir yazlm gelitirme laboratuvardr.<br></LI>
      <LI type="circle"><A href="Webdesign.html">Sanaldoku Tasarm</A>
	<BR>Sanaldoku ile ilgili yazlm gelitirme.<br></LI>
      <LI type="circle"><A href="Graphics.html">Garfik Kesi</A>
	<BR>Sanat olabilmek iin grafik uygulamalar hakknda renebileceklerinizin hepsi.<br></LI>
      <LI type="circle"><A href="UNIXBasics.html">UNIX/Linux Temelleri</A>
	<BR>Parasz olan ssteminizden en iyiyisini elde edebilmek iin bilinmesi gereken yararl eyler.<br></LI>
      <LI type="circle"><A href="KernelCorner.html">ekirdek Kesi</A>
	<BR>Linux'un ii.<br></LI>
      <LI type="circle"><A href="Interviews.html">Syleiler</A>
	<BR>Linux ile ilgili kiiler bize yaptklarn anlatmaktadr.<br></LI>
</ul>

__foot_th_Turkce
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../../common/lfteam.html">Grselyre sayfalarnn bakm, LinuxFocus
Editrleri tarafndan yaplmaktadr</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
generated by lfthemes, $date, version: $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__foot_i_Turkce
<!-- ARTICLE FOOT -->
<CENTER><TABLE WIDTH="95%" BGCOLOR="#AAAAAA">
<TR><TD ALIGN=CENTER>
<A class="nodec" HREF="../common/lfteam.html">Grselyre sayfalarnn bakm, LinuxFocus
Editrleri tarafndan yaplmaktadr</A>
<BR>&copy; LinuxFocus
</TD>
<TD ALIGN=RIGHT>
lfthemes tarafndan yaratlmtr, $date, version: $ver</TD>
</TR></TABLE></CENTER>
<!-- vim: set sw=4 ts=4 et: -->
</BODY></HTML>

__Forum_Turkce
<H1>Linux Forum </H1>
<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>
Linux kullanclarnn veya uzmanlarnn Linux hakkndaki dncelerini dile getirdikleri yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Games_Turkce
<H1>Ouyunlar</H1>
<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>
Linux'ta alan oyunlar anlatan veya eylenceli eyler hakkndaki yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Applications_Turkce
<H1>Uygulamalar</H1>
<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>
Linux'taki ara ve uygulamalar tantan yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Webdesign_Turkce
<H1>Sanaldoku Tasarm</H1>
<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>
Sanaldoku tasarm ve genel olarak WWW hakkndaki yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Hardware_Turkce
<H1>Donanm Gzden Geirimi</H1>
<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>
Linux'taki donanmlar ve yaplandrlmalar hakkndaki yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SystemAdministration_Turkce
<H1>Sistem Ynetimi</H1>
<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>
Linux sistem ynetimi hakkndaki yazlar.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__SoftwareDevelopment_Turkce
<H1>Yazlm Gelitirme</H1>
<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>
Linux'taki yazlm gelitirme hakkndaki yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Graphics_Turkce
<H1>Grafik</H1>
<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>
Linux'taki grafik uygulamalar hakkndaki yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__UNIXBasics_Turkce
<H1>Unix Temelleri</H1>
<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 ipular, trikleri ve ilkeleri yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__KernelCorner_Turkce
<H1>ekirdek Kesi</H1>
<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>
Linux iletim sisteminin kalbi hakkndaki yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Community_Turkce
<H1>Topluluk</H1>
<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>
Linux topluluu ve olan biten hakknda yazlarn ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__Interviews_Turkce
<H1>Syleiler</H1>
<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>
Linux dnyazsndan eitli kiilerle yaplan syleilerin ierii.
</TD>
</TR>
</TABLE>
<HR noshade="noshade" size=2>

__issue_Turkce
<H1>LinuxFocus saylarna gre ierik</H1>
<p>Saylarna gre dizilmi LinuxFocus'un tm yazlarn ierii.</p>
<HR noshade="noshade" size=2>
<!-- NEXT_LANG -->

__byauthor_Turkce
<H1>Yazara gre yaz ierii</H1>
<p>Yazarlarna gre dizilmi LinuxFocus'un tm yazlarn ierii.</p>
<HR noshade="noshade" size=2>
<!-- NEXT_BYAUTHOR -->

__ende
