git.schokokeks.org
Repositories
Help
Report an Issue
tor-webwml.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
c18f0dd52
Branches
Tags
bridges
docs-debian
jobs
master
press-clips
tor-webwml.git
trunk
cgi-bin
languageswitch.cgi
Added 19 FAQ entries
Matt Pagan
commited
c18f0dd52
at 2013-08-26 04:06:05
languageswitch.cgi
Blame
History
Raw
#!/usr/bin/env perl # This CGI tries to do as little as possible. A URL is passed from the languages # dropdown form generated in /include/foot.wmi and the client is redirected to that page use CGI qw(:standard); my $lang = param('Language'); print "Status: 302 Moved\nLocation: /$lang\n\n";