git.schokokeks.org
Repositories
Help
Report an Issue
tor-webwml.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
2a9aaa802
Branches
Tags
bridges
docs-debian
jobs
master
press-clips
tor-webwml.git
docs
de
sidenav.wmi
first cut of the new, shiny tor website as wml.
Andrew Lewman
commited
2a9aaa802
at 2010-07-09 03:55:22
sidenav.wmi
Blame
History
Raw
## translation metadata # Revision: $Revision: 0 $ # Translation-Priority: 2-medium # this structure defines the side nav bar for the /about pages # and is the input for include/side.wmi # fields: # # url - the path to the wml page, as used the the <page> tag. This tag ensures # that links will point to the current language if supported, and alternately # the english version # # txt - the link text to be displayed. Different translations will # need to supply alternate txt <: my $sidenav; $sidenav = [ {'url' => 'docs/documentation', 'txt' => 'Documentation Overview', }, { 'url' => 'docs/installguide', 'txt' => 'Installation Guides', 'subelements' => [ {'url' => 'docs/tor-doc-windows', 'txt' => 'Installing on Windows', }, {'url' => 'docs/tor-doc-unix', 'txt' => 'Installing on Linux/BSD/Unix', }, {'url' => 'docs/tor-doc-osx', 'txt' => 'Installing on Mac OS X', }, {'url' => 'docs/tor-doc-web', 'txt' => 'Configuring your browser to use Tor', }], }, {'url' => 'docs/manual', 'txt' => 'Manuals', 'subelements' => [ {'url' => 'docs/tor-doc-relay', 'txt' => 'Configuring a Relay', }, {'url' => 'docs/tor-hidden-service', 'txt' => 'Configuring a Hidden Service', }, {'url' => 'docs/running-a-mirror', 'txt' => 'Configuring a Mirror', }, {'url' => 'docs/tor-manual', 'txt' => 'Tor Manual', }, {'url' => 'docs/tor-manual-dev', 'txt' => 'Tor Developer Manual', }], }, {'url' => 'docs/glossary', 'txt' => 'Glossary', }, { 'url' => 'http://wiki.torproject.org', 'txt' => 'Tor Wiki', }, {'url' => 'docs/faq', 'txt' => 'FAQ', #maybe stick this in about instead... 'subelements' => [ {'url' => 'docs/faq-abuse', 'txt' => 'Abuse FAQ', }, {'url' => 'docs/trademark-faq', 'txt' => 'Trademark FAQ', }] }, ]; :>