]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Themeable Webinterface mit neuem Style.
authorms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Sat, 16 Dec 2006 16:07:45 +0000 (16:07 +0000)
committerms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Sat, 16 Dec 2006 16:07:45 +0000 (16:07 +0000)
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@364 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8

20 files changed:
config/cfgroot/header.pl
config/cfgroot/lang.pl
config/rootfiles/common/Compress-Zlib
config/rootfiles/common/apache2
config/rootfiles/common/coreutils
config/rootfiles/common/rrdtool
config/rootfiles/common/stage2
doc/packages-list.txt
html/cgi-bin/gui.cgi
html/html/themes/ipfire/images/n1.gif [new file with mode: 0644]
html/html/themes/ipfire/images/n2.gif [new file with mode: 0644]
html/html/themes/ipfire/images/n3.gif [new file with mode: 0644]
html/html/themes/ipfire/images/n4.gif [new file with mode: 0644]
html/html/themes/ipfire/images/n5.gif [new file with mode: 0644]
html/html/themes/ipfire/images/n6.gif [new file with mode: 0644]
html/html/themes/ipfire/images/spacer.gif [new file with mode: 0644]
html/html/themes/ipfire/include/functions.pl [new file with mode: 0644]
html/html/themes/ipfire/include/style.css [new file with mode: 0644]
langs/de/cgi-bin/de.pl
langs/en/cgi-bin/en.pl

index a29e8a9698adea92c27c595bd151a56d15ac1a71..e37c5a0ff9b8f02038634d253d6671d188c3cbb1 100644 (file)
@@ -43,12 +43,11 @@ my $menu = \%menuhash;
 %settings = ();
 %ethsettings = ();
 @URI = ();
-$Header::supported=0;
 
 ### Make sure this is an SSL request
 if ($ENV{'SERVER_ADDR'} && $ENV{'HTTPS'} ne 'on') {
     print "Status: 302 Moved\r\n";
-    print "Location: https://$ENV{'SERVER_ADDR'}:10443/$ENV{'PATH_INFO'}\r\n\r\n";
+    print "Location: https://$ENV{'SERVER_ADDR'}:444/$ENV{'PATH_INFO'}\r\n\r\n";
     exit 0;
 }
 
@@ -98,6 +97,7 @@ if (open(MYFile, "<${swroot}/firebuild")) {
 
 require "${swroot}/langs/en.pl";
 require "${swroot}/langs/${language}.pl";
+eval `/bin/cat /srv/web/ipfire/html/themes/$settings{'THEME'}/include/functions.pl`;
 
 sub orange_used () {
     if ($ethsettings{'CONFIG_TYPE'} =~ /^[1357]$/) {
@@ -580,382 +580,6 @@ sub gettitle($) {
     return '';
 }
 
-
-sub showmenu() {
-    print <<EOF
-  <div id="menu-top">
-    <ul>
-EOF
-;
-    foreach my $k1 ( sort keys %$menu ) {
-       if (! $menu->{$k1}{'enabled'}) {
-           next;
-       }
-
-       my $link = getlink($menu->{$k1});
-       if ($link eq '') {
-           next;
-       }
-       if (! is_menu_visible($link)) {
-           next;
-       }
-       if ($menu->{$k1}->{'selected'}) {
-           print '<li class="selected">';
-       } else {
-           print '<li>';
-       }
-
-       print <<EOF
-    <div class="rcorner">
-      <a href="$link">$menu->{$k1}{'caption'}</a>
-    </div>
-  </li>
-EOF
-;
-    }
-
-    print <<EOF
-    </ul>
-  </div>
-EOF
-;    
-}
-
-sub getselected($) {
-    my $root = shift;
-    if (!$root) {
-       return 0;
-    }
-
-    foreach my $item (%$root) {
-       if ($root->{$item}{'selected'}) {
-           return $root->{$item};
-       }
-    }
-}
-
-sub showsubsection($$) {
-    my $root = shift;
-    my $id = shift;
-    if ($id eq '') {
-       $id = 'menu-left';
-    }
-
-    if (! $root) {
-       return;
-    }
-    my $selected = getselected($root);
-    if (! $selected) {
-       return;
-    }
-    my $submenus = $selected->{'subMenu'};
-    if (! $submenus) {
-       return;
-    }
-
-    print <<EOF
-  <div id="$id">
-    <ul>
-EOF
-;
-    foreach my $item (sort keys %$submenus) {
-       my $hash = $submenus->{$item};
-       if (! $hash->{'enabled'}) {
-           next;
-       }
-
-       my $link = getlink($hash);
-       if ($link eq '') {
-           next;
-       }
-       if (! is_menu_visible($link)) {
-           next;
-       }
-       if ($hash->{'selected'}) {
-           print '<li class="selected">';
-       } else {
-           print '<li>';
-       }
-
-       print <<EOF
-      <a href="$link">$hash->{'caption'}</a>
-  </li>
-EOF
-;
-    }
-
-    print <<EOF
-    </ul>
-  </div>
-EOF
-;    
-
-}
-
-
-sub showsubsubsection($) {
-    my $root = shift;
-    if (!$root) {
-       return;
-    }
-    my $selected = getselected($root);
-    if (! $selected) {
-       return
-    }
-    if (! $selected->{'subMenu'}) {
-       return
-    }
-
-    showsubsection($selected->{'subMenu'}, 'menu-subtop');
-}
-
-
-sub get_helpuri() {
-    my $helpfile = '';
-    if ($URI[0] =~ /.*\/([^\/]+)\.cgi/) {
-       $helpfile = $1;
-    } else {
-       return '';
-    }
-    $helpfile .= '.help.html';
-
-    my $helpuri = '/doc/'.$language.'/'.$helpfile;
-    if (! -e $ENV{'DOCUMENT_ROOT'}.$helpuri) {
-       return '';
-    }
-    return $helpuri;
-}
-
-
-sub openpage {
-    my $title = shift;
-    my $boh = shift;
-    my $extrahead = shift;
-
-    @URI=split ('\?',  $ENV{'REQUEST_URI'} );
-    &readhash("${swroot}/main/settings", \%settings);
-    &genmenu();
-
-    my $h2 = gettitle($menu);
-    my $helpuri = get_helpuri();
-
-    $title = "IPFire - $title";
-    if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
-        $title =  "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'} - $title"; 
-    }
-
-    print <<END
-<!DOCTYPE html 
-     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html>
-  <head>
-  <title>$title</title>
-
-    $extrahead
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-END
-;
-    if ($settings{'FX'} ne 'off') {
-    print <<END
-    <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5,Transition=12)">
-    <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5,Transition=12)">
-END
-;
-    }
-    print <<END
-    <link rel="shortcut icon" href="/favicon.ico" />
-    <style type="text/css">\@import url(/include/style.css);</style>
-    <style type="text/css">\@import url(/include/menu.css);</style>
-    <style type="text/css">\@import url(/include/content.css);</style>
-    <script language="javascript" type="text/javascript">
-      
-        function swapVisibility(id) {
-            el = document.getElementById(id);
-           if(el.style.display != 'block') {
-               el.style.display = 'block'
-           }
-           else {
-               el.style.display = 'none'
-           }
-        }
-    </script>
-
-  </head>
-  <body>
-<!-- IPFIRE HEADER -->
-
-<div id="main">
-
-<div id="header">
-       <img id="logo-product" src="/images/logo_ipfire.gif">
-   <div id="header-icons">
-           <a href="http://users.ipfire.eu/" target="_blank"><img border="0" src="/images/help.gif"></a>
-   </div>
-</div>
-
-END
-;
-
-    &showmenu();
-
-print <<END
-<div id="content">
-  <table width="90%">
-    <tr>
-      <td valign="top">
-END
-;
-       
-    &showsubsection($menu);
-
-    print <<END
-      <p><center><img src="/images/iptux.png" width='160px' height='160px'></center></p>
-      </td>
-        <td width="100%" valign="top">
-        <div id="page-content">
-            <h2>$h2</h2>
-END
-    ;
-    
-    &showsubsubsection($menu);
-}
-
-sub openpagewithoutmenu {
-    my $title = shift;
-    my $boh = shift;
-    my $extrahead = shift;
-
-    @URI=split ('\?',  $ENV{'REQUEST_URI'} );
-    &readhash("${swroot}/main/settings", \%settings);
-    &genmenu();
-
-    my $h2 = gettitle($menu);
-    my $helpuri = get_helpuri();
-
-    $title = "IPFire - $title";
-    if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
-        $title =  "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'} - $title"; 
-    }
-
-    print <<END
-<!DOCTYPE html 
-     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html>
-  <head>
-  <title>$title</title>
-
-    $extrahead
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-END
-;
-    if ($settings{'FX'} eq 'on') {
-    print <<END
-    <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5,Transition=12)">
-    <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5,Transition=12)">
-END
-;
-    }
-    print <<END
-    <link rel="shortcut icon" href="/favicon.ico" />
-    <style type="text/css">\@import url(/include/style.css);</style>
-    <style type="text/css">\@import url(/include/menu.css);</style>
-    <style type="text/css">\@import url(/include/content.css);</style>
-    <script language="javascript" type="text/javascript">
-      
-        function swapVisibility(id) {
-            el = document.getElementById(id);
-           if(el.style.display != 'block') {
-               el.style.display = 'block'
-           }
-           else {
-               el.style.display = 'none'
-           }
-        }
-    </script>
-
-  </head>
-  <body>
-<!-- IPFIRE HEADER -->
-
-<div id="main">
-
-<div id="header">
-       <img id="logo-product" src="/images/logo_ipfire.gif">
-   <div id="header-icons">
-           <a href="http://users.ipfire.eu/" target="_blank"><img border="0" src="/images/help.gif"></a>
-   </div>
-</div>
-
-END
-;
-print <<END
-<div id="content">
-  <table width="90%">
-    <tr>
-      <td valign="top">
-      <p><center><img src="/images/iptux.png" width='160px' height='160px'></center></p>
-      </td>
-        <td width="100%" valign="top">
-        <div id="page-content">
-            <h2>$h2</h2>
-END
-    ;
-}
-
-sub closepage () {
-    my $status = &connectionstatus();
-    $uptime = `/usr/bin/uptime`;
-       
-    print <<END
-         <div align="center">
-            <p>
-             <div style="font-size: 9px"><b>Status:</b> $status <b>Uptime:</b>$uptime <b>Version:</b> $FIREBUILD</div> 
-            </p>
-          </div>
-       </body>
-</html>
-END
-;
-}
-
-sub openbigbox
-{
-    my $width = $_[0];
-    my $align = $_[1];
-    my $sideimg = $_[2];
-
-    if ($errormessage) {
-       $bgcolor = "style='background-color: $colourerr;'";
-    } else {
-       $bgcolor = '';
-    }
-}
-
-sub closebigbox
-{
-#      print "</td></tr></table></td></tr></table>\n" 
-}
-
-sub openbox
-{
-       $width = $_[0];
-       $align = $_[1];
-       $caption = $_[2];
-
-       if ($caption) { print "<h3>$caption</h3>\n"; } else { print "&nbsp;"; }
-       
-       print "<table class=\"list\"><tr><td align=\"$align\">\n";
-}
-
-sub closebox
-{
-       print "</td></tr></table><br><br>";
-}
-
 sub writehash
 {
        my $filename = $_[0];
@@ -1457,19 +1081,19 @@ sub connectionstatus
                        } elsif ($pppsettings{'TYPE'} eq 'eagleusbadsl') {
                                $speed = `/usr/sbin/eaglestat | /bin/grep Rate`;
                        }
-                       $connstate = "<span class='ipcop_StatusBig'>$Lang::tr{'connected'} (<span class='ipcop_StatusBigRed'>$timestr</span>) $profileused (\@$speed)</span>";
+                       $connstate = "$Lang::tr{'connected'} ($timestr) $profileused (\@$speed)";
                } else {
-                       $connstate = "<span class='ipcop_StatusBig'>$Lang::tr{'connected'} (<span class='ipcop_StatusBigRed'>$timestr</span>) $profileused</span>";
+                       $connstate = "$Lang::tr{'connected'} ($timestr) $profileused";
                }
        } else {
                if (-e "${General::swroot}/red/dial-on-demand") {
-                   $connstate = "<span class='ipcop_StatusBig'>$Lang::tr{'dod waiting'} $profileused</span>";
+                   $connstate = "$Lang::tr{'dod waiting'} $profileused";
                } else {
-                   $connstate = "<span class='ipcop_StatusBig'>$Lang::tr{'connecting'} $profileused</span>";
+                   $connstate = "$Lang::tr{'connecting'} $profileused";
                }
        }
     } else {
-       $connstate = "<span class='ipcop_StatusBig'>$Lang::tr{'idle'} $profileused</span>";
+       $connstate = "$Lang::tr{'idle'} $profileused";
     }
     return $connstate;
 }
index a650706590e958dfb58738e8ddc60aaad1700e51..707b28d11e2b3c237c5c9cad072b20a705b50f34 100644 (file)
@@ -13,7 +13,7 @@ require 'CONFIG_ROOT/general-functions.pl';
 use strict;
 
 ### A cache file to avoid long recalculation
-$Lang::CacheLang = '/var/run/cache-lang.pl';
+$Lang::CacheLang = '/var/ipfire/langs/cache-lang.pl';
 
 # When you want to add your own language strings/entries to the ipcop language file,
 # you should create a file with <PREFIX>.<LANG>.pl into CONFIG_ROOT/addon-lang dir
index a633764f607ddd8f15fd5e864ea29faca0c283eb..f3b1963f85a48a182832ad8d367aebde10a6f869 100644 (file)
@@ -5,5 +5,5 @@ usr/lib/perl5/site_perl/5.8.8/i586-linux/Compress/Zlib.pm
 #usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Compress/Zlib/.packlist
 #usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Compress/Zlib/Zlib.bs
 usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Compress/Zlib/Zlib.so
-#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Compress/Zlib/autosplit.ix
+usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Compress/Zlib/autosplit.ix
 #usr/share/man/man3/Compress::Zlib.3
index f06c2275a523057c67149c0eba3a55fff4b448d4..6ae9464d4a1a42150bee3e9b5522e908a977fa15 100644 (file)
@@ -29,996 +29,996 @@ etc/httpd/conf/mime.types
 #etc/httpd/conf/original/extra/httpd-userdir.conf
 #etc/httpd/conf/original/extra/httpd-vhosts.conf
 #etc/httpd/conf/original/httpd.conf
-#home/httpd
-#home/httpd/cgi-bin
-#home/httpd/cgi-bin/printenv
-#home/httpd/cgi-bin/test-cgi
-#home/httpd/error
-#home/httpd/error/HTTP_BAD_GATEWAY.html.var
-#home/httpd/error/HTTP_BAD_REQUEST.html.var
-#home/httpd/error/HTTP_FORBIDDEN.html.var
-#home/httpd/error/HTTP_GONE.html.var
-#home/httpd/error/HTTP_INTERNAL_SERVER_ERROR.html.var
-#home/httpd/error/HTTP_LENGTH_REQUIRED.html.var
-#home/httpd/error/HTTP_METHOD_NOT_ALLOWED.html.var
-#home/httpd/error/HTTP_NOT_FOUND.html.var
-#home/httpd/error/HTTP_NOT_IMPLEMENTED.html.var
-#home/httpd/error/HTTP_PRECONDITION_FAILED.html.var
-#home/httpd/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
-#home/httpd/error/HTTP_REQUEST_TIME_OUT.html.var
-#home/httpd/error/HTTP_REQUEST_URI_TOO_LARGE.html.var
-#home/httpd/error/HTTP_SERVICE_UNAVAILABLE.html.var
-#home/httpd/error/HTTP_UNAUTHORIZED.html.var
-#home/httpd/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
-#home/httpd/error/HTTP_VARIANT_ALSO_VARIES.html.var
-#home/httpd/error/README
-#home/httpd/error/contact.html.var
-#home/httpd/error/include
-#home/httpd/error/include/bottom.html
-#home/httpd/error/include/spacer.html
-#home/httpd/error/include/top.html
-#home/httpd/htdocs
-#home/httpd/htdocs/apache_pb.gif
-#home/httpd/htdocs/apache_pb.png
-#home/httpd/htdocs/apache_pb22.gif
-#home/httpd/htdocs/apache_pb22.png
-#home/httpd/htdocs/apache_pb22_ani.gif
-#home/httpd/htdocs/index.html
-#home/httpd/icons
-#home/httpd/icons/README
-#home/httpd/icons/a.gif
-#home/httpd/icons/a.png
-#home/httpd/icons/alert.black.gif
-#home/httpd/icons/alert.black.png
-#home/httpd/icons/alert.red.gif
-#home/httpd/icons/alert.red.png
-#home/httpd/icons/apache_pb.gif
-#home/httpd/icons/apache_pb.png
-#home/httpd/icons/apache_pb2.gif
-#home/httpd/icons/apache_pb2.png
-#home/httpd/icons/apache_pb2_ani.gif
-#home/httpd/icons/back.gif
-#home/httpd/icons/back.png
-#home/httpd/icons/ball.gray.gif
-#home/httpd/icons/ball.gray.png
-#home/httpd/icons/ball.red.gif
-#home/httpd/icons/ball.red.png
-#home/httpd/icons/binary.gif
-#home/httpd/icons/binary.png
-#home/httpd/icons/binhex.gif
-#home/httpd/icons/binhex.png
-#home/httpd/icons/blank.gif
-#home/httpd/icons/blank.png
-#home/httpd/icons/bomb.gif
-#home/httpd/icons/bomb.png
-#home/httpd/icons/box1.gif
-#home/httpd/icons/box1.png
-#home/httpd/icons/box2.gif
-#home/httpd/icons/box2.png
-#home/httpd/icons/broken.gif
-#home/httpd/icons/broken.png
-#home/httpd/icons/burst.gif
-#home/httpd/icons/burst.png
-#home/httpd/icons/c.gif
-#home/httpd/icons/c.png
-#home/httpd/icons/comp.blue.gif
-#home/httpd/icons/comp.blue.png
-#home/httpd/icons/comp.gray.gif
-#home/httpd/icons/comp.gray.png
-#home/httpd/icons/compressed.gif
-#home/httpd/icons/compressed.png
-#home/httpd/icons/continued.gif
-#home/httpd/icons/continued.png
-#home/httpd/icons/dir.gif
-#home/httpd/icons/dir.png
-#home/httpd/icons/diskimg.gif
-#home/httpd/icons/diskimg.png
-#home/httpd/icons/down.gif
-#home/httpd/icons/down.png
-#home/httpd/icons/dvi.gif
-#home/httpd/icons/dvi.png
-#home/httpd/icons/f.gif
-#home/httpd/icons/f.png
-#home/httpd/icons/folder.gif
-#home/httpd/icons/folder.open.gif
-#home/httpd/icons/folder.open.png
-#home/httpd/icons/folder.png
-#home/httpd/icons/folder.sec.gif
-#home/httpd/icons/folder.sec.png
-#home/httpd/icons/forward.gif
-#home/httpd/icons/forward.png
-#home/httpd/icons/generic.gif
-#home/httpd/icons/generic.png
-#home/httpd/icons/generic.red.gif
-#home/httpd/icons/generic.red.png
-#home/httpd/icons/generic.sec.gif
-#home/httpd/icons/generic.sec.png
-#home/httpd/icons/hand.right.gif
-#home/httpd/icons/hand.right.png
-#home/httpd/icons/hand.up.gif
-#home/httpd/icons/hand.up.png
-#home/httpd/icons/icon.sheet.gif
-#home/httpd/icons/icon.sheet.png
-#home/httpd/icons/image1.gif
-#home/httpd/icons/image1.png
-#home/httpd/icons/image2.gif
-#home/httpd/icons/image2.png
-#home/httpd/icons/image3.gif
-#home/httpd/icons/image3.png
-#home/httpd/icons/index.gif
-#home/httpd/icons/index.png
-#home/httpd/icons/layout.gif
-#home/httpd/icons/layout.png
-#home/httpd/icons/left.gif
-#home/httpd/icons/left.png
-#home/httpd/icons/link.gif
-#home/httpd/icons/link.png
-#home/httpd/icons/movie.gif
-#home/httpd/icons/movie.png
-#home/httpd/icons/p.gif
-#home/httpd/icons/p.png
-#home/httpd/icons/patch.gif
-#home/httpd/icons/patch.png
-#home/httpd/icons/pdf.gif
-#home/httpd/icons/pdf.png
-#home/httpd/icons/pie0.gif
-#home/httpd/icons/pie0.png
-#home/httpd/icons/pie1.gif
-#home/httpd/icons/pie1.png
-#home/httpd/icons/pie2.gif
-#home/httpd/icons/pie2.png
-#home/httpd/icons/pie3.gif
-#home/httpd/icons/pie3.png
-#home/httpd/icons/pie4.gif
-#home/httpd/icons/pie4.png
-#home/httpd/icons/pie5.gif
-#home/httpd/icons/pie5.png
-#home/httpd/icons/pie6.gif
-#home/httpd/icons/pie6.png
-#home/httpd/icons/pie7.gif
-#home/httpd/icons/pie7.png
-#home/httpd/icons/pie8.gif
-#home/httpd/icons/pie8.png
-#home/httpd/icons/portal.gif
-#home/httpd/icons/portal.png
-#home/httpd/icons/ps.gif
-#home/httpd/icons/ps.png
-#home/httpd/icons/quill.gif
-#home/httpd/icons/quill.png
-#home/httpd/icons/right.gif
-#home/httpd/icons/right.png
-#home/httpd/icons/screw1.gif
-#home/httpd/icons/screw1.png
-#home/httpd/icons/screw2.gif
-#home/httpd/icons/screw2.png
-#home/httpd/icons/script.gif
-#home/httpd/icons/script.png
-#home/httpd/icons/small
-#home/httpd/icons/small/README.txt
-#home/httpd/icons/small/back.gif
-#home/httpd/icons/small/back.png
-#home/httpd/icons/small/binary.gif
-#home/httpd/icons/small/binary.png
-#home/httpd/icons/small/binhex.gif
-#home/httpd/icons/small/binhex.png
-#home/httpd/icons/small/blank.gif
-#home/httpd/icons/small/blank.png
-#home/httpd/icons/small/broken.gif
-#home/httpd/icons/small/broken.png
-#home/httpd/icons/small/burst.gif
-#home/httpd/icons/small/burst.png
-#home/httpd/icons/small/comp1.gif
-#home/httpd/icons/small/comp1.png
-#home/httpd/icons/small/comp2.gif
-#home/httpd/icons/small/comp2.png
-#home/httpd/icons/small/compressed.gif
-#home/httpd/icons/small/compressed.png
-#home/httpd/icons/small/continued.gif
-#home/httpd/icons/small/continued.png
-#home/httpd/icons/small/dir.gif
-#home/httpd/icons/small/dir.png
-#home/httpd/icons/small/dir2.gif
-#home/httpd/icons/small/dir2.png
-#home/httpd/icons/small/doc.gif
-#home/httpd/icons/small/doc.png
-#home/httpd/icons/small/forward.gif
-#home/httpd/icons/small/forward.png
-#home/httpd/icons/small/generic.gif
-#home/httpd/icons/small/generic.png
-#home/httpd/icons/small/generic2.gif
-#home/httpd/icons/small/generic2.png
-#home/httpd/icons/small/generic3.gif
-#home/httpd/icons/small/generic3.png
-#home/httpd/icons/small/image.gif
-#home/httpd/icons/small/image.png
-#home/httpd/icons/small/image2.gif
-#home/httpd/icons/small/image2.png
-#home/httpd/icons/small/index.gif
-#home/httpd/icons/small/index.png
-#home/httpd/icons/small/key.gif
-#home/httpd/icons/small/key.png
-#home/httpd/icons/small/movie.gif
-#home/httpd/icons/small/movie.png
-#home/httpd/icons/small/patch.gif
-#home/httpd/icons/small/patch.png
-#home/httpd/icons/small/ps.gif
-#home/httpd/icons/small/ps.png
-#home/httpd/icons/small/rainbow.gif
-#home/httpd/icons/small/rainbow.png
-#home/httpd/icons/small/sound.gif
-#home/httpd/icons/small/sound.png
-#home/httpd/icons/small/sound2.gif
-#home/httpd/icons/small/sound2.png
-#home/httpd/icons/small/tar.gif
-#home/httpd/icons/small/tar.png
-#home/httpd/icons/small/text.gif
-#home/httpd/icons/small/text.png
-#home/httpd/icons/small/transfer.gif
-#home/httpd/icons/small/transfer.png
-#home/httpd/icons/small/unknown.gif
-#home/httpd/icons/small/unknown.png
-#home/httpd/icons/small/uu.gif
-#home/httpd/icons/small/uu.png
-#home/httpd/icons/sound1.gif
-#home/httpd/icons/sound1.png
-#home/httpd/icons/sound2.gif
-#home/httpd/icons/sound2.png
-#home/httpd/icons/sphere1.gif
-#home/httpd/icons/sphere1.png
-#home/httpd/icons/sphere2.gif
-#home/httpd/icons/sphere2.png
-#home/httpd/icons/tar.gif
-#home/httpd/icons/tar.png
-#home/httpd/icons/tex.gif
-#home/httpd/icons/tex.png
-#home/httpd/icons/text.gif
-#home/httpd/icons/text.png
-#home/httpd/icons/transfer.gif
-#home/httpd/icons/transfer.png
-#home/httpd/icons/unknown.gif
-#home/httpd/icons/unknown.png
-#home/httpd/icons/up.gif
-#home/httpd/icons/up.png
-#home/httpd/icons/uu.gif
-#home/httpd/icons/uu.png
-#home/httpd/icons/uuencoded.gif
-#home/httpd/icons/uuencoded.png
-#home/httpd/icons/world1.gif
-#home/httpd/icons/world1.png
-#home/httpd/icons/world2.gif
-#home/httpd/icons/world2.png
-#home/httpd/manual
-#home/httpd/manual/LICENSE
-#home/httpd/manual/bind.html
-#home/httpd/manual/bind.html.de
-#home/httpd/manual/bind.html.en
-#home/httpd/manual/bind.html.fr
-#home/httpd/manual/bind.html.ja.euc-jp
-#home/httpd/manual/bind.html.ko.euc-kr
-#home/httpd/manual/caching.html
-#home/httpd/manual/caching.html.en
-#home/httpd/manual/configuring.html
-#home/httpd/manual/configuring.html.de
-#home/httpd/manual/configuring.html.en
-#home/httpd/manual/configuring.html.ja.euc-jp
-#home/httpd/manual/configuring.html.ko.euc-kr
-#home/httpd/manual/content-negotiation.html
-#home/httpd/manual/content-negotiation.html.en
-#home/httpd/manual/content-negotiation.html.ja.euc-jp
-#home/httpd/manual/content-negotiation.html.ko.euc-kr
-#home/httpd/manual/convenience.map
-#home/httpd/manual/custom-error.html
-#home/httpd/manual/custom-error.html.en
-#home/httpd/manual/custom-error.html.es
-#home/httpd/manual/custom-error.html.ja.euc-jp
-#home/httpd/manual/custom-error.html.ko.euc-kr
-#home/httpd/manual/developer
-#home/httpd/manual/developer/API.html
-#home/httpd/manual/developer/API.html.en
-#home/httpd/manual/developer/debugging.html
-#home/httpd/manual/developer/debugging.html.en
-#home/httpd/manual/developer/documenting.html
-#home/httpd/manual/developer/documenting.html.en
-#home/httpd/manual/developer/filters.html
-#home/httpd/manual/developer/filters.html.en
-#home/httpd/manual/developer/hooks.html
-#home/httpd/manual/developer/hooks.html.en
-#home/httpd/manual/developer/index.html
-#home/httpd/manual/developer/index.html.en
-#home/httpd/manual/developer/modules.html
-#home/httpd/manual/developer/modules.html.en
-#home/httpd/manual/developer/modules.html.ja.euc-jp
-#home/httpd/manual/developer/request.html
-#home/httpd/manual/developer/request.html.en
-#home/httpd/manual/developer/thread_safety.html
-#home/httpd/manual/developer/thread_safety.html.en
-#home/httpd/manual/dns-caveats.html
-#home/httpd/manual/dns-caveats.html.en
-#home/httpd/manual/dns-caveats.html.ja.euc-jp
-#home/httpd/manual/dns-caveats.html.ko.euc-kr
-#home/httpd/manual/dso.html
-#home/httpd/manual/dso.html.en
-#home/httpd/manual/dso.html.ja.euc-jp
-#home/httpd/manual/dso.html.ko.euc-kr
-#home/httpd/manual/env.html
-#home/httpd/manual/env.html.en
-#home/httpd/manual/env.html.ja.euc-jp
-#home/httpd/manual/env.html.ko.euc-kr
-#home/httpd/manual/faq
-#home/httpd/manual/faq/all_in_one.html
-#home/httpd/manual/faq/all_in_one.html.en
-#home/httpd/manual/faq/all_in_one.html.ja.euc-jp
-#home/httpd/manual/faq/all_in_one.html.ko.euc-kr
-#home/httpd/manual/faq/background.html
-#home/httpd/manual/faq/background.html.en
-#home/httpd/manual/faq/error.html
-#home/httpd/manual/faq/error.html.en
-#home/httpd/manual/faq/error.html.ja.euc-jp
-#home/httpd/manual/faq/error.html.ko.euc-kr
-#home/httpd/manual/faq/index.html
-#home/httpd/manual/faq/index.html.en
-#home/httpd/manual/faq/index.html.ja.euc-jp
-#home/httpd/manual/faq/index.html.ko.euc-kr
-#home/httpd/manual/faq/support.html
-#home/httpd/manual/faq/support.html.en
-#home/httpd/manual/faq/support.html.ja.euc-jp
-#home/httpd/manual/faq/support.html.ko.euc-kr
-#home/httpd/manual/filter.html
-#home/httpd/manual/filter.html.en
-#home/httpd/manual/filter.html.es
-#home/httpd/manual/filter.html.fr
-#home/httpd/manual/filter.html.ja.euc-jp
-#home/httpd/manual/filter.html.ko.euc-kr
-#home/httpd/manual/glossary.html
-#home/httpd/manual/glossary.html.de
-#home/httpd/manual/glossary.html.en
-#home/httpd/manual/glossary.html.es
-#home/httpd/manual/glossary.html.ko.euc-kr
-#home/httpd/manual/handler.html
-#home/httpd/manual/handler.html.en
-#home/httpd/manual/handler.html.es
-#home/httpd/manual/handler.html.ja.euc-jp
-#home/httpd/manual/handler.html.ko.euc-kr
-#home/httpd/manual/handler.html.ru.koi8-r
-#home/httpd/manual/howto
-#home/httpd/manual/howto/access.html
-#home/httpd/manual/howto/access.html.en
-#home/httpd/manual/howto/auth.html
-#home/httpd/manual/howto/auth.html.en
-#home/httpd/manual/howto/auth.html.ja.euc-jp
-#home/httpd/manual/howto/auth.html.ko.euc-kr
-#home/httpd/manual/howto/cgi.html
-#home/httpd/manual/howto/cgi.html.en
-#home/httpd/manual/howto/cgi.html.ja.euc-jp
-#home/httpd/manual/howto/cgi.html.ko.euc-kr
-#home/httpd/manual/howto/htaccess.html
-#home/httpd/manual/howto/htaccess.html.en
-#home/httpd/manual/howto/htaccess.html.ja.euc-jp
-#home/httpd/manual/howto/htaccess.html.ko.euc-kr
-#home/httpd/manual/howto/htaccess.html.pt-br
-#home/httpd/manual/howto/index.html
-#home/httpd/manual/howto/index.html.en
-#home/httpd/manual/howto/index.html.ja.euc-jp
-#home/httpd/manual/howto/index.html.ko.euc-kr
-#home/httpd/manual/howto/public_html.html
-#home/httpd/manual/howto/public_html.html.en
-#home/httpd/manual/howto/public_html.html.ja.euc-jp
-#home/httpd/manual/howto/public_html.html.ko.euc-kr
-#home/httpd/manual/howto/ssi.html
-#home/httpd/manual/howto/ssi.html.en
-#home/httpd/manual/howto/ssi.html.ja.euc-jp
-#home/httpd/manual/howto/ssi.html.ko.euc-kr
-#home/httpd/manual/images
-#home/httpd/manual/images/apache_header.gif
-#home/httpd/manual/images/caching_fig1.gif
-#home/httpd/manual/images/caching_fig1.png
-#home/httpd/manual/images/custom_errordocs.png
-#home/httpd/manual/images/down.gif
-#home/httpd/manual/images/favicon.ico
-#home/httpd/manual/images/feather.gif
-#home/httpd/manual/images/feather.png
-#home/httpd/manual/images/filter_arch.png
-#home/httpd/manual/images/home.gif
-#home/httpd/manual/images/index.gif
-#home/httpd/manual/images/left.gif
-#home/httpd/manual/images/mod_filter_new.gif
-#home/httpd/manual/images/mod_filter_new.png
-#home/httpd/manual/images/mod_filter_old.gif
-#home/httpd/manual/images/mod_rewrite_fig1.gif
-#home/httpd/manual/images/mod_rewrite_fig1.png
-#home/httpd/manual/images/mod_rewrite_fig2.gif
-#home/httpd/manual/images/mod_rewrite_fig2.png
-#home/httpd/manual/images/pixel.gif
-#home/httpd/manual/images/right.gif
-#home/httpd/manual/images/ssl_intro_fig1.gif
-#home/httpd/manual/images/ssl_intro_fig1.png
-#home/httpd/manual/images/ssl_intro_fig2.gif
-#home/httpd/manual/images/ssl_intro_fig2.png
-#home/httpd/manual/images/ssl_intro_fig3.gif
-#home/httpd/manual/images/ssl_intro_fig3.png
-#home/httpd/manual/images/sub.gif
-#home/httpd/manual/images/up.gif
-#home/httpd/manual/index.html
-#home/httpd/manual/index.html.de
-#home/httpd/manual/index.html.en
-#home/httpd/manual/index.html.es
-#home/httpd/manual/index.html.fr
-#home/httpd/manual/index.html.ja.euc-jp
-#home/httpd/manual/index.html.ko.euc-kr
-#home/httpd/manual/index.html.pt-br
-#home/httpd/manual/install.html
-#home/httpd/manual/install.html.de
-#home/httpd/manual/install.html.en
-#home/httpd/manual/install.html.es
-#home/httpd/manual/install.html.fr
-#home/httpd/manual/install.html.ja.euc-jp
-#home/httpd/manual/install.html.ko.euc-kr
-#home/httpd/manual/invoking.html
-#home/httpd/manual/invoking.html.de
-#home/httpd/manual/invoking.html.en
-#home/httpd/manual/invoking.html.es
-#home/httpd/manual/invoking.html.ja.euc-jp
-#home/httpd/manual/invoking.html.ko.euc-kr
-#home/httpd/manual/invoking.html.ru.koi8-r
-#home/httpd/manual/license.html
-#home/httpd/manual/license.html.en
-#home/httpd/manual/logs.html
-#home/httpd/manual/logs.html.en
-#home/httpd/manual/logs.html.ja.euc-jp
-#home/httpd/manual/logs.html.ko.euc-kr
-#home/httpd/manual/misc
-#home/httpd/manual/misc/index.html
-#home/httpd/manual/misc/index.html.en
-#home/httpd/manual/misc/index.html.ko.euc-kr
-#home/httpd/manual/misc/perf-tuning.html
-#home/httpd/manual/misc/perf-tuning.html.en
-#home/httpd/manual/misc/perf-tuning.html.ko.euc-kr
-#home/httpd/manual/misc/relevant_standards.html
-#home/httpd/manual/misc/relevant_standards.html.en
-#home/httpd/manual/misc/relevant_standards.html.ko.euc-kr
-#home/httpd/manual/misc/rewriteguide.html
-#home/httpd/manual/misc/rewriteguide.html.en
-#home/httpd/manual/misc/rewriteguide.html.ko.euc-kr
-#home/httpd/manual/misc/security_tips.html
-#home/httpd/manual/misc/security_tips.html.en
-#home/httpd/manual/misc/security_tips.html.ko.euc-kr
-#home/httpd/manual/mod
-#home/httpd/manual/mod/beos.html
-#home/httpd/manual/mod/beos.html.de
-#home/httpd/manual/mod/beos.html.en
-#home/httpd/manual/mod/beos.html.es
-#home/httpd/manual/mod/beos.html.ko.euc-kr
-#home/httpd/manual/mod/core.html
-#home/httpd/manual/mod/core.html.de
-#home/httpd/manual/mod/core.html.en
-#home/httpd/manual/mod/core.html.ja.euc-jp
-#home/httpd/manual/mod/directive-dict.html
-#home/httpd/manual/mod/directive-dict.html.en
-#home/httpd/manual/mod/directive-dict.html.ja.euc-jp
-#home/httpd/manual/mod/directive-dict.html.ko.euc-kr
-#home/httpd/manual/mod/directives.html
-#home/httpd/manual/mod/directives.html.de
-#home/httpd/manual/mod/directives.html.en
-#home/httpd/manual/mod/directives.html.es
-#home/httpd/manual/mod/directives.html.ja.euc-jp
-#home/httpd/manual/mod/directives.html.ko.euc-kr
-#home/httpd/manual/mod/directives.html.ru.koi8-r
-#home/httpd/manual/mod/event.html
-#home/httpd/manual/mod/event.html.en
-#home/httpd/manual/mod/index.html
-#home/httpd/manual/mod/index.html.de
-#home/httpd/manual/mod/index.html.en
-#home/httpd/manual/mod/index.html.es
-#home/httpd/manual/mod/index.html.ja.euc-jp
-#home/httpd/manual/mod/index.html.ko.euc-kr
-#home/httpd/manual/mod/mod_actions.html
-#home/httpd/manual/mod/mod_actions.html.de
-#home/httpd/manual/mod/mod_actions.html.en
-#home/httpd/manual/mod/mod_actions.html.ja.euc-jp
-#home/httpd/manual/mod/mod_actions.html.ko.euc-kr
-#home/httpd/manual/mod/mod_alias.html
-#home/httpd/manual/mod/mod_alias.html.en
-#home/httpd/manual/mod/mod_alias.html.ja.euc-jp
-#home/httpd/manual/mod/mod_alias.html.ko.euc-kr
-#home/httpd/manual/mod/mod_asis.html
-#home/httpd/manual/mod/mod_asis.html.en
-#home/httpd/manual/mod/mod_asis.html.ja.euc-jp
-#home/httpd/manual/mod/mod_asis.html.ko.euc-kr
-#home/httpd/manual/mod/mod_auth_basic.html
-#home/httpd/manual/mod/mod_auth_basic.html.en
-#home/httpd/manual/mod/mod_auth_basic.html.ja.euc-jp
-#home/httpd/manual/mod/mod_auth_basic.html.ko.euc-kr
-#home/httpd/manual/mod/mod_auth_digest.html
-#home/httpd/manual/mod/mod_auth_digest.html.en
-#home/httpd/manual/mod/mod_auth_digest.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authn_alias.html
-#home/httpd/manual/mod/mod_authn_alias.html.en
-#home/httpd/manual/mod/mod_authn_anon.html
-#home/httpd/manual/mod/mod_authn_anon.html.en
-#home/httpd/manual/mod/mod_authn_anon.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authn_anon.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authn_dbd.html
-#home/httpd/manual/mod/mod_authn_dbd.html.en
-#home/httpd/manual/mod/mod_authn_dbm.html
-#home/httpd/manual/mod/mod_authn_dbm.html.en
-#home/httpd/manual/mod/mod_authn_dbm.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authn_dbm.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authn_default.html
-#home/httpd/manual/mod/mod_authn_default.html.en
-#home/httpd/manual/mod/mod_authn_default.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authn_default.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authn_file.html
-#home/httpd/manual/mod/mod_authn_file.html.en
-#home/httpd/manual/mod/mod_authn_file.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authn_file.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authnz_ldap.html
-#home/httpd/manual/mod/mod_authnz_ldap.html.en
-#home/httpd/manual/mod/mod_authz_dbm.html
-#home/httpd/manual/mod/mod_authz_dbm.html.en
-#home/httpd/manual/mod/mod_authz_dbm.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authz_default.html
-#home/httpd/manual/mod/mod_authz_default.html.en
-#home/httpd/manual/mod/mod_authz_default.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authz_default.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authz_groupfile.html
-#home/httpd/manual/mod/mod_authz_groupfile.html.en
-#home/httpd/manual/mod/mod_authz_groupfile.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authz_groupfile.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authz_host.html
-#home/httpd/manual/mod/mod_authz_host.html.en
-#home/httpd/manual/mod/mod_authz_host.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authz_host.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authz_owner.html
-#home/httpd/manual/mod/mod_authz_owner.html.en
-#home/httpd/manual/mod/mod_authz_owner.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authz_owner.html.ko.euc-kr
-#home/httpd/manual/mod/mod_authz_user.html
-#home/httpd/manual/mod/mod_authz_user.html.en
-#home/httpd/manual/mod/mod_authz_user.html.ja.euc-jp
-#home/httpd/manual/mod/mod_authz_user.html.ko.euc-kr
-#home/httpd/manual/mod/mod_autoindex.html
-#home/httpd/manual/mod/mod_autoindex.html.en
-#home/httpd/manual/mod/mod_autoindex.html.ja.euc-jp
-#home/httpd/manual/mod/mod_autoindex.html.ko.euc-kr
-#home/httpd/manual/mod/mod_cache.html
-#home/httpd/manual/mod/mod_cache.html.en
-#home/httpd/manual/mod/mod_cache.html.ja.euc-jp
-#home/httpd/manual/mod/mod_cache.html.ko.euc-kr
-#home/httpd/manual/mod/mod_cern_meta.html
-#home/httpd/manual/mod/mod_cern_meta.html.en
-#home/httpd/manual/mod/mod_cern_meta.html.ko.euc-kr
-#home/httpd/manual/mod/mod_cgi.html
-#home/httpd/manual/mod/mod_cgi.html.en
-#home/httpd/manual/mod/mod_cgi.html.ja.euc-jp
-#home/httpd/manual/mod/mod_cgi.html.ko.euc-kr
-#home/httpd/manual/mod/mod_cgid.html
-#home/httpd/manual/mod/mod_cgid.html.en
-#home/httpd/manual/mod/mod_cgid.html.ja.euc-jp
-#home/httpd/manual/mod/mod_cgid.html.ko.euc-kr
-#home/httpd/manual/mod/mod_charset_lite.html
-#home/httpd/manual/mod/mod_charset_lite.html.en
-#home/httpd/manual/mod/mod_charset_lite.html.ko.euc-kr
-#home/httpd/manual/mod/mod_dav.html
-#home/httpd/manual/mod/mod_dav.html.en
-#home/httpd/manual/mod/mod_dav.html.ja.euc-jp
-#home/httpd/manual/mod/mod_dav.html.ko.euc-kr
-#home/httpd/manual/mod/mod_dav_fs.html
-#home/httpd/manual/mod/mod_dav_fs.html.en
-#home/httpd/manual/mod/mod_dav_fs.html.ja.euc-jp
-#home/httpd/manual/mod/mod_dav_fs.html.ko.euc-kr
-#home/httpd/manual/mod/mod_dav_lock.html
-#home/httpd/manual/mod/mod_dav_lock.html.en
-#home/httpd/manual/mod/mod_dav_lock.html.ja.euc-jp
-#home/httpd/manual/mod/mod_dbd.html
-#home/httpd/manual/mod/mod_dbd.html.en
-#home/httpd/manual/mod/mod_deflate.html
-#home/httpd/manual/mod/mod_deflate.html.en
-#home/httpd/manual/mod/mod_deflate.html.ja.euc-jp
-#home/httpd/manual/mod/mod_deflate.html.ko.euc-kr
-#home/httpd/manual/mod/mod_dir.html
-#home/httpd/manual/mod/mod_dir.html.en
-#home/httpd/manual/mod/mod_dir.html.ja.euc-jp
-#home/httpd/manual/mod/mod_dir.html.ko.euc-kr
-#home/httpd/manual/mod/mod_disk_cache.html
-#home/httpd/manual/mod/mod_disk_cache.html.en
-#home/httpd/manual/mod/mod_disk_cache.html.ja.euc-jp
-#home/httpd/manual/mod/mod_disk_cache.html.ko.euc-kr
-#home/httpd/manual/mod/mod_dumpio.html
-#home/httpd/manual/mod/mod_dumpio.html.en
-#home/httpd/manual/mod/mod_dumpio.html.ja.euc-jp
-#home/httpd/manual/mod/mod_echo.html
-#home/httpd/manual/mod/mod_echo.html.en
-#home/httpd/manual/mod/mod_echo.html.ja.euc-jp
-#home/httpd/manual/mod/mod_echo.html.ko.euc-kr
-#home/httpd/manual/mod/mod_env.html
-#home/httpd/manual/mod/mod_env.html.en
-#home/httpd/manual/mod/mod_env.html.ja.euc-jp
-#home/httpd/manual/mod/mod_env.html.ko.euc-kr
-#home/httpd/manual/mod/mod_example.html
-#home/httpd/manual/mod/mod_example.html.en
-#home/httpd/manual/mod/mod_example.html.ko.euc-kr
-#home/httpd/manual/mod/mod_expires.html
-#home/httpd/manual/mod/mod_expires.html.en
-#home/httpd/manual/mod/mod_expires.html.ja.euc-jp
-#home/httpd/manual/mod/mod_expires.html.ko.euc-kr
-#home/httpd/manual/mod/mod_ext_filter.html
-#home/httpd/manual/mod/mod_ext_filter.html.en
-#home/httpd/manual/mod/mod_ext_filter.html.ja.euc-jp
-#home/httpd/manual/mod/mod_ext_filter.html.ko.euc-kr
-#home/httpd/manual/mod/mod_file_cache.html
-#home/httpd/manual/mod/mod_file_cache.html.en
-#home/httpd/manual/mod/mod_file_cache.html.ko.euc-kr
-#home/httpd/manual/mod/mod_filter.html
-#home/httpd/manual/mod/mod_filter.html.en
-#home/httpd/manual/mod/mod_headers.html
-#home/httpd/manual/mod/mod_headers.html.en
-#home/httpd/manual/mod/mod_headers.html.ja.euc-jp
-#home/httpd/manual/mod/mod_headers.html.ko.euc-kr
-#home/httpd/manual/mod/mod_ident.html
-#home/httpd/manual/mod/mod_ident.html.en
-#home/httpd/manual/mod/mod_ident.html.ko.euc-kr
-#home/httpd/manual/mod/mod_imagemap.html
-#home/httpd/manual/mod/mod_imagemap.html.en
-#home/httpd/manual/mod/mod_imagemap.html.ko.euc-kr
-#home/httpd/manual/mod/mod_include.html
-#home/httpd/manual/mod/mod_include.html.en
-#home/httpd/manual/mod/mod_include.html.ja.euc-jp
-#home/httpd/manual/mod/mod_info.html
-#home/httpd/manual/mod/mod_info.html.en
-#home/httpd/manual/mod/mod_info.html.ja.euc-jp
-#home/httpd/manual/mod/mod_info.html.ko.euc-kr
-#home/httpd/manual/mod/mod_isapi.html
-#home/httpd/manual/mod/mod_isapi.html.en
-#home/httpd/manual/mod/mod_isapi.html.ko.euc-kr
-#home/httpd/manual/mod/mod_ldap.html
-#home/httpd/manual/mod/mod_ldap.html.en
-#home/httpd/manual/mod/mod_log_config.html
-#home/httpd/manual/mod/mod_log_config.html.en
-#home/httpd/manual/mod/mod_log_config.html.ja.euc-jp
-#home/httpd/manual/mod/mod_log_config.html.ko.euc-kr
-#home/httpd/manual/mod/mod_log_forensic.html
-#home/httpd/manual/mod/mod_log_forensic.html.en
-#home/httpd/manual/mod/mod_log_forensic.html.ja.euc-jp
-#home/httpd/manual/mod/mod_logio.html
-#home/httpd/manual/mod/mod_logio.html.en
-#home/httpd/manual/mod/mod_logio.html.ja.euc-jp
-#home/httpd/manual/mod/mod_logio.html.ko.euc-kr
-#home/httpd/manual/mod/mod_mem_cache.html
-#home/httpd/manual/mod/mod_mem_cache.html.en
-#home/httpd/manual/mod/mod_mem_cache.html.ja.euc-jp
-#home/httpd/manual/mod/mod_mem_cache.html.ko.euc-kr
-#home/httpd/manual/mod/mod_mime.html
-#home/httpd/manual/mod/mod_mime.html.en
-#home/httpd/manual/mod/mod_mime.html.ja.euc-jp
-#home/httpd/manual/mod/mod_mime_magic.html
-#home/httpd/manual/mod/mod_mime_magic.html.en
-#home/httpd/manual/mod/mod_negotiation.html
-#home/httpd/manual/mod/mod_negotiation.html.en
-#home/httpd/manual/mod/mod_negotiation.html.ja.euc-jp
-#home/httpd/manual/mod/mod_nw_ssl.html
-#home/httpd/manual/mod/mod_nw_ssl.html.en
-#home/httpd/manual/mod/mod_proxy.html
-#home/httpd/manual/mod/mod_proxy.html.en
-#home/httpd/manual/mod/mod_proxy.html.ja.euc-jp
-#home/httpd/manual/mod/mod_proxy_ajp.html
-#home/httpd/manual/mod/mod_proxy_ajp.html.en
-#home/httpd/manual/mod/mod_proxy_ajp.html.ja.euc-jp
-#home/httpd/manual/mod/mod_proxy_balancer.html
-#home/httpd/manual/mod/mod_proxy_balancer.html.en
-#home/httpd/manual/mod/mod_proxy_balancer.html.ja.euc-jp
-#home/httpd/manual/mod/mod_proxy_connect.html
-#home/httpd/manual/mod/mod_proxy_connect.html.en
-#home/httpd/manual/mod/mod_proxy_ftp.html
-#home/httpd/manual/mod/mod_proxy_ftp.html.en
-#home/httpd/manual/mod/mod_proxy_http.html
-#home/httpd/manual/mod/mod_proxy_http.html.en
-#home/httpd/manual/mod/mod_rewrite.html
-#home/httpd/manual/mod/mod_rewrite.html.en
-#home/httpd/manual/mod/mod_setenvif.html
-#home/httpd/manual/mod/mod_setenvif.html.en
-#home/httpd/manual/mod/mod_setenvif.html.ja.euc-jp
-#home/httpd/manual/mod/mod_setenvif.html.ko.euc-kr
-#home/httpd/manual/mod/mod_so.html
-#home/httpd/manual/mod/mod_so.html.en
-#home/httpd/manual/mod/mod_so.html.ja.euc-jp
-#home/httpd/manual/mod/mod_so.html.ko.euc-kr
-#home/httpd/manual/mod/mod_speling.html
-#home/httpd/manual/mod/mod_speling.html.en
-#home/httpd/manual/mod/mod_speling.html.ja.euc-jp
-#home/httpd/manual/mod/mod_speling.html.ko.euc-kr
-#home/httpd/manual/mod/mod_ssl.html
-#home/httpd/manual/mod/mod_ssl.html.en
-#home/httpd/manual/mod/mod_status.html
-#home/httpd/manual/mod/mod_status.html.en
-#home/httpd/manual/mod/mod_status.html.ja.euc-jp
-#home/httpd/manual/mod/mod_status.html.ko.euc-kr
-#home/httpd/manual/mod/mod_suexec.html
-#home/httpd/manual/mod/mod_suexec.html.en
-#home/httpd/manual/mod/mod_suexec.html.ja.euc-jp
-#home/httpd/manual/mod/mod_suexec.html.ko.euc-kr
-#home/httpd/manual/mod/mod_unique_id.html
-#home/httpd/manual/mod/mod_unique_id.html.en
-#home/httpd/manual/mod/mod_unique_id.html.ja.euc-jp
-#home/httpd/manual/mod/mod_unique_id.html.ko.euc-kr
-#home/httpd/manual/mod/mod_userdir.html
-#home/httpd/manual/mod/mod_userdir.html.en
-#home/httpd/manual/mod/mod_userdir.html.ja.euc-jp
-#home/httpd/manual/mod/mod_userdir.html.ko.euc-kr
-#home/httpd/manual/mod/mod_usertrack.html
-#home/httpd/manual/mod/mod_usertrack.html.en
-#home/httpd/manual/mod/mod_version.html
-#home/httpd/manual/mod/mod_version.html.en
-#home/httpd/manual/mod/mod_version.html.ja.euc-jp
-#home/httpd/manual/mod/mod_version.html.ko.euc-kr
-#home/httpd/manual/mod/mod_vhost_alias.html
-#home/httpd/manual/mod/mod_vhost_alias.html.en
-#home/httpd/manual/mod/module-dict.html
-#home/httpd/manual/mod/module-dict.html.en
-#home/httpd/manual/mod/module-dict.html.ja.euc-jp
-#home/httpd/manual/mod/module-dict.html.ko.euc-kr
-#home/httpd/manual/mod/mpm_common.html
-#home/httpd/manual/mod/mpm_common.html.de
-#home/httpd/manual/mod/mpm_common.html.en
-#home/httpd/manual/mod/mpm_common.html.ja.euc-jp
-#home/httpd/manual/mod/mpm_netware.html
-#home/httpd/manual/mod/mpm_netware.html.en
-#home/httpd/manual/mod/mpm_winnt.html
-#home/httpd/manual/mod/mpm_winnt.html.de
-#home/httpd/manual/mod/mpm_winnt.html.en
-#home/httpd/manual/mod/mpm_winnt.html.ja.euc-jp
-#home/httpd/manual/mod/mpmt_os2.html
-#home/httpd/manual/mod/mpmt_os2.html.en
-#home/httpd/manual/mod/prefork.html
-#home/httpd/manual/mod/prefork.html.de
-#home/httpd/manual/mod/prefork.html.en
-#home/httpd/manual/mod/prefork.html.ja.euc-jp
-#home/httpd/manual/mod/quickreference.html
-#home/httpd/manual/mod/quickreference.html.de
-#home/httpd/manual/mod/quickreference.html.en
-#home/httpd/manual/mod/quickreference.html.es
-#home/httpd/manual/mod/quickreference.html.ja.euc-jp
-#home/httpd/manual/mod/quickreference.html.ko.euc-kr
-#home/httpd/manual/mod/quickreference.html.ru.koi8-r
-#home/httpd/manual/mod/worker.html
-#home/httpd/manual/mod/worker.html.de
-#home/httpd/manual/mod/worker.html.en
-#home/httpd/manual/mod/worker.html.ja.euc-jp
-#home/httpd/manual/mpm.html
-#home/httpd/manual/mpm.html.de
-#home/httpd/manual/mpm.html.en
-#home/httpd/manual/mpm.html.es
-#home/httpd/manual/mpm.html.ja.euc-jp
-#home/httpd/manual/mpm.html.ko.euc-kr
-#home/httpd/manual/new_features_2_0.html
-#home/httpd/manual/new_features_2_0.html.de
-#home/httpd/manual/new_features_2_0.html.en
-#home/httpd/manual/new_features_2_0.html.fr
-#home/httpd/manual/new_features_2_0.html.ja.euc-jp
-#home/httpd/manual/new_features_2_0.html.ko.euc-kr
-#home/httpd/manual/new_features_2_0.html.pt-br
-#home/httpd/manual/new_features_2_0.html.ru.koi8-r
-#home/httpd/manual/new_features_2_2.html
-#home/httpd/manual/new_features_2_2.html.en
-#home/httpd/manual/new_features_2_2.html.ko.euc-kr
-#home/httpd/manual/new_features_2_2.html.pt-br
-#home/httpd/manual/platform
-#home/httpd/manual/platform/ebcdic.html
-#home/httpd/manual/platform/ebcdic.html.en
-#home/httpd/manual/platform/ebcdic.html.ko.euc-kr
-#home/httpd/manual/platform/index.html
-#home/httpd/manual/platform/index.html.en
-#home/httpd/manual/platform/index.html.ko.euc-kr
-#home/httpd/manual/platform/netware.html
-#home/httpd/manual/platform/netware.html.en
-#home/httpd/manual/platform/netware.html.ko.euc-kr
-#home/httpd/manual/platform/perf-hp.html
-#home/httpd/manual/platform/perf-hp.html.en
-#home/httpd/manual/platform/perf-hp.html.ko.euc-kr
-#home/httpd/manual/platform/win_compiling.html
-#home/httpd/manual/platform/win_compiling.html.en
-#home/httpd/manual/platform/win_compiling.html.ko.euc-kr
-#home/httpd/manual/platform/windows.html
-#home/httpd/manual/platform/windows.html.en
-#home/httpd/manual/platform/windows.html.ko.euc-kr
-#home/httpd/manual/programs
-#home/httpd/manual/programs/ab.html
-#home/httpd/manual/programs/ab.html.en
-#home/httpd/manual/programs/ab.html.ko.euc-kr
-#home/httpd/manual/programs/apachectl.html
-#home/httpd/manual/programs/apachectl.html.en
-#home/httpd/manual/programs/apachectl.html.ko.euc-kr
-#home/httpd/manual/programs/apxs.html
-#home/httpd/manual/programs/apxs.html.en
-#home/httpd/manual/programs/apxs.html.ko.euc-kr
-#home/httpd/manual/programs/configure.html
-#home/httpd/manual/programs/configure.html.en
-#home/httpd/manual/programs/configure.html.ko.euc-kr
-#home/httpd/manual/programs/dbmmanage.html
-#home/httpd/manual/programs/dbmmanage.html.en
-#home/httpd/manual/programs/dbmmanage.html.ko.euc-kr
-#home/httpd/manual/programs/htcacheclean.html
-#home/httpd/manual/programs/htcacheclean.html.en
-#home/httpd/manual/programs/htcacheclean.html.ko.euc-kr
-#home/httpd/manual/programs/htdbm.html
-#home/httpd/manual/programs/htdbm.html.en
-#home/httpd/manual/programs/htdigest.html
-#home/httpd/manual/programs/htdigest.html.en
-#home/httpd/manual/programs/htdigest.html.ko.euc-kr
-#home/httpd/manual/programs/htpasswd.html
-#home/httpd/manual/programs/htpasswd.html.en
-#home/httpd/manual/programs/htpasswd.html.ko.euc-kr
-#home/httpd/manual/programs/httpd.html
-#home/httpd/manual/programs/httpd.html.en
-#home/httpd/manual/programs/httpd.html.ko.euc-kr
-#home/httpd/manual/programs/httxt2dbm.html
-#home/httpd/manual/programs/httxt2dbm.html.en
-#home/httpd/manual/programs/index.html
-#home/httpd/manual/programs/index.html.en
-#home/httpd/manual/programs/index.html.es
-#home/httpd/manual/programs/index.html.ko.euc-kr
-#home/httpd/manual/programs/index.html.ru.koi8-r
-#home/httpd/manual/programs/logresolve.html
-#home/httpd/manual/programs/logresolve.html.en
-#home/httpd/manual/programs/logresolve.html.ko.euc-kr
-#home/httpd/manual/programs/other.html
-#home/httpd/manual/programs/other.html.en
-#home/httpd/manual/programs/other.html.ko.euc-kr
-#home/httpd/manual/programs/rotatelogs.html
-#home/httpd/manual/programs/rotatelogs.html.en
-#home/httpd/manual/programs/rotatelogs.html.ko.euc-kr
-#home/httpd/manual/programs/suexec.html
-#home/httpd/manual/programs/suexec.html.en
-#home/httpd/manual/programs/suexec.html.ko.euc-kr
-#home/httpd/manual/rewrite
-#home/httpd/manual/rewrite/index.html
-#home/httpd/manual/rewrite/index.html.en
-#home/httpd/manual/rewrite/rewrite_guide.html
-#home/httpd/manual/rewrite/rewrite_guide.html.en
-#home/httpd/manual/rewrite/rewrite_guide_advanced.html
-#home/httpd/manual/rewrite/rewrite_guide_advanced.html.en
-#home/httpd/manual/rewrite/rewrite_intro.html
-#home/httpd/manual/rewrite/rewrite_intro.html.en
-#home/httpd/manual/rewrite/rewrite_tech.html
-#home/httpd/manual/rewrite/rewrite_tech.html.en
-#home/httpd/manual/sections.html
-#home/httpd/manual/sections.html.en
-#home/httpd/manual/sections.html.ja.euc-jp
-#home/httpd/manual/sections.html.ko.euc-kr
-#home/httpd/manual/server-wide.html
-#home/httpd/manual/server-wide.html.en
-#home/httpd/manual/server-wide.html.ja.euc-jp
-#home/httpd/manual/server-wide.html.ko.euc-kr
-#home/httpd/manual/sitemap.html
-#home/httpd/manual/sitemap.html.de
-#home/httpd/manual/sitemap.html.en
-#home/httpd/manual/sitemap.html.es
-#home/httpd/manual/sitemap.html.ja.euc-jp
-#home/httpd/manual/sitemap.html.ko.euc-kr
-#home/httpd/manual/ssl
-#home/httpd/manual/ssl/index.html
-#home/httpd/manual/ssl/index.html.en
-#home/httpd/manual/ssl/index.html.ja.euc-jp
-#home/httpd/manual/ssl/ssl_compat.html
-#home/httpd/manual/ssl/ssl_compat.html.en
-#home/httpd/manual/ssl/ssl_faq.html
-#home/httpd/manual/ssl/ssl_faq.html.en
-#home/httpd/manual/ssl/ssl_howto.html
-#home/httpd/manual/ssl/ssl_howto.html.en
-#home/httpd/manual/ssl/ssl_intro.html
-#home/httpd/manual/ssl/ssl_intro.html.en
-#home/httpd/manual/ssl/ssl_intro.html.ja.euc-jp
-#home/httpd/manual/stopping.html
-#home/httpd/manual/stopping.html.de
-#home/httpd/manual/stopping.html.en
-#home/httpd/manual/stopping.html.es
-#home/httpd/manual/stopping.html.ja.euc-jp
-#home/httpd/manual/stopping.html.ko.euc-kr
-#home/httpd/manual/style
-#home/httpd/manual/style/build.properties
-#home/httpd/manual/style/common.dtd
-#home/httpd/manual/style/css
-#home/httpd/manual/style/css/manual-chm.css
-#home/httpd/manual/style/css/manual-loose-100pc.css
-#home/httpd/manual/style/css/manual-print.css
-#home/httpd/manual/style/css/manual-zip-100pc.css
-#home/httpd/manual/style/css/manual-zip.css
-#home/httpd/manual/style/css/manual.css
-#home/httpd/manual/style/faq.dtd
-#home/httpd/manual/style/lang
-#home/httpd/manual/style/lang.dtd
-#home/httpd/manual/style/latex
-#home/httpd/manual/style/latex/atbeginend.sty
-#home/httpd/manual/style/latex/common.xsl
-#home/httpd/manual/style/latex/directiveindex.xsl
-#home/httpd/manual/style/latex/faq.xsl
-#home/httpd/manual/style/latex/html.xsl
-#home/httpd/manual/style/latex/latex.xsl
-#home/httpd/manual/style/latex/manualpage.xsl
-#home/httpd/manual/style/latex/moduleindex.xsl
-#home/httpd/manual/style/latex/quickreference.xsl
-#home/httpd/manual/style/latex/synopsis.xsl
-#home/httpd/manual/style/manual.de.xsl
-#home/httpd/manual/style/manual.en.xsl
-#home/httpd/manual/style/manual.es.xsl
-#home/httpd/manual/style/manual.fr.xsl
-#home/httpd/manual/style/manual.ja.xsl
-#home/httpd/manual/style/manual.ko.xsl
-#home/httpd/manual/style/manual.pt-br.xsl
-#home/httpd/manual/style/manual.ru.xsl
-#home/httpd/manual/style/manualpage.dtd
-#home/httpd/manual/style/modulesynopsis.dtd
-#home/httpd/manual/style/sitemap.dtd
-#home/httpd/manual/style/version.ent
-#home/httpd/manual/style/xsl
-#home/httpd/manual/style/xsl/common.xsl
-#home/httpd/manual/style/xsl/convmap.xsl
-#home/httpd/manual/style/xsl/directiveindex.xsl
-#home/httpd/manual/style/xsl/faq.xsl
-#home/httpd/manual/style/xsl/hhc.xsl
-#home/httpd/manual/style/xsl/hhp.xsl
-#home/httpd/manual/style/xsl/indexpage.xsl
-#home/httpd/manual/style/xsl/language.xsl
-#home/httpd/manual/style/xsl/maf.xsl
-#home/httpd/manual/style/xsl/manualpage.xsl
-#home/httpd/manual/style/xsl/moduleindex.xsl
-#home/httpd/manual/style/xsl/nroff.xsl
-#home/httpd/manual/style/xsl/quickreference.xsl
-#home/httpd/manual/style/xsl/sitemap.xsl
-#home/httpd/manual/style/xsl/synopsis.xsl
-#home/httpd/manual/style/xsl/typemap.xsl
-#home/httpd/manual/style/xsl/util
-#home/httpd/manual/style/xsl/util/modtrans.xsl
-#home/httpd/manual/suexec.html
-#home/httpd/manual/suexec.html.en
-#home/httpd/manual/suexec.html.ja.euc-jp
-#home/httpd/manual/suexec.html.ko.euc-kr
-#home/httpd/manual/upgrading.html
-#home/httpd/manual/upgrading.html.de
-#home/httpd/manual/upgrading.html.en
-#home/httpd/manual/upgrading.html.ja.euc-jp
-#home/httpd/manual/upgrading.html.ko.euc-kr
-#home/httpd/manual/upgrading.html.pt-br
-#home/httpd/manual/upgrading.html.ru.koi8-r
-#home/httpd/manual/urlmapping.html
-#home/httpd/manual/urlmapping.html.en
-#home/httpd/manual/urlmapping.html.ja.euc-jp
-#home/httpd/manual/urlmapping.html.ko.euc-kr
-#home/httpd/manual/vhosts
-#home/httpd/manual/vhosts/details.html
-#home/httpd/manual/vhosts/details.html.en
-#home/httpd/manual/vhosts/details.html.fr
-#home/httpd/manual/vhosts/details.html.ko.euc-kr
-#home/httpd/manual/vhosts/examples.html
-#home/httpd/manual/vhosts/examples.html.en
-#home/httpd/manual/vhosts/examples.html.fr
-#home/httpd/manual/vhosts/examples.html.ja.euc-jp
-#home/httpd/manual/vhosts/examples.html.ko.euc-kr
-#home/httpd/manual/vhosts/fd-limits.html
-#home/httpd/manual/vhosts/fd-limits.html.en
-#home/httpd/manual/vhosts/fd-limits.html.fr
-#home/httpd/manual/vhosts/fd-limits.html.ja.euc-jp
-#home/httpd/manual/vhosts/fd-limits.html.ko.euc-kr
-#home/httpd/manual/vhosts/index.html
-#home/httpd/manual/vhosts/index.html.de
-#home/httpd/manual/vhosts/index.html.en
-#home/httpd/manual/vhosts/index.html.fr
-#home/httpd/manual/vhosts/index.html.ja.euc-jp
-#home/httpd/manual/vhosts/index.html.ko.euc-kr
-#home/httpd/manual/vhosts/index.html.ru.koi8-r
-#home/httpd/manual/vhosts/ip-based.html
-#home/httpd/manual/vhosts/ip-based.html.en
-#home/httpd/manual/vhosts/ip-based.html.fr
-#home/httpd/manual/vhosts/ip-based.html.ja.euc-jp
-#home/httpd/manual/vhosts/ip-based.html.ko.euc-kr
-#home/httpd/manual/vhosts/mass.html
-#home/httpd/manual/vhosts/mass.html.en
-#home/httpd/manual/vhosts/mass.html.ko.euc-kr
-#home/httpd/manual/vhosts/name-based.html
-#home/httpd/manual/vhosts/name-based.html.de
-#home/httpd/manual/vhosts/name-based.html.en
-#home/httpd/manual/vhosts/name-based.html.fr
-#home/httpd/manual/vhosts/name-based.html.ja.euc-jp
-#home/httpd/manual/vhosts/name-based.html.ko.euc-kr
+#srv/web/ipfire
+#srv/web/ipfire/cgi-bin
+#srv/web/ipfire/cgi-bin/printenv
+#srv/web/ipfire/cgi-bin/test-cgi
+#srv/web/ipfire/error
+#srv/web/ipfire/error/HTTP_BAD_GATEWAY.html.var
+#srv/web/ipfire/error/HTTP_BAD_REQUEST.html.var
+#srv/web/ipfire/error/HTTP_FORBIDDEN.html.var
+#srv/web/ipfire/error/HTTP_GONE.html.var
+#srv/web/ipfire/error/HTTP_INTERNAL_SERVER_ERROR.html.var
+#srv/web/ipfire/error/HTTP_LENGTH_REQUIRED.html.var
+#srv/web/ipfire/error/HTTP_METHOD_NOT_ALLOWED.html.var
+#srv/web/ipfire/error/HTTP_NOT_FOUND.html.var
+#srv/web/ipfire/error/HTTP_NOT_IMPLEMENTED.html.var
+#srv/web/ipfire/error/HTTP_PRECONDITION_FAILED.html.var
+#srv/web/ipfire/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
+#srv/web/ipfire/error/HTTP_REQUEST_TIME_OUT.html.var
+#srv/web/ipfire/error/HTTP_REQUEST_URI_TOO_LARGE.html.var
+#srv/web/ipfire/error/HTTP_SERVICE_UNAVAILABLE.html.var
+#srv/web/ipfire/error/HTTP_UNAUTHORIZED.html.var
+#srv/web/ipfire/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
+#srv/web/ipfire/error/HTTP_VARIANT_ALSO_VARIES.html.var
+#srv/web/ipfire/error/README
+#srv/web/ipfire/error/contact.html.var
+#srv/web/ipfire/error/include
+#srv/web/ipfire/error/include/bottom.html
+#srv/web/ipfire/error/include/spacer.html
+#srv/web/ipfire/error/include/top.html
+#srv/web/ipfire/htdocs
+#srv/web/ipfire/htdocs/apache_pb.gif
+#srv/web/ipfire/htdocs/apache_pb.png
+#srv/web/ipfire/htdocs/apache_pb22.gif
+#srv/web/ipfire/htdocs/apache_pb22.png
+#srv/web/ipfire/htdocs/apache_pb22_ani.gif
+#srv/web/ipfire/htdocs/index.html
+#srv/web/ipfire/icons
+#srv/web/ipfire/icons/README
+#srv/web/ipfire/icons/a.gif
+#srv/web/ipfire/icons/a.png
+#srv/web/ipfire/icons/alert.black.gif
+#srv/web/ipfire/icons/alert.black.png
+#srv/web/ipfire/icons/alert.red.gif
+#srv/web/ipfire/icons/alert.red.png
+#srv/web/ipfire/icons/apache_pb.gif
+#srv/web/ipfire/icons/apache_pb.png
+#srv/web/ipfire/icons/apache_pb2.gif
+#srv/web/ipfire/icons/apache_pb2.png
+#srv/web/ipfire/icons/apache_pb2_ani.gif
+#srv/web/ipfire/icons/back.gif
+#srv/web/ipfire/icons/back.png
+#srv/web/ipfire/icons/ball.gray.gif
+#srv/web/ipfire/icons/ball.gray.png
+#srv/web/ipfire/icons/ball.red.gif
+#srv/web/ipfire/icons/ball.red.png
+#srv/web/ipfire/icons/binary.gif
+#srv/web/ipfire/icons/binary.png
+#srv/web/ipfire/icons/binhex.gif
+#srv/web/ipfire/icons/binhex.png
+#srv/web/ipfire/icons/blank.gif
+#srv/web/ipfire/icons/blank.png
+#srv/web/ipfire/icons/bomb.gif
+#srv/web/ipfire/icons/bomb.png
+#srv/web/ipfire/icons/box1.gif
+#srv/web/ipfire/icons/box1.png
+#srv/web/ipfire/icons/box2.gif
+#srv/web/ipfire/icons/box2.png
+#srv/web/ipfire/icons/broken.gif
+#srv/web/ipfire/icons/broken.png
+#srv/web/ipfire/icons/burst.gif
+#srv/web/ipfire/icons/burst.png
+#srv/web/ipfire/icons/c.gif
+#srv/web/ipfire/icons/c.png
+#srv/web/ipfire/icons/comp.blue.gif
+#srv/web/ipfire/icons/comp.blue.png
+#srv/web/ipfire/icons/comp.gray.gif
+#srv/web/ipfire/icons/comp.gray.png
+#srv/web/ipfire/icons/compressed.gif
+#srv/web/ipfire/icons/compressed.png
+#srv/web/ipfire/icons/continued.gif
+#srv/web/ipfire/icons/continued.png
+#srv/web/ipfire/icons/dir.gif
+#srv/web/ipfire/icons/dir.png
+#srv/web/ipfire/icons/diskimg.gif
+#srv/web/ipfire/icons/diskimg.png
+#srv/web/ipfire/icons/down.gif
+#srv/web/ipfire/icons/down.png
+#srv/web/ipfire/icons/dvi.gif
+#srv/web/ipfire/icons/dvi.png
+#srv/web/ipfire/icons/f.gif
+#srv/web/ipfire/icons/f.png
+#srv/web/ipfire/icons/folder.gif
+#srv/web/ipfire/icons/folder.open.gif
+#srv/web/ipfire/icons/folder.open.png
+#srv/web/ipfire/icons/folder.png
+#srv/web/ipfire/icons/folder.sec.gif
+#srv/web/ipfire/icons/folder.sec.png
+#srv/web/ipfire/icons/forward.gif
+#srv/web/ipfire/icons/forward.png
+#srv/web/ipfire/icons/generic.gif
+#srv/web/ipfire/icons/generic.png
+#srv/web/ipfire/icons/generic.red.gif
+#srv/web/ipfire/icons/generic.red.png
+#srv/web/ipfire/icons/generic.sec.gif
+#srv/web/ipfire/icons/generic.sec.png
+#srv/web/ipfire/icons/hand.right.gif
+#srv/web/ipfire/icons/hand.right.png
+#srv/web/ipfire/icons/hand.up.gif
+#srv/web/ipfire/icons/hand.up.png
+#srv/web/ipfire/icons/icon.sheet.gif
+#srv/web/ipfire/icons/icon.sheet.png
+#srv/web/ipfire/icons/image1.gif
+#srv/web/ipfire/icons/image1.png
+#srv/web/ipfire/icons/image2.gif
+#srv/web/ipfire/icons/image2.png
+#srv/web/ipfire/icons/image3.gif
+#srv/web/ipfire/icons/image3.png
+#srv/web/ipfire/icons/index.gif
+#srv/web/ipfire/icons/index.png
+#srv/web/ipfire/icons/layout.gif
+#srv/web/ipfire/icons/layout.png
+#srv/web/ipfire/icons/left.gif
+#srv/web/ipfire/icons/left.png
+#srv/web/ipfire/icons/link.gif
+#srv/web/ipfire/icons/link.png
+#srv/web/ipfire/icons/movie.gif
+#srv/web/ipfire/icons/movie.png
+#srv/web/ipfire/icons/p.gif
+#srv/web/ipfire/icons/p.png
+#srv/web/ipfire/icons/patch.gif
+#srv/web/ipfire/icons/patch.png
+#srv/web/ipfire/icons/pdf.gif
+#srv/web/ipfire/icons/pdf.png
+#srv/web/ipfire/icons/pie0.gif
+#srv/web/ipfire/icons/pie0.png
+#srv/web/ipfire/icons/pie1.gif
+#srv/web/ipfire/icons/pie1.png
+#srv/web/ipfire/icons/pie2.gif
+#srv/web/ipfire/icons/pie2.png
+#srv/web/ipfire/icons/pie3.gif
+#srv/web/ipfire/icons/pie3.png
+#srv/web/ipfire/icons/pie4.gif
+#srv/web/ipfire/icons/pie4.png
+#srv/web/ipfire/icons/pie5.gif
+#srv/web/ipfire/icons/pie5.png
+#srv/web/ipfire/icons/pie6.gif
+#srv/web/ipfire/icons/pie6.png
+#srv/web/ipfire/icons/pie7.gif
+#srv/web/ipfire/icons/pie7.png
+#srv/web/ipfire/icons/pie8.gif
+#srv/web/ipfire/icons/pie8.png
+#srv/web/ipfire/icons/portal.gif
+#srv/web/ipfire/icons/portal.png
+#srv/web/ipfire/icons/ps.gif
+#srv/web/ipfire/icons/ps.png
+#srv/web/ipfire/icons/quill.gif
+#srv/web/ipfire/icons/quill.png
+#srv/web/ipfire/icons/right.gif
+#srv/web/ipfire/icons/right.png
+#srv/web/ipfire/icons/screw1.gif
+#srv/web/ipfire/icons/screw1.png
+#srv/web/ipfire/icons/screw2.gif
+#srv/web/ipfire/icons/screw2.png
+#srv/web/ipfire/icons/script.gif
+#srv/web/ipfire/icons/script.png
+#srv/web/ipfire/icons/small
+#srv/web/ipfire/icons/small/README.txt
+#srv/web/ipfire/icons/small/back.gif
+#srv/web/ipfire/icons/small/back.png
+#srv/web/ipfire/icons/small/binary.gif
+#srv/web/ipfire/icons/small/binary.png
+#srv/web/ipfire/icons/small/binhex.gif
+#srv/web/ipfire/icons/small/binhex.png
+#srv/web/ipfire/icons/small/blank.gif
+#srv/web/ipfire/icons/small/blank.png
+#srv/web/ipfire/icons/small/broken.gif
+#srv/web/ipfire/icons/small/broken.png
+#srv/web/ipfire/icons/small/burst.gif
+#srv/web/ipfire/icons/small/burst.png
+#srv/web/ipfire/icons/small/comp1.gif
+#srv/web/ipfire/icons/small/comp1.png
+#srv/web/ipfire/icons/small/comp2.gif
+#srv/web/ipfire/icons/small/comp2.png
+#srv/web/ipfire/icons/small/compressed.gif
+#srv/web/ipfire/icons/small/compressed.png
+#srv/web/ipfire/icons/small/continued.gif
+#srv/web/ipfire/icons/small/continued.png
+#srv/web/ipfire/icons/small/dir.gif
+#srv/web/ipfire/icons/small/dir.png
+#srv/web/ipfire/icons/small/dir2.gif
+#srv/web/ipfire/icons/small/dir2.png
+#srv/web/ipfire/icons/small/doc.gif
+#srv/web/ipfire/icons/small/doc.png
+#srv/web/ipfire/icons/small/forward.gif
+#srv/web/ipfire/icons/small/forward.png
+#srv/web/ipfire/icons/small/generic.gif
+#srv/web/ipfire/icons/small/generic.png
+#srv/web/ipfire/icons/small/generic2.gif
+#srv/web/ipfire/icons/small/generic2.png
+#srv/web/ipfire/icons/small/generic3.gif
+#srv/web/ipfire/icons/small/generic3.png
+#srv/web/ipfire/icons/small/image.gif
+#srv/web/ipfire/icons/small/image.png
+#srv/web/ipfire/icons/small/image2.gif
+#srv/web/ipfire/icons/small/image2.png
+#srv/web/ipfire/icons/small/index.gif
+#srv/web/ipfire/icons/small/index.png
+#srv/web/ipfire/icons/small/key.gif
+#srv/web/ipfire/icons/small/key.png
+#srv/web/ipfire/icons/small/movie.gif
+#srv/web/ipfire/icons/small/movie.png
+#srv/web/ipfire/icons/small/patch.gif
+#srv/web/ipfire/icons/small/patch.png
+#srv/web/ipfire/icons/small/ps.gif
+#srv/web/ipfire/icons/small/ps.png
+#srv/web/ipfire/icons/small/rainbow.gif
+#srv/web/ipfire/icons/small/rainbow.png
+#srv/web/ipfire/icons/small/sound.gif
+#srv/web/ipfire/icons/small/sound.png
+#srv/web/ipfire/icons/small/sound2.gif
+#srv/web/ipfire/icons/small/sound2.png
+#srv/web/ipfire/icons/small/tar.gif
+#srv/web/ipfire/icons/small/tar.png
+#srv/web/ipfire/icons/small/text.gif
+#srv/web/ipfire/icons/small/text.png
+#srv/web/ipfire/icons/small/transfer.gif
+#srv/web/ipfire/icons/small/transfer.png
+#srv/web/ipfire/icons/small/unknown.gif
+#srv/web/ipfire/icons/small/unknown.png
+#srv/web/ipfire/icons/small/uu.gif
+#srv/web/ipfire/icons/small/uu.png
+#srv/web/ipfire/icons/sound1.gif
+#srv/web/ipfire/icons/sound1.png
+#srv/web/ipfire/icons/sound2.gif
+#srv/web/ipfire/icons/sound2.png
+#srv/web/ipfire/icons/sphere1.gif
+#srv/web/ipfire/icons/sphere1.png
+#srv/web/ipfire/icons/sphere2.gif
+#srv/web/ipfire/icons/sphere2.png
+#srv/web/ipfire/icons/tar.gif
+#srv/web/ipfire/icons/tar.png
+#srv/web/ipfire/icons/tex.gif
+#srv/web/ipfire/icons/tex.png
+#srv/web/ipfire/icons/text.gif
+#srv/web/ipfire/icons/text.png
+#srv/web/ipfire/icons/transfer.gif
+#srv/web/ipfire/icons/transfer.png
+#srv/web/ipfire/icons/unknown.gif
+#srv/web/ipfire/icons/unknown.png
+#srv/web/ipfire/icons/up.gif
+#srv/web/ipfire/icons/up.png
+#srv/web/ipfire/icons/uu.gif
+#srv/web/ipfire/icons/uu.png
+#srv/web/ipfire/icons/uuencoded.gif
+#srv/web/ipfire/icons/uuencoded.png
+#srv/web/ipfire/icons/world1.gif
+#srv/web/ipfire/icons/world1.png
+#srv/web/ipfire/icons/world2.gif
+#srv/web/ipfire/icons/world2.png
+#srv/web/ipfire/manual
+#srv/web/ipfire/manual/LICENSE
+#srv/web/ipfire/manual/bind.html
+#srv/web/ipfire/manual/bind.html.de
+#srv/web/ipfire/manual/bind.html.en
+#srv/web/ipfire/manual/bind.html.fr
+#srv/web/ipfire/manual/bind.html.ja.euc-jp
+#srv/web/ipfire/manual/bind.html.ko.euc-kr
+#srv/web/ipfire/manual/caching.html
+#srv/web/ipfire/manual/caching.html.en
+#srv/web/ipfire/manual/configuring.html
+#srv/web/ipfire/manual/configuring.html.de
+#srv/web/ipfire/manual/configuring.html.en
+#srv/web/ipfire/manual/configuring.html.ja.euc-jp
+#srv/web/ipfire/manual/configuring.html.ko.euc-kr
+#srv/web/ipfire/manual/content-negotiation.html
+#srv/web/ipfire/manual/content-negotiation.html.en
+#srv/web/ipfire/manual/content-negotiation.html.ja.euc-jp
+#srv/web/ipfire/manual/content-negotiation.html.ko.euc-kr
+#srv/web/ipfire/manual/convenience.map
+#srv/web/ipfire/manual/custom-error.html
+#srv/web/ipfire/manual/custom-error.html.en
+#srv/web/ipfire/manual/custom-error.html.es
+#srv/web/ipfire/manual/custom-error.html.ja.euc-jp
+#srv/web/ipfire/manual/custom-error.html.ko.euc-kr
+#srv/web/ipfire/manual/developer
+#srv/web/ipfire/manual/developer/API.html
+#srv/web/ipfire/manual/developer/API.html.en
+#srv/web/ipfire/manual/developer/debugging.html
+#srv/web/ipfire/manual/developer/debugging.html.en
+#srv/web/ipfire/manual/developer/documenting.html
+#srv/web/ipfire/manual/developer/documenting.html.en
+#srv/web/ipfire/manual/developer/filters.html
+#srv/web/ipfire/manual/developer/filters.html.en
+#srv/web/ipfire/manual/developer/hooks.html
+#srv/web/ipfire/manual/developer/hooks.html.en
+#srv/web/ipfire/manual/developer/index.html
+#srv/web/ipfire/manual/developer/index.html.en
+#srv/web/ipfire/manual/developer/modules.html
+#srv/web/ipfire/manual/developer/modules.html.en
+#srv/web/ipfire/manual/developer/modules.html.ja.euc-jp
+#srv/web/ipfire/manual/developer/request.html
+#srv/web/ipfire/manual/developer/request.html.en
+#srv/web/ipfire/manual/developer/thread_safety.html
+#srv/web/ipfire/manual/developer/thread_safety.html.en
+#srv/web/ipfire/manual/dns-caveats.html
+#srv/web/ipfire/manual/dns-caveats.html.en
+#srv/web/ipfire/manual/dns-caveats.html.ja.euc-jp
+#srv/web/ipfire/manual/dns-caveats.html.ko.euc-kr
+#srv/web/ipfire/manual/dso.html
+#srv/web/ipfire/manual/dso.html.en
+#srv/web/ipfire/manual/dso.html.ja.euc-jp
+#srv/web/ipfire/manual/dso.html.ko.euc-kr
+#srv/web/ipfire/manual/env.html
+#srv/web/ipfire/manual/env.html.en
+#srv/web/ipfire/manual/env.html.ja.euc-jp
+#srv/web/ipfire/manual/env.html.ko.euc-kr
+#srv/web/ipfire/manual/faq
+#srv/web/ipfire/manual/faq/all_in_one.html
+#srv/web/ipfire/manual/faq/all_in_one.html.en
+#srv/web/ipfire/manual/faq/all_in_one.html.ja.euc-jp
+#srv/web/ipfire/manual/faq/all_in_one.html.ko.euc-kr
+#srv/web/ipfire/manual/faq/background.html
+#srv/web/ipfire/manual/faq/background.html.en
+#srv/web/ipfire/manual/faq/error.html
+#srv/web/ipfire/manual/faq/error.html.en
+#srv/web/ipfire/manual/faq/error.html.ja.euc-jp
+#srv/web/ipfire/manual/faq/error.html.ko.euc-kr
+#srv/web/ipfire/manual/faq/index.html
+#srv/web/ipfire/manual/faq/index.html.en
+#srv/web/ipfire/manual/faq/index.html.ja.euc-jp
+#srv/web/ipfire/manual/faq/index.html.ko.euc-kr
+#srv/web/ipfire/manual/faq/support.html
+#srv/web/ipfire/manual/faq/support.html.en
+#srv/web/ipfire/manual/faq/support.html.ja.euc-jp
+#srv/web/ipfire/manual/faq/support.html.ko.euc-kr
+#srv/web/ipfire/manual/filter.html
+#srv/web/ipfire/manual/filter.html.en
+#srv/web/ipfire/manual/filter.html.es
+#srv/web/ipfire/manual/filter.html.fr
+#srv/web/ipfire/manual/filter.html.ja.euc-jp
+#srv/web/ipfire/manual/filter.html.ko.euc-kr
+#srv/web/ipfire/manual/glossary.html
+#srv/web/ipfire/manual/glossary.html.de
+#srv/web/ipfire/manual/glossary.html.en
+#srv/web/ipfire/manual/glossary.html.es
+#srv/web/ipfire/manual/glossary.html.ko.euc-kr
+#srv/web/ipfire/manual/handler.html
+#srv/web/ipfire/manual/handler.html.en
+#srv/web/ipfire/manual/handler.html.es
+#srv/web/ipfire/manual/handler.html.ja.euc-jp
+#srv/web/ipfire/manual/handler.html.ko.euc-kr
+#srv/web/ipfire/manual/handler.html.ru.koi8-r
+#srv/web/ipfire/manual/howto
+#srv/web/ipfire/manual/howto/access.html
+#srv/web/ipfire/manual/howto/access.html.en
+#srv/web/ipfire/manual/howto/auth.html
+#srv/web/ipfire/manual/howto/auth.html.en
+#srv/web/ipfire/manual/howto/auth.html.ja.euc-jp
+#srv/web/ipfire/manual/howto/auth.html.ko.euc-kr
+#srv/web/ipfire/manual/howto/cgi.html
+#srv/web/ipfire/manual/howto/cgi.html.en
+#srv/web/ipfire/manual/howto/cgi.html.ja.euc-jp
+#srv/web/ipfire/manual/howto/cgi.html.ko.euc-kr
+#srv/web/ipfire/manual/howto/htaccess.html
+#srv/web/ipfire/manual/howto/htaccess.html.en
+#srv/web/ipfire/manual/howto/htaccess.html.ja.euc-jp
+#srv/web/ipfire/manual/howto/htaccess.html.ko.euc-kr
+#srv/web/ipfire/manual/howto/htaccess.html.pt-br
+#srv/web/ipfire/manual/howto/index.html
+#srv/web/ipfire/manual/howto/index.html.en
+#srv/web/ipfire/manual/howto/index.html.ja.euc-jp
+#srv/web/ipfire/manual/howto/index.html.ko.euc-kr
+#srv/web/ipfire/manual/howto/public_html.html
+#srv/web/ipfire/manual/howto/public_html.html.en
+#srv/web/ipfire/manual/howto/public_html.html.ja.euc-jp
+#srv/web/ipfire/manual/howto/public_html.html.ko.euc-kr
+#srv/web/ipfire/manual/howto/ssi.html
+#srv/web/ipfire/manual/howto/ssi.html.en
+#srv/web/ipfire/manual/howto/ssi.html.ja.euc-jp
+#srv/web/ipfire/manual/howto/ssi.html.ko.euc-kr
+#srv/web/ipfire/manual/images
+#srv/web/ipfire/manual/images/apache_header.gif
+#srv/web/ipfire/manual/images/caching_fig1.gif
+#srv/web/ipfire/manual/images/caching_fig1.png
+#srv/web/ipfire/manual/images/custom_errordocs.png
+#srv/web/ipfire/manual/images/down.gif
+#srv/web/ipfire/manual/images/favicon.ico
+#srv/web/ipfire/manual/images/feather.gif
+#srv/web/ipfire/manual/images/feather.png
+#srv/web/ipfire/manual/images/filter_arch.png
+#srv/web/ipfire/manual/images/home.gif
+#srv/web/ipfire/manual/images/index.gif
+#srv/web/ipfire/manual/images/left.gif
+#srv/web/ipfire/manual/images/mod_filter_new.gif
+#srv/web/ipfire/manual/images/mod_filter_new.png
+#srv/web/ipfire/manual/images/mod_filter_old.gif
+#srv/web/ipfire/manual/images/mod_rewrite_fig1.gif
+#srv/web/ipfire/manual/images/mod_rewrite_fig1.png
+#srv/web/ipfire/manual/images/mod_rewrite_fig2.gif
+#srv/web/ipfire/manual/images/mod_rewrite_fig2.png
+#srv/web/ipfire/manual/images/pixel.gif
+#srv/web/ipfire/manual/images/right.gif
+#srv/web/ipfire/manual/images/ssl_intro_fig1.gif
+#srv/web/ipfire/manual/images/ssl_intro_fig1.png
+#srv/web/ipfire/manual/images/ssl_intro_fig2.gif
+#srv/web/ipfire/manual/images/ssl_intro_fig2.png
+#srv/web/ipfire/manual/images/ssl_intro_fig3.gif
+#srv/web/ipfire/manual/images/ssl_intro_fig3.png
+#srv/web/ipfire/manual/images/sub.gif
+#srv/web/ipfire/manual/images/up.gif
+#srv/web/ipfire/manual/index.html
+#srv/web/ipfire/manual/index.html.de
+#srv/web/ipfire/manual/index.html.en
+#srv/web/ipfire/manual/index.html.es
+#srv/web/ipfire/manual/index.html.fr
+#srv/web/ipfire/manual/index.html.ja.euc-jp
+#srv/web/ipfire/manual/index.html.ko.euc-kr
+#srv/web/ipfire/manual/index.html.pt-br
+#srv/web/ipfire/manual/install.html
+#srv/web/ipfire/manual/install.html.de
+#srv/web/ipfire/manual/install.html.en
+#srv/web/ipfire/manual/install.html.es
+#srv/web/ipfire/manual/install.html.fr
+#srv/web/ipfire/manual/install.html.ja.euc-jp
+#srv/web/ipfire/manual/install.html.ko.euc-kr
+#srv/web/ipfire/manual/invoking.html
+#srv/web/ipfire/manual/invoking.html.de
+#srv/web/ipfire/manual/invoking.html.en
+#srv/web/ipfire/manual/invoking.html.es
+#srv/web/ipfire/manual/invoking.html.ja.euc-jp
+#srv/web/ipfire/manual/invoking.html.ko.euc-kr
+#srv/web/ipfire/manual/invoking.html.ru.koi8-r
+#srv/web/ipfire/manual/license.html
+#srv/web/ipfire/manual/license.html.en
+#srv/web/ipfire/manual/logs.html
+#srv/web/ipfire/manual/logs.html.en
+#srv/web/ipfire/manual/logs.html.ja.euc-jp
+#srv/web/ipfire/manual/logs.html.ko.euc-kr
+#srv/web/ipfire/manual/misc
+#srv/web/ipfire/manual/misc/index.html
+#srv/web/ipfire/manual/misc/index.html.en
+#srv/web/ipfire/manual/misc/index.html.ko.euc-kr
+#srv/web/ipfire/manual/misc/perf-tuning.html
+#srv/web/ipfire/manual/misc/perf-tuning.html.en
+#srv/web/ipfire/manual/misc/perf-tuning.html.ko.euc-kr
+#srv/web/ipfire/manual/misc/relevant_standards.html
+#srv/web/ipfire/manual/misc/relevant_standards.html.en
+#srv/web/ipfire/manual/misc/relevant_standards.html.ko.euc-kr
+#srv/web/ipfire/manual/misc/rewriteguide.html
+#srv/web/ipfire/manual/misc/rewriteguide.html.en
+#srv/web/ipfire/manual/misc/rewriteguide.html.ko.euc-kr
+#srv/web/ipfire/manual/misc/security_tips.html
+#srv/web/ipfire/manual/misc/security_tips.html.en
+#srv/web/ipfire/manual/misc/security_tips.html.ko.euc-kr
+#srv/web/ipfire/manual/mod
+#srv/web/ipfire/manual/mod/beos.html
+#srv/web/ipfire/manual/mod/beos.html.de
+#srv/web/ipfire/manual/mod/beos.html.en
+#srv/web/ipfire/manual/mod/beos.html.es
+#srv/web/ipfire/manual/mod/beos.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/core.html
+#srv/web/ipfire/manual/mod/core.html.de
+#srv/web/ipfire/manual/mod/core.html.en
+#srv/web/ipfire/manual/mod/core.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/directive-dict.html
+#srv/web/ipfire/manual/mod/directive-dict.html.en
+#srv/web/ipfire/manual/mod/directive-dict.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/directive-dict.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/directives.html
+#srv/web/ipfire/manual/mod/directives.html.de
+#srv/web/ipfire/manual/mod/directives.html.en
+#srv/web/ipfire/manual/mod/directives.html.es
+#srv/web/ipfire/manual/mod/directives.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/directives.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/directives.html.ru.koi8-r
+#srv/web/ipfire/manual/mod/event.html
+#srv/web/ipfire/manual/mod/event.html.en
+#srv/web/ipfire/manual/mod/index.html
+#srv/web/ipfire/manual/mod/index.html.de
+#srv/web/ipfire/manual/mod/index.html.en
+#srv/web/ipfire/manual/mod/index.html.es
+#srv/web/ipfire/manual/mod/index.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/index.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_actions.html
+#srv/web/ipfire/manual/mod/mod_actions.html.de
+#srv/web/ipfire/manual/mod/mod_actions.html.en
+#srv/web/ipfire/manual/mod/mod_actions.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_actions.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_alias.html
+#srv/web/ipfire/manual/mod/mod_alias.html.en
+#srv/web/ipfire/manual/mod/mod_alias.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_alias.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_asis.html
+#srv/web/ipfire/manual/mod/mod_asis.html.en
+#srv/web/ipfire/manual/mod/mod_asis.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_asis.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_auth_basic.html
+#srv/web/ipfire/manual/mod/mod_auth_basic.html.en
+#srv/web/ipfire/manual/mod/mod_auth_basic.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_auth_basic.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_auth_digest.html
+#srv/web/ipfire/manual/mod/mod_auth_digest.html.en
+#srv/web/ipfire/manual/mod/mod_auth_digest.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authn_alias.html
+#srv/web/ipfire/manual/mod/mod_authn_alias.html.en
+#srv/web/ipfire/manual/mod/mod_authn_anon.html
+#srv/web/ipfire/manual/mod/mod_authn_anon.html.en
+#srv/web/ipfire/manual/mod/mod_authn_anon.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authn_anon.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authn_dbd.html
+#srv/web/ipfire/manual/mod/mod_authn_dbd.html.en
+#srv/web/ipfire/manual/mod/mod_authn_dbm.html
+#srv/web/ipfire/manual/mod/mod_authn_dbm.html.en
+#srv/web/ipfire/manual/mod/mod_authn_dbm.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authn_dbm.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authn_default.html
+#srv/web/ipfire/manual/mod/mod_authn_default.html.en
+#srv/web/ipfire/manual/mod/mod_authn_default.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authn_default.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authn_file.html
+#srv/web/ipfire/manual/mod/mod_authn_file.html.en
+#srv/web/ipfire/manual/mod/mod_authn_file.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authn_file.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authnz_ldap.html
+#srv/web/ipfire/manual/mod/mod_authnz_ldap.html.en
+#srv/web/ipfire/manual/mod/mod_authz_dbm.html
+#srv/web/ipfire/manual/mod/mod_authz_dbm.html.en
+#srv/web/ipfire/manual/mod/mod_authz_dbm.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authz_default.html
+#srv/web/ipfire/manual/mod/mod_authz_default.html.en
+#srv/web/ipfire/manual/mod/mod_authz_default.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authz_default.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authz_groupfile.html
+#srv/web/ipfire/manual/mod/mod_authz_groupfile.html.en
+#srv/web/ipfire/manual/mod/mod_authz_groupfile.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authz_groupfile.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authz_host.html
+#srv/web/ipfire/manual/mod/mod_authz_host.html.en
+#srv/web/ipfire/manual/mod/mod_authz_host.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authz_host.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authz_owner.html
+#srv/web/ipfire/manual/mod/mod_authz_owner.html.en
+#srv/web/ipfire/manual/mod/mod_authz_owner.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authz_owner.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_authz_user.html
+#srv/web/ipfire/manual/mod/mod_authz_user.html.en
+#srv/web/ipfire/manual/mod/mod_authz_user.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_authz_user.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_autoindex.html
+#srv/web/ipfire/manual/mod/mod_autoindex.html.en
+#srv/web/ipfire/manual/mod/mod_autoindex.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_autoindex.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_cache.html
+#srv/web/ipfire/manual/mod/mod_cache.html.en
+#srv/web/ipfire/manual/mod/mod_cache.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_cache.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_cern_meta.html
+#srv/web/ipfire/manual/mod/mod_cern_meta.html.en
+#srv/web/ipfire/manual/mod/mod_cern_meta.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_cgi.html
+#srv/web/ipfire/manual/mod/mod_cgi.html.en
+#srv/web/ipfire/manual/mod/mod_cgi.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_cgi.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_cgid.html
+#srv/web/ipfire/manual/mod/mod_cgid.html.en
+#srv/web/ipfire/manual/mod/mod_cgid.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_cgid.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_charset_lite.html
+#srv/web/ipfire/manual/mod/mod_charset_lite.html.en
+#srv/web/ipfire/manual/mod/mod_charset_lite.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_dav.html
+#srv/web/ipfire/manual/mod/mod_dav.html.en
+#srv/web/ipfire/manual/mod/mod_dav.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_dav.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_dav_fs.html
+#srv/web/ipfire/manual/mod/mod_dav_fs.html.en
+#srv/web/ipfire/manual/mod/mod_dav_fs.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_dav_fs.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_dav_lock.html
+#srv/web/ipfire/manual/mod/mod_dav_lock.html.en
+#srv/web/ipfire/manual/mod/mod_dav_lock.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_dbd.html
+#srv/web/ipfire/manual/mod/mod_dbd.html.en
+#srv/web/ipfire/manual/mod/mod_deflate.html
+#srv/web/ipfire/manual/mod/mod_deflate.html.en
+#srv/web/ipfire/manual/mod/mod_deflate.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_deflate.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_dir.html
+#srv/web/ipfire/manual/mod/mod_dir.html.en
+#srv/web/ipfire/manual/mod/mod_dir.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_dir.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_disk_cache.html
+#srv/web/ipfire/manual/mod/mod_disk_cache.html.en
+#srv/web/ipfire/manual/mod/mod_disk_cache.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_disk_cache.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_dumpio.html
+#srv/web/ipfire/manual/mod/mod_dumpio.html.en
+#srv/web/ipfire/manual/mod/mod_dumpio.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_echo.html
+#srv/web/ipfire/manual/mod/mod_echo.html.en
+#srv/web/ipfire/manual/mod/mod_echo.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_echo.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_env.html
+#srv/web/ipfire/manual/mod/mod_env.html.en
+#srv/web/ipfire/manual/mod/mod_env.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_env.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_example.html
+#srv/web/ipfire/manual/mod/mod_example.html.en
+#srv/web/ipfire/manual/mod/mod_example.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_expires.html
+#srv/web/ipfire/manual/mod/mod_expires.html.en
+#srv/web/ipfire/manual/mod/mod_expires.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_expires.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_ext_filter.html
+#srv/web/ipfire/manual/mod/mod_ext_filter.html.en
+#srv/web/ipfire/manual/mod/mod_ext_filter.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_ext_filter.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_file_cache.html
+#srv/web/ipfire/manual/mod/mod_file_cache.html.en
+#srv/web/ipfire/manual/mod/mod_file_cache.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_filter.html
+#srv/web/ipfire/manual/mod/mod_filter.html.en
+#srv/web/ipfire/manual/mod/mod_headers.html
+#srv/web/ipfire/manual/mod/mod_headers.html.en
+#srv/web/ipfire/manual/mod/mod_headers.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_headers.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_ident.html
+#srv/web/ipfire/manual/mod/mod_ident.html.en
+#srv/web/ipfire/manual/mod/mod_ident.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_imagemap.html
+#srv/web/ipfire/manual/mod/mod_imagemap.html.en
+#srv/web/ipfire/manual/mod/mod_imagemap.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_include.html
+#srv/web/ipfire/manual/mod/mod_include.html.en
+#srv/web/ipfire/manual/mod/mod_include.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_info.html
+#srv/web/ipfire/manual/mod/mod_info.html.en
+#srv/web/ipfire/manual/mod/mod_info.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_info.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_isapi.html
+#srv/web/ipfire/manual/mod/mod_isapi.html.en
+#srv/web/ipfire/manual/mod/mod_isapi.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_ldap.html
+#srv/web/ipfire/manual/mod/mod_ldap.html.en
+#srv/web/ipfire/manual/mod/mod_log_config.html
+#srv/web/ipfire/manual/mod/mod_log_config.html.en
+#srv/web/ipfire/manual/mod/mod_log_config.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_log_config.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_log_forensic.html
+#srv/web/ipfire/manual/mod/mod_log_forensic.html.en
+#srv/web/ipfire/manual/mod/mod_log_forensic.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_logio.html
+#srv/web/ipfire/manual/mod/mod_logio.html.en
+#srv/web/ipfire/manual/mod/mod_logio.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_logio.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_mem_cache.html
+#srv/web/ipfire/manual/mod/mod_mem_cache.html.en
+#srv/web/ipfire/manual/mod/mod_mem_cache.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_mem_cache.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_mime.html
+#srv/web/ipfire/manual/mod/mod_mime.html.en
+#srv/web/ipfire/manual/mod/mod_mime.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_mime_magic.html
+#srv/web/ipfire/manual/mod/mod_mime_magic.html.en
+#srv/web/ipfire/manual/mod/mod_negotiation.html
+#srv/web/ipfire/manual/mod/mod_negotiation.html.en
+#srv/web/ipfire/manual/mod/mod_negotiation.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_nw_ssl.html
+#srv/web/ipfire/manual/mod/mod_nw_ssl.html.en
+#srv/web/ipfire/manual/mod/mod_proxy.html
+#srv/web/ipfire/manual/mod/mod_proxy.html.en
+#srv/web/ipfire/manual/mod/mod_proxy.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_proxy_ajp.html
+#srv/web/ipfire/manual/mod/mod_proxy_ajp.html.en
+#srv/web/ipfire/manual/mod/mod_proxy_ajp.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_proxy_balancer.html
+#srv/web/ipfire/manual/mod/mod_proxy_balancer.html.en
+#srv/web/ipfire/manual/mod/mod_proxy_balancer.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_proxy_connect.html
+#srv/web/ipfire/manual/mod/mod_proxy_connect.html.en
+#srv/web/ipfire/manual/mod/mod_proxy_ftp.html
+#srv/web/ipfire/manual/mod/mod_proxy_ftp.html.en
+#srv/web/ipfire/manual/mod/mod_proxy_http.html
+#srv/web/ipfire/manual/mod/mod_proxy_http.html.en
+#srv/web/ipfire/manual/mod/mod_rewrite.html
+#srv/web/ipfire/manual/mod/mod_rewrite.html.en
+#srv/web/ipfire/manual/mod/mod_setenvif.html
+#srv/web/ipfire/manual/mod/mod_setenvif.html.en
+#srv/web/ipfire/manual/mod/mod_setenvif.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_setenvif.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_so.html
+#srv/web/ipfire/manual/mod/mod_so.html.en
+#srv/web/ipfire/manual/mod/mod_so.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_so.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_speling.html
+#srv/web/ipfire/manual/mod/mod_speling.html.en
+#srv/web/ipfire/manual/mod/mod_speling.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_speling.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_ssl.html
+#srv/web/ipfire/manual/mod/mod_ssl.html.en
+#srv/web/ipfire/manual/mod/mod_status.html
+#srv/web/ipfire/manual/mod/mod_status.html.en
+#srv/web/ipfire/manual/mod/mod_status.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_status.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_suexec.html
+#srv/web/ipfire/manual/mod/mod_suexec.html.en
+#srv/web/ipfire/manual/mod/mod_suexec.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_suexec.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_unique_id.html
+#srv/web/ipfire/manual/mod/mod_unique_id.html.en
+#srv/web/ipfire/manual/mod/mod_unique_id.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_unique_id.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_userdir.html
+#srv/web/ipfire/manual/mod/mod_userdir.html.en
+#srv/web/ipfire/manual/mod/mod_userdir.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_userdir.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_usertrack.html
+#srv/web/ipfire/manual/mod/mod_usertrack.html.en
+#srv/web/ipfire/manual/mod/mod_version.html
+#srv/web/ipfire/manual/mod/mod_version.html.en
+#srv/web/ipfire/manual/mod/mod_version.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mod_version.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mod_vhost_alias.html
+#srv/web/ipfire/manual/mod/mod_vhost_alias.html.en
+#srv/web/ipfire/manual/mod/module-dict.html
+#srv/web/ipfire/manual/mod/module-dict.html.en
+#srv/web/ipfire/manual/mod/module-dict.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/module-dict.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/mpm_common.html
+#srv/web/ipfire/manual/mod/mpm_common.html.de
+#srv/web/ipfire/manual/mod/mpm_common.html.en
+#srv/web/ipfire/manual/mod/mpm_common.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mpm_netware.html
+#srv/web/ipfire/manual/mod/mpm_netware.html.en
+#srv/web/ipfire/manual/mod/mpm_winnt.html
+#srv/web/ipfire/manual/mod/mpm_winnt.html.de
+#srv/web/ipfire/manual/mod/mpm_winnt.html.en
+#srv/web/ipfire/manual/mod/mpm_winnt.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/mpmt_os2.html
+#srv/web/ipfire/manual/mod/mpmt_os2.html.en
+#srv/web/ipfire/manual/mod/prefork.html
+#srv/web/ipfire/manual/mod/prefork.html.de
+#srv/web/ipfire/manual/mod/prefork.html.en
+#srv/web/ipfire/manual/mod/prefork.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/quickreference.html
+#srv/web/ipfire/manual/mod/quickreference.html.de
+#srv/web/ipfire/manual/mod/quickreference.html.en
+#srv/web/ipfire/manual/mod/quickreference.html.es
+#srv/web/ipfire/manual/mod/quickreference.html.ja.euc-jp
+#srv/web/ipfire/manual/mod/quickreference.html.ko.euc-kr
+#srv/web/ipfire/manual/mod/quickreference.html.ru.koi8-r
+#srv/web/ipfire/manual/mod/worker.html
+#srv/web/ipfire/manual/mod/worker.html.de
+#srv/web/ipfire/manual/mod/worker.html.en
+#srv/web/ipfire/manual/mod/worker.html.ja.euc-jp
+#srv/web/ipfire/manual/mpm.html
+#srv/web/ipfire/manual/mpm.html.de
+#srv/web/ipfire/manual/mpm.html.en
+#srv/web/ipfire/manual/mpm.html.es
+#srv/web/ipfire/manual/mpm.html.ja.euc-jp
+#srv/web/ipfire/manual/mpm.html.ko.euc-kr
+#srv/web/ipfire/manual/new_features_2_0.html
+#srv/web/ipfire/manual/new_features_2_0.html.de
+#srv/web/ipfire/manual/new_features_2_0.html.en
+#srv/web/ipfire/manual/new_features_2_0.html.fr
+#srv/web/ipfire/manual/new_features_2_0.html.ja.euc-jp
+#srv/web/ipfire/manual/new_features_2_0.html.ko.euc-kr
+#srv/web/ipfire/manual/new_features_2_0.html.pt-br
+#srv/web/ipfire/manual/new_features_2_0.html.ru.koi8-r
+#srv/web/ipfire/manual/new_features_2_2.html
+#srv/web/ipfire/manual/new_features_2_2.html.en
+#srv/web/ipfire/manual/new_features_2_2.html.ko.euc-kr
+#srv/web/ipfire/manual/new_features_2_2.html.pt-br
+#srv/web/ipfire/manual/platform
+#srv/web/ipfire/manual/platform/ebcdic.html
+#srv/web/ipfire/manual/platform/ebcdic.html.en
+#srv/web/ipfire/manual/platform/ebcdic.html.ko.euc-kr
+#srv/web/ipfire/manual/platform/index.html
+#srv/web/ipfire/manual/platform/index.html.en
+#srv/web/ipfire/manual/platform/index.html.ko.euc-kr
+#srv/web/ipfire/manual/platform/netware.html
+#srv/web/ipfire/manual/platform/netware.html.en
+#srv/web/ipfire/manual/platform/netware.html.ko.euc-kr
+#srv/web/ipfire/manual/platform/perf-hp.html
+#srv/web/ipfire/manual/platform/perf-hp.html.en
+#srv/web/ipfire/manual/platform/perf-hp.html.ko.euc-kr
+#srv/web/ipfire/manual/platform/win_compiling.html
+#srv/web/ipfire/manual/platform/win_compiling.html.en
+#srv/web/ipfire/manual/platform/win_compiling.html.ko.euc-kr
+#srv/web/ipfire/manual/platform/windows.html
+#srv/web/ipfire/manual/platform/windows.html.en
+#srv/web/ipfire/manual/platform/windows.html.ko.euc-kr
+#srv/web/ipfire/manual/programs
+#srv/web/ipfire/manual/programs/ab.html
+#srv/web/ipfire/manual/programs/ab.html.en
+#srv/web/ipfire/manual/programs/ab.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/apachectl.html
+#srv/web/ipfire/manual/programs/apachectl.html.en
+#srv/web/ipfire/manual/programs/apachectl.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/apxs.html
+#srv/web/ipfire/manual/programs/apxs.html.en
+#srv/web/ipfire/manual/programs/apxs.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/configure.html
+#srv/web/ipfire/manual/programs/configure.html.en
+#srv/web/ipfire/manual/programs/configure.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/dbmmanage.html
+#srv/web/ipfire/manual/programs/dbmmanage.html.en
+#srv/web/ipfire/manual/programs/dbmmanage.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/htcacheclean.html
+#srv/web/ipfire/manual/programs/htcacheclean.html.en
+#srv/web/ipfire/manual/programs/htcacheclean.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/htdbm.html
+#srv/web/ipfire/manual/programs/htdbm.html.en
+#srv/web/ipfire/manual/programs/htdigest.html
+#srv/web/ipfire/manual/programs/htdigest.html.en
+#srv/web/ipfire/manual/programs/htdigest.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/htpasswd.html
+#srv/web/ipfire/manual/programs/htpasswd.html.en
+#srv/web/ipfire/manual/programs/htpasswd.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/httpd.html
+#srv/web/ipfire/manual/programs/httpd.html.en
+#srv/web/ipfire/manual/programs/httpd.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/httxt2dbm.html
+#srv/web/ipfire/manual/programs/httxt2dbm.html.en
+#srv/web/ipfire/manual/programs/index.html
+#srv/web/ipfire/manual/programs/index.html.en
+#srv/web/ipfire/manual/programs/index.html.es
+#srv/web/ipfire/manual/programs/index.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/index.html.ru.koi8-r
+#srv/web/ipfire/manual/programs/logresolve.html
+#srv/web/ipfire/manual/programs/logresolve.html.en
+#srv/web/ipfire/manual/programs/logresolve.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/other.html
+#srv/web/ipfire/manual/programs/other.html.en
+#srv/web/ipfire/manual/programs/other.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/rotatelogs.html
+#srv/web/ipfire/manual/programs/rotatelogs.html.en
+#srv/web/ipfire/manual/programs/rotatelogs.html.ko.euc-kr
+#srv/web/ipfire/manual/programs/suexec.html
+#srv/web/ipfire/manual/programs/suexec.html.en
+#srv/web/ipfire/manual/programs/suexec.html.ko.euc-kr
+#srv/web/ipfire/manual/rewrite
+#srv/web/ipfire/manual/rewrite/index.html
+#srv/web/ipfire/manual/rewrite/index.html.en
+#srv/web/ipfire/manual/rewrite/rewrite_guide.html
+#srv/web/ipfire/manual/rewrite/rewrite_guide.html.en
+#srv/web/ipfire/manual/rewrite/rewrite_guide_advanced.html
+#srv/web/ipfire/manual/rewrite/rewrite_guide_advanced.html.en
+#srv/web/ipfire/manual/rewrite/rewrite_intro.html
+#srv/web/ipfire/manual/rewrite/rewrite_intro.html.en
+#srv/web/ipfire/manual/rewrite/rewrite_tech.html
+#srv/web/ipfire/manual/rewrite/rewrite_tech.html.en
+#srv/web/ipfire/manual/sections.html
+#srv/web/ipfire/manual/sections.html.en
+#srv/web/ipfire/manual/sections.html.ja.euc-jp
+#srv/web/ipfire/manual/sections.html.ko.euc-kr
+#srv/web/ipfire/manual/server-wide.html
+#srv/web/ipfire/manual/server-wide.html.en
+#srv/web/ipfire/manual/server-wide.html.ja.euc-jp
+#srv/web/ipfire/manual/server-wide.html.ko.euc-kr
+#srv/web/ipfire/manual/sitemap.html
+#srv/web/ipfire/manual/sitemap.html.de
+#srv/web/ipfire/manual/sitemap.html.en
+#srv/web/ipfire/manual/sitemap.html.es
+#srv/web/ipfire/manual/sitemap.html.ja.euc-jp
+#srv/web/ipfire/manual/sitemap.html.ko.euc-kr
+#srv/web/ipfire/manual/ssl
+#srv/web/ipfire/manual/ssl/index.html
+#srv/web/ipfire/manual/ssl/index.html.en
+#srv/web/ipfire/manual/ssl/index.html.ja.euc-jp
+#srv/web/ipfire/manual/ssl/ssl_compat.html
+#srv/web/ipfire/manual/ssl/ssl_compat.html.en
+#srv/web/ipfire/manual/ssl/ssl_faq.html
+#srv/web/ipfire/manual/ssl/ssl_faq.html.en
+#srv/web/ipfire/manual/ssl/ssl_howto.html
+#srv/web/ipfire/manual/ssl/ssl_howto.html.en
+#srv/web/ipfire/manual/ssl/ssl_intro.html
+#srv/web/ipfire/manual/ssl/ssl_intro.html.en
+#srv/web/ipfire/manual/ssl/ssl_intro.html.ja.euc-jp
+#srv/web/ipfire/manual/stopping.html
+#srv/web/ipfire/manual/stopping.html.de
+#srv/web/ipfire/manual/stopping.html.en
+#srv/web/ipfire/manual/stopping.html.es
+#srv/web/ipfire/manual/stopping.html.ja.euc-jp
+#srv/web/ipfire/manual/stopping.html.ko.euc-kr
+#srv/web/ipfire/manual/style
+#srv/web/ipfire/manual/style/build.properties
+#srv/web/ipfire/manual/style/common.dtd
+#srv/web/ipfire/manual/style/css
+#srv/web/ipfire/manual/style/css/manual-chm.css
+#srv/web/ipfire/manual/style/css/manual-loose-100pc.css
+#srv/web/ipfire/manual/style/css/manual-print.css
+#srv/web/ipfire/manual/style/css/manual-zip-100pc.css
+#srv/web/ipfire/manual/style/css/manual-zip.css
+#srv/web/ipfire/manual/style/css/manual.css
+#srv/web/ipfire/manual/style/faq.dtd
+#srv/web/ipfire/manual/style/lang
+#srv/web/ipfire/manual/style/lang.dtd
+#srv/web/ipfire/manual/style/latex
+#srv/web/ipfire/manual/style/latex/atbeginend.sty
+#srv/web/ipfire/manual/style/latex/common.xsl
+#srv/web/ipfire/manual/style/latex/directiveindex.xsl
+#srv/web/ipfire/manual/style/latex/faq.xsl
+#srv/web/ipfire/manual/style/latex/html.xsl
+#srv/web/ipfire/manual/style/latex/latex.xsl
+#srv/web/ipfire/manual/style/latex/manualpage.xsl
+#srv/web/ipfire/manual/style/latex/moduleindex.xsl
+#srv/web/ipfire/manual/style/latex/quickreference.xsl
+#srv/web/ipfire/manual/style/latex/synopsis.xsl
+#srv/web/ipfire/manual/style/manual.de.xsl
+#srv/web/ipfire/manual/style/manual.en.xsl
+#srv/web/ipfire/manual/style/manual.es.xsl
+#srv/web/ipfire/manual/style/manual.fr.xsl
+#srv/web/ipfire/manual/style/manual.ja.xsl
+#srv/web/ipfire/manual/style/manual.ko.xsl
+#srv/web/ipfire/manual/style/manual.pt-br.xsl
+#srv/web/ipfire/manual/style/manual.ru.xsl
+#srv/web/ipfire/manual/style/manualpage.dtd
+#srv/web/ipfire/manual/style/modulesynopsis.dtd
+#srv/web/ipfire/manual/style/sitemap.dtd
+#srv/web/ipfire/manual/style/version.ent
+#srv/web/ipfire/manual/style/xsl
+#srv/web/ipfire/manual/style/xsl/common.xsl
+#srv/web/ipfire/manual/style/xsl/convmap.xsl
+#srv/web/ipfire/manual/style/xsl/directiveindex.xsl
+#srv/web/ipfire/manual/style/xsl/faq.xsl
+#srv/web/ipfire/manual/style/xsl/hhc.xsl
+#srv/web/ipfire/manual/style/xsl/hhp.xsl
+#srv/web/ipfire/manual/style/xsl/indexpage.xsl
+#srv/web/ipfire/manual/style/xsl/language.xsl
+#srv/web/ipfire/manual/style/xsl/maf.xsl
+#srv/web/ipfire/manual/style/xsl/manualpage.xsl
+#srv/web/ipfire/manual/style/xsl/moduleindex.xsl
+#srv/web/ipfire/manual/style/xsl/nroff.xsl
+#srv/web/ipfire/manual/style/xsl/quickreference.xsl
+#srv/web/ipfire/manual/style/xsl/sitemap.xsl
+#srv/web/ipfire/manual/style/xsl/synopsis.xsl
+#srv/web/ipfire/manual/style/xsl/typemap.xsl
+#srv/web/ipfire/manual/style/xsl/util
+#srv/web/ipfire/manual/style/xsl/util/modtrans.xsl
+#srv/web/ipfire/manual/suexec.html
+#srv/web/ipfire/manual/suexec.html.en
+#srv/web/ipfire/manual/suexec.html.ja.euc-jp
+#srv/web/ipfire/manual/suexec.html.ko.euc-kr
+#srv/web/ipfire/manual/upgrading.html
+#srv/web/ipfire/manual/upgrading.html.de
+#srv/web/ipfire/manual/upgrading.html.en
+#srv/web/ipfire/manual/upgrading.html.ja.euc-jp
+#srv/web/ipfire/manual/upgrading.html.ko.euc-kr
+#srv/web/ipfire/manual/upgrading.html.pt-br
+#srv/web/ipfire/manual/upgrading.html.ru.koi8-r
+#srv/web/ipfire/manual/urlmapping.html
+#srv/web/ipfire/manual/urlmapping.html.en
+#srv/web/ipfire/manual/urlmapping.html.ja.euc-jp
+#srv/web/ipfire/manual/urlmapping.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts
+#srv/web/ipfire/manual/vhosts/details.html
+#srv/web/ipfire/manual/vhosts/details.html.en
+#srv/web/ipfire/manual/vhosts/details.html.fr
+#srv/web/ipfire/manual/vhosts/details.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts/examples.html
+#srv/web/ipfire/manual/vhosts/examples.html.en
+#srv/web/ipfire/manual/vhosts/examples.html.fr
+#srv/web/ipfire/manual/vhosts/examples.html.ja.euc-jp
+#srv/web/ipfire/manual/vhosts/examples.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts/fd-limits.html
+#srv/web/ipfire/manual/vhosts/fd-limits.html.en
+#srv/web/ipfire/manual/vhosts/fd-limits.html.fr
+#srv/web/ipfire/manual/vhosts/fd-limits.html.ja.euc-jp
+#srv/web/ipfire/manual/vhosts/fd-limits.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts/index.html
+#srv/web/ipfire/manual/vhosts/index.html.de
+#srv/web/ipfire/manual/vhosts/index.html.en
+#srv/web/ipfire/manual/vhosts/index.html.fr
+#srv/web/ipfire/manual/vhosts/index.html.ja.euc-jp
+#srv/web/ipfire/manual/vhosts/index.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts/index.html.ru.koi8-r
+#srv/web/ipfire/manual/vhosts/ip-based.html
+#srv/web/ipfire/manual/vhosts/ip-based.html.en
+#srv/web/ipfire/manual/vhosts/ip-based.html.fr
+#srv/web/ipfire/manual/vhosts/ip-based.html.ja.euc-jp
+#srv/web/ipfire/manual/vhosts/ip-based.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts/mass.html
+#srv/web/ipfire/manual/vhosts/mass.html.en
+#srv/web/ipfire/manual/vhosts/mass.html.ko.euc-kr
+#srv/web/ipfire/manual/vhosts/name-based.html
+#srv/web/ipfire/manual/vhosts/name-based.html.de
+#srv/web/ipfire/manual/vhosts/name-based.html.en
+#srv/web/ipfire/manual/vhosts/name-based.html.fr
+#srv/web/ipfire/manual/vhosts/name-based.html.ja.euc-jp
+#srv/web/ipfire/manual/vhosts/name-based.html.ko.euc-kr
 #usr/bin/apr-1-config
 #usr/bin/apu-1-config
 #usr/include/apache
@@ -1255,383 +1255,383 @@ etc/httpd/conf/uid.conf
 #etc/httpd/conf/vhosts.d
 etc/httpd/conf/vhosts.d/ipfire-interface-ssl.conf
 etc/httpd/conf/vhosts.d/ipfire-interface.conf
-home/httpd/cgi-bin/aliases.cgi
-#home/httpd/cgi-bin/asterisk.cgi
-#home/httpd/cgi-bin/asterisk.cgi/calls
-#home/httpd/cgi-bin/asterisk.cgi/conf
-#home/httpd/cgi-bin/asterisk.cgi/status
-#home/httpd/cgi-bin/backup.cgi
-#home/httpd/cgi-bin/base.cgi
-home/httpd/cgi-bin/changepw.cgi
-home/httpd/cgi-bin/chpasswd.cgi
-home/httpd/cgi-bin/connections.cgi
-home/httpd/cgi-bin/connscheduler.cgi
-home/httpd/cgi-bin/country.cgi
-home/httpd/cgi-bin/credits.cgi
-home/httpd/cgi-bin/ddns.cgi
-home/httpd/cgi-bin/dhcp.cgi
-home/httpd/cgi-bin/dial
-home/httpd/cgi-bin/dial.cgi
-#home/httpd/cgi-bin/dial/dial.cgi
-#home/httpd/cgi-bin/dial/index.cgi
-home/httpd/cgi-bin/dmzholes.cgi
-home/httpd/cgi-bin/fwhits.cgi
-home/httpd/cgi-bin/graphs.cgi
-home/httpd/cgi-bin/gui.cgi
-home/httpd/cgi-bin/hardwaregraphs.cgi
-home/httpd/cgi-bin/hosts.cgi
-home/httpd/cgi-bin/ids.cgi
-home/httpd/cgi-bin/index.cgi
-home/httpd/cgi-bin/ipinfo.cgi
-home/httpd/cgi-bin/iptables.cgi
-home/httpd/cgi-bin/logs.cgi
-#home/httpd/cgi-bin/logs.cgi/config.dat
-#home/httpd/cgi-bin/logs.cgi/firewalllog.dat
-#home/httpd/cgi-bin/logs.cgi/ids.dat
-#home/httpd/cgi-bin/logs.cgi/log.dat
-#home/httpd/cgi-bin/logs.cgi/proxylog.dat
-#home/httpd/cgi-bin/logs.cgi/summary.dat
-#home/httpd/cgi-bin/logs.cgi/urlfilter.dat
-home/httpd/cgi-bin/modem.cgi
-home/httpd/cgi-bin/netconfig.cgi
-home/httpd/cgi-bin/netstatus.cgi
-home/httpd/cgi-bin/networks.cgi
-home/httpd/cgi-bin/optionsfw.cgi
-home/httpd/cgi-bin/outgoingfw.cgi
-home/httpd/cgi-bin/ovpnfunc.pl
-home/httpd/cgi-bin/ovpnmain.cgi
-home/httpd/cgi-bin/pakfire.cgi
-home/httpd/cgi-bin/portfw.cgi
-home/httpd/cgi-bin/pppsetup.cgi
-home/httpd/cgi-bin/proxy.cgi
-home/httpd/cgi-bin/proxygraphs.cgi
-home/httpd/cgi-bin/qos.cgi
-home/httpd/cgi-bin/remote.cgi
-home/httpd/cgi-bin/samba.cgi
-home/httpd/cgi-bin/services.cgi
-home/httpd/cgi-bin/shaping.cgi
-home/httpd/cgi-bin/shutdown.cgi
-home/httpd/cgi-bin/status.cgi
-home/httpd/cgi-bin/time.cgi
-home/httpd/cgi-bin/traffic.cgi
-home/httpd/cgi-bin/traffics.cgi
-home/httpd/cgi-bin/upload.cgi
-home/httpd/cgi-bin/urlfilter.cgi
-home/httpd/cgi-bin/vpnmain.cgi
-home/httpd/cgi-bin/wakeonlan.cgi
-home/httpd/cgi-bin/webaccess.cgi
-home/httpd/cgi-bin/wireless.cgi
-home/httpd/cgi-bin/xtaccess.cgi
-home/httpd/html
-#home/httpd/html/blob.gif
-#home/httpd/html/dial.cgi
-#home/httpd/html/favicon.ico
-#home/httpd/html/images
-#home/httpd/html/images/add.gif
-#home/httpd/html/images/addblue.gif
-#home/httpd/html/images/addgreen.gif
-#home/httpd/html/images/background.gif
-#home/httpd/html/images/bounceback.png
-#home/httpd/html/images/boxbottom1.png
-#home/httpd/html/images/boxbottom2.png
-#home/httpd/html/images/boxbottom3.png
-#home/httpd/html/images/boxleft.png
-#home/httpd/html/images/boxright.png
-#home/httpd/html/images/boxtop1.png
-#home/httpd/html/images/boxtop2.png
-#home/httpd/html/images/boxtop3.png
-#home/httpd/html/images/clock.gif
-#home/httpd/html/images/delete.gif
-#home/httpd/html/images/down.gif
-#home/httpd/html/images/download.png
-#home/httpd/html/images/edit.gif
-#home/httpd/html/images/flags
-#home/httpd/html/images/flags/ad.png
-#home/httpd/html/images/flags/ae.png
-#home/httpd/html/images/flags/af.png
-#home/httpd/html/images/flags/ag.png
-#home/httpd/html/images/flags/ai.png
-#home/httpd/html/images/flags/al.png
-#home/httpd/html/images/flags/am.png
-#home/httpd/html/images/flags/an.png
-#home/httpd/html/images/flags/ao.png
-#home/httpd/html/images/flags/aq.png
-#home/httpd/html/images/flags/ar.png
-#home/httpd/html/images/flags/as.png
-#home/httpd/html/images/flags/at.png
-#home/httpd/html/images/flags/au.png
-#home/httpd/html/images/flags/aw.png
-#home/httpd/html/images/flags/az.png
-#home/httpd/html/images/flags/ba.png
-#home/httpd/html/images/flags/bb.png
-#home/httpd/html/images/flags/bd.png
-#home/httpd/html/images/flags/be.png
-#home/httpd/html/images/flags/bf.png
-#home/httpd/html/images/flags/bg.png
-#home/httpd/html/images/flags/bh.png
-#home/httpd/html/images/flags/bi.png
-#home/httpd/html/images/flags/bj.png
-#home/httpd/html/images/flags/bm.png
-#home/httpd/html/images/flags/bn.png
-#home/httpd/html/images/flags/bo.png
-#home/httpd/html/images/flags/br.png
-#home/httpd/html/images/flags/bs.png
-#home/httpd/html/images/flags/bt.png
-#home/httpd/html/images/flags/bv.png
-#home/httpd/html/images/flags/bw.png
-#home/httpd/html/images/flags/by.png
-#home/httpd/html/images/flags/bz.png
-#home/httpd/html/images/flags/ca.png
-#home/httpd/html/images/flags/cc.png
-#home/httpd/html/images/flags/cd.png
-#home/httpd/html/images/flags/cf.png
-#home/httpd/html/images/flags/cg.png
-#home/httpd/html/images/flags/ch.png
-#home/httpd/html/images/flags/ci.png
-#home/httpd/html/images/flags/ck.png
-#home/httpd/html/images/flags/cl.png
-#home/httpd/html/images/flags/cm.png
-#home/httpd/html/images/flags/cn.png
-#home/httpd/html/images/flags/co.png
-#home/httpd/html/images/flags/cr.png
-#home/httpd/html/images/flags/cs.png
-#home/httpd/html/images/flags/cu.png
-#home/httpd/html/images/flags/cv.png
-#home/httpd/html/images/flags/cx.png
-#home/httpd/html/images/flags/cy.png
-#home/httpd/html/images/flags/cz.png
-#home/httpd/html/images/flags/de.png
-#home/httpd/html/images/flags/dj.png
-#home/httpd/html/images/flags/dk.png
-#home/httpd/html/images/flags/dm.png
-#home/httpd/html/images/flags/do.png
-#home/httpd/html/images/flags/dz.png
-#home/httpd/html/images/flags/ec.png
-#home/httpd/html/images/flags/ee.png
-#home/httpd/html/images/flags/eg.png
-#home/httpd/html/images/flags/eh.png
-#home/httpd/html/images/flags/er.png
-#home/httpd/html/images/flags/es.png
-#home/httpd/html/images/flags/et.png
-#home/httpd/html/images/flags/eu.png
-#home/httpd/html/images/flags/fi.png
-#home/httpd/html/images/flags/fj.png
-#home/httpd/html/images/flags/fk.png
-#home/httpd/html/images/flags/fm.png
-#home/httpd/html/images/flags/fo.png
-#home/httpd/html/images/flags/fr.png
-#home/httpd/html/images/flags/ga.png
-#home/httpd/html/images/flags/gb.png
-#home/httpd/html/images/flags/gd.png
-#home/httpd/html/images/flags/ge.png
-#home/httpd/html/images/flags/gf.png
-#home/httpd/html/images/flags/gh.png
-#home/httpd/html/images/flags/gi.png
-#home/httpd/html/images/flags/gl.png
-#home/httpd/html/images/flags/gm.png
-#home/httpd/html/images/flags/gn.png
-#home/httpd/html/images/flags/gp.png
-#home/httpd/html/images/flags/gq.png
-#home/httpd/html/images/flags/gr.png
-#home/httpd/html/images/flags/gs.png
-#home/httpd/html/images/flags/gt.png
-#home/httpd/html/images/flags/gu.png
-#home/httpd/html/images/flags/gw.png
-#home/httpd/html/images/flags/gy.png
-#home/httpd/html/images/flags/hk.png
-#home/httpd/html/images/flags/hm.png
-#home/httpd/html/images/flags/hn.png
-#home/httpd/html/images/flags/hr.png
-#home/httpd/html/images/flags/ht.png
-#home/httpd/html/images/flags/hu.png
-#home/httpd/html/images/flags/id.png
-#home/httpd/html/images/flags/ie.png
-#home/httpd/html/images/flags/il.png
-#home/httpd/html/images/flags/in.png
-#home/httpd/html/images/flags/io.png
-#home/httpd/html/images/flags/iq.png
-#home/httpd/html/images/flags/ir.png
-#home/httpd/html/images/flags/is.png
-#home/httpd/html/images/flags/it.png
-#home/httpd/html/images/flags/jm.png
-#home/httpd/html/images/flags/jo.png
-#home/httpd/html/images/flags/jp.png
-#home/httpd/html/images/flags/ke.png
-#home/httpd/html/images/flags/kg.png
-#home/httpd/html/images/flags/kh.png
-#home/httpd/html/images/flags/ki.png
-#home/httpd/html/images/flags/km.png
-#home/httpd/html/images/flags/kn.png
-#home/httpd/html/images/flags/kp.png
-#home/httpd/html/images/flags/kr.png
-#home/httpd/html/images/flags/kw.png
-#home/httpd/html/images/flags/ky.png
-#home/httpd/html/images/flags/kz.png
-#home/httpd/html/images/flags/la.png
-#home/httpd/html/images/flags/lb.png
-#home/httpd/html/images/flags/lc.png
-#home/httpd/html/images/flags/li.png
-#home/httpd/html/images/flags/lk.png
-#home/httpd/html/images/flags/lr.png
-#home/httpd/html/images/flags/ls.png
-#home/httpd/html/images/flags/lt.png
-#home/httpd/html/images/flags/lu.png
-#home/httpd/html/images/flags/lv.png
-#home/httpd/html/images/flags/ly.png
-#home/httpd/html/images/flags/ma.png
-#home/httpd/html/images/flags/mc.png
-#home/httpd/html/images/flags/md.png
-#home/httpd/html/images/flags/mg.png
-#home/httpd/html/images/flags/mh.png
-#home/httpd/html/images/flags/mk.png
-#home/httpd/html/images/flags/ml.png
-#home/httpd/html/images/flags/mm.png
-#home/httpd/html/images/flags/mn.png
-#home/httpd/html/images/flags/mo.png
-#home/httpd/html/images/flags/mp.png
-#home/httpd/html/images/flags/mq.png
-#home/httpd/html/images/flags/mr.png
-#home/httpd/html/images/flags/ms.png
-#home/httpd/html/images/flags/mt.png
-#home/httpd/html/images/flags/mu.png
-#home/httpd/html/images/flags/mv.png
-#home/httpd/html/images/flags/mw.png
-#home/httpd/html/images/flags/mx.png
-#home/httpd/html/images/flags/my.png
-#home/httpd/html/images/flags/mz.png
-#home/httpd/html/images/flags/na.png
-#home/httpd/html/images/flags/nc.png
-#home/httpd/html/images/flags/ne.png
-#home/httpd/html/images/flags/nf.png
-#home/httpd/html/images/flags/ng.png
-#home/httpd/html/images/flags/ni.png
-#home/httpd/html/images/flags/nl.png
-#home/httpd/html/images/flags/no.png
-#home/httpd/html/images/flags/np.png
-#home/httpd/html/images/flags/nr.png
-#home/httpd/html/images/flags/nu.png
-#home/httpd/html/images/flags/nz.png
-#home/httpd/html/images/flags/om.png
-#home/httpd/html/images/flags/pa.png
-#home/httpd/html/images/flags/pe.png
-#home/httpd/html/images/flags/pf.png
-#home/httpd/html/images/flags/pg.png
-#home/httpd/html/images/flags/ph.png
-#home/httpd/html/images/flags/pk.png
-#home/httpd/html/images/flags/pl.png
-#home/httpd/html/images/flags/pm.png
-#home/httpd/html/images/flags/pn.png
-#home/httpd/html/images/flags/pr.png
-#home/httpd/html/images/flags/ps.png
-#home/httpd/html/images/flags/pt.png
-#home/httpd/html/images/flags/pw.png
-#home/httpd/html/images/flags/py.png
-#home/httpd/html/images/flags/qa.png
-#home/httpd/html/images/flags/re.png
-#home/httpd/html/images/flags/ro.png
-#home/httpd/html/images/flags/ru.png
-#home/httpd/html/images/flags/rw.png
-#home/httpd/html/images/flags/sa.png
-#home/httpd/html/images/flags/sb.png
-#home/httpd/html/images/flags/sc.png
-#home/httpd/html/images/flags/sd.png
-#home/httpd/html/images/flags/se.png
-#home/httpd/html/images/flags/sg.png
-#home/httpd/html/images/flags/sh.png
-#home/httpd/html/images/flags/si.png
-#home/httpd/html/images/flags/sj.png
-#home/httpd/html/images/flags/sk.png
-#home/httpd/html/images/flags/sl.png
-#home/httpd/html/images/flags/sm.png
-#home/httpd/html/images/flags/sn.png
-#home/httpd/html/images/flags/so.png
-#home/httpd/html/images/flags/sr.png
-#home/httpd/html/images/flags/st.png
-#home/httpd/html/images/flags/sv.png
-#home/httpd/html/images/flags/sy.png
-#home/httpd/html/images/flags/sz.png
-#home/httpd/html/images/flags/tc.png
-#home/httpd/html/images/flags/td.png
-#home/httpd/html/images/flags/tf.png
-#home/httpd/html/images/flags/tg.png
-#home/httpd/html/images/flags/th.png
-#home/httpd/html/images/flags/tj.png
-#home/httpd/html/images/flags/tk.png
-#home/httpd/html/images/flags/tl.png
-#home/httpd/html/images/flags/tm.png
-#home/httpd/html/images/flags/tn.png
-#home/httpd/html/images/flags/to.png
-#home/httpd/html/images/flags/tp.png
-#home/httpd/html/images/flags/tr.png
-#home/httpd/html/images/flags/tt.png
-#home/httpd/html/images/flags/tv.png
-#home/httpd/html/images/flags/tw.png
-#home/httpd/html/images/flags/tz.png
-#home/httpd/html/images/flags/ua.png
-#home/httpd/html/images/flags/ug.png
-#home/httpd/html/images/flags/um.png
-#home/httpd/html/images/flags/us.png
-#home/httpd/html/images/flags/uy.png
-#home/httpd/html/images/flags/uz.png
-#home/httpd/html/images/flags/va.png
-#home/httpd/html/images/flags/vc.png
-#home/httpd/html/images/flags/ve.png
-#home/httpd/html/images/flags/vg.png
-#home/httpd/html/images/flags/vi.png
-#home/httpd/html/images/flags/vn.png
-#home/httpd/html/images/flags/vu.png
-#home/httpd/html/images/flags/wf.png
-#home/httpd/html/images/flags/ws.png
-#home/httpd/html/images/flags/ye.png
-#home/httpd/html/images/flags/yt.png
-#home/httpd/html/images/flags/yu.png
-#home/httpd/html/images/flags/za.png
-#home/httpd/html/images/flags/zm.png
-#home/httpd/html/images/flags/zw.png
-#home/httpd/html/images/floppy.gif
-#home/httpd/html/images/forward.gif
-#home/httpd/html/images/header.png
-#home/httpd/html/images/header_icons.gif
-#home/httpd/html/images/heading-back.gif
-#home/httpd/html/images/help.gif
-#home/httpd/html/images/info.gif
-#home/httpd/html/images/iptux.png
-#home/httpd/html/images/logo_ipfire.gif
-#home/httpd/html/images/logout.gif
-#home/httpd/html/images/menu_item.gif
-#home/httpd/html/images/menu_left_bottom.gif
-#home/httpd/html/images/menu_left_selected.gif
-#home/httpd/html/images/menu_left_top.gif
-#home/httpd/html/images/menu_top_left.gif
-#home/httpd/html/images/menu_top_left_selected.gif
-#home/httpd/html/images/menu_top_right.gif
-#home/httpd/html/images/menu_top_right_selected.gif
-#home/httpd/html/images/null.gif
-#home/httpd/html/images/off.gif
-#home/httpd/html/images/on.gif
-#home/httpd/html/images/openvpn.gif
-#home/httpd/html/images/reload.gif
-#home/httpd/html/images/sflogo.png
-#home/httpd/html/images/stock_down-16.png
-#home/httpd/html/images/stock_ok.png
-#home/httpd/html/images/stock_stop.png
-#home/httpd/html/images/stock_up-16.png
-#home/httpd/html/images/table-header.gif
-#home/httpd/html/images/up.gif
-#home/httpd/html/images/urlfilter
-#home/httpd/html/images/urlfilter/1x1.gif
-#home/httpd/html/images/urlfilter/bg_cool_tux.jpg
-#home/httpd/html/images/urlfilter/bgcool.gif
-#home/httpd/html/images/urlfilter/gmg_tux_ip_fire.gif
-#home/httpd/html/images/urlfilter/led-green.gif
-#home/httpd/html/images/urlfilter/led-red.gif
-#home/httpd/html/images/wakeup.gif
-#home/httpd/html/images/web-support.png
-#home/httpd/html/include
-#home/httpd/html/include/content.css
-#home/httpd/html/include/menu.css
-#home/httpd/html/include/selectbox.js
-#home/httpd/html/include/style.css
-#home/httpd/html/index.cgi
-#home/httpd/html/ipfire_big.gif
-#home/httpd/html/redirect.cgi
+srv/web/ipfire/cgi-bin/aliases.cgi
+#srv/web/ipfire/cgi-bin/asterisk.cgi
+#srv/web/ipfire/cgi-bin/asterisk.cgi/calls
+#srv/web/ipfire/cgi-bin/asterisk.cgi/conf
+#srv/web/ipfire/cgi-bin/asterisk.cgi/status
+#srv/web/ipfire/cgi-bin/backup.cgi
+#srv/web/ipfire/cgi-bin/base.cgi
+srv/web/ipfire/cgi-bin/changepw.cgi
+srv/web/ipfire/cgi-bin/chpasswd.cgi
+srv/web/ipfire/cgi-bin/connections.cgi
+srv/web/ipfire/cgi-bin/connscheduler.cgi
+srv/web/ipfire/cgi-bin/country.cgi
+srv/web/ipfire/cgi-bin/credits.cgi
+srv/web/ipfire/cgi-bin/ddns.cgi
+srv/web/ipfire/cgi-bin/dhcp.cgi
+srv/web/ipfire/cgi-bin/dial
+srv/web/ipfire/cgi-bin/dial.cgi
+#srv/web/ipfire/cgi-bin/dial/dial.cgi
+#srv/web/ipfire/cgi-bin/dial/index.cgi
+srv/web/ipfire/cgi-bin/dmzholes.cgi
+srv/web/ipfire/cgi-bin/fwhits.cgi
+srv/web/ipfire/cgi-bin/graphs.cgi
+srv/web/ipfire/cgi-bin/gui.cgi
+srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
+srv/web/ipfire/cgi-bin/hosts.cgi
+srv/web/ipfire/cgi-bin/ids.cgi
+srv/web/ipfire/cgi-bin/index.cgi
+srv/web/ipfire/cgi-bin/ipinfo.cgi
+srv/web/ipfire/cgi-bin/iptables.cgi
+srv/web/ipfire/cgi-bin/logs.cgi
+#srv/web/ipfire/cgi-bin/logs.cgi/config.dat
+#srv/web/ipfire/cgi-bin/logs.cgi/firewalllog.dat
+#srv/web/ipfire/cgi-bin/logs.cgi/ids.dat
+#srv/web/ipfire/cgi-bin/logs.cgi/log.dat
+#srv/web/ipfire/cgi-bin/logs.cgi/proxylog.dat
+#srv/web/ipfire/cgi-bin/logs.cgi/summary.dat
+#srv/web/ipfire/cgi-bin/logs.cgi/urlfilter.dat
+srv/web/ipfire/cgi-bin/modem.cgi
+srv/web/ipfire/cgi-bin/netconfig.cgi
+srv/web/ipfire/cgi-bin/netstatus.cgi
+srv/web/ipfire/cgi-bin/networks.cgi
+srv/web/ipfire/cgi-bin/optionsfw.cgi
+srv/web/ipfire/cgi-bin/outgoingfw.cgi
+srv/web/ipfire/cgi-bin/ovpnfunc.pl
+srv/web/ipfire/cgi-bin/ovpnmain.cgi
+srv/web/ipfire/cgi-bin/pakfire.cgi
+srv/web/ipfire/cgi-bin/portfw.cgi
+srv/web/ipfire/cgi-bin/pppsetup.cgi
+srv/web/ipfire/cgi-bin/proxy.cgi
+srv/web/ipfire/cgi-bin/proxygraphs.cgi
+srv/web/ipfire/cgi-bin/qos.cgi
+srv/web/ipfire/cgi-bin/remote.cgi
+srv/web/ipfire/cgi-bin/samba.cgi
+srv/web/ipfire/cgi-bin/services.cgi
+srv/web/ipfire/cgi-bin/shaping.cgi
+srv/web/ipfire/cgi-bin/shutdown.cgi
+srv/web/ipfire/cgi-bin/status.cgi
+srv/web/ipfire/cgi-bin/time.cgi
+srv/web/ipfire/cgi-bin/traffic.cgi
+srv/web/ipfire/cgi-bin/traffics.cgi
+srv/web/ipfire/cgi-bin/upload.cgi
+srv/web/ipfire/cgi-bin/urlfilter.cgi
+srv/web/ipfire/cgi-bin/vpnmain.cgi
+srv/web/ipfire/cgi-bin/wakeonlan.cgi
+srv/web/ipfire/cgi-bin/webaccess.cgi
+srv/web/ipfire/cgi-bin/wireless.cgi
+srv/web/ipfire/cgi-bin/xtaccess.cgi
+srv/web/ipfire/html
+#srv/web/ipfire/html/blob.gif
+#srv/web/ipfire/html/dial.cgi
+#srv/web/ipfire/html/favicon.ico
+#srv/web/ipfire/html/images
+#srv/web/ipfire/html/images/add.gif
+#srv/web/ipfire/html/images/addblue.gif
+#srv/web/ipfire/html/images/addgreen.gif
+#srv/web/ipfire/html/images/background.gif
+#srv/web/ipfire/html/images/bounceback.png
+#srv/web/ipfire/html/images/boxbottom1.png
+#srv/web/ipfire/html/images/boxbottom2.png
+#srv/web/ipfire/html/images/boxbottom3.png
+#srv/web/ipfire/html/images/boxleft.png
+#srv/web/ipfire/html/images/boxright.png
+#srv/web/ipfire/html/images/boxtop1.png
+#srv/web/ipfire/html/images/boxtop2.png
+#srv/web/ipfire/html/images/boxtop3.png
+#srv/web/ipfire/html/images/clock.gif
+#srv/web/ipfire/html/images/delete.gif
+#srv/web/ipfire/html/images/down.gif
+#srv/web/ipfire/html/images/download.png
+#srv/web/ipfire/html/images/edit.gif
+#srv/web/ipfire/html/images/flags
+#srv/web/ipfire/html/images/flags/ad.png
+#srv/web/ipfire/html/images/flags/ae.png
+#srv/web/ipfire/html/images/flags/af.png
+#srv/web/ipfire/html/images/flags/ag.png
+#srv/web/ipfire/html/images/flags/ai.png
+#srv/web/ipfire/html/images/flags/al.png
+#srv/web/ipfire/html/images/flags/am.png
+#srv/web/ipfire/html/images/flags/an.png
+#srv/web/ipfire/html/images/flags/ao.png
+#srv/web/ipfire/html/images/flags/aq.png
+#srv/web/ipfire/html/images/flags/ar.png
+#srv/web/ipfire/html/images/flags/as.png
+#srv/web/ipfire/html/images/flags/at.png
+#srv/web/ipfire/html/images/flags/au.png
+#srv/web/ipfire/html/images/flags/aw.png
+#srv/web/ipfire/html/images/flags/az.png
+#srv/web/ipfire/html/images/flags/ba.png
+#srv/web/ipfire/html/images/flags/bb.png
+#srv/web/ipfire/html/images/flags/bd.png
+#srv/web/ipfire/html/images/flags/be.png
+#srv/web/ipfire/html/images/flags/bf.png
+#srv/web/ipfire/html/images/flags/bg.png
+#srv/web/ipfire/html/images/flags/bh.png
+#srv/web/ipfire/html/images/flags/bi.png
+#srv/web/ipfire/html/images/flags/bj.png
+#srv/web/ipfire/html/images/flags/bm.png
+#srv/web/ipfire/html/images/flags/bn.png
+#srv/web/ipfire/html/images/flags/bo.png
+#srv/web/ipfire/html/images/flags/br.png
+#srv/web/ipfire/html/images/flags/bs.png
+#srv/web/ipfire/html/images/flags/bt.png
+#srv/web/ipfire/html/images/flags/bv.png
+#srv/web/ipfire/html/images/flags/bw.png
+#srv/web/ipfire/html/images/flags/by.png
+#srv/web/ipfire/html/images/flags/bz.png
+#srv/web/ipfire/html/images/flags/ca.png
+#srv/web/ipfire/html/images/flags/cc.png
+#srv/web/ipfire/html/images/flags/cd.png
+#srv/web/ipfire/html/images/flags/cf.png
+#srv/web/ipfire/html/images/flags/cg.png
+#srv/web/ipfire/html/images/flags/ch.png
+#srv/web/ipfire/html/images/flags/ci.png
+#srv/web/ipfire/html/images/flags/ck.png
+#srv/web/ipfire/html/images/flags/cl.png
+#srv/web/ipfire/html/images/flags/cm.png
+#srv/web/ipfire/html/images/flags/cn.png
+#srv/web/ipfire/html/images/flags/co.png
+#srv/web/ipfire/html/images/flags/cr.png
+#srv/web/ipfire/html/images/flags/cs.png
+#srv/web/ipfire/html/images/flags/cu.png
+#srv/web/ipfire/html/images/flags/cv.png
+#srv/web/ipfire/html/images/flags/cx.png
+#srv/web/ipfire/html/images/flags/cy.png
+#srv/web/ipfire/html/images/flags/cz.png
+#srv/web/ipfire/html/images/flags/de.png
+#srv/web/ipfire/html/images/flags/dj.png
+#srv/web/ipfire/html/images/flags/dk.png
+#srv/web/ipfire/html/images/flags/dm.png
+#srv/web/ipfire/html/images/flags/do.png
+#srv/web/ipfire/html/images/flags/dz.png
+#srv/web/ipfire/html/images/flags/ec.png
+#srv/web/ipfire/html/images/flags/ee.png
+#srv/web/ipfire/html/images/flags/eg.png
+#srv/web/ipfire/html/images/flags/eh.png
+#srv/web/ipfire/html/images/flags/er.png
+#srv/web/ipfire/html/images/flags/es.png
+#srv/web/ipfire/html/images/flags/et.png
+#srv/web/ipfire/html/images/flags/eu.png
+#srv/web/ipfire/html/images/flags/fi.png
+#srv/web/ipfire/html/images/flags/fj.png
+#srv/web/ipfire/html/images/flags/fk.png
+#srv/web/ipfire/html/images/flags/fm.png
+#srv/web/ipfire/html/images/flags/fo.png
+#srv/web/ipfire/html/images/flags/fr.png
+#srv/web/ipfire/html/images/flags/ga.png
+#srv/web/ipfire/html/images/flags/gb.png
+#srv/web/ipfire/html/images/flags/gd.png
+#srv/web/ipfire/html/images/flags/ge.png
+#srv/web/ipfire/html/images/flags/gf.png
+#srv/web/ipfire/html/images/flags/gh.png
+#srv/web/ipfire/html/images/flags/gi.png
+#srv/web/ipfire/html/images/flags/gl.png
+#srv/web/ipfire/html/images/flags/gm.png
+#srv/web/ipfire/html/images/flags/gn.png
+#srv/web/ipfire/html/images/flags/gp.png
+#srv/web/ipfire/html/images/flags/gq.png
+#srv/web/ipfire/html/images/flags/gr.png
+#srv/web/ipfire/html/images/flags/gs.png
+#srv/web/ipfire/html/images/flags/gt.png
+#srv/web/ipfire/html/images/flags/gu.png
+#srv/web/ipfire/html/images/flags/gw.png
+#srv/web/ipfire/html/images/flags/gy.png
+#srv/web/ipfire/html/images/flags/hk.png
+#srv/web/ipfire/html/images/flags/hm.png
+#srv/web/ipfire/html/images/flags/hn.png
+#srv/web/ipfire/html/images/flags/hr.png
+#srv/web/ipfire/html/images/flags/ht.png
+#srv/web/ipfire/html/images/flags/hu.png
+#srv/web/ipfire/html/images/flags/id.png
+#srv/web/ipfire/html/images/flags/ie.png
+#srv/web/ipfire/html/images/flags/il.png
+#srv/web/ipfire/html/images/flags/in.png
+#srv/web/ipfire/html/images/flags/io.png
+#srv/web/ipfire/html/images/flags/iq.png
+#srv/web/ipfire/html/images/flags/ir.png
+#srv/web/ipfire/html/images/flags/is.png
+#srv/web/ipfire/html/images/flags/it.png
+#srv/web/ipfire/html/images/flags/jm.png
+#srv/web/ipfire/html/images/flags/jo.png
+#srv/web/ipfire/html/images/flags/jp.png
+#srv/web/ipfire/html/images/flags/ke.png
+#srv/web/ipfire/html/images/flags/kg.png
+#srv/web/ipfire/html/images/flags/kh.png
+#srv/web/ipfire/html/images/flags/ki.png
+#srv/web/ipfire/html/images/flags/km.png
+#srv/web/ipfire/html/images/flags/kn.png
+#srv/web/ipfire/html/images/flags/kp.png
+#srv/web/ipfire/html/images/flags/kr.png
+#srv/web/ipfire/html/images/flags/kw.png
+#srv/web/ipfire/html/images/flags/ky.png
+#srv/web/ipfire/html/images/flags/kz.png
+#srv/web/ipfire/html/images/flags/la.png
+#srv/web/ipfire/html/images/flags/lb.png
+#srv/web/ipfire/html/images/flags/lc.png
+#srv/web/ipfire/html/images/flags/li.png
+#srv/web/ipfire/html/images/flags/lk.png
+#srv/web/ipfire/html/images/flags/lr.png
+#srv/web/ipfire/html/images/flags/ls.png
+#srv/web/ipfire/html/images/flags/lt.png
+#srv/web/ipfire/html/images/flags/lu.png
+#srv/web/ipfire/html/images/flags/lv.png
+#srv/web/ipfire/html/images/flags/ly.png
+#srv/web/ipfire/html/images/flags/ma.png
+#srv/web/ipfire/html/images/flags/mc.png
+#srv/web/ipfire/html/images/flags/md.png
+#srv/web/ipfire/html/images/flags/mg.png
+#srv/web/ipfire/html/images/flags/mh.png
+#srv/web/ipfire/html/images/flags/mk.png
+#srv/web/ipfire/html/images/flags/ml.png
+#srv/web/ipfire/html/images/flags/mm.png
+#srv/web/ipfire/html/images/flags/mn.png
+#srv/web/ipfire/html/images/flags/mo.png
+#srv/web/ipfire/html/images/flags/mp.png
+#srv/web/ipfire/html/images/flags/mq.png
+#srv/web/ipfire/html/images/flags/mr.png
+#srv/web/ipfire/html/images/flags/ms.png
+#srv/web/ipfire/html/images/flags/mt.png
+#srv/web/ipfire/html/images/flags/mu.png
+#srv/web/ipfire/html/images/flags/mv.png
+#srv/web/ipfire/html/images/flags/mw.png
+#srv/web/ipfire/html/images/flags/mx.png
+#srv/web/ipfire/html/images/flags/my.png
+#srv/web/ipfire/html/images/flags/mz.png
+#srv/web/ipfire/html/images/flags/na.png
+#srv/web/ipfire/html/images/flags/nc.png
+#srv/web/ipfire/html/images/flags/ne.png
+#srv/web/ipfire/html/images/flags/nf.png
+#srv/web/ipfire/html/images/flags/ng.png
+#srv/web/ipfire/html/images/flags/ni.png
+#srv/web/ipfire/html/images/flags/nl.png
+#srv/web/ipfire/html/images/flags/no.png
+#srv/web/ipfire/html/images/flags/np.png
+#srv/web/ipfire/html/images/flags/nr.png
+#srv/web/ipfire/html/images/flags/nu.png
+#srv/web/ipfire/html/images/flags/nz.png
+#srv/web/ipfire/html/images/flags/om.png
+#srv/web/ipfire/html/images/flags/pa.png
+#srv/web/ipfire/html/images/flags/pe.png
+#srv/web/ipfire/html/images/flags/pf.png
+#srv/web/ipfire/html/images/flags/pg.png
+#srv/web/ipfire/html/images/flags/ph.png
+#srv/web/ipfire/html/images/flags/pk.png
+#srv/web/ipfire/html/images/flags/pl.png
+#srv/web/ipfire/html/images/flags/pm.png
+#srv/web/ipfire/html/images/flags/pn.png
+#srv/web/ipfire/html/images/flags/pr.png
+#srv/web/ipfire/html/images/flags/ps.png
+#srv/web/ipfire/html/images/flags/pt.png
+#srv/web/ipfire/html/images/flags/pw.png
+#srv/web/ipfire/html/images/flags/py.png
+#srv/web/ipfire/html/images/flags/qa.png
+#srv/web/ipfire/html/images/flags/re.png
+#srv/web/ipfire/html/images/flags/ro.png
+#srv/web/ipfire/html/images/flags/ru.png
+#srv/web/ipfire/html/images/flags/rw.png
+#srv/web/ipfire/html/images/flags/sa.png
+#srv/web/ipfire/html/images/flags/sb.png
+#srv/web/ipfire/html/images/flags/sc.png
+#srv/web/ipfire/html/images/flags/sd.png
+#srv/web/ipfire/html/images/flags/se.png
+#srv/web/ipfire/html/images/flags/sg.png
+#srv/web/ipfire/html/images/flags/sh.png
+#srv/web/ipfire/html/images/flags/si.png
+#srv/web/ipfire/html/images/flags/sj.png
+#srv/web/ipfire/html/images/flags/sk.png
+#srv/web/ipfire/html/images/flags/sl.png
+#srv/web/ipfire/html/images/flags/sm.png
+#srv/web/ipfire/html/images/flags/sn.png
+#srv/web/ipfire/html/images/flags/so.png
+#srv/web/ipfire/html/images/flags/sr.png
+#srv/web/ipfire/html/images/flags/st.png
+#srv/web/ipfire/html/images/flags/sv.png
+#srv/web/ipfire/html/images/flags/sy.png
+#srv/web/ipfire/html/images/flags/sz.png
+#srv/web/ipfire/html/images/flags/tc.png
+#srv/web/ipfire/html/images/flags/td.png
+#srv/web/ipfire/html/images/flags/tf.png
+#srv/web/ipfire/html/images/flags/tg.png
+#srv/web/ipfire/html/images/flags/th.png
+#srv/web/ipfire/html/images/flags/tj.png
+#srv/web/ipfire/html/images/flags/tk.png
+#srv/web/ipfire/html/images/flags/tl.png
+#srv/web/ipfire/html/images/flags/tm.png
+#srv/web/ipfire/html/images/flags/tn.png
+#srv/web/ipfire/html/images/flags/to.png
+#srv/web/ipfire/html/images/flags/tp.png
+#srv/web/ipfire/html/images/flags/tr.png
+#srv/web/ipfire/html/images/flags/tt.png
+#srv/web/ipfire/html/images/flags/tv.png
+#srv/web/ipfire/html/images/flags/tw.png
+#srv/web/ipfire/html/images/flags/tz.png
+#srv/web/ipfire/html/images/flags/ua.png
+#srv/web/ipfire/html/images/flags/ug.png
+#srv/web/ipfire/html/images/flags/um.png
+#srv/web/ipfire/html/images/flags/us.png
+#srv/web/ipfire/html/images/flags/uy.png
+#srv/web/ipfire/html/images/flags/uz.png
+#srv/web/ipfire/html/images/flags/va.png
+#srv/web/ipfire/html/images/flags/vc.png
+#srv/web/ipfire/html/images/flags/ve.png
+#srv/web/ipfire/html/images/flags/vg.png
+#srv/web/ipfire/html/images/flags/vi.png
+#srv/web/ipfire/html/images/flags/vn.png
+#srv/web/ipfire/html/images/flags/vu.png
+#srv/web/ipfire/html/images/flags/wf.png
+#srv/web/ipfire/html/images/flags/ws.png
+#srv/web/ipfire/html/images/flags/ye.png
+#srv/web/ipfire/html/images/flags/yt.png
+#srv/web/ipfire/html/images/flags/yu.png
+#srv/web/ipfire/html/images/flags/za.png
+#srv/web/ipfire/html/images/flags/zm.png
+#srv/web/ipfire/html/images/flags/zw.png
+#srv/web/ipfire/html/images/floppy.gif
+#srv/web/ipfire/html/images/forward.gif
+#srv/web/ipfire/html/images/header.png
+#srv/web/ipfire/html/images/header_icons.gif
+#srv/web/ipfire/html/images/heading-back.gif
+#srv/web/ipfire/html/images/help.gif
+#srv/web/ipfire/html/images/info.gif
+#srv/web/ipfire/html/images/iptux.png
+#srv/web/ipfire/html/images/logo_ipfire.gif
+#srv/web/ipfire/html/images/logout.gif
+#srv/web/ipfire/html/images/menu_item.gif
+#srv/web/ipfire/html/images/menu_left_bottom.gif
+#srv/web/ipfire/html/images/menu_left_selected.gif
+#srv/web/ipfire/html/images/menu_left_top.gif
+#srv/web/ipfire/html/images/menu_top_left.gif
+#srv/web/ipfire/html/images/menu_top_left_selected.gif
+#srv/web/ipfire/html/images/menu_top_right.gif
+#srv/web/ipfire/html/images/menu_top_right_selected.gif
+#srv/web/ipfire/html/images/null.gif
+#srv/web/ipfire/html/images/off.gif
+#srv/web/ipfire/html/images/on.gif
+#srv/web/ipfire/html/images/openvpn.gif
+#srv/web/ipfire/html/images/reload.gif
+#srv/web/ipfire/html/images/sflogo.png
+#srv/web/ipfire/html/images/stock_down-16.png
+#srv/web/ipfire/html/images/stock_ok.png
+#srv/web/ipfire/html/images/stock_stop.png
+#srv/web/ipfire/html/images/stock_up-16.png
+#srv/web/ipfire/html/images/table-header.gif
+#srv/web/ipfire/html/images/up.gif
+#srv/web/ipfire/html/images/urlfilter
+#srv/web/ipfire/html/images/urlfilter/1x1.gif
+#srv/web/ipfire/html/images/urlfilter/bg_cool_tux.jpg
+#srv/web/ipfire/html/images/urlfilter/bgcool.gif
+#srv/web/ipfire/html/images/urlfilter/gmg_tux_ip_fire.gif
+#srv/web/ipfire/html/images/urlfilter/led-green.gif
+#srv/web/ipfire/html/images/urlfilter/led-red.gif
+#srv/web/ipfire/html/images/wakeup.gif
+#srv/web/ipfire/html/images/web-support.png
+#srv/web/ipfire/html/include
+#srv/web/ipfire/html/include/content.css
+#srv/web/ipfire/html/include/menu.css
+#srv/web/ipfire/html/include/selectbox.js
+#srv/web/ipfire/html/include/style.css
+#srv/web/ipfire/html/index.cgi
+#srv/web/ipfire/html/ipfire_big.gif
+#srv/web/ipfire/html/redirect.cgi
index cf4e1de450324b9ab0aa28c1e40a42f7e3d66876..d66701c31a12dcce554a0fbce900c99d571e8b44 100644 (file)
@@ -1,4 +1,4 @@
-bin/[
+#bin/[
 bin/chgrp
 bin/chmod
 bin/chown
index 7d8b5e7fb11239763fa6a31c27ab80f6763a65ed..c57a8ca78850fd16549fcec87036a768aa6e3dbc 100644 (file)
@@ -1,4 +1,4 @@
-#home/httpd/html/graphs
+#srv/web/ipfire/html/graphs
 #usr/bin/rrdcgi
 usr/bin/rrdtool
 usr/bin/rrdupdate
index e24dea39ca46fe16f7b2b6b146861542b0adf7b7..e226ccd4137365f14f47b14de579eae8543d4817 100644 (file)
@@ -100,14 +100,14 @@ usr/local/bin/vpn-restart
 #usr/share/terminfo
 #usr/share/zoneinfo
 #var
-var/cache
+#var/cache
 var/empty
 #var/lib
 #var/lib/locate
 #var/lib/misc
 #var/local
 var/lock
-var/log
+#var/log
 var/log/btmp
 var/log/lastlog
 var/log/wtmp
@@ -115,5 +115,5 @@ var/mail
 #var/opt
 var/run
 var/run/utmp
-var/spool
+#var/spool
 var/tmp
index 06622133205fd6178185894e284667482d25878b..6c233ec6660685b79804e1eb0dca376086c17de4 100644 (file)
 * reiserfsprogs-3.6.19
 * rp-pppoe-3.8
 * rrdtool-1.2.15
-* rrdtool-1.2.15_dfghjk
 * rsync-2.6.8
 * samba-3.0.23b
 * screen-4.0.2
index 6e2bfbc8c2f08c630e8783116ac7cf5c33088fe3..e1e8b0d7422ffaece28059cc1c849aa6e76eeea6 100644 (file)
@@ -77,6 +77,7 @@ if ($cgiparams{'ACTION'} eq "$Lang::tr{'save'}")
        $mainsettings{'WINDOWWITHHOSTNAME'} = $cgiparams{'WINDOWWITHHOSTNAME'};
        $mainsettings{'PPPUPDOWNBEEP'} = $cgiparams{'PPPUPDOWNBEEP'};
        $mainsettings{'FX'} = $cgiparams{'FX'};
+       $mainsettings{'THEME'} = $cgiparams{'theme'};
        $mainsettings{'REFRESHINDEX'} = $cgiparams{'REFRESHINDEX'};
        &General::writehash("${General::swroot}/main/settings", \%mainsettings);
        &Lang::reload($cgiparams{'lang'});
@@ -100,6 +101,12 @@ if ($cgiparams{'ACTION'} eq "$Lang::tr{'save'}")
                $cgiparams{'FX'} = 'on';
        }
 
+       if ($mainsettings{'THEME'}) {
+               $cgiparams{'THEME'} = $mainsettings{'THEME'};
+       } else {
+               $cgiparams{'THEME'} = 'ipfire';
+       }
+
        if($mainsettings{'REFRESHINDEX'}) {
                $cgiparams{'REFRESHINDEX'} = $mainsettings{'REFRESHINDEX'};
        } else {
@@ -114,6 +121,7 @@ if ($cgiparams{'ACTION'} eq "$Lang::tr{'restore defaults'}")
        $cgiparams{'PPPUPDOWNBEEP'} = 'on';
        $cgiparams{'REFRESHINDEX'} = 'off';
        $cgiparams{'FX'} = 'on';
+       $cgiparams{'THEME'} = 'ipfire';
 }
 
 $checked{'WINDOWWITHHOSTNAME'}{'off'} = '';
@@ -192,6 +200,37 @@ END
        ;
 }
 
+print <<END
+</select></td></tr>
+<tr>
+    <td colspan='2'><hr /><p><b>$Lang::tr{'theme'}</b></td>
+</tr>
+<tr>
+    <td>&nbsp;</td>
+    <td><select name='theme'>
+END
+;
+
+my $dir = "/srv/web/ipfire/html/themes";
+local *DH;
+my ($item, $file);
+my @files;
+
+opendir (DH, $dir);
+while ($file = readdir (DH)) {
+       next if ( $file =~ /^\./ );
+       push (@files, $file);
+}
+closedir (DH);
+
+foreach $item (sort (@files)) {
+       if ( "$mainsettings{'THEME'}" eq "$item" ) {
+               print "<option value='$item' selected='selected'>$item</option>\n";
+       } else {
+               print "<option value='$item'>$item</option>\n";
+       }
+}
+
 print <<END
 </select></td></tr>
 <tr>
diff --git a/html/html/themes/ipfire/images/n1.gif b/html/html/themes/ipfire/images/n1.gif
new file mode 100644 (file)
index 0000000..6eb5161
Binary files /dev/null and b/html/html/themes/ipfire/images/n1.gif differ
diff --git a/html/html/themes/ipfire/images/n2.gif b/html/html/themes/ipfire/images/n2.gif
new file mode 100644 (file)
index 0000000..b92a19d
Binary files /dev/null and b/html/html/themes/ipfire/images/n2.gif differ
diff --git a/html/html/themes/ipfire/images/n3.gif b/html/html/themes/ipfire/images/n3.gif
new file mode 100644 (file)
index 0000000..6627c91
Binary files /dev/null and b/html/html/themes/ipfire/images/n3.gif differ
diff --git a/html/html/themes/ipfire/images/n4.gif b/html/html/themes/ipfire/images/n4.gif
new file mode 100644 (file)
index 0000000..8698525
Binary files /dev/null and b/html/html/themes/ipfire/images/n4.gif differ
diff --git a/html/html/themes/ipfire/images/n5.gif b/html/html/themes/ipfire/images/n5.gif
new file mode 100644 (file)
index 0000000..a032242
Binary files /dev/null and b/html/html/themes/ipfire/images/n5.gif differ
diff --git a/html/html/themes/ipfire/images/n6.gif b/html/html/themes/ipfire/images/n6.gif
new file mode 100644 (file)
index 0000000..ed1781c
Binary files /dev/null and b/html/html/themes/ipfire/images/n6.gif differ
diff --git a/html/html/themes/ipfire/images/spacer.gif b/html/html/themes/ipfire/images/spacer.gif
new file mode 100644 (file)
index 0000000..5bfd67a
Binary files /dev/null and b/html/html/themes/ipfire/images/spacer.gif differ
diff --git a/html/html/themes/ipfire/include/functions.pl b/html/html/themes/ipfire/include/functions.pl
new file mode 100644 (file)
index 0000000..3feaba0
--- /dev/null
@@ -0,0 +1,326 @@
+#!/usr/bin/perl
+
+sub showmenu() {
+    print <<EOF
+               <div id="menu">
+                       <ul>
+EOF
+;
+    foreach my $k1 ( sort keys %$menu ) {
+       if (! $menu->{$k1}{'enabled'}) {
+           next;
+       }
+       my $link = getlink($menu->{$k1});
+       if ($link eq '') {
+           next;
+       }
+       if (! is_menu_visible($link)) {
+           next;
+       }
+       if ($menu->{$k1}->{'selected'}) {
+           print "<li><a href=\"$link\" class=\"active\">$menu->{$k1}{'caption'}</a></li>";
+       } else {
+           print "<li><a href=\"$link\">$menu->{$k1}{'caption'}</a></li>";
+       }
+    }
+    print <<EOF
+                       </ul>
+               </div>
+EOF
+;    
+}
+
+sub getselected($) {
+    my $root = shift;
+    if (!$root) {
+       return 0;
+    }
+
+    foreach my $item (%$root) {
+       if ($root->{$item}{'selected'}) {
+           return $root->{$item};
+       }
+    }
+}
+
+sub showsubsection($$) {
+    my $root = shift;
+
+    if (! $root) {
+       return;
+    }
+    my $selected = getselected($root);
+    if (! $selected) {
+       return;
+    }
+    my $submenus = $selected->{'subMenu'};
+    if (! $submenus) {
+       return;
+    }
+
+    print <<EOF
+       <h4><span>Side</span>menu</h4>
+       <ul class="links">
+EOF
+;
+    foreach my $item (sort keys %$submenus) {
+       my $hash = $submenus->{$item};
+       if (! $hash->{'enabled'}) {
+           next;
+       }
+       my $link = getlink($hash);
+       if ($link eq '') {
+           next;
+       }
+       if (! is_menu_visible($link)) {
+           next;
+       }
+       if ($hash->{'selected'}) {
+           print '<li class="selected">';
+       } else {
+           print '<li>';
+       }
+
+       print "<a href=\"$link\">$hash->{'caption'}</a></li>";
+    }
+
+    print <<EOF
+       </ul>
+EOF
+;
+}
+
+
+sub showsubsubsection($) {
+    my $root = shift;
+    if (!$root) {
+       return;
+    }
+    my $selected = getselected($root);
+    if (! $selected) {
+       return
+    }
+    if (! $selected->{'subMenu'}) {
+       return
+    }
+
+    showsubsection($selected->{'subMenu'}, 'menu-subtop');
+}
+
+sub openpage {
+    my $title = shift;
+    my $boh = shift;
+    my $extrahead = shift;
+
+    @URI=split ('\?',  $ENV{'REQUEST_URI'} );
+    &readhash("${swroot}/main/settings", \%settings);
+    &genmenu();
+
+    my $h2 = gettitle($menu);
+
+    $title = "IPFire - $title";
+    if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
+        $title =  "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'} - $title"; 
+    }
+
+    print <<END
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html>
+  <head>
+  <title>$title</title>
+
+    $extrahead
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+END
+;
+    if ($settings{'FX'} ne 'off') {
+    print <<END
+    <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5,Transition=12)" />
+    <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5,Transition=12)" />
+END
+;
+    }
+    print <<END
+    <link rel="shortcut icon" href="/favicon.ico" />
+    <link rel="stylesheet" type="text/css" href="/themes/ipfire/include/style.css" />
+    <script language="javascript" type="text/javascript">
+      
+        function swapVisibility(id) {
+            el = document.getElementById(id);
+           if(el.style.display != 'block') {
+               el.style.display = 'block'
+           }
+           else {
+               el.style.display = 'none'
+           }
+        }
+    </script>
+
+  </head>
+  <body>
+<!-- IPFIRE HEADER -->
+
+<div id="header">
+
+       <div id="header_inner" class="fixed">
+
+               <div id="logo">
+                       <h1><span>IPFire</span></h1>
+                       <h2>$h2</h2>
+               </div>
+
+END
+;
+       &showmenu();
+
+print <<END            
+       </div>
+</div>
+
+<div id="main">
+       <div id="main_inner" class="fixed">
+               <div id="primaryContent_2columns">
+                       <div id="columnA_2columns">
+END
+;
+}
+
+sub openpagewithoutmenu {
+    my $title = shift;
+    my $boh = shift;
+    my $extrahead = shift;
+
+    @URI=split ('\?',  $ENV{'REQUEST_URI'} );
+    &readhash("${swroot}/main/settings", \%settings);
+    &genmenu();
+
+    my $h2 = gettitle($menu);
+
+    $title = "IPFire - $title";
+    if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
+        $title =  "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'} - $title"; 
+    }
+
+    print <<END
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html>
+  <head>
+  <title>$title</title>
+
+    $extrahead
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+END
+;
+    if ($settings{'FX'} ne 'off') {
+    print <<END
+    <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5,Transition=12)" />
+    <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5,Transition=12)" />
+END
+;
+    }
+    print <<END
+    <link rel="shortcut icon" href="/favicon.ico" />
+    <link rel="stylesheet" type="text/css" href="/include/style.css" />
+    <script language="javascript" type="text/javascript">
+      
+        function swapVisibility(id) {
+            el = document.getElementById(id);
+           if(el.style.display != 'block') {
+               el.style.display = 'block'
+           }
+           else {
+               el.style.display = 'none'
+           }
+        }
+    </script>
+
+  </head>
+  <body>
+<!-- IPFIRE HEADER -->
+
+<div id="header">
+
+       <div id="header_inner" class="fixed">
+
+               <div id="logo">
+                       <h1><span>IPFire</span></h1>
+                       <h2>$h2</h2>
+               </div>  
+       </div>
+</div>
+
+<div id="main">
+       <div id="main_inner" class="fixed">
+               <div id="primaryContent_2columns">
+                       <div id="columnA_2columns">
+END
+;
+}
+
+sub closepage () {
+    my $status = &connectionstatus();
+    $uptime = `/usr/bin/uptime`;
+       
+    print <<END
+                       </div>
+               </div>
+
+               <div id="secondaryContent_2columns">
+               
+                       <div id="columnC_2columns">
+END
+;
+    &showsubsection($menu);
+    &showsubsubsection($menu);
+
+       print <<END                     
+                       </div>
+               </div>
+
+               <br class="clear" />    
+               <div id="footer" class="fixed">
+                       <b>Status:</b> $status <b>Uptime:</b>$uptime <b>Version:</b> $FIREBUILD
+               </div>
+       </div>
+       </body>
+</html>
+END
+;
+}
+
+sub openbigbox
+{
+}
+
+sub closebigbox
+{
+}
+
+sub openbox
+{
+       $width = $_[0];
+       $align = $_[1];
+       $caption = $_[2];
+
+       print <<END
+<!-- openbox -->
+       <div class="post" align="$align">
+END
+;
+
+       if ($caption) { print "<h3>$caption</h3>\n"; } else { print "&nbsp;"; }
+}
+
+sub closebox
+{
+       print <<END
+       </div>
+       <br class="clear" />
+       <!-- closebox -->
+END
+;
+}
+
+1;
diff --git a/html/html/themes/ipfire/include/style.css b/html/html/themes/ipfire/include/style.css
new file mode 100644 (file)
index 0000000..7149c2a
--- /dev/null
@@ -0,0 +1,430 @@
+/*
+
+       Nonzero1.0 by nodethirtythree design
+       http://www.nodethirtythree.com
+       missing in a maze
+
+*/
+
+/* This controls the width of the fluid width layouts */
+
+div.fluid
+{
+width: 90% !important;
+}
+
+/* This controls the width of the fixed width layouts */
+
+div.fixed
+{
+width: 950px !important;
+}
+
+/* Basic Stuff */
+
+*
+{
+margin: 0em;
+padding: 0em;
+}
+
+body
+{
+background-color: #fff;
+color: #585858;
+font-size: 9pt;
+font-family: "trebuchet ms", helvetica, sans-serif;
+}
+
+h1,h2,h3,h4,h5,h6
+{
+font-weight: normal;
+letter-spacing: -1px;
+text-transform: lowercase;
+text-align: left;
+}
+
+h3,h4,h5,h6
+{
+color: #66000F;
+}
+
+h1 span
+{
+font-weight: bold;
+}
+
+h3 span
+{
+font-weight: bold;
+}
+
+h4 span
+{
+font-weight: bold;
+}
+
+br.clear
+{
+clear: both;
+}
+
+img
+{
+padding: 3px;
+border: solid 1px #e1e1e1;
+}
+
+img.floatTL
+{
+float: left;
+margin-right: 1.5em;
+margin-bottom: 1.5em;
+margin-top: 0.5em;
+}
+
+a
+{
+text-decoration: underline;
+color: #D90000;
+}
+
+a:hover
+{
+text-decoration: none;
+}
+
+ul.links
+{
+list-style: none;
+}
+
+ul.links li
+{
+line-height: 2em;
+}
+
+ul.links li.first
+{
+}
+
+p
+{
+line-height: 1.8em;
+}
+
+/* Header */
+
+#header
+{
+width:100%;
+height:122px;
+background: #440000 url('/themes/ipfire/images/n1.gif') repeat-x;
+}
+
+#header_inner
+{
+position: relative;
+width: 950px;
+height:122px;
+margin: 0 auto;
+}
+
+/* Logo */
+
+#logo
+{
+position: absolute;
+bottom: 0.6em;
+}
+
+#logo h1
+{
+display: inline;
+color: #fff;
+font-size: 2.6em;
+}
+
+#logo h2
+{
+display: inline;
+padding-left: 0.5em;
+color: #E5CCD0;
+font-size: 1.0em;
+}
+
+/* Menu */
+
+#menu
+{
+position: absolute;
+right: 0em;
+bottom: 0em;
+}
+
+#menu ul
+{
+list-style: none;
+}
+
+#menu li
+{
+float: left;
+}
+
+#menu li a
+{
+margin-left: 0.5em;
+display: block;
+padding: 1.1em 1.4em 1.0em 1.4em;
+background: #fff url('/themes/ipfire/images/n4.gif') repeat-x;
+border: solid 1px #fff;
+color: #616161;
+font-weight: bold;
+font-size: 1.0em;
+text-transform: lowercase;
+text-decoration: none;
+}
+
+#menu li a.active
+{
+background: #CA2F2F url('/themes/ipfire/images/n3.gif') repeat-x;
+color: #fff;
+border: solid 1px #A94B4B;
+}
+
+/* Main */
+
+#main
+{
+background: #fff url('/themes/ipfire/images/n2.gif') 0px 1px repeat-x;
+}
+
+#main_inner p
+{
+text-align: justify;
+margin-bottom: 2.0em;
+}
+
+#main_inner ul
+{
+margin-bottom: 2.0em;
+}
+
+#main_inner
+{
+position: relative;
+width: 950px;
+margin: 0 auto;
+padding-top: 3.5em;
+}
+
+#main_inner h3,h4
+{
+border-bottom: dotted 1px #E1E1E1;
+position: relative;
+}
+
+#main_inner h3
+{
+font-size: 2.1em;
+padding-bottom: 0.1em;
+margin-bottom: 0.8em;
+}
+
+#main_inner h4
+{
+font-size: 1.2em;
+padding-bottom: 0.175em;
+margin-bottom: 1.4em;
+margin-top: 0.95em;
+}
+
+#main_inner .post
+{
+position: relative;
+}
+
+#main_inner .post h3
+{
+position: relative;
+font-size: 1.7em;
+padding-bottom: 1.2em;
+}
+
+#main_inner .post ul.post_info
+{
+list-style: none;
+position: absolute;
+top: 3em;
+font-size: 0.8em;
+}
+
+#main_inner .post ul.post_info li
+{
+background-position: 0em 0.2em;
+background-repeat: no-repeat;
+display: inline;
+padding-left: 18px;
+}
+
+#main_inner .post ul.post_info li.date
+{
+background-image: url('/themes/ipfire/images/n5.gif');
+}
+
+#main_inner .post ul.post_info li.comments
+{
+background-image: url('/themes/ipfire/images/n6.gif');
+margin-left: 1.1em;
+}
+
+/* Footer */
+
+#footer
+{
+width: 950px;
+margin: 0 auto;
+text-align: center;
+clear: both;
+border-top: dotted 1px #E1E1E1;
+margin-top: 1.0em;
+margin-bottom: 1.0em;
+padding-top: 1.0em;
+text-transform: lowercase;
+}
+
+/* Search */
+
+input.button
+{
+background: #CA2F2F url('/themes/ipfire/images/n3.gif') repeat-x;
+color: #fff;
+border: solid 1px #A94B4B;
+font-weight: bold;
+text-transform: lowercase;
+font-size: 0.8em;
+height: 2.0em;
+}
+
+input.text
+{
+border: solid 1px #F1F1F1;
+font-size: 1.0em;
+padding: 0.25em 0.25em 0.25em 0.25em;
+}
+
+#search
+{
+position: relative;
+width: 100%;
+margin-bottom: 2.0em;
+}
+
+#search input.text
+{
+position: absolute;
+top: 0em;
+left: 0em;
+width: 9.5em;
+}
+
+#search input.button
+{
+position: absolute;
+top: 0em;
+right: 0em;
+min-width: 2.0em;
+max-width: 2.5em;
+}
+
+/* LAYOUT - 3 COLUMNS */
+
+       /* Primary content */
+       
+       #primaryContent_3columns
+       {
+       position: relative;
+       margin-right: 34em;
+       }
+       
+       #columnA_3columns
+       {
+       position: relative;
+       float: left;
+       width: 100%;
+       margin-right: -34em;
+       padding-right: 2em;
+       }
+       
+       /* Secondary Content */
+       
+       #secondaryContent_3columns
+       {
+       float: right;
+       }
+       
+       #columnB_3columns
+       {
+       width: 13.0em;
+       float: left;
+       padding: 0em 2em 0.5em 2em;
+       border-left: dotted 1px #E1E1E1;
+       }
+       
+       #columnC_3columns
+       {
+       width: 13.0em;
+       float: left;
+       padding: 0em 0em 0.5em 2em;
+       border-left: dotted 1px #E1E1E1;
+       }
+       
+/* LAYOUT - 2 COLUMNS */
+
+       /* Primary content */
+       
+       #primaryContent_2columns
+       {
+       position: relative;
+       margin-right: 17em;
+       }
+       
+       #columnA_2columns
+       {
+       position: relative;
+       float: left;
+       width: 100%;
+       margin-right: -17em;
+       padding-right: 2em;
+       }
+       
+       /* Secondary Content */
+       
+       #secondaryContent_2columns
+       {
+       float: right;
+       }
+       
+       #columnC_2columns
+       {
+       width: 13.0em;
+       float: left;
+       padding: 0em 0em 0.5em 2em;
+       border-left: dotted 1px #E1E1E1;
+       }
+
+/* LAYOUT - COLUMNLESS */
+
+       /* Primary content */
+       
+       #primaryContent_columnless
+       {
+       position: relative;
+       }
+       
+       #columnA_columnless
+       {
+       position: relative;
+       width: 100%;
+       }
index df16290bd1b431b21e5f049486e9392374b799d9..22070fa2261047459012c5654751116f80fca5e6 100644 (file)
 'ConnSched up' => 'Hoch',
 'ConnSched ipsecstart' => 'IPSec (neu)starten',
 'ConnSched ipsecstop' => 'IPSec stop',
+'theme' => 'Style',
 
 ); 
 
index 40db0bdb164862cffa3bc05efe3a4fd8d44d507a..5d2c4d0df1c2a0860c30e4e94897484a81970d96 100644 (file)
 'ConnSched up' => 'Up',
 'ConnSched ipsecstart' => 'IPSec (re)start',
 'ConnSched ipsecstop' => 'IPSec stop',
+'theme' => 'Theme',
 
 );