Runa A. Sandvik commited on 2011-03-09 14:06:44
Zeige 22 geänderte Dateien mit 1114 Einfügungen und 2 Löschungen.
| ... | ... |
@@ -17,8 +17,8 @@ WMLOPT = \ |
| 17 | 17 |
-D DEVTAG=$(DEVTAG) \ |
| 18 | 18 |
-D STABLETAG=$(STABLETAG) |
| 19 | 19 |
|
| 20 |
-#LANGS=ar bms de en es et fa it fi fr ja ko nl no pl pt ru se tr zh-cn |
|
| 21 |
-LANGS=en |
|
| 20 |
+LANGS=ar bms de en es et fa it fi fr ja ko nl no pl pt ru se tr zh-cn |
|
| 21 |
+#LANGS=en |
|
| 22 | 22 |
|
| 23 | 23 |
WMLFILES=$(wildcard $(patsubst %, %/*.wml, $(LANGS))) |
| 24 | 24 |
WMIFILES=$(wildcard $(patsubst %, %/*.wmi, $(LANGS)) $(WMLBASE)/include/*.wmi ) |
| ... | ... |
@@ -0,0 +1,56 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'about/overview',
|
|
| 21 |
+ 'txt' => 'Tor Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {'url' => 'about/torusers',
|
|
| 24 |
+ 'txt' => 'Users of Tor', |
|
| 25 |
+ }, |
|
| 26 |
+ |
|
| 27 |
+ {'url' => 'about/corepeople',
|
|
| 28 |
+ 'txt' => 'Tor People', |
|
| 29 |
+ 'subelements' => [ |
|
| 30 |
+ {'url' => 'about/board',
|
|
| 31 |
+ 'txt' => 'Board of Directors', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'about/translators',
|
|
| 34 |
+ 'txt' => 'Translators', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'about/volunteers',
|
|
| 37 |
+ 'txt' => 'Volunteers', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'about/contributors',
|
|
| 40 |
+ 'txt' => 'Past Contributors', |
|
| 41 |
+ }] |
|
| 42 |
+ }, |
|
| 43 |
+ {'url' => 'about/sponsors',
|
|
| 44 |
+ 'txt' => 'Sponsors', |
|
| 45 |
+ }, |
|
| 46 |
+ {'url' => 'about/financials',
|
|
| 47 |
+ 'txt' => 'Financial Reports', |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'projects/projects',
|
|
| 50 |
+ 'txt' => 'Projects', |
|
| 51 |
+ }, |
|
| 52 |
+ {'url' => 'docs/documentation',
|
|
| 53 |
+ 'txt' => 'Documentation', |
|
| 54 |
+ }, |
|
| 55 |
+ ]; |
|
| 56 |
+:> |
| ... | ... |
@@ -0,0 +1,56 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'about/overview',
|
|
| 21 |
+ 'txt' => 'Tor Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {'url' => 'about/torusers',
|
|
| 24 |
+ 'txt' => 'Users of Tor', |
|
| 25 |
+ }, |
|
| 26 |
+ |
|
| 27 |
+ {'url' => 'about/corepeople',
|
|
| 28 |
+ 'txt' => 'Tor People', |
|
| 29 |
+ 'subelements' => [ |
|
| 30 |
+ {'url' => 'about/board',
|
|
| 31 |
+ 'txt' => 'Board of Directors', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'about/translators',
|
|
| 34 |
+ 'txt' => 'Translators', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'about/volunteers',
|
|
| 37 |
+ 'txt' => 'Volunteers', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'about/contributors',
|
|
| 40 |
+ 'txt' => 'Past Contributors', |
|
| 41 |
+ }] |
|
| 42 |
+ }, |
|
| 43 |
+ {'url' => 'about/sponsors',
|
|
| 44 |
+ 'txt' => 'Sponsors', |
|
| 45 |
+ }, |
|
| 46 |
+ {'url' => 'about/financials',
|
|
| 47 |
+ 'txt' => 'Financial Reports', |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'projects/projects',
|
|
| 50 |
+ 'txt' => 'Projects', |
|
| 51 |
+ }, |
|
| 52 |
+ {'url' => 'docs/documentation',
|
|
| 53 |
+ 'txt' => 'Documentation', |
|
| 54 |
+ }, |
|
| 55 |
+ ]; |
|
| 56 |
+:> |
| ... | ... |
@@ -0,0 +1,56 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'about/overview',
|
|
| 21 |
+ 'txt' => 'Tor Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {'url' => 'about/torusers',
|
|
| 24 |
+ 'txt' => 'Users of Tor', |
|
| 25 |
+ }, |
|
| 26 |
+ |
|
| 27 |
+ {'url' => 'about/corepeople',
|
|
| 28 |
+ 'txt' => 'Tor People', |
|
| 29 |
+ 'subelements' => [ |
|
| 30 |
+ {'url' => 'about/board',
|
|
| 31 |
+ 'txt' => 'Board of Directors', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'about/translators',
|
|
| 34 |
+ 'txt' => 'Translators', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'about/volunteers',
|
|
| 37 |
+ 'txt' => 'Volunteers', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'about/contributors',
|
|
| 40 |
+ 'txt' => 'Past Contributors', |
|
| 41 |
+ }] |
|
| 42 |
+ }, |
|
| 43 |
+ {'url' => 'about/sponsors',
|
|
| 44 |
+ 'txt' => 'Sponsors', |
|
| 45 |
+ }, |
|
| 46 |
+ {'url' => 'about/financials',
|
|
| 47 |
+ 'txt' => 'Financial Reports', |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'projects/projects',
|
|
| 50 |
+ 'txt' => 'Projects', |
|
| 51 |
+ }, |
|
| 52 |
+ {'url' => 'docs/documentation',
|
|
| 53 |
+ 'txt' => 'Documentation', |
|
| 54 |
+ }, |
|
| 55 |
+ ]; |
|
| 56 |
+:> |
| ... | ... |
@@ -0,0 +1,56 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'about/overview',
|
|
| 21 |
+ 'txt' => 'Tor Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {'url' => 'about/torusers',
|
|
| 24 |
+ 'txt' => 'Users of Tor', |
|
| 25 |
+ }, |
|
| 26 |
+ |
|
| 27 |
+ {'url' => 'about/corepeople',
|
|
| 28 |
+ 'txt' => 'Tor People', |
|
| 29 |
+ 'subelements' => [ |
|
| 30 |
+ {'url' => 'about/board',
|
|
| 31 |
+ 'txt' => 'Board of Directors', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'about/translators',
|
|
| 34 |
+ 'txt' => 'Translators', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'about/volunteers',
|
|
| 37 |
+ 'txt' => 'Volunteers', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'about/contributors',
|
|
| 40 |
+ 'txt' => 'Past Contributors', |
|
| 41 |
+ }] |
|
| 42 |
+ }, |
|
| 43 |
+ {'url' => 'about/sponsors',
|
|
| 44 |
+ 'txt' => 'Sponsors', |
|
| 45 |
+ }, |
|
| 46 |
+ {'url' => 'about/financials',
|
|
| 47 |
+ 'txt' => 'Financial Reports', |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'projects/projects',
|
|
| 50 |
+ 'txt' => 'Projects', |
|
| 51 |
+ }, |
|
| 52 |
+ {'url' => 'docs/documentation',
|
|
| 53 |
+ 'txt' => 'Documentation', |
|
| 54 |
+ }, |
|
| 55 |
+ ]; |
|
| 56 |
+:> |
| ... | ... |
@@ -0,0 +1,56 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'about/overview',
|
|
| 21 |
+ 'txt' => 'Tor Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {'url' => 'about/torusers',
|
|
| 24 |
+ 'txt' => 'Users of Tor', |
|
| 25 |
+ }, |
|
| 26 |
+ |
|
| 27 |
+ {'url' => 'about/corepeople',
|
|
| 28 |
+ 'txt' => 'Tor People', |
|
| 29 |
+ 'subelements' => [ |
|
| 30 |
+ {'url' => 'about/board',
|
|
| 31 |
+ 'txt' => 'Board of Directors', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'about/translators',
|
|
| 34 |
+ 'txt' => 'Translators', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'about/volunteers',
|
|
| 37 |
+ 'txt' => 'Volunteers', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'about/contributors',
|
|
| 40 |
+ 'txt' => 'Past Contributors', |
|
| 41 |
+ }] |
|
| 42 |
+ }, |
|
| 43 |
+ {'url' => 'about/sponsors',
|
|
| 44 |
+ 'txt' => 'Sponsors', |
|
| 45 |
+ }, |
|
| 46 |
+ {'url' => 'about/financials',
|
|
| 47 |
+ 'txt' => 'Financial Reports', |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'projects/projects',
|
|
| 50 |
+ 'txt' => 'Projects', |
|
| 51 |
+ }, |
|
| 52 |
+ {'url' => 'docs/documentation',
|
|
| 53 |
+ 'txt' => 'Documentation', |
|
| 54 |
+ }, |
|
| 55 |
+ ]; |
|
| 56 |
+:> |
| ... | ... |
@@ -0,0 +1,97 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'docs/documentation',
|
|
| 21 |
+ 'txt' => 'Documentation Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {
|
|
| 24 |
+ 'url' => 'docs/installguide', |
|
| 25 |
+ 'txt' => 'Installation Guides', |
|
| 26 |
+ 'subelements' => [ |
|
| 27 |
+ {'url' => 'docs/tor-doc-windows',
|
|
| 28 |
+ 'txt' => 'Installing on Windows', |
|
| 29 |
+ }, |
|
| 30 |
+ {'url' => 'docs/tor-doc-unix',
|
|
| 31 |
+ 'txt' => 'Installing on Linux/BSD/Unix', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'docs/tor-doc-osx',
|
|
| 34 |
+ 'txt' => 'Installing on Mac OS X', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'docs/android',
|
|
| 37 |
+ 'txt' => 'Installing on Android', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'docs/N900',
|
|
| 40 |
+ 'txt' => 'Installing on Maemo/N900', |
|
| 41 |
+ }, |
|
| 42 |
+ {'url' => 'docs/verifying-signatures',
|
|
| 43 |
+ 'txt' => 'Verify our GPG signatures', |
|
| 44 |
+ }, |
|
| 45 |
+ {'url' => 'docs/tor-doc-web',
|
|
| 46 |
+ 'txt' => 'Configuring your browser to use Tor', |
|
| 47 |
+ }], |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'docs/manual',
|
|
| 50 |
+ 'txt' => 'Manuals', |
|
| 51 |
+ 'subelements' => [ |
|
| 52 |
+ {'url' => 'docs/tor-doc-relay',
|
|
| 53 |
+ 'txt' => 'Configuring a Relay', |
|
| 54 |
+ }, |
|
| 55 |
+ {'url' => 'docs/tor-hidden-service',
|
|
| 56 |
+ 'txt' => 'Configuring a Hidden Service', |
|
| 57 |
+ }, |
|
| 58 |
+ {'url' => 'docs/bridges',
|
|
| 59 |
+ 'txt' => 'Configuring a Bridge Relay', |
|
| 60 |
+ }, |
|
| 61 |
+ {'url' => 'docs/running-a-mirror',
|
|
| 62 |
+ 'txt' => 'Configuring a Mirror', |
|
| 63 |
+ }, |
|
| 64 |
+# {'url' => 'docs/tor-manual',
|
|
| 65 |
+# 'txt' => 'Tor -stable Manual', |
|
| 66 |
+# }, |
|
| 67 |
+ {'url' => 'docs/tor-manual-dev',
|
|
| 68 |
+ 'txt' => 'Tor -alpha Manual', |
|
| 69 |
+ }, |
|
| 70 |
+ {'url' => 'docs/proxychain',
|
|
| 71 |
+ 'txt' => 'Configuring Tor to use a Proxy Server', |
|
| 72 |
+ }], |
|
| 73 |
+ }, |
|
| 74 |
+ {
|
|
| 75 |
+ 'url' => '<wiki>', |
|
| 76 |
+ 'txt' => 'Tor Wiki', |
|
| 77 |
+ }, |
|
| 78 |
+ {'url' => 'docs/faq',
|
|
| 79 |
+ 'txt' => 'General FAQ', |
|
| 80 |
+ }, |
|
| 81 |
+ {'url' => 'torbutton/torbutton-faq',
|
|
| 82 |
+ 'txt' => 'Torbutton FAQ', |
|
| 83 |
+ }, |
|
| 84 |
+ {'url' => 'docs/faq-abuse',
|
|
| 85 |
+ 'txt' => 'Abuse FAQ', |
|
| 86 |
+ }, |
|
| 87 |
+ {'url' => 'docs/trademark-faq',
|
|
| 88 |
+ 'txt' => 'Trademark FAQ', |
|
| 89 |
+ }, |
|
| 90 |
+ {'url' => 'eff/tor-legal-faq',
|
|
| 91 |
+ 'txt' => 'Tor Legal FAQ', |
|
| 92 |
+ }, |
|
| 93 |
+ {'url' => 'eff/tor-dmca-response',
|
|
| 94 |
+ 'txt' => 'Tor DMCA Response', |
|
| 95 |
+ }, |
|
| 96 |
+ ]; |
|
| 97 |
+:> |
| ... | ... |
@@ -0,0 +1,97 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'docs/documentation',
|
|
| 21 |
+ 'txt' => 'Documentation Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {
|
|
| 24 |
+ 'url' => 'docs/installguide', |
|
| 25 |
+ 'txt' => 'Installation Guides', |
|
| 26 |
+ 'subelements' => [ |
|
| 27 |
+ {'url' => 'docs/tor-doc-windows',
|
|
| 28 |
+ 'txt' => 'Installing on Windows', |
|
| 29 |
+ }, |
|
| 30 |
+ {'url' => 'docs/tor-doc-unix',
|
|
| 31 |
+ 'txt' => 'Installing on Linux/BSD/Unix', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'docs/tor-doc-osx',
|
|
| 34 |
+ 'txt' => 'Installing on Mac OS X', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'docs/android',
|
|
| 37 |
+ 'txt' => 'Installing on Android', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'docs/N900',
|
|
| 40 |
+ 'txt' => 'Installing on Maemo/N900', |
|
| 41 |
+ }, |
|
| 42 |
+ {'url' => 'docs/verifying-signatures',
|
|
| 43 |
+ 'txt' => 'Verify our GPG signatures', |
|
| 44 |
+ }, |
|
| 45 |
+ {'url' => 'docs/tor-doc-web',
|
|
| 46 |
+ 'txt' => 'Configuring your browser to use Tor', |
|
| 47 |
+ }], |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'docs/manual',
|
|
| 50 |
+ 'txt' => 'Manuals', |
|
| 51 |
+ 'subelements' => [ |
|
| 52 |
+ {'url' => 'docs/tor-doc-relay',
|
|
| 53 |
+ 'txt' => 'Configuring a Relay', |
|
| 54 |
+ }, |
|
| 55 |
+ {'url' => 'docs/tor-hidden-service',
|
|
| 56 |
+ 'txt' => 'Configuring a Hidden Service', |
|
| 57 |
+ }, |
|
| 58 |
+ {'url' => 'docs/bridges',
|
|
| 59 |
+ 'txt' => 'Configuring a Bridge Relay', |
|
| 60 |
+ }, |
|
| 61 |
+ {'url' => 'docs/running-a-mirror',
|
|
| 62 |
+ 'txt' => 'Configuring a Mirror', |
|
| 63 |
+ }, |
|
| 64 |
+# {'url' => 'docs/tor-manual',
|
|
| 65 |
+# 'txt' => 'Tor -stable Manual', |
|
| 66 |
+# }, |
|
| 67 |
+ {'url' => 'docs/tor-manual-dev',
|
|
| 68 |
+ 'txt' => 'Tor -alpha Manual', |
|
| 69 |
+ }, |
|
| 70 |
+ {'url' => 'docs/proxychain',
|
|
| 71 |
+ 'txt' => 'Configuring Tor to use a Proxy Server', |
|
| 72 |
+ }], |
|
| 73 |
+ }, |
|
| 74 |
+ {
|
|
| 75 |
+ 'url' => '<wiki>', |
|
| 76 |
+ 'txt' => 'Tor Wiki', |
|
| 77 |
+ }, |
|
| 78 |
+ {'url' => 'docs/faq',
|
|
| 79 |
+ 'txt' => 'General FAQ', |
|
| 80 |
+ }, |
|
| 81 |
+ {'url' => 'torbutton/torbutton-faq',
|
|
| 82 |
+ 'txt' => 'Torbutton FAQ', |
|
| 83 |
+ }, |
|
| 84 |
+ {'url' => 'docs/faq-abuse',
|
|
| 85 |
+ 'txt' => 'Abuse FAQ', |
|
| 86 |
+ }, |
|
| 87 |
+ {'url' => 'docs/trademark-faq',
|
|
| 88 |
+ 'txt' => 'Trademark FAQ', |
|
| 89 |
+ }, |
|
| 90 |
+ {'url' => 'eff/tor-legal-faq',
|
|
| 91 |
+ 'txt' => 'Tor Legal FAQ', |
|
| 92 |
+ }, |
|
| 93 |
+ {'url' => 'eff/tor-dmca-response',
|
|
| 94 |
+ 'txt' => 'Tor DMCA Response', |
|
| 95 |
+ }, |
|
| 96 |
+ ]; |
|
| 97 |
+:> |
| ... | ... |
@@ -0,0 +1,97 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'docs/documentation',
|
|
| 21 |
+ 'txt' => 'Documentation Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {
|
|
| 24 |
+ 'url' => 'docs/installguide', |
|
| 25 |
+ 'txt' => 'Installation Guides', |
|
| 26 |
+ 'subelements' => [ |
|
| 27 |
+ {'url' => 'docs/tor-doc-windows',
|
|
| 28 |
+ 'txt' => 'Installing on Windows', |
|
| 29 |
+ }, |
|
| 30 |
+ {'url' => 'docs/tor-doc-unix',
|
|
| 31 |
+ 'txt' => 'Installing on Linux/BSD/Unix', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'docs/tor-doc-osx',
|
|
| 34 |
+ 'txt' => 'Installing on Mac OS X', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'docs/android',
|
|
| 37 |
+ 'txt' => 'Installing on Android', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'docs/N900',
|
|
| 40 |
+ 'txt' => 'Installing on Maemo/N900', |
|
| 41 |
+ }, |
|
| 42 |
+ {'url' => 'docs/verifying-signatures',
|
|
| 43 |
+ 'txt' => 'Verify our GPG signatures', |
|
| 44 |
+ }, |
|
| 45 |
+ {'url' => 'docs/tor-doc-web',
|
|
| 46 |
+ 'txt' => 'Configuring your browser to use Tor', |
|
| 47 |
+ }], |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'docs/manual',
|
|
| 50 |
+ 'txt' => 'Manuals', |
|
| 51 |
+ 'subelements' => [ |
|
| 52 |
+ {'url' => 'docs/tor-doc-relay',
|
|
| 53 |
+ 'txt' => 'Configuring a Relay', |
|
| 54 |
+ }, |
|
| 55 |
+ {'url' => 'docs/tor-hidden-service',
|
|
| 56 |
+ 'txt' => 'Configuring a Hidden Service', |
|
| 57 |
+ }, |
|
| 58 |
+ {'url' => 'docs/bridges',
|
|
| 59 |
+ 'txt' => 'Configuring a Bridge Relay', |
|
| 60 |
+ }, |
|
| 61 |
+ {'url' => 'docs/running-a-mirror',
|
|
| 62 |
+ 'txt' => 'Configuring a Mirror', |
|
| 63 |
+ }, |
|
| 64 |
+# {'url' => 'docs/tor-manual',
|
|
| 65 |
+# 'txt' => 'Tor -stable Manual', |
|
| 66 |
+# }, |
|
| 67 |
+ {'url' => 'docs/tor-manual-dev',
|
|
| 68 |
+ 'txt' => 'Tor -alpha Manual', |
|
| 69 |
+ }, |
|
| 70 |
+ {'url' => 'docs/proxychain',
|
|
| 71 |
+ 'txt' => 'Configuring Tor to use a Proxy Server', |
|
| 72 |
+ }], |
|
| 73 |
+ }, |
|
| 74 |
+ {
|
|
| 75 |
+ 'url' => '<wiki>', |
|
| 76 |
+ 'txt' => 'Tor Wiki', |
|
| 77 |
+ }, |
|
| 78 |
+ {'url' => 'docs/faq',
|
|
| 79 |
+ 'txt' => 'General FAQ', |
|
| 80 |
+ }, |
|
| 81 |
+ {'url' => 'torbutton/torbutton-faq',
|
|
| 82 |
+ 'txt' => 'Torbutton FAQ', |
|
| 83 |
+ }, |
|
| 84 |
+ {'url' => 'docs/faq-abuse',
|
|
| 85 |
+ 'txt' => 'Abuse FAQ', |
|
| 86 |
+ }, |
|
| 87 |
+ {'url' => 'docs/trademark-faq',
|
|
| 88 |
+ 'txt' => 'Trademark FAQ', |
|
| 89 |
+ }, |
|
| 90 |
+ {'url' => 'eff/tor-legal-faq',
|
|
| 91 |
+ 'txt' => 'Tor Legal FAQ', |
|
| 92 |
+ }, |
|
| 93 |
+ {'url' => 'eff/tor-dmca-response',
|
|
| 94 |
+ 'txt' => 'Tor DMCA Response', |
|
| 95 |
+ }, |
|
| 96 |
+ ]; |
|
| 97 |
+:> |
| ... | ... |
@@ -0,0 +1,97 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'docs/documentation',
|
|
| 21 |
+ 'txt' => 'Documentation Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {
|
|
| 24 |
+ 'url' => 'docs/installguide', |
|
| 25 |
+ 'txt' => 'Installation Guides', |
|
| 26 |
+ 'subelements' => [ |
|
| 27 |
+ {'url' => 'docs/tor-doc-windows',
|
|
| 28 |
+ 'txt' => 'Installing on Windows', |
|
| 29 |
+ }, |
|
| 30 |
+ {'url' => 'docs/tor-doc-unix',
|
|
| 31 |
+ 'txt' => 'Installing on Linux/BSD/Unix', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'docs/tor-doc-osx',
|
|
| 34 |
+ 'txt' => 'Installing on Mac OS X', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'docs/android',
|
|
| 37 |
+ 'txt' => 'Installing on Android', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'docs/N900',
|
|
| 40 |
+ 'txt' => 'Installing on Maemo/N900', |
|
| 41 |
+ }, |
|
| 42 |
+ {'url' => 'docs/verifying-signatures',
|
|
| 43 |
+ 'txt' => 'Verify our GPG signatures', |
|
| 44 |
+ }, |
|
| 45 |
+ {'url' => 'docs/tor-doc-web',
|
|
| 46 |
+ 'txt' => 'Configuring your browser to use Tor', |
|
| 47 |
+ }], |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'docs/manual',
|
|
| 50 |
+ 'txt' => 'Manuals', |
|
| 51 |
+ 'subelements' => [ |
|
| 52 |
+ {'url' => 'docs/tor-doc-relay',
|
|
| 53 |
+ 'txt' => 'Configuring a Relay', |
|
| 54 |
+ }, |
|
| 55 |
+ {'url' => 'docs/tor-hidden-service',
|
|
| 56 |
+ 'txt' => 'Configuring a Hidden Service', |
|
| 57 |
+ }, |
|
| 58 |
+ {'url' => 'docs/bridges',
|
|
| 59 |
+ 'txt' => 'Configuring a Bridge Relay', |
|
| 60 |
+ }, |
|
| 61 |
+ {'url' => 'docs/running-a-mirror',
|
|
| 62 |
+ 'txt' => 'Configuring a Mirror', |
|
| 63 |
+ }, |
|
| 64 |
+# {'url' => 'docs/tor-manual',
|
|
| 65 |
+# 'txt' => 'Tor -stable Manual', |
|
| 66 |
+# }, |
|
| 67 |
+ {'url' => 'docs/tor-manual-dev',
|
|
| 68 |
+ 'txt' => 'Tor -alpha Manual', |
|
| 69 |
+ }, |
|
| 70 |
+ {'url' => 'docs/proxychain',
|
|
| 71 |
+ 'txt' => 'Configuring Tor to use a Proxy Server', |
|
| 72 |
+ }], |
|
| 73 |
+ }, |
|
| 74 |
+ {
|
|
| 75 |
+ 'url' => '<wiki>', |
|
| 76 |
+ 'txt' => 'Tor Wiki', |
|
| 77 |
+ }, |
|
| 78 |
+ {'url' => 'docs/faq',
|
|
| 79 |
+ 'txt' => 'General FAQ', |
|
| 80 |
+ }, |
|
| 81 |
+ {'url' => 'torbutton/torbutton-faq',
|
|
| 82 |
+ 'txt' => 'Torbutton FAQ', |
|
| 83 |
+ }, |
|
| 84 |
+ {'url' => 'docs/faq-abuse',
|
|
| 85 |
+ 'txt' => 'Abuse FAQ', |
|
| 86 |
+ }, |
|
| 87 |
+ {'url' => 'docs/trademark-faq',
|
|
| 88 |
+ 'txt' => 'Trademark FAQ', |
|
| 89 |
+ }, |
|
| 90 |
+ {'url' => 'eff/tor-legal-faq',
|
|
| 91 |
+ 'txt' => 'Tor Legal FAQ', |
|
| 92 |
+ }, |
|
| 93 |
+ {'url' => 'eff/tor-dmca-response',
|
|
| 94 |
+ 'txt' => 'Tor DMCA Response', |
|
| 95 |
+ }, |
|
| 96 |
+ ]; |
|
| 97 |
+:> |
| ... | ... |
@@ -0,0 +1,97 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+# this structure defines the side nav bar for the /about pages |
|
| 6 |
+# and is the input for include/side.wmi |
|
| 7 |
+ |
|
| 8 |
+# fields: |
|
| 9 |
+# |
|
| 10 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 11 |
+# that links will point to the current language if supported, and alternately |
|
| 12 |
+# the english version |
|
| 13 |
+# |
|
| 14 |
+# txt - the link text to be displayed. Different translations will |
|
| 15 |
+# need to supply alternate txt |
|
| 16 |
+ |
|
| 17 |
+<: |
|
| 18 |
+ my $sidenav; |
|
| 19 |
+ $sidenav = [ |
|
| 20 |
+ {'url' => 'docs/documentation',
|
|
| 21 |
+ 'txt' => 'Documentation Overview', |
|
| 22 |
+ }, |
|
| 23 |
+ {
|
|
| 24 |
+ 'url' => 'docs/installguide', |
|
| 25 |
+ 'txt' => 'Installation Guides', |
|
| 26 |
+ 'subelements' => [ |
|
| 27 |
+ {'url' => 'docs/tor-doc-windows',
|
|
| 28 |
+ 'txt' => 'Installing on Windows', |
|
| 29 |
+ }, |
|
| 30 |
+ {'url' => 'docs/tor-doc-unix',
|
|
| 31 |
+ 'txt' => 'Installing on Linux/BSD/Unix', |
|
| 32 |
+ }, |
|
| 33 |
+ {'url' => 'docs/tor-doc-osx',
|
|
| 34 |
+ 'txt' => 'Installing on Mac OS X', |
|
| 35 |
+ }, |
|
| 36 |
+ {'url' => 'docs/android',
|
|
| 37 |
+ 'txt' => 'Installing on Android', |
|
| 38 |
+ }, |
|
| 39 |
+ {'url' => 'docs/N900',
|
|
| 40 |
+ 'txt' => 'Installing on Maemo/N900', |
|
| 41 |
+ }, |
|
| 42 |
+ {'url' => 'docs/verifying-signatures',
|
|
| 43 |
+ 'txt' => 'Verify our GPG signatures', |
|
| 44 |
+ }, |
|
| 45 |
+ {'url' => 'docs/tor-doc-web',
|
|
| 46 |
+ 'txt' => 'Configuring your browser to use Tor', |
|
| 47 |
+ }], |
|
| 48 |
+ }, |
|
| 49 |
+ {'url' => 'docs/manual',
|
|
| 50 |
+ 'txt' => 'Manuals', |
|
| 51 |
+ 'subelements' => [ |
|
| 52 |
+ {'url' => 'docs/tor-doc-relay',
|
|
| 53 |
+ 'txt' => 'Configuring a Relay', |
|
| 54 |
+ }, |
|
| 55 |
+ {'url' => 'docs/tor-hidden-service',
|
|
| 56 |
+ 'txt' => 'Configuring a Hidden Service', |
|
| 57 |
+ }, |
|
| 58 |
+ {'url' => 'docs/bridges',
|
|
| 59 |
+ 'txt' => 'Configuring a Bridge Relay', |
|
| 60 |
+ }, |
|
| 61 |
+ {'url' => 'docs/running-a-mirror',
|
|
| 62 |
+ 'txt' => 'Configuring a Mirror', |
|
| 63 |
+ }, |
|
| 64 |
+# {'url' => 'docs/tor-manual',
|
|
| 65 |
+# 'txt' => 'Tor -stable Manual', |
|
| 66 |
+# }, |
|
| 67 |
+ {'url' => 'docs/tor-manual-dev',
|
|
| 68 |
+ 'txt' => 'Tor -alpha Manual', |
|
| 69 |
+ }, |
|
| 70 |
+ {'url' => 'docs/proxychain',
|
|
| 71 |
+ 'txt' => 'Configuring Tor to use a Proxy Server', |
|
| 72 |
+ }], |
|
| 73 |
+ }, |
|
| 74 |
+ {
|
|
| 75 |
+ 'url' => '<wiki>', |
|
| 76 |
+ 'txt' => 'Tor Wiki', |
|
| 77 |
+ }, |
|
| 78 |
+ {'url' => 'docs/faq',
|
|
| 79 |
+ 'txt' => 'General FAQ', |
|
| 80 |
+ }, |
|
| 81 |
+ {'url' => 'torbutton/torbutton-faq',
|
|
| 82 |
+ 'txt' => 'Torbutton FAQ', |
|
| 83 |
+ }, |
|
| 84 |
+ {'url' => 'docs/faq-abuse',
|
|
| 85 |
+ 'txt' => 'Abuse FAQ', |
|
| 86 |
+ }, |
|
| 87 |
+ {'url' => 'docs/trademark-faq',
|
|
| 88 |
+ 'txt' => 'Trademark FAQ', |
|
| 89 |
+ }, |
|
| 90 |
+ {'url' => 'eff/tor-legal-faq',
|
|
| 91 |
+ 'txt' => 'Tor Legal FAQ', |
|
| 92 |
+ }, |
|
| 93 |
+ {'url' => 'eff/tor-dmca-response',
|
|
| 94 |
+ 'txt' => 'Tor DMCA Response', |
|
| 95 |
+ }, |
|
| 96 |
+ ]; |
|
| 97 |
+:> |
| ... | ... |
@@ -0,0 +1,16 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+ |
|
| 5 |
+<div class="img-shadow"> |
|
| 6 |
+ <div class="important-infoblock"> |
|
| 7 |
+ <h2>What happens to my donation?</h2> |
|
| 8 |
+ <p>If you've just donated, thank you for your donation. Your funds |
|
| 9 |
+ are deposited into our general fund. You join thousands of other |
|
| 10 |
+ individual <a href="<page about/sponsors>">sponsors</a> in funding |
|
| 11 |
+ the future of Tor and online anonymity. </p> |
|
| 12 |
+ <p>Our <a href="<page about/financials>">financial documents</a> |
|
| 13 |
+ are available for your review.</p> |
|
| 14 |
+ </div> |
|
| 15 |
+</div> |
|
| 16 |
+<!-- END INFOBLOCK --> |
| ... | ... |
@@ -0,0 +1,38 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 0 $ |
|
| 5 |
+# Translation-Priority: 2-medium |
|
| 6 |
+ |
|
| 7 |
+# this structure defines the side nav bar for the /about pages |
|
| 8 |
+# and is the input for include/side.wmi |
|
| 9 |
+ |
|
| 10 |
+# fields: |
|
| 11 |
+# |
|
| 12 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 13 |
+# that links will point to the current language if supported, and alternately |
|
| 14 |
+# the english version |
|
| 15 |
+# |
|
| 16 |
+# txt - the link text to be displayed. Different translations will |
|
| 17 |
+# need to supply alternate txt |
|
| 18 |
+ |
|
| 19 |
+<: |
|
| 20 |
+ my $sidenav; |
|
| 21 |
+ $sidenav = [ |
|
| 22 |
+ {'url' => 'donate/donate',
|
|
| 23 |
+ 'txt' => 'Monetary Donations', |
|
| 24 |
+ }, |
|
| 25 |
+ {'url' => 'donate/donate-hardware',
|
|
| 26 |
+ 'txt' => 'Hardware Donations', |
|
| 27 |
+ }, |
|
| 28 |
+ {'url' => 'donate/donate-service',
|
|
| 29 |
+ 'txt' => 'Service Donations', |
|
| 30 |
+ }, |
|
| 31 |
+ {'url' => 'donate/matching-program',
|
|
| 32 |
+ 'txt' => 'Matching Program', |
|
| 33 |
+ }, |
|
| 34 |
+ {'url' => 'donate/become-sponsor',
|
|
| 35 |
+ 'txt' => 'Become a Sponsor', |
|
| 36 |
+ }, |
|
| 37 |
+ ]; |
|
| 38 |
+:> |
| ... | ... |
@@ -0,0 +1,24 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 22069 $ |
|
| 5 |
+# Translation-Priority: 1-high |
|
| 6 |
+ |
|
| 7 |
+<: |
|
| 8 |
+ # path link text |
|
| 9 |
+ my @navigation = ( |
|
| 10 |
+ 'index' , 'Home', |
|
| 11 |
+ 'about/overview' , 'About Tor', |
|
| 12 |
+ 'docs/documentation' , 'Documentation', |
|
| 13 |
+ 'projects/projects' , 'Projects', |
|
| 14 |
+ 'press/press' , 'Press', |
|
| 15 |
+ '<blog>' , 'Blog', |
|
| 16 |
+ 'http://printfection.com/torprojectstore' , 'Store', |
|
| 17 |
+ ); |
|
| 18 |
+ my @calltoaction = ( |
|
| 19 |
+ 'download/download' , 'Download', |
|
| 20 |
+ 'donate/donate' , 'Donate', |
|
| 21 |
+ 'getinvolved/volunteer' , 'Get Involved', |
|
| 22 |
+ ); |
|
| 23 |
+ |
|
| 24 |
+:> |
| ... | ... |
@@ -0,0 +1,32 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 0 $ |
|
| 5 |
+# Translation-Priority: 2-medium |
|
| 6 |
+ |
|
| 7 |
+# this structure defines the side nav bar for the /about pages |
|
| 8 |
+# and is the input for include/side.wmi |
|
| 9 |
+ |
|
| 10 |
+# fields: |
|
| 11 |
+# |
|
| 12 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 13 |
+# that links will point to the current language if supported, and alternately |
|
| 14 |
+# the english version |
|
| 15 |
+# |
|
| 16 |
+# txt - the link text to be displayed. Different translations will |
|
| 17 |
+# need to supply alternate txt |
|
| 18 |
+ |
|
| 19 |
+<: |
|
| 20 |
+ my $sidenav; |
|
| 21 |
+ $sidenav = [ |
|
| 22 |
+ {'url' => 'getinvolved/volunteer',
|
|
| 23 |
+ 'txt' => 'Get Involved', |
|
| 24 |
+ }, |
|
| 25 |
+ {'url' => 'getinvolved/research',
|
|
| 26 |
+ 'txt' => 'Research', |
|
| 27 |
+ }, |
|
| 28 |
+ {'url' => 'donate/donate',
|
|
| 29 |
+ 'txt' => 'Donate', |
|
| 30 |
+ }, |
|
| 31 |
+ ]; |
|
| 32 |
+:> |
| ... | ... |
@@ -0,0 +1,24 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 22069 $ |
|
| 5 |
+# Translation-Priority: 1-high |
|
| 6 |
+ |
|
| 7 |
+<: |
|
| 8 |
+ # path link text |
|
| 9 |
+ my @navigation = ( |
|
| 10 |
+ 'index' , 'Home', |
|
| 11 |
+ 'about/overview' , 'About Tor', |
|
| 12 |
+ 'docs/documentation' , 'Documentation', |
|
| 13 |
+ 'projects/projects' , 'Projects', |
|
| 14 |
+ 'press/press' , 'Press', |
|
| 15 |
+ '<blog>' , 'Blog', |
|
| 16 |
+ 'http://printfection.com/torprojectstore' , 'Store', |
|
| 17 |
+ ); |
|
| 18 |
+ my @calltoaction = ( |
|
| 19 |
+ 'download/download' , 'Download', |
|
| 20 |
+ 'donate/donate' , 'Donate', |
|
| 21 |
+ 'getinvolved/volunteer' , 'Get Involved', |
|
| 22 |
+ ); |
|
| 23 |
+ |
|
| 24 |
+:> |
| ... | ... |
@@ -0,0 +1,17 @@ |
| 1 |
+## translation metadata |
|
| 2 |
+# Revision: $Revision: 0 $ |
|
| 3 |
+# Translation-Priority: 2-medium |
|
| 4 |
+#!/usr/bin/env wml |
|
| 5 |
+<div class="img-shadow"> |
|
| 6 |
+ <div class="infoblock"> |
|
| 7 |
+ <h2 class="media">Press Contact</h2> |
|
| 8 |
+ <p> |
|
| 9 |
+ <b>Andrew Lewman</b><br> |
|
| 10 |
+ Executive Director<br> |
|
| 11 |
+ execdir@torproject.org<br> |
|
| 12 |
+ +1-781-424-9877<br> |
|
| 13 |
+ </p> |
|
| 14 |
+ </div> |
|
| 15 |
+ <!-- END INFOBLOCK --> |
|
| 16 |
+</div> |
|
| 17 |
+<!-- END IMG-SHADOW --> |
| ... | ... |
@@ -0,0 +1,32 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 0 $ |
|
| 5 |
+# Translation-Priority: 2-medium |
|
| 6 |
+ |
|
| 7 |
+# this structure defines the side nav bar for the /about pages |
|
| 8 |
+# and is the input for include/side.wmi |
|
| 9 |
+ |
|
| 10 |
+# fields: |
|
| 11 |
+# |
|
| 12 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 13 |
+# that links will point to the current language if supported, and alternately |
|
| 14 |
+# the english version |
|
| 15 |
+# |
|
| 16 |
+# txt - the link text to be displayed. Different translations will |
|
| 17 |
+# need to supply alternate txt |
|
| 18 |
+ |
|
| 19 |
+<: |
|
| 20 |
+ my $sidenav; |
|
| 21 |
+ $sidenav = [ |
|
| 22 |
+ {'url' => 'press/press',
|
|
| 23 |
+ 'txt' => 'Press Releases', |
|
| 24 |
+ }, |
|
| 25 |
+ {'url' => 'press/inthemedia',
|
|
| 26 |
+ 'txt' => 'Tor in the Media', |
|
| 27 |
+ }, |
|
| 28 |
+ {'url' => 'https://blog.torproject.org/',
|
|
| 29 |
+ 'txt' => 'Tor Blog', |
|
| 30 |
+ }, |
|
| 31 |
+ ]; |
|
| 32 |
+:> |
| ... | ... |
@@ -0,0 +1,52 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 0 $ |
|
| 5 |
+# Translation-Priority: 2-medium |
|
| 6 |
+ |
|
| 7 |
+# this structure defines the side nav bar for the /about pages |
|
| 8 |
+# and is the input for include/side.wmi |
|
| 9 |
+ |
|
| 10 |
+# fields: |
|
| 11 |
+# |
|
| 12 |
+# name - the $WML_SRC_BASENAME of the file. It should uniquely identify the |
|
| 13 |
+# page because at build-time it is used to determine what view of the |
|
| 14 |
+# navigation menu to generate |
|
| 15 |
+# |
|
| 16 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 17 |
+# that links will point to the current language if supported, and alternately |
|
| 18 |
+# the english version |
|
| 19 |
+# |
|
| 20 |
+# txt - the link text to be displayed. Different translations will |
|
| 21 |
+# need to supply alternate txt |
|
| 22 |
+ |
|
| 23 |
+<: |
|
| 24 |
+ my $sidenav; |
|
| 25 |
+ $sidenav = [ |
|
| 26 |
+ {'url' => 'projects/projects',
|
|
| 27 |
+ 'txt' => 'Software & Services', |
|
| 28 |
+ 'subelements' => [ |
|
| 29 |
+ {'url' => 'torbutton/index',
|
|
| 30 |
+ 'txt' => 'TorButton', |
|
| 31 |
+ }, |
|
| 32 |
+ {'url' => 'projects/torbrowser',
|
|
| 33 |
+ 'txt' => 'Tor Browser Bundle', |
|
| 34 |
+ }, |
|
| 35 |
+ {'url' => 'projects/vidalia',
|
|
| 36 |
+ 'txt' => 'Vidalia', |
|
| 37 |
+ }, |
|
| 38 |
+ {'url' => 'projects/arm',
|
|
| 39 |
+ 'txt' => 'Arm', |
|
| 40 |
+ }, |
|
| 41 |
+ {'url' => '<wiki>projects/TorBulkExitlist',
|
|
| 42 |
+ 'txt' => 'TorBEL', |
|
| 43 |
+ }, |
|
| 44 |
+ {'url' => 'https://check.torproject.org',
|
|
| 45 |
+ 'txt' => 'TorCheck', |
|
| 46 |
+ }, |
|
| 47 |
+ {'url' => 'projects/gettor',
|
|
| 48 |
+ 'txt' => 'GetTor', |
|
| 49 |
+ } |
|
| 50 |
+ ] |
|
| 51 |
+ }]; |
|
| 52 |
+:> |
| ... | ... |
@@ -0,0 +1,52 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 0 $ |
|
| 5 |
+# Translation-Priority: 2-medium |
|
| 6 |
+ |
|
| 7 |
+# this structure defines the side nav bar for the /about pages |
|
| 8 |
+# and is the input for include/side.wmi |
|
| 9 |
+ |
|
| 10 |
+# fields: |
|
| 11 |
+# |
|
| 12 |
+# name - the $WML_SRC_BASENAME of the file. It should uniquely identify the |
|
| 13 |
+# page because at build-time it is used to determine what view of the |
|
| 14 |
+# navigation menu to generate |
|
| 15 |
+# |
|
| 16 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 17 |
+# that links will point to the current language if supported, and alternately |
|
| 18 |
+# the english version |
|
| 19 |
+# |
|
| 20 |
+# txt - the link text to be displayed. Different translations will |
|
| 21 |
+# need to supply alternate txt |
|
| 22 |
+ |
|
| 23 |
+<: |
|
| 24 |
+ my $sidenav; |
|
| 25 |
+ $sidenav = [ |
|
| 26 |
+ {'url' => 'projects/projects',
|
|
| 27 |
+ 'txt' => 'Software & Services', |
|
| 28 |
+ 'subelements' => [ |
|
| 29 |
+ {'url' => 'torbutton/index',
|
|
| 30 |
+ 'txt' => 'TorButton', |
|
| 31 |
+ }, |
|
| 32 |
+ {'url' => 'projects/torbrowser',
|
|
| 33 |
+ 'txt' => 'Tor Browser Bundle', |
|
| 34 |
+ }, |
|
| 35 |
+ {'url' => 'projects/vidalia',
|
|
| 36 |
+ 'txt' => 'Vidalia', |
|
| 37 |
+ }, |
|
| 38 |
+ {'url' => 'projects/arm',
|
|
| 39 |
+ 'txt' => 'Arm', |
|
| 40 |
+ }, |
|
| 41 |
+ {'url' => '<wiki>projects/TorBulkExitlist',
|
|
| 42 |
+ 'txt' => 'TorBEL', |
|
| 43 |
+ }, |
|
| 44 |
+ {'url' => 'https://check.torproject.org',
|
|
| 45 |
+ 'txt' => 'TorCheck', |
|
| 46 |
+ }, |
|
| 47 |
+ {'url' => 'projects/gettor',
|
|
| 48 |
+ 'txt' => 'GetTor', |
|
| 49 |
+ } |
|
| 50 |
+ ] |
|
| 51 |
+ }]; |
|
| 52 |
+:> |
| ... | ... |
@@ -0,0 +1,24 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 22069 $ |
|
| 5 |
+# Translation-Priority: 1-high |
|
| 6 |
+ |
|
| 7 |
+<: |
|
| 8 |
+ # path link text |
|
| 9 |
+ my @navigation = ( |
|
| 10 |
+ 'index' , 'Home', |
|
| 11 |
+ 'about/overview' , 'About Tor', |
|
| 12 |
+ 'docs/documentation' , 'Documentation', |
|
| 13 |
+ 'projects/projects' , 'Projects', |
|
| 14 |
+ 'press/press' , 'Press', |
|
| 15 |
+ '<blog>' , 'Blog', |
|
| 16 |
+ 'http://printfection.com/torprojectstore' , 'Store', |
|
| 17 |
+ ); |
|
| 18 |
+ my @calltoaction = ( |
|
| 19 |
+ 'download/download' , 'Download', |
|
| 20 |
+ 'donate/donate' , 'Donate', |
|
| 21 |
+ 'getinvolved/volunteer' , 'Get Involved', |
|
| 22 |
+ ); |
|
| 23 |
+ |
|
| 24 |
+:> |
| ... | ... |
@@ -0,0 +1,36 @@ |
| 1 |
+#!/usr/bin/wml |
|
| 2 |
+ |
|
| 3 |
+## translation metadata |
|
| 4 |
+# Revision: $Revision: 0 $ |
|
| 5 |
+# Translation-Priority: 2-medium |
|
| 6 |
+ |
|
| 7 |
+# this structure defines the side nav bar for the /about pages |
|
| 8 |
+# and is the input for include/side.wmi |
|
| 9 |
+ |
|
| 10 |
+# fields: |
|
| 11 |
+# |
|
| 12 |
+# name - the $WML_SRC_BASENAME of the file. It should uniquely identify the |
|
| 13 |
+# page because at build-time it is used to determine what view of the |
|
| 14 |
+# navigation menu to generate |
|
| 15 |
+# |
|
| 16 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
| 17 |
+# that links will point to the current language if supported, and alternately |
|
| 18 |
+# the english version |
|
| 19 |
+# |
|
| 20 |
+# txt - the link text to be displayed. Different translations will |
|
| 21 |
+# need to supply alternate txt |
|
| 22 |
+ |
|
| 23 |
+<: |
|
| 24 |
+ my $sidenav; |
|
| 25 |
+ $sidenav = [ |
|
| 26 |
+ {'url' => 'torbutton/index',
|
|
| 27 |
+ 'txt' => 'Torbutton', |
|
| 28 |
+ 'subelements' => [ |
|
| 29 |
+ {'url' => 'torbutton/torbutton-options',
|
|
| 30 |
+ 'txt' => 'Torbutton Options', |
|
| 31 |
+ }, |
|
| 32 |
+ {'url' => 'torbutton/torbutton-faq',
|
|
| 33 |
+ 'txt' => 'Torbutton FAQ', |
|
| 34 |
+ }] |
|
| 35 |
+ }] |
|
| 36 |
+:> |
|
| 0 | 37 |