From: ms Date: Sun, 28 Oct 2007 20:19:50 +0000 (+0000) Subject: Made a nice site for source.ipfire.org. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ff59c7c2275adffd22bbaf3b813cdedf3591e9f;p=ipfire.org.git Made a nice site for source.ipfire.org. git-svn-id: http://svn.ipfire.org/svn/ipfire/branches/www.ipfire.org/trunk@1023 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/de/source.shtml b/de/source.shtml new file mode 100644 index 00000000..c02025b6 --- /dev/null +++ b/de/source.shtml @@ -0,0 +1,66 @@ + + +
+ +
+ +
+ +
+ +

Sourcecode-Center

+ Something scenic + +

Hier, im Sourcecode-Center auf source.ipfire.org + findet man alles an Code, was jemals im IPFire war, sein wird und + momentan ist. +

+ +
+ +
+ +

Liste des Sourcecodes

+ +

+ +

+
+ +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +

Development Zone

+ + +
+ +
+ +
+ +
+ +
+ + + diff --git a/en/source.shtml b/en/source.shtml new file mode 100644 index 00000000..7281ef6f --- /dev/null +++ b/en/source.shtml @@ -0,0 +1,67 @@ + + +
+ +
+ +
+ +
+ +

source code center

+ Something scenic + +

Here on source.ipfire.org you are able to find + everything that is included in the ipfire distribution.
+ There is also the code to find that was included some time ago + and the code that will be sometime in ipfire. +

+ +
+ +
+ +

List of source code

+ +

+ +

+
+ +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +

Development Zone

+ + +
+ +
+ +
+ +
+ +
+ + + diff --git a/header.shtml b/header.shtml index 64b0eb30..989e55ee 100644 --- a/header.shtml +++ b/header.shtml @@ -3,7 +3,7 @@ - www.ipfire.org + <!--#echo var="SERVER_NAME" --> @@ -20,16 +20,18 @@
- english - german + " >english + " >german
diff --git a/index.pl b/index.pl index 5ab359bf..dd630fca 100755 --- a/index.pl +++ b/index.pl @@ -1,4 +1,13 @@ #!/usr/bin/perl print "Status: 302 Moved\n"; -print "Location: /de/\n\n"; +print "Pragma: no-cache\n"; + +if ($ENV{'SERVER_NAME'} eq "source.ipfire.org") { + print "Location: /en/source.shtml\n"; +} else { + print "Location: /en/index.shtml\n"; +} + +# End http header... +print "\n";