tor-commits
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 1 participants
- 213390 discussions
commit 08e6bd0ed1d319eaf112c273c68f21d3351fcdcc
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu May 5 15:15:20 2011 -0400
Increment version to 0.2.3.1-alpha-dev
---
configure.in | 2 +-
contrib/tor-mingw.nsi.in | 2 +-
src/win32/orconfig.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.in b/configure.in
index 0918c95..58d32a1 100644
--- a/configure.in
+++ b/configure.in
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2008,…
[View More] The Tor Project, Inc.
dnl See LICENSE for licensing information
AC_INIT
-AM_INIT_AUTOMAKE(tor, 0.2.3.1-alpha)
+AM_INIT_AUTOMAKE(tor, 0.2.3.1-alpha-dev)
AM_CONFIG_HEADER(orconfig.h)
AC_CANONICAL_HOST
diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in
index 82e9468..b559bdb 100644
--- a/contrib/tor-mingw.nsi.in
+++ b/contrib/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
!include "LogicLib.nsh"
!include "FileFunc.nsh"
!insertmacro GetParameters
-!define VERSION "0.2.3.1-alpha"
+!define VERSION "0.2.3.1-alpha-dev"
!define INSTALLER "tor-${VERSION}-win32.exe"
!define WEBSITE "https://www.torproject.org/"
!define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index f4efc0c..5483b6d 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -233,4 +233,4 @@
#define USING_TWOS_COMPLEMENT
/* Version number of package */
-#define VERSION "0.2.3.1-alpha"
+#define VERSION "0.2.3.1-alpha-dev"
[View Less]
1
0

05 May '11
commit 5cabdc8f679c4124523a1cc02ac1e22ab86b8502
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu May 5 13:57:32 2011 -0400
more changelog tweaks, mostly from sebastian
---
ChangeLog | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 046ee63..28153f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,21 +3,21 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
Tor 0.2.3.1-alpha adds some new …
[View More]experimental features, including support
for an improved network IO backend, IOCP networking on Windows,
microdescriptor caching, "fast-start" support for streams, and automatic
- home router configuration. There are also numerous internal improvements
+ home router configuration. There are also numerous internal improvements
to try to make the code easier for developers to work with.
This is the first alpha release in a new series, so expect there to be
- bugs. Users who would rather test out a more stable branch should
+ bugs. Users who would rather test out a more stable branch should
stay with 0.2.2.x for now.
o Major features
- Tor can now optionally build with the "bufferevents" buffered IO
backend provided by Libevent 2. To use this feature, make sure you
have the latest possible version of Libevent, and pass the
- --enable-bufferevents flag to configure when building Tor from source.
- Using this feature will make our networking code more flexible, let us
- stack layers on each other, and let us use more efficient zero-copy
- transports where available.
+ --enable-bufferevents flag to configure when building Tor from
+ source. This feature will make our networking code more flexible,
+ let us stack layers on each other, and let us use more efficient
+ zero-copy transports where available.
- As an experimental feature, Tor can use IOCP for networking on Windows.
Once this code is tuned and optimized, it promises much better
performance than the select-based backend we've used in the past. To
@@ -33,16 +33,16 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
Previously, the client wasn't allowed to send data until the stream was
connected, which slowed down all connections. This change will enable
clients to perform a "fast-start" on streams and send data without
- having to wait for a confirmation that the stream has opened. (Patch
+ having to wait for a confirmation that the stream has opened. (Patch
from Ian Goldberg; implements the server side of Proposal 174.)
- - Tor now has initial support for automatic port mapping on on the many
+ - Tor now has initial support for automatic port mapping on the many
home routers that support NAT-PMP or UPnP. (Not yet supported on
Windows). To build the support code, you'll need to have libnatpnp
library and/or the libminiupnpc library, and you'll need to enable the
feature specifically by passing "--enable-upnp" and/or
"--enable-natpnp" to configure. To turn it on, use the new
PortForwarding option.
- - Caches now download, cache, and sever multiple "flavors" of the
+ - Caches now download, cache, and serve multiple "flavors" of the
consensus, including a flavor that describes microdescriptors.
- Caches now download, cache, and serve microdescriptors -- small
summaries of router descriptors that are authenticated by all of the
@@ -61,8 +61,8 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
There is now a new option, CountPrivateBandwidth, to disable this
behavior. Patch from Daniel Cagara.
- New --enable-static-tor configure option for building Tor as
- statically as possible. Idea, general hackery and thoughts from
- Alexei Czeskis, John Gilmore, Jacob Appelbaum. Implements ticket
+ statically as possible. Idea, general hackery and thoughts from
+ Alexei Czeskis, John Gilmore, Jacob Appelbaum. Implements ticket
2702.
- If you set the NumCPUs option to 0, Tor will now try to detect how
many CPUs you have. This is the new default behavior.
@@ -74,7 +74,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
enhancement 1883.
- Add a new 'Heartbeat' log message type to periodically log a message
describing Tor's status at level Notice. This feature is meant for
- operators who log at notice, adn want to make sure that their Tor
+ operators who log at notice, and want to make sure that their Tor
server is still working. Implementation by George Kadianakis.
o Minor bugfixes (on 0.2.2.25-alpha):
@@ -85,7 +85,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
Fix posted by "cypherpunks."
- The microdesc journal is supposed to get rebuilt only if it is
at least _half_ the length of the store, not _twice_ the length
- of the store. Bugfix on 0.2.2.6-alpha; fixes part of bug 2230.
+ of the store. Bugfix on 0.2.2.6-alpha; fixes part of bug 2230.
- If as an authority we fail to compute the identity digest of a v3
legacy keypair, warn, and don't use a buffer-full of junk instead.
Bugfix on 0.2.1.1-alpha; fixes bug 3106.
@@ -110,7 +110,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
people who build Tor from the source distribution without changing
the Makefile.am files should be fine.
- Our autogen.sh script uses autoreconf to launch autoconf, automake, and
- so on. This is more robust against some of the failure modes
+ so on. This is more robust against some of the failure modes
associated with running the autotools pieces on their own.
o Minor packaging issues:
@@ -139,7 +139,7 @@ Changes in version 0.2.3.1-alpha - 2011-05-05
o Documentation fixes:
- Correct a broken faq link in the INSTALL file. Fixes bug 2307.
- Add missing documentation for the authority-related torrc options
- RephistTrackTime, BridgePassword, and V3AuthUseLegacyKey. Resolves
+ RephistTrackTime, BridgePassword, and V3AuthUseLegacyKey. Resolves
issue 2379.
@@ -6267,7 +6267,7 @@ Changes in version 0.2.0.1-alpha - 2007-06-01
o Minor bugfixes (logging):
- When we hit an EOF on a log (probably because we're shutting down),
don't try to remove the log from the list: just mark it as
- unusable. (Bulletproofs against bug 222.)
+ unusable. (Bulletproofs against bug 222.)
o Minor bugfixes (other):
- In the exitlist script, only consider the most recently published
@@ -6277,7 +6277,7 @@ Changes in version 0.2.0.1-alpha - 2007-06-01
connections to that address. (Resolves bug 405.)
- Stop allowing hibernating servers to be "stable" or "fast".
- On Windows, we were preventing other processes from reading
- cached-routers while Tor was running. (Reported by janbar)
+ cached-routers while Tor was running. (Reported by janbar)
- Make the NodeFamilies config option work. (Reported by
lodger -- it has never actually worked, even though we added it
in Oct 2004.)
[View Less]
1
0
commit c0da3c85a4fe771721adf615ccf651b2d36e838a
Merge: d92bf67 5f3183a
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:13:51 2011 -0300
Merge branch 'bug2809_links'
CMakeLists.txt | 6 ++--
cmake/FindBreakpad.cmake | 6 ++--
cmake/FindGeoIP.cmake | 6 ++--
cmake/FindMarble.cmake | 6 ++--
cmake/FindOpenSSL.cmake …
[View More] | 6 ++--
cmake/FindWiX.cmake | 6 ++--
cmake/VidaliaMacros.cmake | 6 ++--
config.h.in | 6 ++--
contrib/geoip.py | 6 ++--
doc/CMakeLists.txt | 6 ++--
doc/vidalia.1.in | 2 +-
pkg/CMakeLists.txt | 6 ++--
pkg/build-geoip-cache.sh | 6 ++--
pkg/osx/CMakeLists.txt | 6 ++--
pkg/osx/InstallTorbutton.scpt.in | 6 ++--
pkg/package.sh | 6 ++--
pkg/rpm/CMakeLists.txt | 6 ++--
pkg/win32/CMakeLists.txt | 6 ++--
pkg/win32/bridge-bundle.nsi.in | 6 ++--
pkg/win32/vidalia-bundle.nsi.in | 6 ++--
src/CMakeLists.txt | 6 ++--
src/common/CMakeLists.txt | 6 ++--
src/common/Log.cpp | 6 ++--
src/common/Log.h | 6 ++--
src/common/TorSocket.cpp | 6 ++--
src/common/TorSocket.h | 6 ++--
src/common/ZlibByteArray.cpp | 6 ++--
src/common/ZlibByteArray.h | 6 ++--
src/common/crypto.cpp | 6 ++--
src/common/crypto.h | 6 ++--
src/common/file.cpp | 6 ++--
src/common/file.h | 6 ++--
src/common/html.cpp | 6 ++--
src/common/html.h | 6 ++--
src/common/net.cpp | 6 ++--
src/common/net.h | 6 ++--
src/common/procutil.cpp | 6 ++--
src/common/procutil.h | 6 ++--
src/common/stringutil.cpp | 6 ++--
src/common/stringutil.h | 6 ++--
src/common/win32.cpp | 6 ++--
src/common/win32.h | 6 ++--
src/crashreporter/CMakeLists.txt | 6 ++--
src/crashreporter/CrashReportDialog.cpp | 6 ++--
src/crashreporter/CrashReportDialog.h | 6 ++--
src/crashreporter/CrashReportUploader.cpp | 6 ++--
src/crashreporter/CrashReportUploader.h | 6 ++--
src/crashreporter/UploadProgressDialog.cpp | 6 ++--
src/crashreporter/UploadProgressDialog.h | 6 ++--
src/crashreporter/main.cpp | 6 ++--
src/crashreporter/res/CrashReporter.rc.in | 6 ++--
src/miniupnpc/CMakeLists.txt | 6 ++--
src/tools/CMakeLists.txt | 6 ++--
src/tools/nostdset/nostdset.sh | 6 ++--
src/tools/nsh2po/CMakeLists.txt | 6 ++--
src/tools/nsh2po/nsh2po.cpp | 6 ++--
src/tools/nsh2po/nsh2po_config.h.in | 6 ++--
src/tools/po2nsh/CMakeLists.txt | 6 ++--
src/tools/po2nsh/po2nsh.cpp | 6 ++--
src/tools/po2ts/CMakeLists.txt | 6 ++--
src/tools/po2ts/po2ts.cpp | 6 ++--
src/tools/po2wxl/CMakeLists.txt | 6 ++--
src/tools/po2wxl/po2wxl.cpp | 6 ++--
src/tools/ts2po/CMakeLists.txt | 6 ++--
src/tools/ts2po/ts2po.cpp | 6 ++--
src/tools/ts2po/ts2po_config.h.in | 6 ++--
src/torcontrol/AddressMap.cpp | 6 ++--
src/torcontrol/AddressMap.h | 6 ++--
src/torcontrol/BootstrapStatus.cpp | 6 ++--
src/torcontrol/BootstrapStatus.h | 6 ++--
src/torcontrol/CMakeLists.txt | 6 ++--
src/torcontrol/Circuit.cpp | 6 ++--
src/torcontrol/Circuit.h | 6 ++--
src/torcontrol/ControlCommand.cpp | 6 ++--
src/torcontrol/ControlCommand.h | 6 ++--
src/torcontrol/ControlConnection.cpp | 6 ++--
src/torcontrol/ControlConnection.h | 6 ++--
src/torcontrol/ControlMethod.cpp | 6 ++--
src/torcontrol/ControlMethod.h | 6 ++--
src/torcontrol/ControlReply.cpp | 6 ++--
src/torcontrol/ControlReply.h | 6 ++--
src/torcontrol/ControlSocket.cpp | 6 ++--
src/torcontrol/ControlSocket.h | 6 ++--
src/torcontrol/LogEvent.cpp | 6 ++--
src/torcontrol/LogEvent.h | 6 ++--
src/torcontrol/ProtocolInfo.cpp | 6 ++--
src/torcontrol/ProtocolInfo.h | 6 ++--
src/torcontrol/ReplyLine.cpp | 6 ++--
src/torcontrol/ReplyLine.h | 6 ++--
src/torcontrol/RouterDescriptor.cpp | 6 ++--
src/torcontrol/RouterDescriptor.h | 6 ++--
src/torcontrol/RouterStatus.cpp | 6 ++--
src/torcontrol/RouterStatus.h | 6 ++--
src/torcontrol/SendCommandEvent.cpp | 6 ++--
src/torcontrol/SendCommandEvent.h | 6 ++--
src/torcontrol/Stream.cpp | 6 ++--
src/torcontrol/Stream.h | 6 ++--
src/torcontrol/TorControl.cpp | 6 ++--
src/torcontrol/TorControl.h | 6 ++--
src/torcontrol/TorEvents.cpp | 6 ++--
src/torcontrol/TorEvents.h | 6 ++--
src/torcontrol/TorProcess.cpp | 6 ++--
src/torcontrol/TorProcess.h | 6 ++--
src/torcontrol/TorService.cpp | 6 ++--
src/torcontrol/TorService.h | 6 ++--
src/torcontrol/TorSignal.cpp | 6 ++--
src/torcontrol/TorSignal.h | 6 ++--
src/torcontrol/tcglobal.cpp | 6 ++--
src/torcontrol/tcglobal.h | 6 ++--
src/vidalia/CMakeLists.txt | 6 ++--
src/vidalia/ControlPasswordInputDialog.cpp | 6 ++--
src/vidalia/ControlPasswordInputDialog.h | 6 ++--
src/vidalia/CrashReporter.cpp | 6 ++--
src/vidalia/CrashReporter.h | 6 ++--
src/vidalia/HelperProcess.cpp | 6 ++--
src/vidalia/HelperProcess.h | 6 ++--
src/vidalia/LanguageSupport.cpp | 6 ++--
src/vidalia/LanguageSupport.h | 6 ++--
src/vidalia/MainWindow.cpp | 6 ++--
src/vidalia/MainWindow.h | 6 ++--
src/vidalia/PackageInfo.cpp | 6 ++--
src/vidalia/PackageInfo.h | 6 ++--
src/vidalia/UpdateProcess.cpp | 6 ++--
src/vidalia/UpdateProcess.h | 6 ++--
src/vidalia/UpdateProgressDialog.cpp | 6 ++--
src/vidalia/UpdateProgressDialog.h | 6 ++--
src/vidalia/UpdatesAvailableDialog.cpp | 6 ++--
src/vidalia/UpdatesAvailableDialog.h | 6 ++--
src/vidalia/VClickLabel.cpp | 6 ++--
src/vidalia/VClickLabel.h | 6 ++--
src/vidalia/VMessageBox.cpp | 6 ++--
src/vidalia/VMessageBox.h | 6 ++--
src/vidalia/Vidalia.cpp | 6 ++--
src/vidalia/Vidalia.h | 6 ++--
src/vidalia/VidaliaWindow.cpp | 6 ++--
src/vidalia/VidaliaWindow.h | 6 ++--
src/vidalia/about/AboutDialog.cpp | 6 ++--
src/vidalia/about/AboutDialog.h | 6 ++--
src/vidalia/about/LicenseDialog.cpp | 6 ++--
src/vidalia/about/LicenseDialog.h | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.cpp | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.h | 6 ++--
src/vidalia/bwgraph/GraphFrame.cpp | 6 ++--
src/vidalia/bwgraph/GraphFrame.h | 6 ++--
src/vidalia/config/AbstractTorSettings.cpp | 6 ++--
src/vidalia/config/AbstractTorSettings.h | 6 ++--
src/vidalia/config/AdvancedPage.cpp | 6 ++--
src/vidalia/config/AdvancedPage.h | 6 ++--
src/vidalia/config/AppearancePage.cpp | 6 ++--
src/vidalia/config/AppearancePage.h | 6 ++--
src/vidalia/config/BridgeDownloader.cpp | 6 ++--
src/vidalia/config/BridgeDownloader.h | 6 ++--
.../config/BridgeDownloaderProgressDialog.cpp | 6 ++--
.../config/BridgeDownloaderProgressDialog.h | 6 ++--
src/vidalia/config/BridgeUsageDialog.cpp | 6 ++--
src/vidalia/config/BridgeUsageDialog.h | 6 ++--
src/vidalia/config/ConfigDialog.cpp | 6 ++--
src/vidalia/config/ConfigDialog.h | 6 ++--
src/vidalia/config/ConfigPage.h | 6 ++--
src/vidalia/config/ConfigPageStack.cpp | 6 ++--
src/vidalia/config/ConfigPageStack.h | 6 ++--
src/vidalia/config/DomainValidator.cpp | 6 ++--
src/vidalia/config/DomainValidator.h | 6 ++--
src/vidalia/config/ExitPolicy.cpp | 6 ++--
src/vidalia/config/ExitPolicy.h | 6 ++--
src/vidalia/config/GeneralPage.cpp | 6 ++--
src/vidalia/config/GeneralPage.h | 6 ++--
src/vidalia/config/IpValidator.cpp | 6 ++--
src/vidalia/config/IpValidator.h | 6 ++--
src/vidalia/config/Local8BitStringValidator.cpp | 6 ++--
src/vidalia/config/Local8BitStringValidator.h | 6 ++--
src/vidalia/config/NetworkPage.cpp | 6 ++--
src/vidalia/config/NetworkPage.h | 6 ++--
src/vidalia/config/NetworkSettings.cpp | 6 ++--
src/vidalia/config/NetworkSettings.h | 6 ++--
src/vidalia/config/NicknameValidator.cpp | 6 ++--
src/vidalia/config/NicknameValidator.h | 6 ++--
src/vidalia/config/Policy.cpp | 6 ++--
src/vidalia/config/Policy.h | 6 ++--
src/vidalia/config/PortValidator.cpp | 6 ++--
src/vidalia/config/PortValidator.h | 6 ++--
src/vidalia/config/ServerPage.cpp | 6 ++--
src/vidalia/config/ServerPage.h | 6 ++--
src/vidalia/config/ServerSettings.cpp | 6 ++--
src/vidalia/config/ServerSettings.h | 6 ++--
src/vidalia/config/Service.cpp | 6 ++--
src/vidalia/config/Service.h | 6 ++--
src/vidalia/config/ServiceList.cpp | 6 ++--
src/vidalia/config/ServiceList.h | 6 ++--
src/vidalia/config/ServicePage.cpp | 6 ++--
src/vidalia/config/ServicePage.h | 6 ++--
src/vidalia/config/ServiceSettings.cpp | 6 ++--
src/vidalia/config/ServiceSettings.h | 6 ++--
src/vidalia/config/TorSettings.cpp | 6 ++--
src/vidalia/config/TorSettings.h | 6 ++--
src/vidalia/config/TorrcDialog.cpp | 6 ++--
src/vidalia/config/TorrcDialog.h | 6 ++--
src/vidalia/config/UPNPControl.cpp | 6 ++--
src/vidalia/config/UPNPControl.h | 6 ++--
src/vidalia/config/UPNPControlThread.cpp | 6 ++--
src/vidalia/config/UPNPControlThread.h | 6 ++--
src/vidalia/config/UPNPTestDialog.cpp | 6 ++--
src/vidalia/config/UPNPTestDialog.h | 6 ++--
src/vidalia/config/VSettings.cpp | 6 ++--
src/vidalia/config/VSettings.h | 6 ++--
src/vidalia/config/VidaliaSettings.cpp | 6 ++--
src/vidalia/config/VidaliaSettings.h | 6 ++--
src/vidalia/help/browser/HelpBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpBrowser.h | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.h | 6 ++--
src/vidalia/help/content/ar/bridges.html | 6 ++--
src/vidalia/help/content/ar/config.html | 6 ++--
src/vidalia/help/content/ar/index.html | 6 ++--
src/vidalia/help/content/ar/links.html | 6 ++--
src/vidalia/help/content/ar/log.html | 6 ++--
src/vidalia/help/content/ar/netview.html | 6 ++--
src/vidalia/help/content/ar/running.html | 6 ++--
src/vidalia/help/content/ar/server.html | 6 ++--
src/vidalia/help/content/ar/services.html | 6 ++--
src/vidalia/help/content/ar/troubleshooting.html | 6 ++--
src/vidalia/help/content/bms/bridges.html | 6 ++--
src/vidalia/help/content/bms/config.html | 6 ++--
src/vidalia/help/content/bms/index.html | 6 ++--
src/vidalia/help/content/bms/links.html | 6 ++--
src/vidalia/help/content/bms/log.html | 6 ++--
src/vidalia/help/content/bms/netview.html | 6 ++--
src/vidalia/help/content/bms/running.html | 6 ++--
src/vidalia/help/content/bms/server.html | 6 ++--
src/vidalia/help/content/bms/services.html | 6 ++--
src/vidalia/help/content/bms/troubleshooting.html | 6 ++--
src/vidalia/help/content/de/config.html | 6 ++--
src/vidalia/help/content/de/index.html | 6 ++--
src/vidalia/help/content/de/links.html | 6 ++--
src/vidalia/help/content/de/log.html | 6 ++--
src/vidalia/help/content/de/netview.html | 6 ++--
src/vidalia/help/content/de/running.html | 6 ++--
src/vidalia/help/content/de/server.html | 6 ++--
src/vidalia/help/content/de/troubleshooting.html | 6 ++--
src/vidalia/help/content/en/bridges.html | 6 ++--
src/vidalia/help/content/en/config.html | 6 ++--
src/vidalia/help/content/en/contents.xml | 6 ++--
src/vidalia/help/content/en/index.html | 6 ++--
src/vidalia/help/content/en/links.html | 38 ++++++--------------
src/vidalia/help/content/en/log.html | 6 ++--
src/vidalia/help/content/en/netview.html | 6 ++--
src/vidalia/help/content/en/running.html | 6 ++--
src/vidalia/help/content/en/server.html | 6 ++--
src/vidalia/help/content/en/services.html | 6 ++--
src/vidalia/help/content/en/troubleshooting.html | 6 ++--
src/vidalia/help/content/es/bridges.html | 6 ++--
src/vidalia/help/content/fa/bridges.html | 6 ++--
src/vidalia/help/content/fa/config.html | 6 ++--
src/vidalia/help/content/fa/index.html | 6 ++--
src/vidalia/help/content/fa/links.html | 6 ++--
src/vidalia/help/content/fa/log.html | 6 ++--
src/vidalia/help/content/fa/netview.html | 6 ++--
src/vidalia/help/content/fa/running.html | 6 ++--
src/vidalia/help/content/fa/server.html | 6 ++--
src/vidalia/help/content/fa/services.html | 6 ++--
src/vidalia/help/content/fa/troubleshooting.html | 6 ++--
src/vidalia/help/content/fi/bridges.html | 6 ++--
src/vidalia/help/content/fi/config.html | 6 ++--
src/vidalia/help/content/fi/index.html | 6 ++--
src/vidalia/help/content/fi/links.html | 6 ++--
src/vidalia/help/content/fi/log.html | 6 ++--
src/vidalia/help/content/fi/netview.html | 6 ++--
src/vidalia/help/content/fi/running.html | 6 ++--
src/vidalia/help/content/fi/server.html | 6 ++--
src/vidalia/help/content/fi/troubleshooting.html | 6 ++--
src/vidalia/help/content/fr/bridges.html | 6 ++--
src/vidalia/help/content/fr/config.html | 6 ++--
src/vidalia/help/content/fr/index.html | 6 ++--
src/vidalia/help/content/fr/links.html | 6 ++--
src/vidalia/help/content/fr/log.html | 6 ++--
src/vidalia/help/content/fr/netview.html | 6 ++--
src/vidalia/help/content/fr/running.html | 6 ++--
src/vidalia/help/content/fr/server.html | 6 ++--
src/vidalia/help/content/fr/services.html | 6 ++--
src/vidalia/help/content/fr/troubleshooting.html | 6 ++--
src/vidalia/help/content/it/links.html | 6 ++--
src/vidalia/help/content/my/bridges.html | 6 ++--
src/vidalia/help/content/my/config.html | 6 ++--
src/vidalia/help/content/my/index.html | 6 ++--
src/vidalia/help/content/my/links.html | 6 ++--
src/vidalia/help/content/my/log.html | 6 ++--
src/vidalia/help/content/my/netview.html | 6 ++--
src/vidalia/help/content/my/running.html | 6 ++--
src/vidalia/help/content/my/server.html | 6 ++--
src/vidalia/help/content/my/services.html | 6 ++--
src/vidalia/help/content/my/troubleshooting.html | 6 ++--
src/vidalia/help/content/nl/index.html | 6 ++--
src/vidalia/help/content/nl/links.html | 6 ++--
src/vidalia/help/content/nl/running.html | 6 ++--
src/vidalia/help/content/pl/bridges.html | 6 ++--
src/vidalia/help/content/pl/index.html | 6 ++--
src/vidalia/help/content/pl/links.html | 6 ++--
src/vidalia/help/content/po/af/config.po | 4 +-
src/vidalia/help/content/po/af/index.po | 4 +-
src/vidalia/help/content/po/af/links.po | 4 +-
src/vidalia/help/content/po/af/log.po | 4 +-
src/vidalia/help/content/po/af/running.po | 4 +-
src/vidalia/help/content/po/af/server.po | 4 +-
src/vidalia/help/content/po/af/services.po | 4 +-
src/vidalia/help/content/po/af/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ak/config.po | 4 +-
src/vidalia/help/content/po/ak/index.po | 4 +-
src/vidalia/help/content/po/ak/links.po | 4 +-
src/vidalia/help/content/po/ak/log.po | 4 +-
src/vidalia/help/content/po/ak/running.po | 4 +-
src/vidalia/help/content/po/ak/server.po | 4 +-
src/vidalia/help/content/po/ak/services.po | 4 +-
src/vidalia/help/content/po/ak/troubleshooting.po | 4 +-
src/vidalia/help/content/po/am/config.po | 4 +-
src/vidalia/help/content/po/am/index.po | 4 +-
src/vidalia/help/content/po/am/links.po | 4 +-
src/vidalia/help/content/po/am/log.po | 4 +-
src/vidalia/help/content/po/am/running.po | 4 +-
src/vidalia/help/content/po/am/server.po | 4 +-
src/vidalia/help/content/po/am/services.po | 4 +-
src/vidalia/help/content/po/am/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ar/index.po | 4 +-
src/vidalia/help/content/po/ar/links.po | 4 +-
src/vidalia/help/content/po/ar/log.po | 4 +-
src/vidalia/help/content/po/ar/netview.po | 4 +-
src/vidalia/help/content/po/ar/running.po | 4 +-
src/vidalia/help/content/po/ar/server.po | 4 +-
src/vidalia/help/content/po/ar/services.po | 4 +-
src/vidalia/help/content/po/ar/troubleshooting.po | 4 +-
src/vidalia/help/content/po/arn/config.po | 4 +-
src/vidalia/help/content/po/arn/index.po | 4 +-
src/vidalia/help/content/po/arn/links.po | 4 +-
src/vidalia/help/content/po/arn/log.po | 4 +-
src/vidalia/help/content/po/arn/running.po | 4 +-
src/vidalia/help/content/po/arn/server.po | 4 +-
src/vidalia/help/content/po/arn/services.po | 4 +-
src/vidalia/help/content/po/arn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ast/config.po | 4 +-
src/vidalia/help/content/po/ast/index.po | 4 +-
src/vidalia/help/content/po/ast/links.po | 4 +-
src/vidalia/help/content/po/ast/log.po | 4 +-
src/vidalia/help/content/po/ast/running.po | 4 +-
src/vidalia/help/content/po/ast/server.po | 4 +-
src/vidalia/help/content/po/ast/services.po | 4 +-
src/vidalia/help/content/po/ast/troubleshooting.po | 4 +-
src/vidalia/help/content/po/az/config.po | 4 +-
src/vidalia/help/content/po/az/index.po | 4 +-
src/vidalia/help/content/po/az/links.po | 4 +-
src/vidalia/help/content/po/az/log.po | 4 +-
src/vidalia/help/content/po/az/running.po | 4 +-
src/vidalia/help/content/po/az/server.po | 4 +-
src/vidalia/help/content/po/az/services.po | 4 +-
src/vidalia/help/content/po/az/troubleshooting.po | 4 +-
src/vidalia/help/content/po/be/config.po | 4 +-
src/vidalia/help/content/po/be/index.po | 4 +-
src/vidalia/help/content/po/be/links.po | 4 +-
src/vidalia/help/content/po/be/log.po | 4 +-
src/vidalia/help/content/po/be/running.po | 4 +-
src/vidalia/help/content/po/be/server.po | 4 +-
src/vidalia/help/content/po/be/services.po | 4 +-
src/vidalia/help/content/po/be/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bg/config.po | 4 +-
src/vidalia/help/content/po/bg/index.po | 4 +-
src/vidalia/help/content/po/bg/links.po | 4 +-
src/vidalia/help/content/po/bg/log.po | 4 +-
src/vidalia/help/content/po/bg/running.po | 4 +-
src/vidalia/help/content/po/bg/server.po | 4 +-
src/vidalia/help/content/po/bg/services.po | 4 +-
src/vidalia/help/content/po/bg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn/config.po | 4 +-
src/vidalia/help/content/po/bn/index.po | 4 +-
src/vidalia/help/content/po/bn/links.po | 4 +-
src/vidalia/help/content/po/bn/log.po | 4 +-
src/vidalia/help/content/po/bn/running.po | 4 +-
src/vidalia/help/content/po/bn/server.po | 4 +-
src/vidalia/help/content/po/bn/services.po | 4 +-
src/vidalia/help/content/po/bn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn_IN/config.po | 4 +-
src/vidalia/help/content/po/bn_IN/index.po | 4 +-
src/vidalia/help/content/po/bn_IN/links.po | 4 +-
src/vidalia/help/content/po/bn_IN/log.po | 4 +-
src/vidalia/help/content/po/bn_IN/running.po | 4 +-
src/vidalia/help/content/po/bn_IN/server.po | 4 +-
src/vidalia/help/content/po/bn_IN/services.po | 4 +-
.../help/content/po/bn_IN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bo/bridges.po | 4 +-
src/vidalia/help/content/po/bo/config.po | 4 +-
src/vidalia/help/content/po/bo/index.po | 4 +-
src/vidalia/help/content/po/bo/links.po | 4 +-
src/vidalia/help/content/po/bo/log.po | 4 +-
src/vidalia/help/content/po/bo/netview.po | 4 +-
src/vidalia/help/content/po/bo/running.po | 4 +-
src/vidalia/help/content/po/bo/server.po | 4 +-
src/vidalia/help/content/po/bo/services.po | 4 +-
src/vidalia/help/content/po/bo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/br/bridges.po | 4 +-
src/vidalia/help/content/po/br/config.po | 4 +-
src/vidalia/help/content/po/br/index.po | 4 +-
src/vidalia/help/content/po/br/links.po | 4 +-
src/vidalia/help/content/po/br/log.po | 4 +-
src/vidalia/help/content/po/br/netview.po | 4 +-
src/vidalia/help/content/po/br/running.po | 4 +-
src/vidalia/help/content/po/br/server.po | 4 +-
src/vidalia/help/content/po/br/services.po | 4 +-
src/vidalia/help/content/po/br/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bs/bridges.po | 4 +-
src/vidalia/help/content/po/bs/config.po | 4 +-
src/vidalia/help/content/po/bs/index.po | 4 +-
src/vidalia/help/content/po/bs/links.po | 4 +-
src/vidalia/help/content/po/bs/log.po | 4 +-
src/vidalia/help/content/po/bs/netview.po | 4 +-
src/vidalia/help/content/po/bs/running.po | 4 +-
src/vidalia/help/content/po/bs/server.po | 4 +-
src/vidalia/help/content/po/bs/services.po | 4 +-
src/vidalia/help/content/po/bs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ca/config.po | 4 +-
src/vidalia/help/content/po/ca/index.po | 4 +-
src/vidalia/help/content/po/ca/links.po | 4 +-
src/vidalia/help/content/po/ca/log.po | 4 +-
src/vidalia/help/content/po/ca/running.po | 4 +-
src/vidalia/help/content/po/ca/server.po | 4 +-
src/vidalia/help/content/po/ca/services.po | 4 +-
src/vidalia/help/content/po/ca/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cs/config.po | 4 +-
src/vidalia/help/content/po/cs/index.po | 4 +-
src/vidalia/help/content/po/cs/links.po | 4 +-
src/vidalia/help/content/po/cs/log.po | 4 +-
src/vidalia/help/content/po/cs/running.po | 4 +-
src/vidalia/help/content/po/cs/server.po | 4 +-
src/vidalia/help/content/po/cs/services.po | 4 +-
src/vidalia/help/content/po/cs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/csb/config.po | 4 +-
src/vidalia/help/content/po/csb/index.po | 4 +-
src/vidalia/help/content/po/csb/links.po | 4 +-
src/vidalia/help/content/po/csb/log.po | 4 +-
src/vidalia/help/content/po/csb/running.po | 4 +-
src/vidalia/help/content/po/csb/server.po | 4 +-
src/vidalia/help/content/po/csb/services.po | 4 +-
src/vidalia/help/content/po/csb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cy/config.po | 4 +-
src/vidalia/help/content/po/cy/index.po | 4 +-
src/vidalia/help/content/po/cy/links.po | 4 +-
src/vidalia/help/content/po/cy/log.po | 4 +-
src/vidalia/help/content/po/cy/running.po | 4 +-
src/vidalia/help/content/po/cy/server.po | 4 +-
src/vidalia/help/content/po/cy/services.po | 4 +-
src/vidalia/help/content/po/cy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/da/bridges.po | 4 +-
src/vidalia/help/content/po/da/index.po | 4 +-
src/vidalia/help/content/po/da/links.po | 4 +-
src/vidalia/help/content/po/da/log.po | 4 +-
src/vidalia/help/content/po/da/netview.po | 4 +-
src/vidalia/help/content/po/da/running.po | 4 +-
src/vidalia/help/content/po/da/server.po | 4 +-
src/vidalia/help/content/po/da/services.po | 4 +-
src/vidalia/help/content/po/da/troubleshooting.po | 4 +-
src/vidalia/help/content/po/de/bridges.po | 4 +-
src/vidalia/help/content/po/de/config.po | 4 +-
src/vidalia/help/content/po/de/index.po | 4 +-
src/vidalia/help/content/po/de/links.po | 4 +-
src/vidalia/help/content/po/de/log.po | 4 +-
src/vidalia/help/content/po/de/netview.po | 4 +-
src/vidalia/help/content/po/de/running.po | 4 +-
src/vidalia/help/content/po/de/server.po | 4 +-
src/vidalia/help/content/po/de/services.po | 4 +-
src/vidalia/help/content/po/de/troubleshooting.po | 4 +-
src/vidalia/help/content/po/dz/config.po | 4 +-
src/vidalia/help/content/po/dz/index.po | 4 +-
src/vidalia/help/content/po/dz/links.po | 4 +-
src/vidalia/help/content/po/dz/log.po | 4 +-
src/vidalia/help/content/po/dz/running.po | 4 +-
src/vidalia/help/content/po/dz/server.po | 4 +-
src/vidalia/help/content/po/dz/services.po | 4 +-
src/vidalia/help/content/po/dz/troubleshooting.po | 4 +-
src/vidalia/help/content/po/el/config.po | 4 +-
src/vidalia/help/content/po/el/index.po | 4 +-
src/vidalia/help/content/po/el/links.po | 4 +-
src/vidalia/help/content/po/el/log.po | 4 +-
src/vidalia/help/content/po/el/running.po | 4 +-
src/vidalia/help/content/po/el/server.po | 4 +-
src/vidalia/help/content/po/el/services.po | 4 +-
src/vidalia/help/content/po/el/troubleshooting.po | 4 +-
src/vidalia/help/content/po/en/bridges.po | 4 +-
src/vidalia/help/content/po/en/config.po | 4 +-
src/vidalia/help/content/po/en/index.po | 4 +-
src/vidalia/help/content/po/en/links.po | 4 +-
src/vidalia/help/content/po/en/log.po | 4 +-
src/vidalia/help/content/po/en/netview.po | 4 +-
src/vidalia/help/content/po/en/running.po | 4 +-
src/vidalia/help/content/po/en/server.po | 4 +-
src/vidalia/help/content/po/en/services.po | 4 +-
src/vidalia/help/content/po/en/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eo/config.po | 4 +-
src/vidalia/help/content/po/eo/index.po | 4 +-
src/vidalia/help/content/po/eo/links.po | 4 +-
src/vidalia/help/content/po/eo/log.po | 4 +-
src/vidalia/help/content/po/eo/running.po | 4 +-
src/vidalia/help/content/po/eo/server.po | 4 +-
src/vidalia/help/content/po/eo/services.po | 4 +-
src/vidalia/help/content/po/eo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/es/config.po | 4 +-
src/vidalia/help/content/po/es/index.po | 4 +-
src/vidalia/help/content/po/es/links.po | 4 +-
src/vidalia/help/content/po/es/log.po | 4 +-
src/vidalia/help/content/po/es/netview.po | 4 +-
src/vidalia/help/content/po/es/running.po | 4 +-
src/vidalia/help/content/po/es/server.po | 4 +-
src/vidalia/help/content/po/es/services.po | 4 +-
src/vidalia/help/content/po/es/troubleshooting.po | 4 +-
src/vidalia/help/content/po/et/config.po | 4 +-
src/vidalia/help/content/po/et/index.po | 4 +-
src/vidalia/help/content/po/et/links.po | 4 +-
src/vidalia/help/content/po/et/log.po | 4 +-
src/vidalia/help/content/po/et/running.po | 4 +-
src/vidalia/help/content/po/et/server.po | 4 +-
src/vidalia/help/content/po/et/services.po | 4 +-
src/vidalia/help/content/po/et/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eu/config.po | 4 +-
src/vidalia/help/content/po/eu/index.po | 4 +-
src/vidalia/help/content/po/eu/links.po | 4 +-
src/vidalia/help/content/po/eu/log.po | 4 +-
src/vidalia/help/content/po/eu/running.po | 4 +-
src/vidalia/help/content/po/eu/server.po | 4 +-
src/vidalia/help/content/po/eu/services.po | 4 +-
src/vidalia/help/content/po/eu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fa/bridges.po | 4 +-
src/vidalia/help/content/po/fa/config.po | 4 +-
src/vidalia/help/content/po/fa/index.po | 4 +-
src/vidalia/help/content/po/fa/links.po | 4 +-
src/vidalia/help/content/po/fa/log.po | 4 +-
src/vidalia/help/content/po/fa/netview.po | 4 +-
src/vidalia/help/content/po/fa/running.po | 4 +-
src/vidalia/help/content/po/fa/server.po | 4 +-
src/vidalia/help/content/po/fa/services.po | 4 +-
src/vidalia/help/content/po/fa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fi/bridges.po | 4 +-
src/vidalia/help/content/po/fi/config.po | 4 +-
src/vidalia/help/content/po/fi/index.po | 4 +-
src/vidalia/help/content/po/fi/links.po | 4 +-
src/vidalia/help/content/po/fi/log.po | 4 +-
src/vidalia/help/content/po/fi/netview.po | 4 +-
src/vidalia/help/content/po/fi/running.po | 4 +-
src/vidalia/help/content/po/fi/server.po | 4 +-
src/vidalia/help/content/po/fi/services.po | 4 +-
src/vidalia/help/content/po/fi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fil/config.po | 4 +-
src/vidalia/help/content/po/fil/index.po | 4 +-
src/vidalia/help/content/po/fil/links.po | 4 +-
src/vidalia/help/content/po/fil/log.po | 4 +-
src/vidalia/help/content/po/fil/running.po | 4 +-
src/vidalia/help/content/po/fil/server.po | 4 +-
src/vidalia/help/content/po/fil/services.po | 4 +-
src/vidalia/help/content/po/fil/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fo/bridges.po | 4 +-
src/vidalia/help/content/po/fo/config.po | 4 +-
src/vidalia/help/content/po/fo/index.po | 4 +-
src/vidalia/help/content/po/fo/links.po | 4 +-
src/vidalia/help/content/po/fo/log.po | 4 +-
src/vidalia/help/content/po/fo/netview.po | 4 +-
src/vidalia/help/content/po/fo/running.po | 4 +-
src/vidalia/help/content/po/fo/server.po | 4 +-
src/vidalia/help/content/po/fo/services.po | 4 +-
src/vidalia/help/content/po/fo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fr/config.po | 4 +-
src/vidalia/help/content/po/fr/index.po | 4 +-
src/vidalia/help/content/po/fr/links.po | 4 +-
src/vidalia/help/content/po/fr/log.po | 4 +-
src/vidalia/help/content/po/fr/netview.po | 4 +-
src/vidalia/help/content/po/fr/running.po | 4 +-
src/vidalia/help/content/po/fr/server.po | 4 +-
src/vidalia/help/content/po/fr/services.po | 4 +-
src/vidalia/help/content/po/fr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fur/config.po | 4 +-
src/vidalia/help/content/po/fur/index.po | 4 +-
src/vidalia/help/content/po/fur/links.po | 4 +-
src/vidalia/help/content/po/fur/log.po | 4 +-
src/vidalia/help/content/po/fur/running.po | 4 +-
src/vidalia/help/content/po/fur/server.po | 4 +-
src/vidalia/help/content/po/fur/services.po | 4 +-
src/vidalia/help/content/po/fur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fy/bridges.po | 4 +-
src/vidalia/help/content/po/fy/config.po | 4 +-
src/vidalia/help/content/po/fy/index.po | 4 +-
src/vidalia/help/content/po/fy/links.po | 4 +-
src/vidalia/help/content/po/fy/log.po | 4 +-
src/vidalia/help/content/po/fy/netview.po | 4 +-
src/vidalia/help/content/po/fy/running.po | 4 +-
src/vidalia/help/content/po/fy/server.po | 4 +-
src/vidalia/help/content/po/fy/services.po | 4 +-
src/vidalia/help/content/po/fy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ga/config.po | 4 +-
src/vidalia/help/content/po/ga/index.po | 4 +-
src/vidalia/help/content/po/ga/links.po | 4 +-
src/vidalia/help/content/po/ga/log.po | 4 +-
src/vidalia/help/content/po/ga/running.po | 4 +-
src/vidalia/help/content/po/ga/server.po | 4 +-
src/vidalia/help/content/po/ga/services.po | 4 +-
src/vidalia/help/content/po/ga/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gl/config.po | 4 +-
src/vidalia/help/content/po/gl/index.po | 4 +-
src/vidalia/help/content/po/gl/links.po | 4 +-
src/vidalia/help/content/po/gl/log.po | 4 +-
src/vidalia/help/content/po/gl/running.po | 4 +-
src/vidalia/help/content/po/gl/server.po | 4 +-
src/vidalia/help/content/po/gl/services.po | 4 +-
src/vidalia/help/content/po/gl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gu/config.po | 4 +-
src/vidalia/help/content/po/gu/index.po | 4 +-
src/vidalia/help/content/po/gu/links.po | 4 +-
src/vidalia/help/content/po/gu/log.po | 4 +-
src/vidalia/help/content/po/gu/running.po | 4 +-
src/vidalia/help/content/po/gu/server.po | 4 +-
src/vidalia/help/content/po/gu/services.po | 4 +-
src/vidalia/help/content/po/gu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gun/config.po | 4 +-
src/vidalia/help/content/po/gun/index.po | 4 +-
src/vidalia/help/content/po/gun/links.po | 4 +-
src/vidalia/help/content/po/gun/log.po | 4 +-
src/vidalia/help/content/po/gun/running.po | 4 +-
src/vidalia/help/content/po/gun/server.po | 4 +-
src/vidalia/help/content/po/gun/services.po | 4 +-
src/vidalia/help/content/po/gun/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ha/config.po | 4 +-
src/vidalia/help/content/po/ha/index.po | 4 +-
src/vidalia/help/content/po/ha/links.po | 4 +-
src/vidalia/help/content/po/ha/log.po | 4 +-
src/vidalia/help/content/po/ha/running.po | 4 +-
src/vidalia/help/content/po/ha/server.po | 4 +-
src/vidalia/help/content/po/ha/services.po | 4 +-
src/vidalia/help/content/po/ha/troubleshooting.po | 4 +-
src/vidalia/help/content/po/he/config.po | 4 +-
src/vidalia/help/content/po/he/index.po | 4 +-
src/vidalia/help/content/po/he/links.po | 4 +-
src/vidalia/help/content/po/he/log.po | 4 +-
src/vidalia/help/content/po/he/running.po | 4 +-
src/vidalia/help/content/po/he/server.po | 4 +-
src/vidalia/help/content/po/he/services.po | 4 +-
src/vidalia/help/content/po/he/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hi/config.po | 4 +-
src/vidalia/help/content/po/hi/index.po | 4 +-
src/vidalia/help/content/po/hi/links.po | 4 +-
src/vidalia/help/content/po/hi/log.po | 4 +-
src/vidalia/help/content/po/hi/running.po | 4 +-
src/vidalia/help/content/po/hi/server.po | 4 +-
src/vidalia/help/content/po/hi/services.po | 4 +-
src/vidalia/help/content/po/hi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hr/config.po | 4 +-
src/vidalia/help/content/po/hr/index.po | 4 +-
src/vidalia/help/content/po/hr/links.po | 4 +-
src/vidalia/help/content/po/hr/log.po | 4 +-
src/vidalia/help/content/po/hr/running.po | 4 +-
src/vidalia/help/content/po/hr/server.po | 4 +-
src/vidalia/help/content/po/hr/services.po | 4 +-
src/vidalia/help/content/po/hr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ht/config.po | 4 +-
src/vidalia/help/content/po/ht/index.po | 4 +-
src/vidalia/help/content/po/ht/links.po | 4 +-
src/vidalia/help/content/po/ht/log.po | 4 +-
src/vidalia/help/content/po/ht/running.po | 4 +-
src/vidalia/help/content/po/ht/server.po | 4 +-
src/vidalia/help/content/po/ht/services.po | 4 +-
src/vidalia/help/content/po/ht/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hu/config.po | 4 +-
src/vidalia/help/content/po/hu/index.po | 4 +-
src/vidalia/help/content/po/hu/links.po | 4 +-
src/vidalia/help/content/po/hu/log.po | 4 +-
src/vidalia/help/content/po/hu/running.po | 4 +-
src/vidalia/help/content/po/hu/server.po | 4 +-
src/vidalia/help/content/po/hu/services.po | 4 +-
src/vidalia/help/content/po/hu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hy/bridges.po | 4 +-
src/vidalia/help/content/po/hy/config.po | 4 +-
src/vidalia/help/content/po/hy/index.po | 4 +-
src/vidalia/help/content/po/hy/links.po | 4 +-
src/vidalia/help/content/po/hy/log.po | 4 +-
src/vidalia/help/content/po/hy/netview.po | 4 +-
src/vidalia/help/content/po/hy/running.po | 4 +-
src/vidalia/help/content/po/hy/server.po | 4 +-
src/vidalia/help/content/po/hy/services.po | 4 +-
src/vidalia/help/content/po/hy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/id/config.po | 4 +-
src/vidalia/help/content/po/id/index.po | 4 +-
src/vidalia/help/content/po/id/links.po | 4 +-
src/vidalia/help/content/po/id/log.po | 4 +-
src/vidalia/help/content/po/id/running.po | 4 +-
src/vidalia/help/content/po/id/server.po | 4 +-
src/vidalia/help/content/po/id/services.po | 4 +-
src/vidalia/help/content/po/id/troubleshooting.po | 4 +-
src/vidalia/help/content/po/is/config.po | 4 +-
src/vidalia/help/content/po/is/index.po | 4 +-
src/vidalia/help/content/po/is/links.po | 4 +-
src/vidalia/help/content/po/is/log.po | 4 +-
src/vidalia/help/content/po/is/running.po | 4 +-
src/vidalia/help/content/po/is/server.po | 4 +-
src/vidalia/help/content/po/is/services.po | 4 +-
src/vidalia/help/content/po/is/troubleshooting.po | 4 +-
src/vidalia/help/content/po/it/config.po | 4 +-
src/vidalia/help/content/po/it/index.po | 4 +-
src/vidalia/help/content/po/it/links.po | 4 +-
src/vidalia/help/content/po/it/log.po | 4 +-
src/vidalia/help/content/po/it/netview.po | 4 +-
src/vidalia/help/content/po/it/running.po | 4 +-
src/vidalia/help/content/po/it/server.po | 4 +-
src/vidalia/help/content/po/it/services.po | 4 +-
src/vidalia/help/content/po/it/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ja/bridges.po | 4 +-
src/vidalia/help/content/po/ja/config.po | 4 +-
src/vidalia/help/content/po/ja/index.po | 4 +-
src/vidalia/help/content/po/ja/links.po | 4 +-
src/vidalia/help/content/po/ja/log.po | 4 +-
src/vidalia/help/content/po/ja/netview.po | 4 +-
src/vidalia/help/content/po/ja/running.po | 4 +-
src/vidalia/help/content/po/ja/server.po | 4 +-
src/vidalia/help/content/po/ja/services.po | 4 +-
src/vidalia/help/content/po/ja/troubleshooting.po | 4 +-
src/vidalia/help/content/po/jv/bridges.po | 4 +-
src/vidalia/help/content/po/jv/config.po | 4 +-
src/vidalia/help/content/po/jv/index.po | 4 +-
src/vidalia/help/content/po/jv/links.po | 4 +-
src/vidalia/help/content/po/jv/log.po | 4 +-
src/vidalia/help/content/po/jv/netview.po | 4 +-
src/vidalia/help/content/po/jv/running.po | 4 +-
src/vidalia/help/content/po/jv/server.po | 4 +-
src/vidalia/help/content/po/jv/services.po | 4 +-
src/vidalia/help/content/po/jv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ka/bridges.po | 4 +-
src/vidalia/help/content/po/ka/config.po | 4 +-
src/vidalia/help/content/po/ka/index.po | 4 +-
src/vidalia/help/content/po/ka/links.po | 4 +-
src/vidalia/help/content/po/ka/log.po | 4 +-
src/vidalia/help/content/po/ka/netview.po | 4 +-
src/vidalia/help/content/po/ka/running.po | 4 +-
src/vidalia/help/content/po/ka/server.po | 4 +-
src/vidalia/help/content/po/ka/services.po | 4 +-
src/vidalia/help/content/po/ka/troubleshooting.po | 4 +-
src/vidalia/help/content/po/km/bridges.po | 4 +-
src/vidalia/help/content/po/km/config.po | 4 +-
src/vidalia/help/content/po/km/index.po | 4 +-
src/vidalia/help/content/po/km/links.po | 4 +-
src/vidalia/help/content/po/km/log.po | 4 +-
src/vidalia/help/content/po/km/netview.po | 4 +-
src/vidalia/help/content/po/km/running.po | 4 +-
src/vidalia/help/content/po/km/server.po | 4 +-
src/vidalia/help/content/po/km/services.po | 4 +-
src/vidalia/help/content/po/km/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kn/config.po | 4 +-
src/vidalia/help/content/po/kn/index.po | 4 +-
src/vidalia/help/content/po/kn/links.po | 4 +-
src/vidalia/help/content/po/kn/log.po | 4 +-
src/vidalia/help/content/po/kn/running.po | 4 +-
src/vidalia/help/content/po/kn/server.po | 4 +-
src/vidalia/help/content/po/kn/services.po | 4 +-
src/vidalia/help/content/po/kn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ko/bridges.po | 4 +-
src/vidalia/help/content/po/ko/config.po | 4 +-
src/vidalia/help/content/po/ko/index.po | 4 +-
src/vidalia/help/content/po/ko/links.po | 4 +-
src/vidalia/help/content/po/ko/log.po | 4 +-
src/vidalia/help/content/po/ko/netview.po | 4 +-
src/vidalia/help/content/po/ko/running.po | 4 +-
src/vidalia/help/content/po/ko/server.po | 4 +-
src/vidalia/help/content/po/ko/services.po | 4 +-
src/vidalia/help/content/po/ko/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ku/bridges.po | 4 +-
src/vidalia/help/content/po/ku/config.po | 4 +-
src/vidalia/help/content/po/ku/index.po | 4 +-
src/vidalia/help/content/po/ku/links.po | 4 +-
src/vidalia/help/content/po/ku/log.po | 4 +-
src/vidalia/help/content/po/ku/netview.po | 4 +-
src/vidalia/help/content/po/ku/running.po | 4 +-
src/vidalia/help/content/po/ku/server.po | 4 +-
src/vidalia/help/content/po/ku/services.po | 4 +-
src/vidalia/help/content/po/ku/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kw/config.po | 4 +-
src/vidalia/help/content/po/kw/index.po | 4 +-
src/vidalia/help/content/po/kw/links.po | 4 +-
src/vidalia/help/content/po/kw/log.po | 4 +-
src/vidalia/help/content/po/kw/running.po | 4 +-
src/vidalia/help/content/po/kw/server.po | 4 +-
src/vidalia/help/content/po/kw/services.po | 4 +-
src/vidalia/help/content/po/kw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ky/bridges.po | 4 +-
src/vidalia/help/content/po/ky/config.po | 4 +-
src/vidalia/help/content/po/ky/index.po | 4 +-
src/vidalia/help/content/po/ky/links.po | 4 +-
src/vidalia/help/content/po/ky/log.po | 4 +-
src/vidalia/help/content/po/ky/netview.po | 4 +-
src/vidalia/help/content/po/ky/running.po | 4 +-
src/vidalia/help/content/po/ky/server.po | 4 +-
src/vidalia/help/content/po/ky/services.po | 4 +-
src/vidalia/help/content/po/ky/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lb/config.po | 4 +-
src/vidalia/help/content/po/lb/index.po | 4 +-
src/vidalia/help/content/po/lb/links.po | 4 +-
src/vidalia/help/content/po/lb/log.po | 4 +-
src/vidalia/help/content/po/lb/running.po | 4 +-
src/vidalia/help/content/po/lb/server.po | 4 +-
src/vidalia/help/content/po/lb/services.po | 4 +-
src/vidalia/help/content/po/lb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lg/bridges.po | 4 +-
src/vidalia/help/content/po/lg/config.po | 4 +-
src/vidalia/help/content/po/lg/index.po | 4 +-
src/vidalia/help/content/po/lg/links.po | 4 +-
src/vidalia/help/content/po/lg/log.po | 4 +-
src/vidalia/help/content/po/lg/netview.po | 4 +-
src/vidalia/help/content/po/lg/running.po | 4 +-
src/vidalia/help/content/po/lg/server.po | 4 +-
src/vidalia/help/content/po/lg/services.po | 4 +-
src/vidalia/help/content/po/lg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ln/config.po | 4 +-
src/vidalia/help/content/po/ln/index.po | 4 +-
src/vidalia/help/content/po/ln/links.po | 4 +-
src/vidalia/help/content/po/ln/log.po | 4 +-
src/vidalia/help/content/po/ln/running.po | 4 +-
src/vidalia/help/content/po/ln/server.po | 4 +-
src/vidalia/help/content/po/ln/services.po | 4 +-
src/vidalia/help/content/po/ln/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lo/config.po | 4 +-
src/vidalia/help/content/po/lo/index.po | 4 +-
src/vidalia/help/content/po/lo/links.po | 4 +-
src/vidalia/help/content/po/lo/log.po | 4 +-
src/vidalia/help/content/po/lo/running.po | 4 +-
src/vidalia/help/content/po/lo/server.po | 4 +-
src/vidalia/help/content/po/lo/services.po | 4 +-
src/vidalia/help/content/po/lo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lt/config.po | 4 +-
src/vidalia/help/content/po/lt/index.po | 4 +-
src/vidalia/help/content/po/lt/links.po | 4 +-
src/vidalia/help/content/po/lt/log.po | 4 +-
src/vidalia/help/content/po/lt/running.po | 4 +-
src/vidalia/help/content/po/lt/server.po | 4 +-
src/vidalia/help/content/po/lt/services.po | 4 +-
src/vidalia/help/content/po/lt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lv/config.po | 4 +-
src/vidalia/help/content/po/lv/index.po | 4 +-
src/vidalia/help/content/po/lv/links.po | 4 +-
src/vidalia/help/content/po/lv/log.po | 4 +-
src/vidalia/help/content/po/lv/running.po | 4 +-
src/vidalia/help/content/po/lv/server.po | 4 +-
src/vidalia/help/content/po/lv/services.po | 4 +-
src/vidalia/help/content/po/lv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mg/config.po | 4 +-
src/vidalia/help/content/po/mg/index.po | 4 +-
src/vidalia/help/content/po/mg/links.po | 4 +-
src/vidalia/help/content/po/mg/log.po | 4 +-
src/vidalia/help/content/po/mg/running.po | 4 +-
src/vidalia/help/content/po/mg/server.po | 4 +-
src/vidalia/help/content/po/mg/services.po | 4 +-
src/vidalia/help/content/po/mg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mi/config.po | 4 +-
src/vidalia/help/content/po/mi/index.po | 4 +-
src/vidalia/help/content/po/mi/links.po | 4 +-
src/vidalia/help/content/po/mi/log.po | 4 +-
src/vidalia/help/content/po/mi/running.po | 4 +-
src/vidalia/help/content/po/mi/server.po | 4 +-
src/vidalia/help/content/po/mi/services.po | 4 +-
src/vidalia/help/content/po/mi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mk/config.po | 4 +-
src/vidalia/help/content/po/mk/index.po | 4 +-
src/vidalia/help/content/po/mk/links.po | 4 +-
src/vidalia/help/content/po/mk/log.po | 4 +-
src/vidalia/help/content/po/mk/running.po | 4 +-
src/vidalia/help/content/po/mk/server.po | 4 +-
src/vidalia/help/content/po/mk/services.po | 4 +-
src/vidalia/help/content/po/mk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ml/config.po | 4 +-
src/vidalia/help/content/po/ml/index.po | 4 +-
src/vidalia/help/content/po/ml/links.po | 4 +-
src/vidalia/help/content/po/ml/log.po | 4 +-
src/vidalia/help/content/po/ml/running.po | 4 +-
src/vidalia/help/content/po/ml/server.po | 4 +-
src/vidalia/help/content/po/ml/services.po | 4 +-
src/vidalia/help/content/po/ml/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mn/config.po | 4 +-
src/vidalia/help/content/po/mn/index.po | 4 +-
src/vidalia/help/content/po/mn/links.po | 4 +-
src/vidalia/help/content/po/mn/log.po | 4 +-
src/vidalia/help/content/po/mn/running.po | 4 +-
src/vidalia/help/content/po/mn/server.po | 4 +-
src/vidalia/help/content/po/mn/services.po | 4 +-
src/vidalia/help/content/po/mn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mr/config.po | 4 +-
src/vidalia/help/content/po/mr/index.po | 4 +-
src/vidalia/help/content/po/mr/links.po | 4 +-
src/vidalia/help/content/po/mr/log.po | 4 +-
src/vidalia/help/content/po/mr/running.po | 4 +-
src/vidalia/help/content/po/mr/server.po | 4 +-
src/vidalia/help/content/po/mr/services.po | 4 +-
src/vidalia/help/content/po/mr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ms/config.po | 4 +-
src/vidalia/help/content/po/ms/index.po | 4 +-
src/vidalia/help/content/po/ms/links.po | 4 +-
src/vidalia/help/content/po/ms/log.po | 4 +-
src/vidalia/help/content/po/ms/running.po | 4 +-
src/vidalia/help/content/po/ms/server.po | 4 +-
src/vidalia/help/content/po/ms/services.po | 4 +-
src/vidalia/help/content/po/ms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mt/config.po | 4 +-
src/vidalia/help/content/po/mt/index.po | 4 +-
src/vidalia/help/content/po/mt/links.po | 4 +-
src/vidalia/help/content/po/mt/log.po | 4 +-
src/vidalia/help/content/po/mt/running.po | 4 +-
src/vidalia/help/content/po/mt/server.po | 4 +-
src/vidalia/help/content/po/mt/services.po | 4 +-
src/vidalia/help/content/po/mt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/my/config.po | 4 +-
src/vidalia/help/content/po/my/index.po | 4 +-
src/vidalia/help/content/po/my/links.po | 4 +-
src/vidalia/help/content/po/my/log.po | 4 +-
src/vidalia/help/content/po/my/netview.po | 4 +-
src/vidalia/help/content/po/my/running.po | 4 +-
src/vidalia/help/content/po/my/server.po | 4 +-
src/vidalia/help/content/po/my/services.po | 4 +-
src/vidalia/help/content/po/my/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nah/bridges.po | 4 +-
src/vidalia/help/content/po/nah/config.po | 4 +-
src/vidalia/help/content/po/nah/index.po | 4 +-
src/vidalia/help/content/po/nah/links.po | 4 +-
src/vidalia/help/content/po/nah/log.po | 4 +-
src/vidalia/help/content/po/nah/netview.po | 4 +-
src/vidalia/help/content/po/nah/running.po | 4 +-
src/vidalia/help/content/po/nah/server.po | 4 +-
src/vidalia/help/content/po/nah/services.po | 4 +-
src/vidalia/help/content/po/nah/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nap/config.po | 4 +-
src/vidalia/help/content/po/nap/index.po | 4 +-
src/vidalia/help/content/po/nap/links.po | 4 +-
src/vidalia/help/content/po/nap/log.po | 4 +-
src/vidalia/help/content/po/nap/running.po | 4 +-
src/vidalia/help/content/po/nap/server.po | 4 +-
src/vidalia/help/content/po/nap/services.po | 4 +-
src/vidalia/help/content/po/nap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nb/config.po | 4 +-
src/vidalia/help/content/po/nb/index.po | 4 +-
src/vidalia/help/content/po/nb/links.po | 4 +-
src/vidalia/help/content/po/nb/log.po | 4 +-
src/vidalia/help/content/po/nb/running.po | 4 +-
src/vidalia/help/content/po/nb/server.po | 4 +-
src/vidalia/help/content/po/nb/services.po | 4 +-
src/vidalia/help/content/po/nb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ne/config.po | 4 +-
src/vidalia/help/content/po/ne/index.po | 4 +-
src/vidalia/help/content/po/ne/links.po | 4 +-
src/vidalia/help/content/po/ne/log.po | 4 +-
src/vidalia/help/content/po/ne/running.po | 4 +-
src/vidalia/help/content/po/ne/server.po | 4 +-
src/vidalia/help/content/po/ne/services.po | 4 +-
src/vidalia/help/content/po/ne/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nl/config.po | 4 +-
src/vidalia/help/content/po/nl/index.po | 4 +-
src/vidalia/help/content/po/nl/links.po | 4 +-
src/vidalia/help/content/po/nl/log.po | 4 +-
src/vidalia/help/content/po/nl/running.po | 4 +-
src/vidalia/help/content/po/nl/server.po | 4 +-
src/vidalia/help/content/po/nl/services.po | 4 +-
src/vidalia/help/content/po/nl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nn/config.po | 4 +-
src/vidalia/help/content/po/nn/index.po | 4 +-
src/vidalia/help/content/po/nn/links.po | 4 +-
src/vidalia/help/content/po/nn/log.po | 4 +-
src/vidalia/help/content/po/nn/running.po | 4 +-
src/vidalia/help/content/po/nn/server.po | 4 +-
src/vidalia/help/content/po/nn/services.po | 4 +-
src/vidalia/help/content/po/nn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nso/config.po | 4 +-
src/vidalia/help/content/po/nso/index.po | 4 +-
src/vidalia/help/content/po/nso/links.po | 4 +-
src/vidalia/help/content/po/nso/log.po | 4 +-
src/vidalia/help/content/po/nso/running.po | 4 +-
src/vidalia/help/content/po/nso/server.po | 4 +-
src/vidalia/help/content/po/nso/services.po | 4 +-
src/vidalia/help/content/po/nso/troubleshooting.po | 4 +-
src/vidalia/help/content/po/oc/config.po | 4 +-
src/vidalia/help/content/po/oc/index.po | 4 +-
src/vidalia/help/content/po/oc/links.po | 4 +-
src/vidalia/help/content/po/oc/log.po | 4 +-
src/vidalia/help/content/po/oc/running.po | 4 +-
src/vidalia/help/content/po/oc/server.po | 4 +-
src/vidalia/help/content/po/oc/services.po | 4 +-
src/vidalia/help/content/po/oc/troubleshooting.po | 4 +-
src/vidalia/help/content/po/or/bridges.po | 4 +-
src/vidalia/help/content/po/or/config.po | 4 +-
src/vidalia/help/content/po/or/index.po | 4 +-
src/vidalia/help/content/po/or/links.po | 4 +-
src/vidalia/help/content/po/or/log.po | 4 +-
src/vidalia/help/content/po/or/netview.po | 4 +-
src/vidalia/help/content/po/or/running.po | 4 +-
src/vidalia/help/content/po/or/server.po | 4 +-
src/vidalia/help/content/po/or/services.po | 4 +-
src/vidalia/help/content/po/or/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pa/config.po | 4 +-
src/vidalia/help/content/po/pa/index.po | 4 +-
src/vidalia/help/content/po/pa/links.po | 4 +-
src/vidalia/help/content/po/pa/log.po | 4 +-
src/vidalia/help/content/po/pa/running.po | 4 +-
src/vidalia/help/content/po/pa/server.po | 4 +-
src/vidalia/help/content/po/pa/services.po | 4 +-
src/vidalia/help/content/po/pa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pap/config.po | 4 +-
src/vidalia/help/content/po/pap/index.po | 4 +-
src/vidalia/help/content/po/pap/links.po | 4 +-
src/vidalia/help/content/po/pap/log.po | 4 +-
src/vidalia/help/content/po/pap/running.po | 4 +-
src/vidalia/help/content/po/pap/server.po | 4 +-
src/vidalia/help/content/po/pap/services.po | 4 +-
src/vidalia/help/content/po/pap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pl/config.po | 4 +-
src/vidalia/help/content/po/pl/index.po | 4 +-
src/vidalia/help/content/po/pl/links.po | 4 +-
src/vidalia/help/content/po/pl/log.po | 4 +-
src/vidalia/help/content/po/pl/running.po | 4 +-
src/vidalia/help/content/po/pl/server.po | 4 +-
src/vidalia/help/content/po/pl/services.po | 4 +-
src/vidalia/help/content/po/pl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pms/config.po | 4 +-
src/vidalia/help/content/po/pms/index.po | 4 +-
src/vidalia/help/content/po/pms/links.po | 4 +-
src/vidalia/help/content/po/pms/log.po | 4 +-
src/vidalia/help/content/po/pms/running.po | 4 +-
src/vidalia/help/content/po/pms/server.po | 4 +-
src/vidalia/help/content/po/pms/services.po | 4 +-
src/vidalia/help/content/po/pms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ps/config.po | 4 +-
src/vidalia/help/content/po/ps/index.po | 4 +-
src/vidalia/help/content/po/ps/links.po | 4 +-
src/vidalia/help/content/po/ps/log.po | 4 +-
src/vidalia/help/content/po/ps/running.po | 4 +-
src/vidalia/help/content/po/ps/server.po | 4 +-
src/vidalia/help/content/po/ps/services.po | 4 +-
src/vidalia/help/content/po/ps/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt/config.po | 4 +-
src/vidalia/help/content/po/pt/index.po | 4 +-
src/vidalia/help/content/po/pt/links.po | 4 +-
src/vidalia/help/content/po/pt/log.po | 4 +-
src/vidalia/help/content/po/pt/running.po | 4 +-
src/vidalia/help/content/po/pt/server.po | 4 +-
src/vidalia/help/content/po/pt/services.po | 4 +-
src/vidalia/help/content/po/pt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt_BR/config.po | 4 +-
src/vidalia/help/content/po/pt_BR/index.po | 4 +-
src/vidalia/help/content/po/pt_BR/links.po | 4 +-
src/vidalia/help/content/po/pt_BR/log.po | 4 +-
src/vidalia/help/content/po/pt_BR/running.po | 4 +-
src/vidalia/help/content/po/pt_BR/server.po | 4 +-
src/vidalia/help/content/po/pt_BR/services.po | 4 +-
.../help/content/po/pt_BR/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ro/config.po | 4 +-
src/vidalia/help/content/po/ro/index.po | 4 +-
src/vidalia/help/content/po/ro/links.po | 4 +-
src/vidalia/help/content/po/ro/log.po | 4 +-
src/vidalia/help/content/po/ro/running.po | 4 +-
src/vidalia/help/content/po/ro/server.po | 4 +-
src/vidalia/help/content/po/ro/services.po | 4 +-
src/vidalia/help/content/po/ro/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ru/config.po | 4 +-
src/vidalia/help/content/po/ru/index.po | 4 +-
src/vidalia/help/content/po/ru/links.po | 4 +-
src/vidalia/help/content/po/ru/log.po | 4 +-
src/vidalia/help/content/po/ru/netview.po | 4 +-
src/vidalia/help/content/po/ru/running.po | 4 +-
src/vidalia/help/content/po/ru/server.po | 4 +-
src/vidalia/help/content/po/ru/services.po | 4 +-
src/vidalia/help/content/po/ru/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sco/config.po | 4 +-
src/vidalia/help/content/po/sco/index.po | 4 +-
src/vidalia/help/content/po/sco/links.po | 4 +-
src/vidalia/help/content/po/sco/log.po | 4 +-
src/vidalia/help/content/po/sco/running.po | 4 +-
src/vidalia/help/content/po/sco/server.po | 4 +-
src/vidalia/help/content/po/sco/services.po | 4 +-
src/vidalia/help/content/po/sco/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sk/bridges.po | 4 +-
src/vidalia/help/content/po/sk/config.po | 4 +-
src/vidalia/help/content/po/sk/index.po | 4 +-
src/vidalia/help/content/po/sk/links.po | 4 +-
src/vidalia/help/content/po/sk/log.po | 4 +-
src/vidalia/help/content/po/sk/netview.po | 4 +-
src/vidalia/help/content/po/sk/running.po | 4 +-
src/vidalia/help/content/po/sk/server.po | 4 +-
src/vidalia/help/content/po/sk/services.po | 4 +-
src/vidalia/help/content/po/sk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sl/bridges.po | 4 +-
src/vidalia/help/content/po/sl/config.po | 4 +-
src/vidalia/help/content/po/sl/index.po | 4 +-
src/vidalia/help/content/po/sl/links.po | 4 +-
src/vidalia/help/content/po/sl/log.po | 4 +-
src/vidalia/help/content/po/sl/netview.po | 4 +-
src/vidalia/help/content/po/sl/running.po | 4 +-
src/vidalia/help/content/po/sl/server.po | 4 +-
src/vidalia/help/content/po/sl/services.po | 4 +-
src/vidalia/help/content/po/sl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/so/bridges.po | 4 +-
src/vidalia/help/content/po/so/config.po | 4 +-
src/vidalia/help/content/po/so/index.po | 4 +-
src/vidalia/help/content/po/so/links.po | 4 +-
src/vidalia/help/content/po/so/log.po | 4 +-
src/vidalia/help/content/po/so/netview.po | 4 +-
src/vidalia/help/content/po/so/running.po | 4 +-
src/vidalia/help/content/po/so/server.po | 4 +-
src/vidalia/help/content/po/so/services.po | 4 +-
src/vidalia/help/content/po/so/troubleshooting.po | 4 +-
src/vidalia/help/content/po/son/config.po | 4 +-
src/vidalia/help/content/po/son/index.po | 4 +-
src/vidalia/help/content/po/son/links.po | 4 +-
src/vidalia/help/content/po/son/log.po | 4 +-
src/vidalia/help/content/po/son/running.po | 4 +-
src/vidalia/help/content/po/son/server.po | 4 +-
src/vidalia/help/content/po/son/services.po | 4 +-
src/vidalia/help/content/po/son/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sq/bridges.po | 4 +-
src/vidalia/help/content/po/sq/config.po | 4 +-
src/vidalia/help/content/po/sq/index.po | 4 +-
src/vidalia/help/content/po/sq/links.po | 4 +-
src/vidalia/help/content/po/sq/log.po | 4 +-
src/vidalia/help/content/po/sq/netview.po | 4 +-
src/vidalia/help/content/po/sq/running.po | 4 +-
src/vidalia/help/content/po/sq/server.po | 4 +-
src/vidalia/help/content/po/sq/services.po | 4 +-
src/vidalia/help/content/po/sq/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sr/bridges.po | 4 +-
src/vidalia/help/content/po/sr/config.po | 4 +-
src/vidalia/help/content/po/sr/index.po | 4 +-
src/vidalia/help/content/po/sr/links.po | 4 +-
src/vidalia/help/content/po/sr/log.po | 4 +-
src/vidalia/help/content/po/sr/netview.po | 4 +-
src/vidalia/help/content/po/sr/running.po | 4 +-
src/vidalia/help/content/po/sr/server.po | 4 +-
src/vidalia/help/content/po/sr/services.po | 4 +-
src/vidalia/help/content/po/sr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/st/bridges.po | 4 +-
src/vidalia/help/content/po/st/config.po | 4 +-
src/vidalia/help/content/po/st/index.po | 4 +-
src/vidalia/help/content/po/st/links.po | 4 +-
src/vidalia/help/content/po/st/log.po | 4 +-
src/vidalia/help/content/po/st/netview.po | 4 +-
src/vidalia/help/content/po/st/running.po | 4 +-
src/vidalia/help/content/po/st/server.po | 4 +-
src/vidalia/help/content/po/st/services.po | 4 +-
src/vidalia/help/content/po/st/troubleshooting.po | 4 +-
src/vidalia/help/content/po/su/config.po | 4 +-
src/vidalia/help/content/po/su/index.po | 4 +-
src/vidalia/help/content/po/su/links.po | 4 +-
src/vidalia/help/content/po/su/log.po | 4 +-
src/vidalia/help/content/po/su/running.po | 4 +-
src/vidalia/help/content/po/su/server.po | 4 +-
src/vidalia/help/content/po/su/services.po | 4 +-
src/vidalia/help/content/po/su/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sv/bridges.po | 4 +-
src/vidalia/help/content/po/sv/config.po | 4 +-
src/vidalia/help/content/po/sv/index.po | 4 +-
src/vidalia/help/content/po/sv/links.po | 4 +-
src/vidalia/help/content/po/sv/log.po | 4 +-
src/vidalia/help/content/po/sv/netview.po | 4 +-
src/vidalia/help/content/po/sv/running.po | 4 +-
src/vidalia/help/content/po/sv/server.po | 4 +-
src/vidalia/help/content/po/sv/services.po | 4 +-
src/vidalia/help/content/po/sv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sw/config.po | 4 +-
src/vidalia/help/content/po/sw/index.po | 4 +-
src/vidalia/help/content/po/sw/links.po | 4 +-
src/vidalia/help/content/po/sw/log.po | 4 +-
src/vidalia/help/content/po/sw/running.po | 4 +-
src/vidalia/help/content/po/sw/server.po | 4 +-
src/vidalia/help/content/po/sw/services.po | 4 +-
src/vidalia/help/content/po/sw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ta/config.po | 4 +-
src/vidalia/help/content/po/ta/index.po | 4 +-
src/vidalia/help/content/po/ta/links.po | 4 +-
src/vidalia/help/content/po/ta/log.po | 4 +-
src/vidalia/help/content/po/ta/running.po | 4 +-
src/vidalia/help/content/po/ta/server.po | 4 +-
src/vidalia/help/content/po/ta/services.po | 4 +-
src/vidalia/help/content/po/ta/troubleshooting.po | 4 +-
src/vidalia/help/content/po/te/config.po | 4 +-
src/vidalia/help/content/po/te/index.po | 4 +-
src/vidalia/help/content/po/te/links.po | 4 +-
src/vidalia/help/content/po/te/log.po | 4 +-
src/vidalia/help/content/po/te/running.po | 4 +-
src/vidalia/help/content/po/te/server.po | 4 +-
src/vidalia/help/content/po/te/services.po | 4 +-
src/vidalia/help/content/po/te/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tg/config.po | 4 +-
src/vidalia/help/content/po/tg/index.po | 4 +-
src/vidalia/help/content/po/tg/links.po | 4 +-
src/vidalia/help/content/po/tg/log.po | 4 +-
src/vidalia/help/content/po/tg/running.po | 4 +-
src/vidalia/help/content/po/tg/server.po | 4 +-
src/vidalia/help/content/po/tg/services.po | 4 +-
src/vidalia/help/content/po/tg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/th/config.po | 4 +-
src/vidalia/help/content/po/th/index.po | 4 +-
src/vidalia/help/content/po/th/links.po | 4 +-
src/vidalia/help/content/po/th/log.po | 4 +-
src/vidalia/help/content/po/th/running.po | 4 +-
src/vidalia/help/content/po/th/server.po | 4 +-
src/vidalia/help/content/po/th/services.po | 4 +-
src/vidalia/help/content/po/th/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ti/config.po | 4 +-
src/vidalia/help/content/po/ti/index.po | 4 +-
src/vidalia/help/content/po/ti/links.po | 4 +-
src/vidalia/help/content/po/ti/log.po | 4 +-
src/vidalia/help/content/po/ti/running.po | 4 +-
src/vidalia/help/content/po/ti/server.po | 4 +-
src/vidalia/help/content/po/ti/services.po | 4 +-
src/vidalia/help/content/po/ti/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tk/config.po | 4 +-
src/vidalia/help/content/po/tk/index.po | 4 +-
src/vidalia/help/content/po/tk/links.po | 4 +-
src/vidalia/help/content/po/tk/log.po | 4 +-
src/vidalia/help/content/po/tk/running.po | 4 +-
src/vidalia/help/content/po/tk/server.po | 4 +-
src/vidalia/help/content/po/tk/services.po | 4 +-
src/vidalia/help/content/po/tk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tr/index.po | 4 +-
src/vidalia/help/content/po/tr/links.po | 4 +-
src/vidalia/help/content/po/tr/log.po | 4 +-
src/vidalia/help/content/po/tr/running.po | 4 +-
src/vidalia/help/content/po/tr/server.po | 4 +-
src/vidalia/help/content/po/tr/services.po | 4 +-
src/vidalia/help/content/po/tr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/uk/config.po | 4 +-
src/vidalia/help/content/po/uk/index.po | 4 +-
src/vidalia/help/content/po/uk/links.po | 4 +-
src/vidalia/help/content/po/uk/log.po | 4 +-
src/vidalia/help/content/po/uk/running.po | 4 +-
src/vidalia/help/content/po/uk/server.po | 4 +-
src/vidalia/help/content/po/uk/services.po | 4 +-
src/vidalia/help/content/po/uk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ur/config.po | 4 +-
src/vidalia/help/content/po/ur/index.po | 4 +-
src/vidalia/help/content/po/ur/links.po | 4 +-
src/vidalia/help/content/po/ur/log.po | 4 +-
src/vidalia/help/content/po/ur/running.po | 4 +-
src/vidalia/help/content/po/ur/server.po | 4 +-
src/vidalia/help/content/po/ur/services.po | 4 +-
src/vidalia/help/content/po/ur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ve/config.po | 4 +-
src/vidalia/help/content/po/ve/index.po | 4 +-
src/vidalia/help/content/po/ve/links.po | 4 +-
src/vidalia/help/content/po/ve/log.po | 4 +-
src/vidalia/help/content/po/ve/running.po | 4 +-
src/vidalia/help/content/po/ve/server.po | 4 +-
src/vidalia/help/content/po/ve/services.po | 4 +-
src/vidalia/help/content/po/ve/troubleshooting.po | 4 +-
src/vidalia/help/content/po/vi/config.po | 4 +-
src/vidalia/help/content/po/vi/index.po | 4 +-
src/vidalia/help/content/po/vi/links.po | 4 +-
src/vidalia/help/content/po/vi/log.po | 4 +-
src/vidalia/help/content/po/vi/running.po | 4 +-
src/vidalia/help/content/po/vi/server.po | 4 +-
src/vidalia/help/content/po/vi/services.po | 4 +-
src/vidalia/help/content/po/vi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wa/config.po | 4 +-
src/vidalia/help/content/po/wa/index.po | 4 +-
src/vidalia/help/content/po/wa/links.po | 4 +-
src/vidalia/help/content/po/wa/log.po | 4 +-
src/vidalia/help/content/po/wa/running.po | 4 +-
src/vidalia/help/content/po/wa/server.po | 4 +-
src/vidalia/help/content/po/wa/services.po | 4 +-
src/vidalia/help/content/po/wa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wo/bridges.po | 4 +-
src/vidalia/help/content/po/wo/config.po | 4 +-
src/vidalia/help/content/po/wo/index.po | 4 +-
src/vidalia/help/content/po/wo/links.po | 4 +-
src/vidalia/help/content/po/wo/log.po | 4 +-
src/vidalia/help/content/po/wo/netview.po | 4 +-
src/vidalia/help/content/po/wo/running.po | 4 +-
src/vidalia/help/content/po/wo/server.po | 4 +-
src/vidalia/help/content/po/wo/services.po | 4 +-
src/vidalia/help/content/po/wo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_CN/config.po | 4 +-
src/vidalia/help/content/po/zh_CN/index.po | 4 +-
src/vidalia/help/content/po/zh_CN/links.po | 4 +-
src/vidalia/help/content/po/zh_CN/log.po | 4 +-
src/vidalia/help/content/po/zh_CN/running.po | 4 +-
src/vidalia/help/content/po/zh_CN/server.po | 4 +-
src/vidalia/help/content/po/zh_CN/services.po | 4 +-
.../help/content/po/zh_CN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_HK/config.po | 4 +-
src/vidalia/help/content/po/zh_HK/index.po | 4 +-
src/vidalia/help/content/po/zh_HK/links.po | 4 +-
src/vidalia/help/content/po/zh_HK/log.po | 4 +-
src/vidalia/help/content/po/zh_HK/running.po | 4 +-
src/vidalia/help/content/po/zh_HK/server.po | 4 +-
src/vidalia/help/content/po/zh_HK/services.po | 4 +-
.../help/content/po/zh_HK/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_TW/config.po | 4 +-
src/vidalia/help/content/po/zh_TW/index.po | 4 +-
src/vidalia/help/content/po/zh_TW/links.po | 4 +-
src/vidalia/help/content/po/zh_TW/log.po | 4 +-
src/vidalia/help/content/po/zh_TW/running.po | 4 +-
src/vidalia/help/content/po/zh_TW/server.po | 4 +-
src/vidalia/help/content/po/zh_TW/services.po | 4 +-
.../help/content/po/zh_TW/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zu/config.po | 4 +-
src/vidalia/help/content/po/zu/index.po | 4 +-
src/vidalia/help/content/po/zu/links.po | 4 +-
src/vidalia/help/content/po/zu/log.po | 4 +-
src/vidalia/help/content/po/zu/running.po | 4 +-
src/vidalia/help/content/po/zu/server.po | 4 +-
src/vidalia/help/content/po/zu/services.po | 4 +-
src/vidalia/help/content/po/zu/troubleshooting.po | 4 +-
src/vidalia/help/content/pt_BR/bridges.html | 6 ++--
src/vidalia/help/content/ru/bridges.html | 6 ++--
src/vidalia/help/content/ru/config.html | 6 ++--
src/vidalia/help/content/ru/index.html | 6 ++--
src/vidalia/help/content/ru/links.html | 6 ++--
src/vidalia/help/content/ru/log.html | 6 ++--
src/vidalia/help/content/ru/netview.html | 6 ++--
src/vidalia/help/content/ru/running.html | 6 ++--
src/vidalia/help/content/ru/server.html | 6 ++--
src/vidalia/help/content/ru/services.html | 6 ++--
src/vidalia/help/content/ru/troubleshooting.html | 6 ++--
src/vidalia/help/content/sv/bridges.html | 6 ++--
src/vidalia/help/content/sv/config.html | 6 ++--
src/vidalia/help/content/sv/index.html | 6 ++--
src/vidalia/help/content/sv/links.html | 6 ++--
src/vidalia/help/content/sv/log.html | 6 ++--
src/vidalia/help/content/sv/netview.html | 6 ++--
src/vidalia/help/content/sv/running.html | 6 ++--
src/vidalia/help/content/sv/server.html | 6 ++--
src/vidalia/help/content/sv/services.html | 6 ++--
src/vidalia/help/content/sv/troubleshooting.html | 6 ++--
src/vidalia/help/content/tr/links.html | 6 ++--
src/vidalia/help/content/zh_CN/bridges.html | 6 ++--
src/vidalia/help/content/zh_CN/config.html | 6 ++--
src/vidalia/help/content/zh_CN/index.html | 6 ++--
src/vidalia/help/content/zh_CN/links.html | 6 ++--
src/vidalia/help/content/zh_CN/log.html | 6 ++--
src/vidalia/help/content/zh_CN/netview.html | 6 ++--
src/vidalia/help/content/zh_CN/running.html | 6 ++--
src/vidalia/help/content/zh_CN/server.html | 6 ++--
.../help/content/zh_CN/troubleshooting.html | 6 ++--
src/vidalia/i18n/CMakeLists.txt | 6 ++--
src/vidalia/log/LogFile.cpp | 6 ++--
src/vidalia/log/LogFile.h | 6 ++--
src/vidalia/log/LogHeaderView.cpp | 6 ++--
src/vidalia/log/LogHeaderView.h | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.cpp | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.h | 6 ++--
src/vidalia/log/LogTreeItem.cpp | 6 ++--
src/vidalia/log/LogTreeItem.h | 6 ++--
src/vidalia/log/LogTreeWidget.cpp | 6 ++--
src/vidalia/log/LogTreeWidget.h | 6 ++--
src/vidalia/log/MessageLog.cpp | 6 ++--
src/vidalia/log/MessageLog.h | 6 ++--
src/vidalia/log/StatusEventItem.cpp | 6 ++--
src/vidalia/log/StatusEventItem.h | 6 ++--
src/vidalia/log/StatusEventItemDelegate.cpp | 6 ++--
src/vidalia/log/StatusEventItemDelegate.h | 6 ++--
src/vidalia/log/StatusEventWidget.cpp | 6 ++--
src/vidalia/log/StatusEventWidget.h | 6 ++--
src/vidalia/main.cpp | 6 ++--
src/vidalia/network/CircuitItem.cpp | 6 ++--
src/vidalia/network/CircuitItem.h | 6 ++--
src/vidalia/network/CircuitListWidget.cpp | 6 ++--
src/vidalia/network/CircuitListWidget.h | 6 ++--
src/vidalia/network/CountryInfo.cpp | 6 ++--
src/vidalia/network/CountryInfo.h | 6 ++--
src/vidalia/network/GeoIpDatabase.cpp | 6 ++--
src/vidalia/network/GeoIpDatabase.h | 6 ++--
src/vidalia/network/GeoIpRecord.cpp | 6 ++--
src/vidalia/network/GeoIpRecord.h | 6 ++--
src/vidalia/network/GeoIpResolver.cpp | 6 ++--
src/vidalia/network/GeoIpResolver.h | 6 ++--
src/vidalia/network/NetViewer.cpp | 6 ++--
src/vidalia/network/NetViewer.h | 6 ++--
src/vidalia/network/RouterDescriptorView.cpp | 6 ++--
src/vidalia/network/RouterDescriptorView.h | 6 ++--
src/vidalia/network/RouterInfoDialog.cpp | 6 ++--
src/vidalia/network/RouterInfoDialog.h | 6 ++--
src/vidalia/network/RouterListItem.cpp | 6 ++--
src/vidalia/network/RouterListItem.h | 6 ++--
src/vidalia/network/RouterListWidget.cpp | 6 ++--
src/vidalia/network/RouterListWidget.h | 6 ++--
src/vidalia/network/StreamItem.cpp | 6 ++--
src/vidalia/network/StreamItem.h | 6 ++--
src/vidalia/network/TorMapImageView.cpp | 6 ++--
src/vidalia/network/TorMapImageView.h | 6 ++--
src/vidalia/network/TorMapWidget.cpp | 6 ++--
src/vidalia/network/TorMapWidget.h | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.cpp | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.h | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.cpp | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.h | 6 ++--
src/vidalia/network/ZImageView.cpp | 6 ++--
src/vidalia/network/ZImageView.h | 6 ++--
src/vidalia/res/vidalia_win.rc.in | 6 ++--
1388 files changed, 3165 insertions(+), 3181 deletions(-)
[View Less]
1
0
commit 0b988ea1724e1bad42e69511f6b2c94f72261263
Merge: c9048ab c0da3c8
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:15:44 2011 -0300
Merge branch 'master' into alpha
Conflicts:
src/vidalia/VClickLabel.cpp
src/vidalia/VClickLabel.h
CMakeLists.txt | 6 ++--
cmake/FindBreakpad.cmake | 6 ++--
cmake/FindGeoIP.cmake | 6 ++--
cmake/FindMarble.cmake …
[View More] | 6 ++--
cmake/FindOpenSSL.cmake | 6 ++--
cmake/FindWiX.cmake | 6 ++--
cmake/VidaliaMacros.cmake | 6 ++--
config.h.in | 6 ++--
contrib/geoip.py | 6 ++--
doc/CMakeLists.txt | 6 ++--
doc/vidalia.1.in | 2 +-
pkg/CMakeLists.txt | 6 ++--
pkg/build-geoip-cache.sh | 6 ++--
pkg/osx/CMakeLists.txt | 6 ++--
pkg/osx/InstallTorbutton.scpt.in | 6 ++--
pkg/package.sh | 6 ++--
pkg/rpm/CMakeLists.txt | 6 ++--
pkg/win32/CMakeLists.txt | 6 ++--
pkg/win32/bridge-bundle.nsi.in | 6 ++--
pkg/win32/vidalia-bundle.nsi.in | 6 ++--
src/CMakeLists.txt | 6 ++--
src/common/CMakeLists.txt | 6 ++--
src/common/Log.cpp | 6 ++--
src/common/Log.h | 6 ++--
src/common/TorSocket.cpp | 6 ++--
src/common/TorSocket.h | 6 ++--
src/common/ZlibByteArray.cpp | 6 ++--
src/common/ZlibByteArray.h | 6 ++--
src/common/crypto.cpp | 6 ++--
src/common/crypto.h | 6 ++--
src/common/file.cpp | 6 ++--
src/common/file.h | 6 ++--
src/common/html.cpp | 6 ++--
src/common/html.h | 6 ++--
src/common/net.cpp | 6 ++--
src/common/net.h | 6 ++--
src/common/procutil.cpp | 6 ++--
src/common/procutil.h | 6 ++--
src/common/stringutil.cpp | 6 ++--
src/common/stringutil.h | 6 ++--
src/common/win32.cpp | 6 ++--
src/common/win32.h | 6 ++--
src/crashreporter/CMakeLists.txt | 6 ++--
src/crashreporter/CrashReportDialog.cpp | 6 ++--
src/crashreporter/CrashReportDialog.h | 6 ++--
src/crashreporter/CrashReportUploader.cpp | 6 ++--
src/crashreporter/CrashReportUploader.h | 6 ++--
src/crashreporter/UploadProgressDialog.cpp | 6 ++--
src/crashreporter/UploadProgressDialog.h | 6 ++--
src/crashreporter/main.cpp | 6 ++--
src/crashreporter/res/CrashReporter.rc.in | 6 ++--
src/miniupnpc/CMakeLists.txt | 6 ++--
src/tools/CMakeLists.txt | 6 ++--
src/tools/nostdset/nostdset.sh | 6 ++--
src/tools/nsh2po/CMakeLists.txt | 6 ++--
src/tools/nsh2po/nsh2po.cpp | 6 ++--
src/tools/nsh2po/nsh2po_config.h.in | 6 ++--
src/tools/po2nsh/CMakeLists.txt | 6 ++--
src/tools/po2nsh/po2nsh.cpp | 6 ++--
src/tools/po2ts/CMakeLists.txt | 6 ++--
src/tools/po2ts/po2ts.cpp | 6 ++--
src/tools/po2wxl/CMakeLists.txt | 6 ++--
src/tools/po2wxl/po2wxl.cpp | 6 ++--
src/tools/ts2po/CMakeLists.txt | 6 ++--
src/tools/ts2po/ts2po.cpp | 6 ++--
src/tools/ts2po/ts2po_config.h.in | 6 ++--
src/torcontrol/AddressMap.cpp | 6 ++--
src/torcontrol/AddressMap.h | 6 ++--
src/torcontrol/BootstrapStatus.cpp | 6 ++--
src/torcontrol/BootstrapStatus.h | 6 ++--
src/torcontrol/CMakeLists.txt | 6 ++--
src/torcontrol/Circuit.cpp | 6 ++--
src/torcontrol/Circuit.h | 6 ++--
src/torcontrol/ControlCommand.cpp | 6 ++--
src/torcontrol/ControlCommand.h | 6 ++--
src/torcontrol/ControlConnection.cpp | 6 ++--
src/torcontrol/ControlConnection.h | 6 ++--
src/torcontrol/ControlMethod.cpp | 6 ++--
src/torcontrol/ControlMethod.h | 6 ++--
src/torcontrol/ControlReply.cpp | 6 ++--
src/torcontrol/ControlReply.h | 6 ++--
src/torcontrol/ControlSocket.cpp | 6 ++--
src/torcontrol/ControlSocket.h | 6 ++--
src/torcontrol/LogEvent.cpp | 6 ++--
src/torcontrol/LogEvent.h | 6 ++--
src/torcontrol/ProtocolInfo.cpp | 6 ++--
src/torcontrol/ProtocolInfo.h | 6 ++--
src/torcontrol/ReplyLine.cpp | 6 ++--
src/torcontrol/ReplyLine.h | 6 ++--
src/torcontrol/RouterDescriptor.cpp | 6 ++--
src/torcontrol/RouterDescriptor.h | 6 ++--
src/torcontrol/RouterStatus.cpp | 6 ++--
src/torcontrol/RouterStatus.h | 6 ++--
src/torcontrol/SendCommandEvent.cpp | 6 ++--
src/torcontrol/SendCommandEvent.h | 6 ++--
src/torcontrol/Stream.cpp | 6 ++--
src/torcontrol/Stream.h | 6 ++--
src/torcontrol/TorControl.cpp | 6 ++--
src/torcontrol/TorControl.h | 6 ++--
src/torcontrol/TorEvents.cpp | 6 ++--
src/torcontrol/TorEvents.h | 6 ++--
src/torcontrol/TorProcess.cpp | 6 ++--
src/torcontrol/TorProcess.h | 6 ++--
src/torcontrol/TorService.cpp | 6 ++--
src/torcontrol/TorService.h | 6 ++--
src/torcontrol/TorSignal.cpp | 6 ++--
src/torcontrol/TorSignal.h | 6 ++--
src/torcontrol/tcglobal.cpp | 6 ++--
src/torcontrol/tcglobal.h | 6 ++--
src/vidalia/CMakeLists.txt | 6 ++--
src/vidalia/ControlPasswordInputDialog.cpp | 6 ++--
src/vidalia/ControlPasswordInputDialog.h | 6 ++--
src/vidalia/CrashReporter.cpp | 6 ++--
src/vidalia/CrashReporter.h | 6 ++--
src/vidalia/HelperProcess.cpp | 6 ++--
src/vidalia/HelperProcess.h | 6 ++--
src/vidalia/LanguageSupport.cpp | 6 ++--
src/vidalia/LanguageSupport.h | 6 ++--
src/vidalia/MainWindow.cpp | 6 ++--
src/vidalia/MainWindow.h | 6 ++--
src/vidalia/PackageInfo.cpp | 6 ++--
src/vidalia/PackageInfo.h | 6 ++--
src/vidalia/UpdateProcess.cpp | 6 ++--
src/vidalia/UpdateProcess.h | 6 ++--
src/vidalia/UpdateProgressDialog.cpp | 6 ++--
src/vidalia/UpdateProgressDialog.h | 6 ++--
src/vidalia/UpdatesAvailableDialog.cpp | 6 ++--
src/vidalia/UpdatesAvailableDialog.h | 6 ++--
src/vidalia/VMessageBox.cpp | 6 ++--
src/vidalia/VMessageBox.h | 6 ++--
src/vidalia/Vidalia.cpp | 6 ++--
src/vidalia/Vidalia.h | 6 ++--
src/vidalia/VidaliaWindow.cpp | 6 ++--
src/vidalia/VidaliaWindow.h | 6 ++--
src/vidalia/about/AboutDialog.cpp | 6 ++--
src/vidalia/about/AboutDialog.h | 6 ++--
src/vidalia/about/LicenseDialog.cpp | 6 ++--
src/vidalia/about/LicenseDialog.h | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.cpp | 6 ++--
src/vidalia/bwgraph/BandwidthGraph.h | 6 ++--
src/vidalia/bwgraph/GraphFrame.cpp | 6 ++--
src/vidalia/bwgraph/GraphFrame.h | 6 ++--
src/vidalia/config/AbstractTorSettings.cpp | 6 ++--
src/vidalia/config/AbstractTorSettings.h | 6 ++--
src/vidalia/config/AdvancedPage.cpp | 6 ++--
src/vidalia/config/AdvancedPage.h | 6 ++--
src/vidalia/config/AppearancePage.cpp | 6 ++--
src/vidalia/config/AppearancePage.h | 6 ++--
src/vidalia/config/BridgeDownloader.cpp | 6 ++--
src/vidalia/config/BridgeDownloader.h | 6 ++--
.../config/BridgeDownloaderProgressDialog.cpp | 6 ++--
.../config/BridgeDownloaderProgressDialog.h | 6 ++--
src/vidalia/config/BridgeUsageDialog.cpp | 6 ++--
src/vidalia/config/BridgeUsageDialog.h | 6 ++--
src/vidalia/config/ConfigDialog.cpp | 6 ++--
src/vidalia/config/ConfigDialog.h | 6 ++--
src/vidalia/config/ConfigPage.h | 6 ++--
src/vidalia/config/ConfigPageStack.cpp | 6 ++--
src/vidalia/config/ConfigPageStack.h | 6 ++--
src/vidalia/config/DomainValidator.cpp | 6 ++--
src/vidalia/config/DomainValidator.h | 6 ++--
src/vidalia/config/ExitPolicy.cpp | 6 ++--
src/vidalia/config/ExitPolicy.h | 6 ++--
src/vidalia/config/GeneralPage.cpp | 6 ++--
src/vidalia/config/GeneralPage.h | 6 ++--
src/vidalia/config/IpValidator.cpp | 6 ++--
src/vidalia/config/IpValidator.h | 6 ++--
src/vidalia/config/Local8BitStringValidator.cpp | 6 ++--
src/vidalia/config/Local8BitStringValidator.h | 6 ++--
src/vidalia/config/NetworkPage.cpp | 6 ++--
src/vidalia/config/NetworkPage.h | 6 ++--
src/vidalia/config/NetworkSettings.cpp | 6 ++--
src/vidalia/config/NetworkSettings.h | 6 ++--
src/vidalia/config/NicknameValidator.cpp | 6 ++--
src/vidalia/config/NicknameValidator.h | 6 ++--
src/vidalia/config/Policy.cpp | 6 ++--
src/vidalia/config/Policy.h | 6 ++--
src/vidalia/config/PortValidator.cpp | 6 ++--
src/vidalia/config/PortValidator.h | 6 ++--
src/vidalia/config/ServerPage.cpp | 6 ++--
src/vidalia/config/ServerPage.h | 6 ++--
src/vidalia/config/ServerSettings.cpp | 6 ++--
src/vidalia/config/ServerSettings.h | 6 ++--
src/vidalia/config/Service.cpp | 6 ++--
src/vidalia/config/Service.h | 6 ++--
src/vidalia/config/ServiceList.cpp | 6 ++--
src/vidalia/config/ServiceList.h | 6 ++--
src/vidalia/config/ServicePage.cpp | 6 ++--
src/vidalia/config/ServicePage.h | 6 ++--
src/vidalia/config/ServiceSettings.cpp | 6 ++--
src/vidalia/config/ServiceSettings.h | 6 ++--
src/vidalia/config/TorSettings.cpp | 6 ++--
src/vidalia/config/TorSettings.h | 6 ++--
src/vidalia/config/TorrcDialog.cpp | 6 ++--
src/vidalia/config/TorrcDialog.h | 6 ++--
src/vidalia/config/UPNPControl.cpp | 6 ++--
src/vidalia/config/UPNPControl.h | 6 ++--
src/vidalia/config/UPNPControlThread.cpp | 6 ++--
src/vidalia/config/UPNPControlThread.h | 6 ++--
src/vidalia/config/UPNPTestDialog.cpp | 6 ++--
src/vidalia/config/UPNPTestDialog.h | 6 ++--
src/vidalia/config/VSettings.cpp | 6 ++--
src/vidalia/config/VSettings.h | 6 ++--
src/vidalia/config/VidaliaSettings.cpp | 6 ++--
src/vidalia/config/VidaliaSettings.h | 6 ++--
src/vidalia/help/browser/HelpBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpBrowser.h | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.cpp | 6 ++--
src/vidalia/help/browser/HelpTextBrowser.h | 6 ++--
src/vidalia/help/content/ar/bridges.html | 6 ++--
src/vidalia/help/content/ar/config.html | 6 ++--
src/vidalia/help/content/ar/index.html | 6 ++--
src/vidalia/help/content/ar/links.html | 6 ++--
src/vidalia/help/content/ar/log.html | 6 ++--
src/vidalia/help/content/ar/netview.html | 6 ++--
src/vidalia/help/content/ar/running.html | 6 ++--
src/vidalia/help/content/ar/server.html | 6 ++--
src/vidalia/help/content/ar/services.html | 6 ++--
src/vidalia/help/content/ar/troubleshooting.html | 6 ++--
src/vidalia/help/content/bms/bridges.html | 6 ++--
src/vidalia/help/content/bms/config.html | 6 ++--
src/vidalia/help/content/bms/index.html | 6 ++--
src/vidalia/help/content/bms/links.html | 6 ++--
src/vidalia/help/content/bms/log.html | 6 ++--
src/vidalia/help/content/bms/netview.html | 6 ++--
src/vidalia/help/content/bms/running.html | 6 ++--
src/vidalia/help/content/bms/server.html | 6 ++--
src/vidalia/help/content/bms/services.html | 6 ++--
src/vidalia/help/content/bms/troubleshooting.html | 6 ++--
src/vidalia/help/content/de/config.html | 6 ++--
src/vidalia/help/content/de/index.html | 6 ++--
src/vidalia/help/content/de/links.html | 6 ++--
src/vidalia/help/content/de/log.html | 6 ++--
src/vidalia/help/content/de/netview.html | 6 ++--
src/vidalia/help/content/de/running.html | 6 ++--
src/vidalia/help/content/de/server.html | 6 ++--
src/vidalia/help/content/de/troubleshooting.html | 6 ++--
src/vidalia/help/content/en/bridges.html | 6 ++--
src/vidalia/help/content/en/config.html | 6 ++--
src/vidalia/help/content/en/contents.xml | 6 ++--
src/vidalia/help/content/en/index.html | 6 ++--
src/vidalia/help/content/en/links.html | 38 ++++++--------------
src/vidalia/help/content/en/log.html | 6 ++--
src/vidalia/help/content/en/netview.html | 6 ++--
src/vidalia/help/content/en/running.html | 6 ++--
src/vidalia/help/content/en/server.html | 6 ++--
src/vidalia/help/content/en/services.html | 6 ++--
src/vidalia/help/content/en/troubleshooting.html | 6 ++--
src/vidalia/help/content/es/bridges.html | 6 ++--
src/vidalia/help/content/fa/bridges.html | 6 ++--
src/vidalia/help/content/fa/config.html | 6 ++--
src/vidalia/help/content/fa/index.html | 6 ++--
src/vidalia/help/content/fa/links.html | 6 ++--
src/vidalia/help/content/fa/log.html | 6 ++--
src/vidalia/help/content/fa/netview.html | 6 ++--
src/vidalia/help/content/fa/running.html | 6 ++--
src/vidalia/help/content/fa/server.html | 6 ++--
src/vidalia/help/content/fa/services.html | 6 ++--
src/vidalia/help/content/fa/troubleshooting.html | 6 ++--
src/vidalia/help/content/fi/bridges.html | 6 ++--
src/vidalia/help/content/fi/config.html | 6 ++--
src/vidalia/help/content/fi/index.html | 6 ++--
src/vidalia/help/content/fi/links.html | 6 ++--
src/vidalia/help/content/fi/log.html | 6 ++--
src/vidalia/help/content/fi/netview.html | 6 ++--
src/vidalia/help/content/fi/running.html | 6 ++--
src/vidalia/help/content/fi/server.html | 6 ++--
src/vidalia/help/content/fi/troubleshooting.html | 6 ++--
src/vidalia/help/content/fr/bridges.html | 6 ++--
src/vidalia/help/content/fr/config.html | 6 ++--
src/vidalia/help/content/fr/index.html | 6 ++--
src/vidalia/help/content/fr/links.html | 6 ++--
src/vidalia/help/content/fr/log.html | 6 ++--
src/vidalia/help/content/fr/netview.html | 6 ++--
src/vidalia/help/content/fr/running.html | 6 ++--
src/vidalia/help/content/fr/server.html | 6 ++--
src/vidalia/help/content/fr/services.html | 6 ++--
src/vidalia/help/content/fr/troubleshooting.html | 6 ++--
src/vidalia/help/content/it/links.html | 6 ++--
src/vidalia/help/content/my/bridges.html | 6 ++--
src/vidalia/help/content/my/config.html | 6 ++--
src/vidalia/help/content/my/index.html | 6 ++--
src/vidalia/help/content/my/links.html | 6 ++--
src/vidalia/help/content/my/log.html | 6 ++--
src/vidalia/help/content/my/netview.html | 6 ++--
src/vidalia/help/content/my/running.html | 6 ++--
src/vidalia/help/content/my/server.html | 6 ++--
src/vidalia/help/content/my/services.html | 6 ++--
src/vidalia/help/content/my/troubleshooting.html | 6 ++--
src/vidalia/help/content/nl/index.html | 6 ++--
src/vidalia/help/content/nl/links.html | 6 ++--
src/vidalia/help/content/nl/running.html | 6 ++--
src/vidalia/help/content/pl/bridges.html | 6 ++--
src/vidalia/help/content/pl/index.html | 6 ++--
src/vidalia/help/content/pl/links.html | 6 ++--
src/vidalia/help/content/po/af/config.po | 4 +-
src/vidalia/help/content/po/af/index.po | 4 +-
src/vidalia/help/content/po/af/links.po | 4 +-
src/vidalia/help/content/po/af/log.po | 4 +-
src/vidalia/help/content/po/af/running.po | 4 +-
src/vidalia/help/content/po/af/server.po | 4 +-
src/vidalia/help/content/po/af/services.po | 4 +-
src/vidalia/help/content/po/af/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ak/config.po | 4 +-
src/vidalia/help/content/po/ak/index.po | 4 +-
src/vidalia/help/content/po/ak/links.po | 4 +-
src/vidalia/help/content/po/ak/log.po | 4 +-
src/vidalia/help/content/po/ak/running.po | 4 +-
src/vidalia/help/content/po/ak/server.po | 4 +-
src/vidalia/help/content/po/ak/services.po | 4 +-
src/vidalia/help/content/po/ak/troubleshooting.po | 4 +-
src/vidalia/help/content/po/am/config.po | 4 +-
src/vidalia/help/content/po/am/index.po | 4 +-
src/vidalia/help/content/po/am/links.po | 4 +-
src/vidalia/help/content/po/am/log.po | 4 +-
src/vidalia/help/content/po/am/running.po | 4 +-
src/vidalia/help/content/po/am/server.po | 4 +-
src/vidalia/help/content/po/am/services.po | 4 +-
src/vidalia/help/content/po/am/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ar/index.po | 4 +-
src/vidalia/help/content/po/ar/links.po | 4 +-
src/vidalia/help/content/po/ar/log.po | 4 +-
src/vidalia/help/content/po/ar/netview.po | 4 +-
src/vidalia/help/content/po/ar/running.po | 4 +-
src/vidalia/help/content/po/ar/server.po | 4 +-
src/vidalia/help/content/po/ar/services.po | 4 +-
src/vidalia/help/content/po/ar/troubleshooting.po | 4 +-
src/vidalia/help/content/po/arn/config.po | 4 +-
src/vidalia/help/content/po/arn/index.po | 4 +-
src/vidalia/help/content/po/arn/links.po | 4 +-
src/vidalia/help/content/po/arn/log.po | 4 +-
src/vidalia/help/content/po/arn/running.po | 4 +-
src/vidalia/help/content/po/arn/server.po | 4 +-
src/vidalia/help/content/po/arn/services.po | 4 +-
src/vidalia/help/content/po/arn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ast/config.po | 4 +-
src/vidalia/help/content/po/ast/index.po | 4 +-
src/vidalia/help/content/po/ast/links.po | 4 +-
src/vidalia/help/content/po/ast/log.po | 4 +-
src/vidalia/help/content/po/ast/running.po | 4 +-
src/vidalia/help/content/po/ast/server.po | 4 +-
src/vidalia/help/content/po/ast/services.po | 4 +-
src/vidalia/help/content/po/ast/troubleshooting.po | 4 +-
src/vidalia/help/content/po/az/config.po | 4 +-
src/vidalia/help/content/po/az/index.po | 4 +-
src/vidalia/help/content/po/az/links.po | 4 +-
src/vidalia/help/content/po/az/log.po | 4 +-
src/vidalia/help/content/po/az/running.po | 4 +-
src/vidalia/help/content/po/az/server.po | 4 +-
src/vidalia/help/content/po/az/services.po | 4 +-
src/vidalia/help/content/po/az/troubleshooting.po | 4 +-
src/vidalia/help/content/po/be/config.po | 4 +-
src/vidalia/help/content/po/be/index.po | 4 +-
src/vidalia/help/content/po/be/links.po | 4 +-
src/vidalia/help/content/po/be/log.po | 4 +-
src/vidalia/help/content/po/be/running.po | 4 +-
src/vidalia/help/content/po/be/server.po | 4 +-
src/vidalia/help/content/po/be/services.po | 4 +-
src/vidalia/help/content/po/be/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bg/config.po | 4 +-
src/vidalia/help/content/po/bg/index.po | 4 +-
src/vidalia/help/content/po/bg/links.po | 4 +-
src/vidalia/help/content/po/bg/log.po | 4 +-
src/vidalia/help/content/po/bg/running.po | 4 +-
src/vidalia/help/content/po/bg/server.po | 4 +-
src/vidalia/help/content/po/bg/services.po | 4 +-
src/vidalia/help/content/po/bg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn/config.po | 4 +-
src/vidalia/help/content/po/bn/index.po | 4 +-
src/vidalia/help/content/po/bn/links.po | 4 +-
src/vidalia/help/content/po/bn/log.po | 4 +-
src/vidalia/help/content/po/bn/running.po | 4 +-
src/vidalia/help/content/po/bn/server.po | 4 +-
src/vidalia/help/content/po/bn/services.po | 4 +-
src/vidalia/help/content/po/bn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bn_IN/config.po | 4 +-
src/vidalia/help/content/po/bn_IN/index.po | 4 +-
src/vidalia/help/content/po/bn_IN/links.po | 4 +-
src/vidalia/help/content/po/bn_IN/log.po | 4 +-
src/vidalia/help/content/po/bn_IN/running.po | 4 +-
src/vidalia/help/content/po/bn_IN/server.po | 4 +-
src/vidalia/help/content/po/bn_IN/services.po | 4 +-
.../help/content/po/bn_IN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bo/bridges.po | 4 +-
src/vidalia/help/content/po/bo/config.po | 4 +-
src/vidalia/help/content/po/bo/index.po | 4 +-
src/vidalia/help/content/po/bo/links.po | 4 +-
src/vidalia/help/content/po/bo/log.po | 4 +-
src/vidalia/help/content/po/bo/netview.po | 4 +-
src/vidalia/help/content/po/bo/running.po | 4 +-
src/vidalia/help/content/po/bo/server.po | 4 +-
src/vidalia/help/content/po/bo/services.po | 4 +-
src/vidalia/help/content/po/bo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/br/bridges.po | 4 +-
src/vidalia/help/content/po/br/config.po | 4 +-
src/vidalia/help/content/po/br/index.po | 4 +-
src/vidalia/help/content/po/br/links.po | 4 +-
src/vidalia/help/content/po/br/log.po | 4 +-
src/vidalia/help/content/po/br/netview.po | 4 +-
src/vidalia/help/content/po/br/running.po | 4 +-
src/vidalia/help/content/po/br/server.po | 4 +-
src/vidalia/help/content/po/br/services.po | 4 +-
src/vidalia/help/content/po/br/troubleshooting.po | 4 +-
src/vidalia/help/content/po/bs/bridges.po | 4 +-
src/vidalia/help/content/po/bs/config.po | 4 +-
src/vidalia/help/content/po/bs/index.po | 4 +-
src/vidalia/help/content/po/bs/links.po | 4 +-
src/vidalia/help/content/po/bs/log.po | 4 +-
src/vidalia/help/content/po/bs/netview.po | 4 +-
src/vidalia/help/content/po/bs/running.po | 4 +-
src/vidalia/help/content/po/bs/server.po | 4 +-
src/vidalia/help/content/po/bs/services.po | 4 +-
src/vidalia/help/content/po/bs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ca/config.po | 4 +-
src/vidalia/help/content/po/ca/index.po | 4 +-
src/vidalia/help/content/po/ca/links.po | 4 +-
src/vidalia/help/content/po/ca/log.po | 4 +-
src/vidalia/help/content/po/ca/running.po | 4 +-
src/vidalia/help/content/po/ca/server.po | 4 +-
src/vidalia/help/content/po/ca/services.po | 4 +-
src/vidalia/help/content/po/ca/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cs/config.po | 4 +-
src/vidalia/help/content/po/cs/index.po | 4 +-
src/vidalia/help/content/po/cs/links.po | 4 +-
src/vidalia/help/content/po/cs/log.po | 4 +-
src/vidalia/help/content/po/cs/running.po | 4 +-
src/vidalia/help/content/po/cs/server.po | 4 +-
src/vidalia/help/content/po/cs/services.po | 4 +-
src/vidalia/help/content/po/cs/troubleshooting.po | 4 +-
src/vidalia/help/content/po/csb/config.po | 4 +-
src/vidalia/help/content/po/csb/index.po | 4 +-
src/vidalia/help/content/po/csb/links.po | 4 +-
src/vidalia/help/content/po/csb/log.po | 4 +-
src/vidalia/help/content/po/csb/running.po | 4 +-
src/vidalia/help/content/po/csb/server.po | 4 +-
src/vidalia/help/content/po/csb/services.po | 4 +-
src/vidalia/help/content/po/csb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/cy/config.po | 4 +-
src/vidalia/help/content/po/cy/index.po | 4 +-
src/vidalia/help/content/po/cy/links.po | 4 +-
src/vidalia/help/content/po/cy/log.po | 4 +-
src/vidalia/help/content/po/cy/running.po | 4 +-
src/vidalia/help/content/po/cy/server.po | 4 +-
src/vidalia/help/content/po/cy/services.po | 4 +-
src/vidalia/help/content/po/cy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/da/bridges.po | 4 +-
src/vidalia/help/content/po/da/index.po | 4 +-
src/vidalia/help/content/po/da/links.po | 4 +-
src/vidalia/help/content/po/da/log.po | 4 +-
src/vidalia/help/content/po/da/netview.po | 4 +-
src/vidalia/help/content/po/da/running.po | 4 +-
src/vidalia/help/content/po/da/server.po | 4 +-
src/vidalia/help/content/po/da/services.po | 4 +-
src/vidalia/help/content/po/da/troubleshooting.po | 4 +-
src/vidalia/help/content/po/de/bridges.po | 4 +-
src/vidalia/help/content/po/de/config.po | 4 +-
src/vidalia/help/content/po/de/index.po | 4 +-
src/vidalia/help/content/po/de/links.po | 4 +-
src/vidalia/help/content/po/de/log.po | 4 +-
src/vidalia/help/content/po/de/netview.po | 4 +-
src/vidalia/help/content/po/de/running.po | 4 +-
src/vidalia/help/content/po/de/server.po | 4 +-
src/vidalia/help/content/po/de/services.po | 4 +-
src/vidalia/help/content/po/de/troubleshooting.po | 4 +-
src/vidalia/help/content/po/dz/config.po | 4 +-
src/vidalia/help/content/po/dz/index.po | 4 +-
src/vidalia/help/content/po/dz/links.po | 4 +-
src/vidalia/help/content/po/dz/log.po | 4 +-
src/vidalia/help/content/po/dz/running.po | 4 +-
src/vidalia/help/content/po/dz/server.po | 4 +-
src/vidalia/help/content/po/dz/services.po | 4 +-
src/vidalia/help/content/po/dz/troubleshooting.po | 4 +-
src/vidalia/help/content/po/el/config.po | 4 +-
src/vidalia/help/content/po/el/index.po | 4 +-
src/vidalia/help/content/po/el/links.po | 4 +-
src/vidalia/help/content/po/el/log.po | 4 +-
src/vidalia/help/content/po/el/running.po | 4 +-
src/vidalia/help/content/po/el/server.po | 4 +-
src/vidalia/help/content/po/el/services.po | 4 +-
src/vidalia/help/content/po/el/troubleshooting.po | 4 +-
src/vidalia/help/content/po/en/bridges.po | 4 +-
src/vidalia/help/content/po/en/config.po | 4 +-
src/vidalia/help/content/po/en/index.po | 4 +-
src/vidalia/help/content/po/en/links.po | 4 +-
src/vidalia/help/content/po/en/log.po | 4 +-
src/vidalia/help/content/po/en/netview.po | 4 +-
src/vidalia/help/content/po/en/running.po | 4 +-
src/vidalia/help/content/po/en/server.po | 4 +-
src/vidalia/help/content/po/en/services.po | 4 +-
src/vidalia/help/content/po/en/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eo/config.po | 4 +-
src/vidalia/help/content/po/eo/index.po | 4 +-
src/vidalia/help/content/po/eo/links.po | 4 +-
src/vidalia/help/content/po/eo/log.po | 4 +-
src/vidalia/help/content/po/eo/running.po | 4 +-
src/vidalia/help/content/po/eo/server.po | 4 +-
src/vidalia/help/content/po/eo/services.po | 4 +-
src/vidalia/help/content/po/eo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/es/config.po | 4 +-
src/vidalia/help/content/po/es/index.po | 4 +-
src/vidalia/help/content/po/es/links.po | 4 +-
src/vidalia/help/content/po/es/log.po | 4 +-
src/vidalia/help/content/po/es/netview.po | 4 +-
src/vidalia/help/content/po/es/running.po | 4 +-
src/vidalia/help/content/po/es/server.po | 4 +-
src/vidalia/help/content/po/es/services.po | 4 +-
src/vidalia/help/content/po/es/troubleshooting.po | 4 +-
src/vidalia/help/content/po/et/config.po | 4 +-
src/vidalia/help/content/po/et/index.po | 4 +-
src/vidalia/help/content/po/et/links.po | 4 +-
src/vidalia/help/content/po/et/log.po | 4 +-
src/vidalia/help/content/po/et/running.po | 4 +-
src/vidalia/help/content/po/et/server.po | 4 +-
src/vidalia/help/content/po/et/services.po | 4 +-
src/vidalia/help/content/po/et/troubleshooting.po | 4 +-
src/vidalia/help/content/po/eu/config.po | 4 +-
src/vidalia/help/content/po/eu/index.po | 4 +-
src/vidalia/help/content/po/eu/links.po | 4 +-
src/vidalia/help/content/po/eu/log.po | 4 +-
src/vidalia/help/content/po/eu/running.po | 4 +-
src/vidalia/help/content/po/eu/server.po | 4 +-
src/vidalia/help/content/po/eu/services.po | 4 +-
src/vidalia/help/content/po/eu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fa/bridges.po | 4 +-
src/vidalia/help/content/po/fa/config.po | 4 +-
src/vidalia/help/content/po/fa/index.po | 4 +-
src/vidalia/help/content/po/fa/links.po | 4 +-
src/vidalia/help/content/po/fa/log.po | 4 +-
src/vidalia/help/content/po/fa/netview.po | 4 +-
src/vidalia/help/content/po/fa/running.po | 4 +-
src/vidalia/help/content/po/fa/server.po | 4 +-
src/vidalia/help/content/po/fa/services.po | 4 +-
src/vidalia/help/content/po/fa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fi/bridges.po | 4 +-
src/vidalia/help/content/po/fi/config.po | 4 +-
src/vidalia/help/content/po/fi/index.po | 4 +-
src/vidalia/help/content/po/fi/links.po | 4 +-
src/vidalia/help/content/po/fi/log.po | 4 +-
src/vidalia/help/content/po/fi/netview.po | 4 +-
src/vidalia/help/content/po/fi/running.po | 4 +-
src/vidalia/help/content/po/fi/server.po | 4 +-
src/vidalia/help/content/po/fi/services.po | 4 +-
src/vidalia/help/content/po/fi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fil/config.po | 4 +-
src/vidalia/help/content/po/fil/index.po | 4 +-
src/vidalia/help/content/po/fil/links.po | 4 +-
src/vidalia/help/content/po/fil/log.po | 4 +-
src/vidalia/help/content/po/fil/running.po | 4 +-
src/vidalia/help/content/po/fil/server.po | 4 +-
src/vidalia/help/content/po/fil/services.po | 4 +-
src/vidalia/help/content/po/fil/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fo/bridges.po | 4 +-
src/vidalia/help/content/po/fo/config.po | 4 +-
src/vidalia/help/content/po/fo/index.po | 4 +-
src/vidalia/help/content/po/fo/links.po | 4 +-
src/vidalia/help/content/po/fo/log.po | 4 +-
src/vidalia/help/content/po/fo/netview.po | 4 +-
src/vidalia/help/content/po/fo/running.po | 4 +-
src/vidalia/help/content/po/fo/server.po | 4 +-
src/vidalia/help/content/po/fo/services.po | 4 +-
src/vidalia/help/content/po/fo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fr/config.po | 4 +-
src/vidalia/help/content/po/fr/index.po | 4 +-
src/vidalia/help/content/po/fr/links.po | 4 +-
src/vidalia/help/content/po/fr/log.po | 4 +-
src/vidalia/help/content/po/fr/netview.po | 4 +-
src/vidalia/help/content/po/fr/running.po | 4 +-
src/vidalia/help/content/po/fr/server.po | 4 +-
src/vidalia/help/content/po/fr/services.po | 4 +-
src/vidalia/help/content/po/fr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fur/config.po | 4 +-
src/vidalia/help/content/po/fur/index.po | 4 +-
src/vidalia/help/content/po/fur/links.po | 4 +-
src/vidalia/help/content/po/fur/log.po | 4 +-
src/vidalia/help/content/po/fur/running.po | 4 +-
src/vidalia/help/content/po/fur/server.po | 4 +-
src/vidalia/help/content/po/fur/services.po | 4 +-
src/vidalia/help/content/po/fur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/fy/bridges.po | 4 +-
src/vidalia/help/content/po/fy/config.po | 4 +-
src/vidalia/help/content/po/fy/index.po | 4 +-
src/vidalia/help/content/po/fy/links.po | 4 +-
src/vidalia/help/content/po/fy/log.po | 4 +-
src/vidalia/help/content/po/fy/netview.po | 4 +-
src/vidalia/help/content/po/fy/running.po | 4 +-
src/vidalia/help/content/po/fy/server.po | 4 +-
src/vidalia/help/content/po/fy/services.po | 4 +-
src/vidalia/help/content/po/fy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ga/config.po | 4 +-
src/vidalia/help/content/po/ga/index.po | 4 +-
src/vidalia/help/content/po/ga/links.po | 4 +-
src/vidalia/help/content/po/ga/log.po | 4 +-
src/vidalia/help/content/po/ga/running.po | 4 +-
src/vidalia/help/content/po/ga/server.po | 4 +-
src/vidalia/help/content/po/ga/services.po | 4 +-
src/vidalia/help/content/po/ga/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gl/config.po | 4 +-
src/vidalia/help/content/po/gl/index.po | 4 +-
src/vidalia/help/content/po/gl/links.po | 4 +-
src/vidalia/help/content/po/gl/log.po | 4 +-
src/vidalia/help/content/po/gl/running.po | 4 +-
src/vidalia/help/content/po/gl/server.po | 4 +-
src/vidalia/help/content/po/gl/services.po | 4 +-
src/vidalia/help/content/po/gl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gu/config.po | 4 +-
src/vidalia/help/content/po/gu/index.po | 4 +-
src/vidalia/help/content/po/gu/links.po | 4 +-
src/vidalia/help/content/po/gu/log.po | 4 +-
src/vidalia/help/content/po/gu/running.po | 4 +-
src/vidalia/help/content/po/gu/server.po | 4 +-
src/vidalia/help/content/po/gu/services.po | 4 +-
src/vidalia/help/content/po/gu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/gun/config.po | 4 +-
src/vidalia/help/content/po/gun/index.po | 4 +-
src/vidalia/help/content/po/gun/links.po | 4 +-
src/vidalia/help/content/po/gun/log.po | 4 +-
src/vidalia/help/content/po/gun/running.po | 4 +-
src/vidalia/help/content/po/gun/server.po | 4 +-
src/vidalia/help/content/po/gun/services.po | 4 +-
src/vidalia/help/content/po/gun/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ha/config.po | 4 +-
src/vidalia/help/content/po/ha/index.po | 4 +-
src/vidalia/help/content/po/ha/links.po | 4 +-
src/vidalia/help/content/po/ha/log.po | 4 +-
src/vidalia/help/content/po/ha/running.po | 4 +-
src/vidalia/help/content/po/ha/server.po | 4 +-
src/vidalia/help/content/po/ha/services.po | 4 +-
src/vidalia/help/content/po/ha/troubleshooting.po | 4 +-
src/vidalia/help/content/po/he/config.po | 4 +-
src/vidalia/help/content/po/he/index.po | 4 +-
src/vidalia/help/content/po/he/links.po | 4 +-
src/vidalia/help/content/po/he/log.po | 4 +-
src/vidalia/help/content/po/he/running.po | 4 +-
src/vidalia/help/content/po/he/server.po | 4 +-
src/vidalia/help/content/po/he/services.po | 4 +-
src/vidalia/help/content/po/he/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hi/config.po | 4 +-
src/vidalia/help/content/po/hi/index.po | 4 +-
src/vidalia/help/content/po/hi/links.po | 4 +-
src/vidalia/help/content/po/hi/log.po | 4 +-
src/vidalia/help/content/po/hi/running.po | 4 +-
src/vidalia/help/content/po/hi/server.po | 4 +-
src/vidalia/help/content/po/hi/services.po | 4 +-
src/vidalia/help/content/po/hi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hr/config.po | 4 +-
src/vidalia/help/content/po/hr/index.po | 4 +-
src/vidalia/help/content/po/hr/links.po | 4 +-
src/vidalia/help/content/po/hr/log.po | 4 +-
src/vidalia/help/content/po/hr/running.po | 4 +-
src/vidalia/help/content/po/hr/server.po | 4 +-
src/vidalia/help/content/po/hr/services.po | 4 +-
src/vidalia/help/content/po/hr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ht/config.po | 4 +-
src/vidalia/help/content/po/ht/index.po | 4 +-
src/vidalia/help/content/po/ht/links.po | 4 +-
src/vidalia/help/content/po/ht/log.po | 4 +-
src/vidalia/help/content/po/ht/running.po | 4 +-
src/vidalia/help/content/po/ht/server.po | 4 +-
src/vidalia/help/content/po/ht/services.po | 4 +-
src/vidalia/help/content/po/ht/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hu/config.po | 4 +-
src/vidalia/help/content/po/hu/index.po | 4 +-
src/vidalia/help/content/po/hu/links.po | 4 +-
src/vidalia/help/content/po/hu/log.po | 4 +-
src/vidalia/help/content/po/hu/running.po | 4 +-
src/vidalia/help/content/po/hu/server.po | 4 +-
src/vidalia/help/content/po/hu/services.po | 4 +-
src/vidalia/help/content/po/hu/troubleshooting.po | 4 +-
src/vidalia/help/content/po/hy/bridges.po | 4 +-
src/vidalia/help/content/po/hy/config.po | 4 +-
src/vidalia/help/content/po/hy/index.po | 4 +-
src/vidalia/help/content/po/hy/links.po | 4 +-
src/vidalia/help/content/po/hy/log.po | 4 +-
src/vidalia/help/content/po/hy/netview.po | 4 +-
src/vidalia/help/content/po/hy/running.po | 4 +-
src/vidalia/help/content/po/hy/server.po | 4 +-
src/vidalia/help/content/po/hy/services.po | 4 +-
src/vidalia/help/content/po/hy/troubleshooting.po | 4 +-
src/vidalia/help/content/po/id/config.po | 4 +-
src/vidalia/help/content/po/id/index.po | 4 +-
src/vidalia/help/content/po/id/links.po | 4 +-
src/vidalia/help/content/po/id/log.po | 4 +-
src/vidalia/help/content/po/id/running.po | 4 +-
src/vidalia/help/content/po/id/server.po | 4 +-
src/vidalia/help/content/po/id/services.po | 4 +-
src/vidalia/help/content/po/id/troubleshooting.po | 4 +-
src/vidalia/help/content/po/is/config.po | 4 +-
src/vidalia/help/content/po/is/index.po | 4 +-
src/vidalia/help/content/po/is/links.po | 4 +-
src/vidalia/help/content/po/is/log.po | 4 +-
src/vidalia/help/content/po/is/running.po | 4 +-
src/vidalia/help/content/po/is/server.po | 4 +-
src/vidalia/help/content/po/is/services.po | 4 +-
src/vidalia/help/content/po/is/troubleshooting.po | 4 +-
src/vidalia/help/content/po/it/config.po | 4 +-
src/vidalia/help/content/po/it/index.po | 4 +-
src/vidalia/help/content/po/it/links.po | 4 +-
src/vidalia/help/content/po/it/log.po | 4 +-
src/vidalia/help/content/po/it/netview.po | 4 +-
src/vidalia/help/content/po/it/running.po | 4 +-
src/vidalia/help/content/po/it/server.po | 4 +-
src/vidalia/help/content/po/it/services.po | 4 +-
src/vidalia/help/content/po/it/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ja/bridges.po | 4 +-
src/vidalia/help/content/po/ja/config.po | 4 +-
src/vidalia/help/content/po/ja/index.po | 4 +-
src/vidalia/help/content/po/ja/links.po | 4 +-
src/vidalia/help/content/po/ja/log.po | 4 +-
src/vidalia/help/content/po/ja/netview.po | 4 +-
src/vidalia/help/content/po/ja/running.po | 4 +-
src/vidalia/help/content/po/ja/server.po | 4 +-
src/vidalia/help/content/po/ja/services.po | 4 +-
src/vidalia/help/content/po/ja/troubleshooting.po | 4 +-
src/vidalia/help/content/po/jv/bridges.po | 4 +-
src/vidalia/help/content/po/jv/config.po | 4 +-
src/vidalia/help/content/po/jv/index.po | 4 +-
src/vidalia/help/content/po/jv/links.po | 4 +-
src/vidalia/help/content/po/jv/log.po | 4 +-
src/vidalia/help/content/po/jv/netview.po | 4 +-
src/vidalia/help/content/po/jv/running.po | 4 +-
src/vidalia/help/content/po/jv/server.po | 4 +-
src/vidalia/help/content/po/jv/services.po | 4 +-
src/vidalia/help/content/po/jv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ka/bridges.po | 4 +-
src/vidalia/help/content/po/ka/config.po | 4 +-
src/vidalia/help/content/po/ka/index.po | 4 +-
src/vidalia/help/content/po/ka/links.po | 4 +-
src/vidalia/help/content/po/ka/log.po | 4 +-
src/vidalia/help/content/po/ka/netview.po | 4 +-
src/vidalia/help/content/po/ka/running.po | 4 +-
src/vidalia/help/content/po/ka/server.po | 4 +-
src/vidalia/help/content/po/ka/services.po | 4 +-
src/vidalia/help/content/po/ka/troubleshooting.po | 4 +-
src/vidalia/help/content/po/km/bridges.po | 4 +-
src/vidalia/help/content/po/km/config.po | 4 +-
src/vidalia/help/content/po/km/index.po | 4 +-
src/vidalia/help/content/po/km/links.po | 4 +-
src/vidalia/help/content/po/km/log.po | 4 +-
src/vidalia/help/content/po/km/netview.po | 4 +-
src/vidalia/help/content/po/km/running.po | 4 +-
src/vidalia/help/content/po/km/server.po | 4 +-
src/vidalia/help/content/po/km/services.po | 4 +-
src/vidalia/help/content/po/km/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kn/config.po | 4 +-
src/vidalia/help/content/po/kn/index.po | 4 +-
src/vidalia/help/content/po/kn/links.po | 4 +-
src/vidalia/help/content/po/kn/log.po | 4 +-
src/vidalia/help/content/po/kn/running.po | 4 +-
src/vidalia/help/content/po/kn/server.po | 4 +-
src/vidalia/help/content/po/kn/services.po | 4 +-
src/vidalia/help/content/po/kn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ko/bridges.po | 4 +-
src/vidalia/help/content/po/ko/config.po | 4 +-
src/vidalia/help/content/po/ko/index.po | 4 +-
src/vidalia/help/content/po/ko/links.po | 4 +-
src/vidalia/help/content/po/ko/log.po | 4 +-
src/vidalia/help/content/po/ko/netview.po | 4 +-
src/vidalia/help/content/po/ko/running.po | 4 +-
src/vidalia/help/content/po/ko/server.po | 4 +-
src/vidalia/help/content/po/ko/services.po | 4 +-
src/vidalia/help/content/po/ko/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ku/bridges.po | 4 +-
src/vidalia/help/content/po/ku/config.po | 4 +-
src/vidalia/help/content/po/ku/index.po | 4 +-
src/vidalia/help/content/po/ku/links.po | 4 +-
src/vidalia/help/content/po/ku/log.po | 4 +-
src/vidalia/help/content/po/ku/netview.po | 4 +-
src/vidalia/help/content/po/ku/running.po | 4 +-
src/vidalia/help/content/po/ku/server.po | 4 +-
src/vidalia/help/content/po/ku/services.po | 4 +-
src/vidalia/help/content/po/ku/troubleshooting.po | 4 +-
src/vidalia/help/content/po/kw/config.po | 4 +-
src/vidalia/help/content/po/kw/index.po | 4 +-
src/vidalia/help/content/po/kw/links.po | 4 +-
src/vidalia/help/content/po/kw/log.po | 4 +-
src/vidalia/help/content/po/kw/running.po | 4 +-
src/vidalia/help/content/po/kw/server.po | 4 +-
src/vidalia/help/content/po/kw/services.po | 4 +-
src/vidalia/help/content/po/kw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ky/bridges.po | 4 +-
src/vidalia/help/content/po/ky/config.po | 4 +-
src/vidalia/help/content/po/ky/index.po | 4 +-
src/vidalia/help/content/po/ky/links.po | 4 +-
src/vidalia/help/content/po/ky/log.po | 4 +-
src/vidalia/help/content/po/ky/netview.po | 4 +-
src/vidalia/help/content/po/ky/running.po | 4 +-
src/vidalia/help/content/po/ky/server.po | 4 +-
src/vidalia/help/content/po/ky/services.po | 4 +-
src/vidalia/help/content/po/ky/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lb/config.po | 4 +-
src/vidalia/help/content/po/lb/index.po | 4 +-
src/vidalia/help/content/po/lb/links.po | 4 +-
src/vidalia/help/content/po/lb/log.po | 4 +-
src/vidalia/help/content/po/lb/running.po | 4 +-
src/vidalia/help/content/po/lb/server.po | 4 +-
src/vidalia/help/content/po/lb/services.po | 4 +-
src/vidalia/help/content/po/lb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lg/bridges.po | 4 +-
src/vidalia/help/content/po/lg/config.po | 4 +-
src/vidalia/help/content/po/lg/index.po | 4 +-
src/vidalia/help/content/po/lg/links.po | 4 +-
src/vidalia/help/content/po/lg/log.po | 4 +-
src/vidalia/help/content/po/lg/netview.po | 4 +-
src/vidalia/help/content/po/lg/running.po | 4 +-
src/vidalia/help/content/po/lg/server.po | 4 +-
src/vidalia/help/content/po/lg/services.po | 4 +-
src/vidalia/help/content/po/lg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ln/config.po | 4 +-
src/vidalia/help/content/po/ln/index.po | 4 +-
src/vidalia/help/content/po/ln/links.po | 4 +-
src/vidalia/help/content/po/ln/log.po | 4 +-
src/vidalia/help/content/po/ln/running.po | 4 +-
src/vidalia/help/content/po/ln/server.po | 4 +-
src/vidalia/help/content/po/ln/services.po | 4 +-
src/vidalia/help/content/po/ln/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lo/config.po | 4 +-
src/vidalia/help/content/po/lo/index.po | 4 +-
src/vidalia/help/content/po/lo/links.po | 4 +-
src/vidalia/help/content/po/lo/log.po | 4 +-
src/vidalia/help/content/po/lo/running.po | 4 +-
src/vidalia/help/content/po/lo/server.po | 4 +-
src/vidalia/help/content/po/lo/services.po | 4 +-
src/vidalia/help/content/po/lo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lt/config.po | 4 +-
src/vidalia/help/content/po/lt/index.po | 4 +-
src/vidalia/help/content/po/lt/links.po | 4 +-
src/vidalia/help/content/po/lt/log.po | 4 +-
src/vidalia/help/content/po/lt/running.po | 4 +-
src/vidalia/help/content/po/lt/server.po | 4 +-
src/vidalia/help/content/po/lt/services.po | 4 +-
src/vidalia/help/content/po/lt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/lv/config.po | 4 +-
src/vidalia/help/content/po/lv/index.po | 4 +-
src/vidalia/help/content/po/lv/links.po | 4 +-
src/vidalia/help/content/po/lv/log.po | 4 +-
src/vidalia/help/content/po/lv/running.po | 4 +-
src/vidalia/help/content/po/lv/server.po | 4 +-
src/vidalia/help/content/po/lv/services.po | 4 +-
src/vidalia/help/content/po/lv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mg/config.po | 4 +-
src/vidalia/help/content/po/mg/index.po | 4 +-
src/vidalia/help/content/po/mg/links.po | 4 +-
src/vidalia/help/content/po/mg/log.po | 4 +-
src/vidalia/help/content/po/mg/running.po | 4 +-
src/vidalia/help/content/po/mg/server.po | 4 +-
src/vidalia/help/content/po/mg/services.po | 4 +-
src/vidalia/help/content/po/mg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mi/config.po | 4 +-
src/vidalia/help/content/po/mi/index.po | 4 +-
src/vidalia/help/content/po/mi/links.po | 4 +-
src/vidalia/help/content/po/mi/log.po | 4 +-
src/vidalia/help/content/po/mi/running.po | 4 +-
src/vidalia/help/content/po/mi/server.po | 4 +-
src/vidalia/help/content/po/mi/services.po | 4 +-
src/vidalia/help/content/po/mi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mk/config.po | 4 +-
src/vidalia/help/content/po/mk/index.po | 4 +-
src/vidalia/help/content/po/mk/links.po | 4 +-
src/vidalia/help/content/po/mk/log.po | 4 +-
src/vidalia/help/content/po/mk/running.po | 4 +-
src/vidalia/help/content/po/mk/server.po | 4 +-
src/vidalia/help/content/po/mk/services.po | 4 +-
src/vidalia/help/content/po/mk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ml/config.po | 4 +-
src/vidalia/help/content/po/ml/index.po | 4 +-
src/vidalia/help/content/po/ml/links.po | 4 +-
src/vidalia/help/content/po/ml/log.po | 4 +-
src/vidalia/help/content/po/ml/running.po | 4 +-
src/vidalia/help/content/po/ml/server.po | 4 +-
src/vidalia/help/content/po/ml/services.po | 4 +-
src/vidalia/help/content/po/ml/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mn/config.po | 4 +-
src/vidalia/help/content/po/mn/index.po | 4 +-
src/vidalia/help/content/po/mn/links.po | 4 +-
src/vidalia/help/content/po/mn/log.po | 4 +-
src/vidalia/help/content/po/mn/running.po | 4 +-
src/vidalia/help/content/po/mn/server.po | 4 +-
src/vidalia/help/content/po/mn/services.po | 4 +-
src/vidalia/help/content/po/mn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mr/config.po | 4 +-
src/vidalia/help/content/po/mr/index.po | 4 +-
src/vidalia/help/content/po/mr/links.po | 4 +-
src/vidalia/help/content/po/mr/log.po | 4 +-
src/vidalia/help/content/po/mr/running.po | 4 +-
src/vidalia/help/content/po/mr/server.po | 4 +-
src/vidalia/help/content/po/mr/services.po | 4 +-
src/vidalia/help/content/po/mr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ms/config.po | 4 +-
src/vidalia/help/content/po/ms/index.po | 4 +-
src/vidalia/help/content/po/ms/links.po | 4 +-
src/vidalia/help/content/po/ms/log.po | 4 +-
src/vidalia/help/content/po/ms/running.po | 4 +-
src/vidalia/help/content/po/ms/server.po | 4 +-
src/vidalia/help/content/po/ms/services.po | 4 +-
src/vidalia/help/content/po/ms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/mt/config.po | 4 +-
src/vidalia/help/content/po/mt/index.po | 4 +-
src/vidalia/help/content/po/mt/links.po | 4 +-
src/vidalia/help/content/po/mt/log.po | 4 +-
src/vidalia/help/content/po/mt/running.po | 4 +-
src/vidalia/help/content/po/mt/server.po | 4 +-
src/vidalia/help/content/po/mt/services.po | 4 +-
src/vidalia/help/content/po/mt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/my/config.po | 4 +-
src/vidalia/help/content/po/my/index.po | 4 +-
src/vidalia/help/content/po/my/links.po | 4 +-
src/vidalia/help/content/po/my/log.po | 4 +-
src/vidalia/help/content/po/my/netview.po | 4 +-
src/vidalia/help/content/po/my/running.po | 4 +-
src/vidalia/help/content/po/my/server.po | 4 +-
src/vidalia/help/content/po/my/services.po | 4 +-
src/vidalia/help/content/po/my/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nah/bridges.po | 4 +-
src/vidalia/help/content/po/nah/config.po | 4 +-
src/vidalia/help/content/po/nah/index.po | 4 +-
src/vidalia/help/content/po/nah/links.po | 4 +-
src/vidalia/help/content/po/nah/log.po | 4 +-
src/vidalia/help/content/po/nah/netview.po | 4 +-
src/vidalia/help/content/po/nah/running.po | 4 +-
src/vidalia/help/content/po/nah/server.po | 4 +-
src/vidalia/help/content/po/nah/services.po | 4 +-
src/vidalia/help/content/po/nah/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nap/config.po | 4 +-
src/vidalia/help/content/po/nap/index.po | 4 +-
src/vidalia/help/content/po/nap/links.po | 4 +-
src/vidalia/help/content/po/nap/log.po | 4 +-
src/vidalia/help/content/po/nap/running.po | 4 +-
src/vidalia/help/content/po/nap/server.po | 4 +-
src/vidalia/help/content/po/nap/services.po | 4 +-
src/vidalia/help/content/po/nap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nb/config.po | 4 +-
src/vidalia/help/content/po/nb/index.po | 4 +-
src/vidalia/help/content/po/nb/links.po | 4 +-
src/vidalia/help/content/po/nb/log.po | 4 +-
src/vidalia/help/content/po/nb/running.po | 4 +-
src/vidalia/help/content/po/nb/server.po | 4 +-
src/vidalia/help/content/po/nb/services.po | 4 +-
src/vidalia/help/content/po/nb/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ne/config.po | 4 +-
src/vidalia/help/content/po/ne/index.po | 4 +-
src/vidalia/help/content/po/ne/links.po | 4 +-
src/vidalia/help/content/po/ne/log.po | 4 +-
src/vidalia/help/content/po/ne/running.po | 4 +-
src/vidalia/help/content/po/ne/server.po | 4 +-
src/vidalia/help/content/po/ne/services.po | 4 +-
src/vidalia/help/content/po/ne/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nl/config.po | 4 +-
src/vidalia/help/content/po/nl/index.po | 4 +-
src/vidalia/help/content/po/nl/links.po | 4 +-
src/vidalia/help/content/po/nl/log.po | 4 +-
src/vidalia/help/content/po/nl/running.po | 4 +-
src/vidalia/help/content/po/nl/server.po | 4 +-
src/vidalia/help/content/po/nl/services.po | 4 +-
src/vidalia/help/content/po/nl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nn/config.po | 4 +-
src/vidalia/help/content/po/nn/index.po | 4 +-
src/vidalia/help/content/po/nn/links.po | 4 +-
src/vidalia/help/content/po/nn/log.po | 4 +-
src/vidalia/help/content/po/nn/running.po | 4 +-
src/vidalia/help/content/po/nn/server.po | 4 +-
src/vidalia/help/content/po/nn/services.po | 4 +-
src/vidalia/help/content/po/nn/troubleshooting.po | 4 +-
src/vidalia/help/content/po/nso/config.po | 4 +-
src/vidalia/help/content/po/nso/index.po | 4 +-
src/vidalia/help/content/po/nso/links.po | 4 +-
src/vidalia/help/content/po/nso/log.po | 4 +-
src/vidalia/help/content/po/nso/running.po | 4 +-
src/vidalia/help/content/po/nso/server.po | 4 +-
src/vidalia/help/content/po/nso/services.po | 4 +-
src/vidalia/help/content/po/nso/troubleshooting.po | 4 +-
src/vidalia/help/content/po/oc/config.po | 4 +-
src/vidalia/help/content/po/oc/index.po | 4 +-
src/vidalia/help/content/po/oc/links.po | 4 +-
src/vidalia/help/content/po/oc/log.po | 4 +-
src/vidalia/help/content/po/oc/running.po | 4 +-
src/vidalia/help/content/po/oc/server.po | 4 +-
src/vidalia/help/content/po/oc/services.po | 4 +-
src/vidalia/help/content/po/oc/troubleshooting.po | 4 +-
src/vidalia/help/content/po/or/bridges.po | 4 +-
src/vidalia/help/content/po/or/config.po | 4 +-
src/vidalia/help/content/po/or/index.po | 4 +-
src/vidalia/help/content/po/or/links.po | 4 +-
src/vidalia/help/content/po/or/log.po | 4 +-
src/vidalia/help/content/po/or/netview.po | 4 +-
src/vidalia/help/content/po/or/running.po | 4 +-
src/vidalia/help/content/po/or/server.po | 4 +-
src/vidalia/help/content/po/or/services.po | 4 +-
src/vidalia/help/content/po/or/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pa/config.po | 4 +-
src/vidalia/help/content/po/pa/index.po | 4 +-
src/vidalia/help/content/po/pa/links.po | 4 +-
src/vidalia/help/content/po/pa/log.po | 4 +-
src/vidalia/help/content/po/pa/running.po | 4 +-
src/vidalia/help/content/po/pa/server.po | 4 +-
src/vidalia/help/content/po/pa/services.po | 4 +-
src/vidalia/help/content/po/pa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pap/config.po | 4 +-
src/vidalia/help/content/po/pap/index.po | 4 +-
src/vidalia/help/content/po/pap/links.po | 4 +-
src/vidalia/help/content/po/pap/log.po | 4 +-
src/vidalia/help/content/po/pap/running.po | 4 +-
src/vidalia/help/content/po/pap/server.po | 4 +-
src/vidalia/help/content/po/pap/services.po | 4 +-
src/vidalia/help/content/po/pap/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pl/config.po | 4 +-
src/vidalia/help/content/po/pl/index.po | 4 +-
src/vidalia/help/content/po/pl/links.po | 4 +-
src/vidalia/help/content/po/pl/log.po | 4 +-
src/vidalia/help/content/po/pl/running.po | 4 +-
src/vidalia/help/content/po/pl/server.po | 4 +-
src/vidalia/help/content/po/pl/services.po | 4 +-
src/vidalia/help/content/po/pl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pms/config.po | 4 +-
src/vidalia/help/content/po/pms/index.po | 4 +-
src/vidalia/help/content/po/pms/links.po | 4 +-
src/vidalia/help/content/po/pms/log.po | 4 +-
src/vidalia/help/content/po/pms/running.po | 4 +-
src/vidalia/help/content/po/pms/server.po | 4 +-
src/vidalia/help/content/po/pms/services.po | 4 +-
src/vidalia/help/content/po/pms/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ps/config.po | 4 +-
src/vidalia/help/content/po/ps/index.po | 4 +-
src/vidalia/help/content/po/ps/links.po | 4 +-
src/vidalia/help/content/po/ps/log.po | 4 +-
src/vidalia/help/content/po/ps/running.po | 4 +-
src/vidalia/help/content/po/ps/server.po | 4 +-
src/vidalia/help/content/po/ps/services.po | 4 +-
src/vidalia/help/content/po/ps/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt/config.po | 4 +-
src/vidalia/help/content/po/pt/index.po | 4 +-
src/vidalia/help/content/po/pt/links.po | 4 +-
src/vidalia/help/content/po/pt/log.po | 4 +-
src/vidalia/help/content/po/pt/running.po | 4 +-
src/vidalia/help/content/po/pt/server.po | 4 +-
src/vidalia/help/content/po/pt/services.po | 4 +-
src/vidalia/help/content/po/pt/troubleshooting.po | 4 +-
src/vidalia/help/content/po/pt_BR/config.po | 4 +-
src/vidalia/help/content/po/pt_BR/index.po | 4 +-
src/vidalia/help/content/po/pt_BR/links.po | 4 +-
src/vidalia/help/content/po/pt_BR/log.po | 4 +-
src/vidalia/help/content/po/pt_BR/running.po | 4 +-
src/vidalia/help/content/po/pt_BR/server.po | 4 +-
src/vidalia/help/content/po/pt_BR/services.po | 4 +-
.../help/content/po/pt_BR/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ro/config.po | 4 +-
src/vidalia/help/content/po/ro/index.po | 4 +-
src/vidalia/help/content/po/ro/links.po | 4 +-
src/vidalia/help/content/po/ro/log.po | 4 +-
src/vidalia/help/content/po/ro/running.po | 4 +-
src/vidalia/help/content/po/ro/server.po | 4 +-
src/vidalia/help/content/po/ro/services.po | 4 +-
src/vidalia/help/content/po/ro/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ru/config.po | 4 +-
src/vidalia/help/content/po/ru/index.po | 4 +-
src/vidalia/help/content/po/ru/links.po | 4 +-
src/vidalia/help/content/po/ru/log.po | 4 +-
src/vidalia/help/content/po/ru/netview.po | 4 +-
src/vidalia/help/content/po/ru/running.po | 4 +-
src/vidalia/help/content/po/ru/server.po | 4 +-
src/vidalia/help/content/po/ru/services.po | 4 +-
src/vidalia/help/content/po/ru/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sco/config.po | 4 +-
src/vidalia/help/content/po/sco/index.po | 4 +-
src/vidalia/help/content/po/sco/links.po | 4 +-
src/vidalia/help/content/po/sco/log.po | 4 +-
src/vidalia/help/content/po/sco/running.po | 4 +-
src/vidalia/help/content/po/sco/server.po | 4 +-
src/vidalia/help/content/po/sco/services.po | 4 +-
src/vidalia/help/content/po/sco/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sk/bridges.po | 4 +-
src/vidalia/help/content/po/sk/config.po | 4 +-
src/vidalia/help/content/po/sk/index.po | 4 +-
src/vidalia/help/content/po/sk/links.po | 4 +-
src/vidalia/help/content/po/sk/log.po | 4 +-
src/vidalia/help/content/po/sk/netview.po | 4 +-
src/vidalia/help/content/po/sk/running.po | 4 +-
src/vidalia/help/content/po/sk/server.po | 4 +-
src/vidalia/help/content/po/sk/services.po | 4 +-
src/vidalia/help/content/po/sk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sl/bridges.po | 4 +-
src/vidalia/help/content/po/sl/config.po | 4 +-
src/vidalia/help/content/po/sl/index.po | 4 +-
src/vidalia/help/content/po/sl/links.po | 4 +-
src/vidalia/help/content/po/sl/log.po | 4 +-
src/vidalia/help/content/po/sl/netview.po | 4 +-
src/vidalia/help/content/po/sl/running.po | 4 +-
src/vidalia/help/content/po/sl/server.po | 4 +-
src/vidalia/help/content/po/sl/services.po | 4 +-
src/vidalia/help/content/po/sl/troubleshooting.po | 4 +-
src/vidalia/help/content/po/so/bridges.po | 4 +-
src/vidalia/help/content/po/so/config.po | 4 +-
src/vidalia/help/content/po/so/index.po | 4 +-
src/vidalia/help/content/po/so/links.po | 4 +-
src/vidalia/help/content/po/so/log.po | 4 +-
src/vidalia/help/content/po/so/netview.po | 4 +-
src/vidalia/help/content/po/so/running.po | 4 +-
src/vidalia/help/content/po/so/server.po | 4 +-
src/vidalia/help/content/po/so/services.po | 4 +-
src/vidalia/help/content/po/so/troubleshooting.po | 4 +-
src/vidalia/help/content/po/son/config.po | 4 +-
src/vidalia/help/content/po/son/index.po | 4 +-
src/vidalia/help/content/po/son/links.po | 4 +-
src/vidalia/help/content/po/son/log.po | 4 +-
src/vidalia/help/content/po/son/running.po | 4 +-
src/vidalia/help/content/po/son/server.po | 4 +-
src/vidalia/help/content/po/son/services.po | 4 +-
src/vidalia/help/content/po/son/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sq/bridges.po | 4 +-
src/vidalia/help/content/po/sq/config.po | 4 +-
src/vidalia/help/content/po/sq/index.po | 4 +-
src/vidalia/help/content/po/sq/links.po | 4 +-
src/vidalia/help/content/po/sq/log.po | 4 +-
src/vidalia/help/content/po/sq/netview.po | 4 +-
src/vidalia/help/content/po/sq/running.po | 4 +-
src/vidalia/help/content/po/sq/server.po | 4 +-
src/vidalia/help/content/po/sq/services.po | 4 +-
src/vidalia/help/content/po/sq/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sr/bridges.po | 4 +-
src/vidalia/help/content/po/sr/config.po | 4 +-
src/vidalia/help/content/po/sr/index.po | 4 +-
src/vidalia/help/content/po/sr/links.po | 4 +-
src/vidalia/help/content/po/sr/log.po | 4 +-
src/vidalia/help/content/po/sr/netview.po | 4 +-
src/vidalia/help/content/po/sr/running.po | 4 +-
src/vidalia/help/content/po/sr/server.po | 4 +-
src/vidalia/help/content/po/sr/services.po | 4 +-
src/vidalia/help/content/po/sr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/st/bridges.po | 4 +-
src/vidalia/help/content/po/st/config.po | 4 +-
src/vidalia/help/content/po/st/index.po | 4 +-
src/vidalia/help/content/po/st/links.po | 4 +-
src/vidalia/help/content/po/st/log.po | 4 +-
src/vidalia/help/content/po/st/netview.po | 4 +-
src/vidalia/help/content/po/st/running.po | 4 +-
src/vidalia/help/content/po/st/server.po | 4 +-
src/vidalia/help/content/po/st/services.po | 4 +-
src/vidalia/help/content/po/st/troubleshooting.po | 4 +-
src/vidalia/help/content/po/su/config.po | 4 +-
src/vidalia/help/content/po/su/index.po | 4 +-
src/vidalia/help/content/po/su/links.po | 4 +-
src/vidalia/help/content/po/su/log.po | 4 +-
src/vidalia/help/content/po/su/running.po | 4 +-
src/vidalia/help/content/po/su/server.po | 4 +-
src/vidalia/help/content/po/su/services.po | 4 +-
src/vidalia/help/content/po/su/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sv/bridges.po | 4 +-
src/vidalia/help/content/po/sv/config.po | 4 +-
src/vidalia/help/content/po/sv/index.po | 4 +-
src/vidalia/help/content/po/sv/links.po | 4 +-
src/vidalia/help/content/po/sv/log.po | 4 +-
src/vidalia/help/content/po/sv/netview.po | 4 +-
src/vidalia/help/content/po/sv/running.po | 4 +-
src/vidalia/help/content/po/sv/server.po | 4 +-
src/vidalia/help/content/po/sv/services.po | 4 +-
src/vidalia/help/content/po/sv/troubleshooting.po | 4 +-
src/vidalia/help/content/po/sw/config.po | 4 +-
src/vidalia/help/content/po/sw/index.po | 4 +-
src/vidalia/help/content/po/sw/links.po | 4 +-
src/vidalia/help/content/po/sw/log.po | 4 +-
src/vidalia/help/content/po/sw/running.po | 4 +-
src/vidalia/help/content/po/sw/server.po | 4 +-
src/vidalia/help/content/po/sw/services.po | 4 +-
src/vidalia/help/content/po/sw/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ta/config.po | 4 +-
src/vidalia/help/content/po/ta/index.po | 4 +-
src/vidalia/help/content/po/ta/links.po | 4 +-
src/vidalia/help/content/po/ta/log.po | 4 +-
src/vidalia/help/content/po/ta/running.po | 4 +-
src/vidalia/help/content/po/ta/server.po | 4 +-
src/vidalia/help/content/po/ta/services.po | 4 +-
src/vidalia/help/content/po/ta/troubleshooting.po | 4 +-
src/vidalia/help/content/po/te/config.po | 4 +-
src/vidalia/help/content/po/te/index.po | 4 +-
src/vidalia/help/content/po/te/links.po | 4 +-
src/vidalia/help/content/po/te/log.po | 4 +-
src/vidalia/help/content/po/te/running.po | 4 +-
src/vidalia/help/content/po/te/server.po | 4 +-
src/vidalia/help/content/po/te/services.po | 4 +-
src/vidalia/help/content/po/te/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tg/config.po | 4 +-
src/vidalia/help/content/po/tg/index.po | 4 +-
src/vidalia/help/content/po/tg/links.po | 4 +-
src/vidalia/help/content/po/tg/log.po | 4 +-
src/vidalia/help/content/po/tg/running.po | 4 +-
src/vidalia/help/content/po/tg/server.po | 4 +-
src/vidalia/help/content/po/tg/services.po | 4 +-
src/vidalia/help/content/po/tg/troubleshooting.po | 4 +-
src/vidalia/help/content/po/th/config.po | 4 +-
src/vidalia/help/content/po/th/index.po | 4 +-
src/vidalia/help/content/po/th/links.po | 4 +-
src/vidalia/help/content/po/th/log.po | 4 +-
src/vidalia/help/content/po/th/running.po | 4 +-
src/vidalia/help/content/po/th/server.po | 4 +-
src/vidalia/help/content/po/th/services.po | 4 +-
src/vidalia/help/content/po/th/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ti/config.po | 4 +-
src/vidalia/help/content/po/ti/index.po | 4 +-
src/vidalia/help/content/po/ti/links.po | 4 +-
src/vidalia/help/content/po/ti/log.po | 4 +-
src/vidalia/help/content/po/ti/running.po | 4 +-
src/vidalia/help/content/po/ti/server.po | 4 +-
src/vidalia/help/content/po/ti/services.po | 4 +-
src/vidalia/help/content/po/ti/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tk/config.po | 4 +-
src/vidalia/help/content/po/tk/index.po | 4 +-
src/vidalia/help/content/po/tk/links.po | 4 +-
src/vidalia/help/content/po/tk/log.po | 4 +-
src/vidalia/help/content/po/tk/running.po | 4 +-
src/vidalia/help/content/po/tk/server.po | 4 +-
src/vidalia/help/content/po/tk/services.po | 4 +-
src/vidalia/help/content/po/tk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/tr/index.po | 4 +-
src/vidalia/help/content/po/tr/links.po | 4 +-
src/vidalia/help/content/po/tr/log.po | 4 +-
src/vidalia/help/content/po/tr/running.po | 4 +-
src/vidalia/help/content/po/tr/server.po | 4 +-
src/vidalia/help/content/po/tr/services.po | 4 +-
src/vidalia/help/content/po/tr/troubleshooting.po | 4 +-
src/vidalia/help/content/po/uk/config.po | 4 +-
src/vidalia/help/content/po/uk/index.po | 4 +-
src/vidalia/help/content/po/uk/links.po | 4 +-
src/vidalia/help/content/po/uk/log.po | 4 +-
src/vidalia/help/content/po/uk/running.po | 4 +-
src/vidalia/help/content/po/uk/server.po | 4 +-
src/vidalia/help/content/po/uk/services.po | 4 +-
src/vidalia/help/content/po/uk/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ur/config.po | 4 +-
src/vidalia/help/content/po/ur/index.po | 4 +-
src/vidalia/help/content/po/ur/links.po | 4 +-
src/vidalia/help/content/po/ur/log.po | 4 +-
src/vidalia/help/content/po/ur/running.po | 4 +-
src/vidalia/help/content/po/ur/server.po | 4 +-
src/vidalia/help/content/po/ur/services.po | 4 +-
src/vidalia/help/content/po/ur/troubleshooting.po | 4 +-
src/vidalia/help/content/po/ve/config.po | 4 +-
src/vidalia/help/content/po/ve/index.po | 4 +-
src/vidalia/help/content/po/ve/links.po | 4 +-
src/vidalia/help/content/po/ve/log.po | 4 +-
src/vidalia/help/content/po/ve/running.po | 4 +-
src/vidalia/help/content/po/ve/server.po | 4 +-
src/vidalia/help/content/po/ve/services.po | 4 +-
src/vidalia/help/content/po/ve/troubleshooting.po | 4 +-
src/vidalia/help/content/po/vi/config.po | 4 +-
src/vidalia/help/content/po/vi/index.po | 4 +-
src/vidalia/help/content/po/vi/links.po | 4 +-
src/vidalia/help/content/po/vi/log.po | 4 +-
src/vidalia/help/content/po/vi/running.po | 4 +-
src/vidalia/help/content/po/vi/server.po | 4 +-
src/vidalia/help/content/po/vi/services.po | 4 +-
src/vidalia/help/content/po/vi/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wa/config.po | 4 +-
src/vidalia/help/content/po/wa/index.po | 4 +-
src/vidalia/help/content/po/wa/links.po | 4 +-
src/vidalia/help/content/po/wa/log.po | 4 +-
src/vidalia/help/content/po/wa/running.po | 4 +-
src/vidalia/help/content/po/wa/server.po | 4 +-
src/vidalia/help/content/po/wa/services.po | 4 +-
src/vidalia/help/content/po/wa/troubleshooting.po | 4 +-
src/vidalia/help/content/po/wo/bridges.po | 4 +-
src/vidalia/help/content/po/wo/config.po | 4 +-
src/vidalia/help/content/po/wo/index.po | 4 +-
src/vidalia/help/content/po/wo/links.po | 4 +-
src/vidalia/help/content/po/wo/log.po | 4 +-
src/vidalia/help/content/po/wo/netview.po | 4 +-
src/vidalia/help/content/po/wo/running.po | 4 +-
src/vidalia/help/content/po/wo/server.po | 4 +-
src/vidalia/help/content/po/wo/services.po | 4 +-
src/vidalia/help/content/po/wo/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_CN/config.po | 4 +-
src/vidalia/help/content/po/zh_CN/index.po | 4 +-
src/vidalia/help/content/po/zh_CN/links.po | 4 +-
src/vidalia/help/content/po/zh_CN/log.po | 4 +-
src/vidalia/help/content/po/zh_CN/running.po | 4 +-
src/vidalia/help/content/po/zh_CN/server.po | 4 +-
src/vidalia/help/content/po/zh_CN/services.po | 4 +-
.../help/content/po/zh_CN/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_HK/config.po | 4 +-
src/vidalia/help/content/po/zh_HK/index.po | 4 +-
src/vidalia/help/content/po/zh_HK/links.po | 4 +-
src/vidalia/help/content/po/zh_HK/log.po | 4 +-
src/vidalia/help/content/po/zh_HK/running.po | 4 +-
src/vidalia/help/content/po/zh_HK/server.po | 4 +-
src/vidalia/help/content/po/zh_HK/services.po | 4 +-
.../help/content/po/zh_HK/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zh_TW/config.po | 4 +-
src/vidalia/help/content/po/zh_TW/index.po | 4 +-
src/vidalia/help/content/po/zh_TW/links.po | 4 +-
src/vidalia/help/content/po/zh_TW/log.po | 4 +-
src/vidalia/help/content/po/zh_TW/running.po | 4 +-
src/vidalia/help/content/po/zh_TW/server.po | 4 +-
src/vidalia/help/content/po/zh_TW/services.po | 4 +-
.../help/content/po/zh_TW/troubleshooting.po | 4 +-
src/vidalia/help/content/po/zu/config.po | 4 +-
src/vidalia/help/content/po/zu/index.po | 4 +-
src/vidalia/help/content/po/zu/links.po | 4 +-
src/vidalia/help/content/po/zu/log.po | 4 +-
src/vidalia/help/content/po/zu/running.po | 4 +-
src/vidalia/help/content/po/zu/server.po | 4 +-
src/vidalia/help/content/po/zu/services.po | 4 +-
src/vidalia/help/content/po/zu/troubleshooting.po | 4 +-
src/vidalia/help/content/pt_BR/bridges.html | 6 ++--
src/vidalia/help/content/ru/bridges.html | 6 ++--
src/vidalia/help/content/ru/config.html | 6 ++--
src/vidalia/help/content/ru/index.html | 6 ++--
src/vidalia/help/content/ru/links.html | 6 ++--
src/vidalia/help/content/ru/log.html | 6 ++--
src/vidalia/help/content/ru/netview.html | 6 ++--
src/vidalia/help/content/ru/running.html | 6 ++--
src/vidalia/help/content/ru/server.html | 6 ++--
src/vidalia/help/content/ru/services.html | 6 ++--
src/vidalia/help/content/ru/troubleshooting.html | 6 ++--
src/vidalia/help/content/sv/bridges.html | 6 ++--
src/vidalia/help/content/sv/config.html | 6 ++--
src/vidalia/help/content/sv/index.html | 6 ++--
src/vidalia/help/content/sv/links.html | 6 ++--
src/vidalia/help/content/sv/log.html | 6 ++--
src/vidalia/help/content/sv/netview.html | 6 ++--
src/vidalia/help/content/sv/running.html | 6 ++--
src/vidalia/help/content/sv/server.html | 6 ++--
src/vidalia/help/content/sv/services.html | 6 ++--
src/vidalia/help/content/sv/troubleshooting.html | 6 ++--
src/vidalia/help/content/tr/links.html | 6 ++--
src/vidalia/help/content/zh_CN/bridges.html | 6 ++--
src/vidalia/help/content/zh_CN/config.html | 6 ++--
src/vidalia/help/content/zh_CN/index.html | 6 ++--
src/vidalia/help/content/zh_CN/links.html | 6 ++--
src/vidalia/help/content/zh_CN/log.html | 6 ++--
src/vidalia/help/content/zh_CN/netview.html | 6 ++--
src/vidalia/help/content/zh_CN/running.html | 6 ++--
src/vidalia/help/content/zh_CN/server.html | 6 ++--
.../help/content/zh_CN/troubleshooting.html | 6 ++--
src/vidalia/i18n/CMakeLists.txt | 6 ++--
src/vidalia/log/LogFile.cpp | 6 ++--
src/vidalia/log/LogFile.h | 6 ++--
src/vidalia/log/LogHeaderView.cpp | 6 ++--
src/vidalia/log/LogHeaderView.h | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.cpp | 6 ++--
src/vidalia/log/LogMessageColumnDelegate.h | 6 ++--
src/vidalia/log/LogTreeItem.cpp | 6 ++--
src/vidalia/log/LogTreeItem.h | 6 ++--
src/vidalia/log/LogTreeWidget.cpp | 6 ++--
src/vidalia/log/LogTreeWidget.h | 6 ++--
src/vidalia/log/MessageLog.cpp | 6 ++--
src/vidalia/log/MessageLog.h | 6 ++--
src/vidalia/log/StatusEventItem.cpp | 6 ++--
src/vidalia/log/StatusEventItem.h | 6 ++--
src/vidalia/log/StatusEventItemDelegate.cpp | 6 ++--
src/vidalia/log/StatusEventItemDelegate.h | 6 ++--
src/vidalia/log/StatusEventWidget.cpp | 6 ++--
src/vidalia/log/StatusEventWidget.h | 6 ++--
src/vidalia/main.cpp | 6 ++--
src/vidalia/network/CircuitItem.cpp | 6 ++--
src/vidalia/network/CircuitItem.h | 6 ++--
src/vidalia/network/CircuitListWidget.cpp | 6 ++--
src/vidalia/network/CircuitListWidget.h | 6 ++--
src/vidalia/network/CountryInfo.cpp | 6 ++--
src/vidalia/network/CountryInfo.h | 6 ++--
src/vidalia/network/GeoIpDatabase.cpp | 6 ++--
src/vidalia/network/GeoIpDatabase.h | 6 ++--
src/vidalia/network/GeoIpRecord.cpp | 6 ++--
src/vidalia/network/GeoIpRecord.h | 6 ++--
src/vidalia/network/GeoIpResolver.cpp | 6 ++--
src/vidalia/network/GeoIpResolver.h | 6 ++--
src/vidalia/network/NetViewer.cpp | 6 ++--
src/vidalia/network/NetViewer.h | 6 ++--
src/vidalia/network/RouterDescriptorView.cpp | 6 ++--
src/vidalia/network/RouterDescriptorView.h | 6 ++--
src/vidalia/network/RouterInfoDialog.cpp | 6 ++--
src/vidalia/network/RouterInfoDialog.h | 6 ++--
src/vidalia/network/RouterListItem.cpp | 6 ++--
src/vidalia/network/RouterListItem.h | 6 ++--
src/vidalia/network/RouterListWidget.cpp | 6 ++--
src/vidalia/network/RouterListWidget.h | 6 ++--
src/vidalia/network/StreamItem.cpp | 6 ++--
src/vidalia/network/StreamItem.h | 6 ++--
src/vidalia/network/TorMapImageView.cpp | 6 ++--
src/vidalia/network/TorMapImageView.h | 6 ++--
src/vidalia/network/TorMapWidget.cpp | 6 ++--
src/vidalia/network/TorMapWidget.h | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.cpp | 6 ++--
src/vidalia/network/TorMapWidgetInputHandler.h | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.cpp | 6 ++--
src/vidalia/network/TorMapWidgetPopupMenu.h | 6 ++--
src/vidalia/network/ZImageView.cpp | 6 ++--
src/vidalia/network/ZImageView.h | 6 ++--
src/vidalia/res/vidalia_win.rc.in | 6 ++--
1386 files changed, 3159 insertions(+), 3175 deletions(-)
[View Less]
1
0
commit ff19c2502c761853142623655c3557762e88c2a7
Merge: 0b988ea 7b01d6c
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:45:33 2011 -0300
Merge branch 'master' into alpha
cmake/FindBreakpad.cmake | 3 -
src/crashreporter/CMakeLists.txt | 6 +-
src/crashreporter/CrashReportDialog.cpp | 61 +-----------
src/crashreporter/CrashReportDialog.h | 28 +----
src/crashreporter/CrashReportDialog.ui | 115 +++++++++++++---------
…
[View More] src/crashreporter/CrashReportUploader.cpp | 152 ----------------------------
src/crashreporter/CrashReportUploader.h | 109 --------------------
src/crashreporter/UploadProgressDialog.cpp | 60 -----------
src/crashreporter/UploadProgressDialog.h | 62 -----------
src/crashreporter/UploadProgressDialog.ui | 106 -------------------
src/crashreporter/main.cpp | 43 +-------
src/vidalia/CMakeLists.txt | 2 +-
src/vidalia/CrashReporter.cpp | 39 ++++++-
src/vidalia/main.cpp | 2 +
14 files changed, 118 insertions(+), 670 deletions(-)
[View Less]
1
0
commit 7b01d6c9a1e6bf0349a0211b9e9e3234e1ff9c86
Merge: c0da3c8 32e4b2e
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Thu May 5 15:45:24 2011 -0300
Merge branch 'bug2105_breakpad'
Conflicts:
src/crashreporter/CrashReportUploader.cpp
src/crashreporter/CrashReportUploader.h
src/crashreporter/UploadProgressDialog.cpp
src/crashreporter/UploadProgressDialog.h
cmake/FindBreakpad.cmake | 3 -
src/crashreporter/CMakeLists.txt …
[View More]| 6 +-
src/crashreporter/CrashReportDialog.cpp | 61 +-----------
src/crashreporter/CrashReportDialog.h | 28 +----
src/crashreporter/CrashReportDialog.ui | 115 +++++++++++++---------
src/crashreporter/CrashReportUploader.cpp | 152 ----------------------------
src/crashreporter/CrashReportUploader.h | 109 --------------------
src/crashreporter/UploadProgressDialog.cpp | 60 -----------
src/crashreporter/UploadProgressDialog.h | 62 -----------
src/crashreporter/UploadProgressDialog.ui | 106 -------------------
src/crashreporter/main.cpp | 43 +-------
src/vidalia/CMakeLists.txt | 2 +-
src/vidalia/CrashReporter.cpp | 39 ++++++-
src/vidalia/main.cpp | 2 +
14 files changed, 118 insertions(+), 670 deletions(-)
[View Less]
1
0
commit 32e4b2eb6d891e6462808dd421329d7e366b1c2e
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:05:54 2011 -0300
Fixes wrong label naming
---
src/crashreporter/CrashReportDialog.ui | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/crashreporter/CrashReportDialog.ui b/src/crashreporter/CrashReportDialog.ui
index ae3faac..a4be3e5 100644
--- a/src/crashreporter/CrashReportDialog.ui
+++ b/src/crashreporter/CrashReportDialog.ui
@@ -49,7 +49,7 …
[View More]@@
</widget>
</item>
<item row="7" column="0" colspan="2">
- <widget class="QLabel" name="label">
+ <widget class="QLabel" name="lblLink">
<property name="text">
<string><a href="https://trac.torproject.org/projects/tor/newticket">http…</string>
</property>
[View Less]
1
0

[vidalia/alpha] Fix issue with making bandwidth graph persistent
by chiiph@torproject.org 05 May '11
by chiiph@torproject.org 05 May '11
05 May '11
commit c9baf484227779badf8fde344a6531baeafaf896
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Tue May 3 16:45:34 2011 -0300
Fix issue with making bandwidth graph persistent
---
src/vidalia/MainWindow.cpp | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/vidalia/MainWindow.cpp b/src/vidalia/MainWindow.cpp
index 540af15..543bbc6 100644
--- a/src/vidalia/MainWindow.cpp
+++ b/src/vidalia/MainWindow.cpp
@@ -1536,7 +1536,10 @@ MainWindow::addTab(…
[View More]VidaliaTab *tab)
if(_tabMap.contains(tab->getTitle())) {
ui.tabWidget->setCurrentIndex(_tabMap.indexOf(tab->getTitle()));
/** Exception for tabs that need to be always created */
- if(tab != _messageLog && tab != &_statusTab && tab != &_netViewer)
+ if (tab != _messageLog &&
+ tab != &_statusTab &&
+ tab != &_netViewer &&
+ tab != _graph)
tab->deleteLater();
return;
}
[View Less]
1
0

[vidalia/alpha] Revert the disable checkboxes idea for usability issues
by chiiph@torproject.org 05 May '11
by chiiph@torproject.org 05 May '11
05 May '11
commit c9048aba85c20600242deb934716a366efc76013
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Tue May 3 16:52:43 2011 -0300
Revert the disable checkboxes idea for usability issues
The tab is disabled for both bridge and non-exit to be more clear about the fact
that exit policies don't apply.
---
src/vidalia/config/ServerPage.cpp | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/src/vidalia/config/ServerPage.cpp b/src/vidalia/config/…
[View More]ServerPage.cpp
index aeb9125..d04f1dc 100644
--- a/src/vidalia/config/ServerPage.cpp
+++ b/src/vidalia/config/ServerPage.cpp
@@ -238,12 +238,9 @@ ServerPage::serverModeChanged(bool enabled)
ui.lineDirPort->setEnabled(!bridgeEnabled);
ui.chkMirrorDirectory->setEnabled(!bridgeEnabled);
- ui.chkWebsites->setEnabled(!bridgeEnabled and !ui.rdoNonExitMode->isChecked());
- ui.chkSecWebsites->setEnabled(!bridgeEnabled and !ui.rdoNonExitMode->isChecked());
- ui.chkMail->setEnabled(!bridgeEnabled and !ui.rdoNonExitMode->isChecked());
- ui.chkIRC->setEnabled(!bridgeEnabled and !ui.rdoNonExitMode->isChecked());
- ui.chkIM->setEnabled(!bridgeEnabled and !ui.rdoNonExitMode->isChecked());
- ui.chkMisc->setEnabled(!bridgeEnabled and !ui.rdoNonExitMode->isChecked());
+ /* Disable the Exit Policies tab when bridge or non-exit relay mode is
+ * selected */
+ ui.tabsMenu->setTabEnabled(2, !bridgeEnabled and !ui.rdoNonExitMode->isChecked());
}
/** Returns true if the user has changed their server settings since the
[View Less]
1
0

05 May '11
commit ad14401883aaf0139fe6e16ffb9600efdd4e318b
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Sat Apr 30 01:42:55 2011 -0300
Change Vidalia's URL on most code headers
Also in a couple of the help/contents/ files.
---
doc/vidalia.1.in | 2 +-
src/common/Log.cpp | 6 +++---
src/common/Log.h | 6 +++---
src/common/TorSocket.cpp | 6 +++-…
[View More]--
src/common/TorSocket.h | 6 +++---
src/common/ZlibByteArray.cpp | 6 +++---
src/common/ZlibByteArray.h | 6 +++---
src/common/crypto.cpp | 6 +++---
src/common/crypto.h | 6 +++---
src/common/file.cpp | 6 +++---
src/common/file.h | 6 +++---
src/common/html.cpp | 6 +++---
src/common/html.h | 6 +++---
src/common/net.cpp | 6 +++---
src/common/net.h | 6 +++---
src/common/procutil.cpp | 6 +++---
src/common/procutil.h | 6 +++---
src/common/stringutil.cpp | 6 +++---
src/common/stringutil.h | 6 +++---
src/common/win32.cpp | 6 +++---
src/common/win32.h | 6 +++---
src/crashreporter/CrashReportDialog.cpp | 6 +++---
src/crashreporter/CrashReportDialog.h | 6 +++---
src/crashreporter/CrashReportUploader.cpp | 6 +++---
src/crashreporter/CrashReportUploader.h | 6 +++---
src/crashreporter/UploadProgressDialog.cpp | 6 +++---
src/crashreporter/UploadProgressDialog.h | 6 +++---
src/crashreporter/main.cpp | 6 +++---
src/tools/nsh2po/nsh2po.cpp | 6 +++---
src/tools/po2nsh/po2nsh.cpp | 6 +++---
src/tools/po2ts/po2ts.cpp | 6 +++---
src/tools/po2wxl/po2wxl.cpp | 6 +++---
src/tools/ts2po/ts2po.cpp | 6 +++---
src/torcontrol/AddressMap.cpp | 6 +++---
src/torcontrol/AddressMap.h | 6 +++---
src/torcontrol/BootstrapStatus.cpp | 6 +++---
src/torcontrol/BootstrapStatus.h | 6 +++---
src/torcontrol/Circuit.cpp | 6 +++---
src/torcontrol/Circuit.h | 6 +++---
src/torcontrol/ControlCommand.cpp | 6 +++---
src/torcontrol/ControlCommand.h | 6 +++---
src/torcontrol/ControlConnection.cpp | 6 +++---
src/torcontrol/ControlConnection.h | 6 +++---
src/torcontrol/ControlMethod.cpp | 6 +++---
src/torcontrol/ControlMethod.h | 6 +++---
src/torcontrol/ControlReply.cpp | 6 +++---
src/torcontrol/ControlReply.h | 6 +++---
src/torcontrol/ControlSocket.cpp | 6 +++---
src/torcontrol/ControlSocket.h | 6 +++---
src/torcontrol/LogEvent.cpp | 6 +++---
src/torcontrol/LogEvent.h | 6 +++---
src/torcontrol/ProtocolInfo.cpp | 6 +++---
src/torcontrol/ProtocolInfo.h | 6 +++---
src/torcontrol/ReplyLine.cpp | 6 +++---
src/torcontrol/ReplyLine.h | 6 +++---
src/torcontrol/RouterDescriptor.cpp | 6 +++---
src/torcontrol/RouterDescriptor.h | 6 +++---
src/torcontrol/RouterStatus.cpp | 6 +++---
src/torcontrol/RouterStatus.h | 6 +++---
src/torcontrol/SendCommandEvent.cpp | 6 +++---
src/torcontrol/SendCommandEvent.h | 6 +++---
src/torcontrol/Stream.cpp | 6 +++---
src/torcontrol/Stream.h | 6 +++---
src/torcontrol/TorControl.cpp | 6 +++---
src/torcontrol/TorControl.h | 6 +++---
src/torcontrol/TorEvents.cpp | 6 +++---
src/torcontrol/TorEvents.h | 6 +++---
src/torcontrol/TorProcess.cpp | 6 +++---
src/torcontrol/TorProcess.h | 6 +++---
src/torcontrol/TorService.cpp | 6 +++---
src/torcontrol/TorService.h | 6 +++---
src/torcontrol/TorSignal.cpp | 6 +++---
src/torcontrol/TorSignal.h | 6 +++---
src/torcontrol/tcglobal.cpp | 6 +++---
src/torcontrol/tcglobal.h | 6 +++---
src/vidalia/ControlPasswordInputDialog.cpp | 6 +++---
src/vidalia/ControlPasswordInputDialog.h | 6 +++---
src/vidalia/CrashReporter.cpp | 6 +++---
src/vidalia/CrashReporter.h | 6 +++---
src/vidalia/HelperProcess.cpp | 6 +++---
src/vidalia/HelperProcess.h | 6 +++---
src/vidalia/LanguageSupport.cpp | 6 +++---
src/vidalia/LanguageSupport.h | 6 +++---
src/vidalia/MainWindow.cpp | 6 +++---
src/vidalia/MainWindow.h | 6 +++---
src/vidalia/PackageInfo.cpp | 6 +++---
src/vidalia/PackageInfo.h | 6 +++---
src/vidalia/UpdateProcess.cpp | 6 +++---
src/vidalia/UpdateProcess.h | 6 +++---
src/vidalia/UpdateProgressDialog.cpp | 6 +++---
src/vidalia/UpdateProgressDialog.h | 6 +++---
src/vidalia/UpdatesAvailableDialog.cpp | 6 +++---
src/vidalia/UpdatesAvailableDialog.h | 6 +++---
src/vidalia/VClickLabel.cpp | 6 +++---
src/vidalia/VClickLabel.h | 6 +++---
src/vidalia/VMessageBox.cpp | 6 +++---
src/vidalia/VMessageBox.h | 6 +++---
src/vidalia/Vidalia.cpp | 6 +++---
src/vidalia/Vidalia.h | 6 +++---
src/vidalia/VidaliaWindow.cpp | 6 +++---
src/vidalia/VidaliaWindow.h | 6 +++---
src/vidalia/about/AboutDialog.cpp | 6 +++---
src/vidalia/about/AboutDialog.h | 6 +++---
src/vidalia/about/LicenseDialog.cpp | 6 +++---
src/vidalia/about/LicenseDialog.h | 6 +++---
src/vidalia/bwgraph/BandwidthGraph.cpp | 6 +++---
src/vidalia/bwgraph/BandwidthGraph.h | 6 +++---
src/vidalia/bwgraph/GraphFrame.cpp | 6 +++---
src/vidalia/bwgraph/GraphFrame.h | 6 +++---
src/vidalia/config/AbstractTorSettings.cpp | 6 +++---
src/vidalia/config/AbstractTorSettings.h | 6 +++---
src/vidalia/config/AdvancedPage.cpp | 6 +++---
src/vidalia/config/AdvancedPage.h | 6 +++---
src/vidalia/config/AppearancePage.cpp | 6 +++---
src/vidalia/config/AppearancePage.h | 6 +++---
src/vidalia/config/BridgeDownloader.cpp | 6 +++---
src/vidalia/config/BridgeDownloader.h | 6 +++---
.../config/BridgeDownloaderProgressDialog.cpp | 6 +++---
.../config/BridgeDownloaderProgressDialog.h | 6 +++---
src/vidalia/config/BridgeUsageDialog.cpp | 6 +++---
src/vidalia/config/BridgeUsageDialog.h | 6 +++---
src/vidalia/config/ConfigDialog.cpp | 6 +++---
src/vidalia/config/ConfigDialog.h | 6 +++---
src/vidalia/config/ConfigPage.h | 6 +++---
src/vidalia/config/ConfigPageStack.cpp | 6 +++---
src/vidalia/config/ConfigPageStack.h | 6 +++---
src/vidalia/config/DomainValidator.cpp | 6 +++---
src/vidalia/config/DomainValidator.h | 6 +++---
src/vidalia/config/ExitPolicy.cpp | 6 +++---
src/vidalia/config/ExitPolicy.h | 6 +++---
src/vidalia/config/GeneralPage.cpp | 6 +++---
src/vidalia/config/GeneralPage.h | 6 +++---
src/vidalia/config/IpValidator.cpp | 6 +++---
src/vidalia/config/IpValidator.h | 6 +++---
src/vidalia/config/Local8BitStringValidator.cpp | 6 +++---
src/vidalia/config/Local8BitStringValidator.h | 6 +++---
src/vidalia/config/NetworkPage.cpp | 6 +++---
src/vidalia/config/NetworkPage.h | 6 +++---
src/vidalia/config/NetworkSettings.cpp | 6 +++---
src/vidalia/config/NetworkSettings.h | 6 +++---
src/vidalia/config/NicknameValidator.cpp | 6 +++---
src/vidalia/config/NicknameValidator.h | 6 +++---
src/vidalia/config/Policy.cpp | 6 +++---
src/vidalia/config/Policy.h | 6 +++---
src/vidalia/config/PortValidator.cpp | 6 +++---
src/vidalia/config/PortValidator.h | 6 +++---
src/vidalia/config/ServerPage.cpp | 6 +++---
src/vidalia/config/ServerPage.h | 6 +++---
src/vidalia/config/ServerSettings.cpp | 6 +++---
src/vidalia/config/ServerSettings.h | 6 +++---
src/vidalia/config/Service.cpp | 6 +++---
src/vidalia/config/Service.h | 6 +++---
src/vidalia/config/ServiceList.cpp | 6 +++---
src/vidalia/config/ServiceList.h | 6 +++---
src/vidalia/config/ServicePage.cpp | 6 +++---
src/vidalia/config/ServicePage.h | 6 +++---
src/vidalia/config/ServiceSettings.cpp | 6 +++---
src/vidalia/config/ServiceSettings.h | 6 +++---
src/vidalia/config/TorSettings.cpp | 6 +++---
src/vidalia/config/TorSettings.h | 6 +++---
src/vidalia/config/TorrcDialog.cpp | 6 +++---
src/vidalia/config/TorrcDialog.h | 6 +++---
src/vidalia/config/UPNPControl.cpp | 6 +++---
src/vidalia/config/UPNPControl.h | 6 +++---
src/vidalia/config/UPNPControlThread.cpp | 6 +++---
src/vidalia/config/UPNPControlThread.h | 6 +++---
src/vidalia/config/UPNPTestDialog.cpp | 6 +++---
src/vidalia/config/UPNPTestDialog.h | 6 +++---
src/vidalia/config/VSettings.cpp | 6 +++---
src/vidalia/config/VSettings.h | 6 +++---
src/vidalia/config/VidaliaSettings.cpp | 6 +++---
src/vidalia/config/VidaliaSettings.h | 6 +++---
src/vidalia/help/browser/HelpBrowser.cpp | 6 +++---
src/vidalia/help/browser/HelpBrowser.h | 6 +++---
src/vidalia/help/browser/HelpTextBrowser.cpp | 6 +++---
src/vidalia/help/browser/HelpTextBrowser.h | 6 +++---
src/vidalia/help/content/ar/bridges.html | 6 +++---
src/vidalia/help/content/ar/config.html | 6 +++---
src/vidalia/help/content/ar/index.html | 6 +++---
src/vidalia/help/content/ar/links.html | 6 +++---
src/vidalia/help/content/ar/log.html | 6 +++---
src/vidalia/help/content/ar/netview.html | 6 +++---
src/vidalia/help/content/ar/running.html | 6 +++---
src/vidalia/help/content/ar/server.html | 6 +++---
src/vidalia/help/content/ar/services.html | 6 +++---
src/vidalia/help/content/ar/troubleshooting.html | 6 +++---
src/vidalia/help/content/bms/bridges.html | 6 +++---
src/vidalia/help/content/bms/config.html | 6 +++---
src/vidalia/help/content/bms/index.html | 6 +++---
src/vidalia/help/content/bms/links.html | 6 +++---
src/vidalia/help/content/bms/log.html | 6 +++---
src/vidalia/help/content/bms/netview.html | 6 +++---
src/vidalia/help/content/bms/running.html | 6 +++---
src/vidalia/help/content/bms/server.html | 6 +++---
src/vidalia/help/content/bms/services.html | 6 +++---
src/vidalia/help/content/bms/troubleshooting.html | 6 +++---
src/vidalia/help/content/de/config.html | 6 +++---
src/vidalia/help/content/de/index.html | 6 +++---
src/vidalia/help/content/de/links.html | 6 +++---
src/vidalia/help/content/de/log.html | 6 +++---
src/vidalia/help/content/de/netview.html | 6 +++---
src/vidalia/help/content/de/running.html | 6 +++---
src/vidalia/help/content/de/server.html | 6 +++---
src/vidalia/help/content/de/troubleshooting.html | 6 +++---
src/vidalia/help/content/en/bridges.html | 6 +++---
src/vidalia/help/content/en/config.html | 6 +++---
src/vidalia/help/content/en/index.html | 6 +++---
src/vidalia/help/content/en/links.html | 6 +++---
src/vidalia/help/content/en/log.html | 6 +++---
src/vidalia/help/content/en/netview.html | 6 +++---
src/vidalia/help/content/en/running.html | 6 +++---
src/vidalia/help/content/en/server.html | 6 +++---
src/vidalia/help/content/en/services.html | 6 +++---
src/vidalia/help/content/en/troubleshooting.html | 6 +++---
src/vidalia/help/content/es/bridges.html | 6 +++---
src/vidalia/help/content/fa/bridges.html | 6 +++---
src/vidalia/help/content/fa/config.html | 6 +++---
src/vidalia/help/content/fa/index.html | 6 +++---
src/vidalia/help/content/fa/links.html | 6 +++---
src/vidalia/help/content/fa/log.html | 6 +++---
src/vidalia/help/content/fa/netview.html | 6 +++---
src/vidalia/help/content/fa/running.html | 6 +++---
src/vidalia/help/content/fa/server.html | 6 +++---
src/vidalia/help/content/fa/services.html | 6 +++---
src/vidalia/help/content/fa/troubleshooting.html | 6 +++---
src/vidalia/help/content/fi/bridges.html | 6 +++---
src/vidalia/help/content/fi/config.html | 6 +++---
src/vidalia/help/content/fi/index.html | 6 +++---
src/vidalia/help/content/fi/links.html | 6 +++---
src/vidalia/help/content/fi/log.html | 6 +++---
src/vidalia/help/content/fi/netview.html | 6 +++---
src/vidalia/help/content/fi/running.html | 6 +++---
src/vidalia/help/content/fi/server.html | 6 +++---
src/vidalia/help/content/fi/troubleshooting.html | 6 +++---
src/vidalia/help/content/fr/bridges.html | 6 +++---
src/vidalia/help/content/fr/config.html | 6 +++---
src/vidalia/help/content/fr/index.html | 6 +++---
src/vidalia/help/content/fr/links.html | 6 +++---
src/vidalia/help/content/fr/log.html | 6 +++---
src/vidalia/help/content/fr/netview.html | 6 +++---
src/vidalia/help/content/fr/running.html | 6 +++---
src/vidalia/help/content/fr/server.html | 6 +++---
src/vidalia/help/content/fr/services.html | 6 +++---
src/vidalia/help/content/fr/troubleshooting.html | 6 +++---
src/vidalia/help/content/it/links.html | 6 +++---
src/vidalia/help/content/my/bridges.html | 6 +++---
src/vidalia/help/content/my/config.html | 6 +++---
src/vidalia/help/content/my/index.html | 6 +++---
src/vidalia/help/content/my/links.html | 6 +++---
src/vidalia/help/content/my/log.html | 6 +++---
src/vidalia/help/content/my/netview.html | 6 +++---
src/vidalia/help/content/my/running.html | 6 +++---
src/vidalia/help/content/my/server.html | 6 +++---
src/vidalia/help/content/my/services.html | 6 +++---
src/vidalia/help/content/my/troubleshooting.html | 6 +++---
src/vidalia/help/content/nl/index.html | 6 +++---
src/vidalia/help/content/nl/links.html | 6 +++---
src/vidalia/help/content/nl/running.html | 6 +++---
src/vidalia/help/content/pl/bridges.html | 6 +++---
src/vidalia/help/content/pl/index.html | 6 +++---
src/vidalia/help/content/pl/links.html | 6 +++---
src/vidalia/help/content/pt_BR/bridges.html | 6 +++---
src/vidalia/help/content/ru/bridges.html | 6 +++---
src/vidalia/help/content/ru/config.html | 6 +++---
src/vidalia/help/content/ru/index.html | 6 +++---
src/vidalia/help/content/ru/links.html | 6 +++---
src/vidalia/help/content/ru/log.html | 6 +++---
src/vidalia/help/content/ru/netview.html | 6 +++---
src/vidalia/help/content/ru/running.html | 6 +++---
src/vidalia/help/content/ru/server.html | 6 +++---
src/vidalia/help/content/ru/services.html | 6 +++---
src/vidalia/help/content/ru/troubleshooting.html | 6 +++---
src/vidalia/help/content/sv/bridges.html | 6 +++---
src/vidalia/help/content/sv/config.html | 6 +++---
src/vidalia/help/content/sv/index.html | 6 +++---
src/vidalia/help/content/sv/links.html | 6 +++---
src/vidalia/help/content/sv/log.html | 6 +++---
src/vidalia/help/content/sv/netview.html | 6 +++---
src/vidalia/help/content/sv/running.html | 6 +++---
src/vidalia/help/content/sv/server.html | 6 +++---
src/vidalia/help/content/sv/services.html | 6 +++---
src/vidalia/help/content/sv/troubleshooting.html | 6 +++---
src/vidalia/help/content/tr/links.html | 6 +++---
src/vidalia/help/content/zh_CN/bridges.html | 6 +++---
src/vidalia/help/content/zh_CN/config.html | 6 +++---
src/vidalia/help/content/zh_CN/index.html | 6 +++---
src/vidalia/help/content/zh_CN/links.html | 6 +++---
src/vidalia/help/content/zh_CN/log.html | 6 +++---
src/vidalia/help/content/zh_CN/netview.html | 6 +++---
src/vidalia/help/content/zh_CN/running.html | 6 +++---
src/vidalia/help/content/zh_CN/server.html | 6 +++---
.../help/content/zh_CN/troubleshooting.html | 6 +++---
src/vidalia/log/LogFile.cpp | 6 +++---
src/vidalia/log/LogFile.h | 6 +++---
src/vidalia/log/LogHeaderView.cpp | 6 +++---
src/vidalia/log/LogHeaderView.h | 6 +++---
src/vidalia/log/LogMessageColumnDelegate.cpp | 6 +++---
src/vidalia/log/LogMessageColumnDelegate.h | 6 +++---
src/vidalia/log/LogTreeItem.cpp | 6 +++---
src/vidalia/log/LogTreeItem.h | 6 +++---
src/vidalia/log/LogTreeWidget.cpp | 6 +++---
src/vidalia/log/LogTreeWidget.h | 6 +++---
src/vidalia/log/MessageLog.cpp | 6 +++---
src/vidalia/log/MessageLog.h | 6 +++---
src/vidalia/log/StatusEventItem.cpp | 6 +++---
src/vidalia/log/StatusEventItem.h | 6 +++---
src/vidalia/log/StatusEventItemDelegate.cpp | 6 +++---
src/vidalia/log/StatusEventItemDelegate.h | 6 +++---
src/vidalia/log/StatusEventWidget.cpp | 6 +++---
src/vidalia/log/StatusEventWidget.h | 6 +++---
src/vidalia/main.cpp | 6 +++---
src/vidalia/network/CircuitItem.cpp | 6 +++---
src/vidalia/network/CircuitItem.h | 6 +++---
src/vidalia/network/CircuitListWidget.cpp | 6 +++---
src/vidalia/network/CircuitListWidget.h | 6 +++---
src/vidalia/network/CountryInfo.cpp | 6 +++---
src/vidalia/network/CountryInfo.h | 6 +++---
src/vidalia/network/GeoIpDatabase.cpp | 6 +++---
src/vidalia/network/GeoIpDatabase.h | 6 +++---
src/vidalia/network/GeoIpRecord.cpp | 6 +++---
src/vidalia/network/GeoIpRecord.h | 6 +++---
src/vidalia/network/GeoIpResolver.cpp | 6 +++---
src/vidalia/network/GeoIpResolver.h | 6 +++---
src/vidalia/network/NetViewer.cpp | 6 +++---
src/vidalia/network/NetViewer.h | 6 +++---
src/vidalia/network/RouterDescriptorView.cpp | 6 +++---
src/vidalia/network/RouterDescriptorView.h | 6 +++---
src/vidalia/network/RouterInfoDialog.cpp | 6 +++---
src/vidalia/network/RouterInfoDialog.h | 6 +++---
src/vidalia/network/RouterListItem.cpp | 6 +++---
src/vidalia/network/RouterListItem.h | 6 +++---
src/vidalia/network/RouterListWidget.cpp | 6 +++---
src/vidalia/network/RouterListWidget.h | 6 +++---
src/vidalia/network/StreamItem.cpp | 6 +++---
src/vidalia/network/StreamItem.h | 6 +++---
src/vidalia/network/TorMapImageView.cpp | 6 +++---
src/vidalia/network/TorMapImageView.h | 6 +++---
src/vidalia/network/TorMapWidget.cpp | 6 +++---
src/vidalia/network/TorMapWidget.h | 6 +++---
src/vidalia/network/TorMapWidgetInputHandler.cpp | 6 +++---
src/vidalia/network/TorMapWidgetInputHandler.h | 6 +++---
src/vidalia/network/TorMapWidgetPopupMenu.cpp | 6 +++---
src/vidalia/network/TorMapWidgetPopupMenu.h | 6 +++---
src/vidalia/network/ZImageView.cpp | 6 +++---
src/vidalia/network/ZImageView.h | 6 +++---
345 files changed, 1033 insertions(+), 1033 deletions(-)
diff --git a/doc/vidalia.1.in b/doc/vidalia.1.in
index ff17542..8b2b692 100644
--- a/doc/vidalia.1.in
+++ b/doc/vidalia.1.in
@@ -45,7 +45,7 @@ of available language codes.
.SH SEE ALSO
.BR tor (1)
-.BR http://www.vidalia-project.net/
+.BR http://www.torproject.org/projects/vidalia.html
.SH AUTHORS
Matt Edman <edmanm(a)vidalia-project.net>
diff --git a/src/common/Log.cpp b/src/common/Log.cpp
index d38cb9e..8f1d4db 100644
--- a/src/common/Log.cpp
+++ b/src/common/Log.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/Log.h b/src/common/Log.h
index 592b597..89fc529 100644
--- a/src/common/Log.h
+++ b/src/common/Log.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/TorSocket.cpp b/src/common/TorSocket.cpp
index 10651a1..4d37a2d 100644
--- a/src/common/TorSocket.cpp
+++ b/src/common/TorSocket.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/TorSocket.h b/src/common/TorSocket.h
index 46c2581..2b724f8 100644
--- a/src/common/TorSocket.h
+++ b/src/common/TorSocket.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/ZlibByteArray.cpp b/src/common/ZlibByteArray.cpp
index fc6cada..e851dd4 100644
--- a/src/common/ZlibByteArray.cpp
+++ b/src/common/ZlibByteArray.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
**
** * * *
**
diff --git a/src/common/ZlibByteArray.h b/src/common/ZlibByteArray.h
index bd6f6fe..85f6dde 100644
--- a/src/common/ZlibByteArray.h
+++ b/src/common/ZlibByteArray.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
**
** * * *
**
diff --git a/src/common/crypto.cpp b/src/common/crypto.cpp
index 4c2eb99..73c1e44 100644
--- a/src/common/crypto.cpp
+++ b/src/common/crypto.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
**
** * * *
**
diff --git a/src/common/crypto.h b/src/common/crypto.h
index bea1d80..39a4b90 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
**
** * * *
**
diff --git a/src/common/file.cpp b/src/common/file.cpp
index cc8e1c2..a91c06a 100644
--- a/src/common/file.cpp
+++ b/src/common/file.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/file.h b/src/common/file.h
index 3086701..bc0acf3 100644
--- a/src/common/file.h
+++ b/src/common/file.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/html.cpp b/src/common/html.cpp
index 01a7c70..f1a4563 100644
--- a/src/common/html.cpp
+++ b/src/common/html.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/html.h b/src/common/html.h
index 6242158..aa84561 100644
--- a/src/common/html.h
+++ b/src/common/html.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/net.cpp b/src/common/net.cpp
index 2b0690d..c4c68c8 100644
--- a/src/common/net.cpp
+++ b/src/common/net.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/net.h b/src/common/net.h
index 1cf122a..4ab5790 100644
--- a/src/common/net.h
+++ b/src/common/net.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/procutil.cpp b/src/common/procutil.cpp
index c2fbbc4..59b22fa 100644
--- a/src/common/procutil.cpp
+++ b/src/common/procutil.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/procutil.h b/src/common/procutil.h
index 7e9b7dc..843174c 100644
--- a/src/common/procutil.h
+++ b/src/common/procutil.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/stringutil.cpp b/src/common/stringutil.cpp
index 91398f3..404261a 100644
--- a/src/common/stringutil.cpp
+++ b/src/common/stringutil.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/stringutil.h b/src/common/stringutil.h
index 7bf124d..5feb392 100644
--- a/src/common/stringutil.h
+++ b/src/common/stringutil.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/win32.cpp b/src/common/win32.cpp
index e245c3c..814b5a1 100644
--- a/src/common/win32.cpp
+++ b/src/common/win32.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/common/win32.h b/src/common/win32.h
index b1ae9d5..b555d43 100644
--- a/src/common/win32.h
+++ b/src/common/win32.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/CrashReportDialog.cpp b/src/crashreporter/CrashReportDialog.cpp
index f3acc68..4bd0e50 100644
--- a/src/crashreporter/CrashReportDialog.cpp
+++ b/src/crashreporter/CrashReportDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/CrashReportDialog.h b/src/crashreporter/CrashReportDialog.h
index bc05892..4351ddc 100644
--- a/src/crashreporter/CrashReportDialog.h
+++ b/src/crashreporter/CrashReportDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/CrashReportUploader.cpp b/src/crashreporter/CrashReportUploader.cpp
index cd59ee3..aa263c5 100644
--- a/src/crashreporter/CrashReportUploader.cpp
+++ b/src/crashreporter/CrashReportUploader.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/CrashReportUploader.h b/src/crashreporter/CrashReportUploader.h
index dd97954..f5dbe48 100644
--- a/src/crashreporter/CrashReportUploader.h
+++ b/src/crashreporter/CrashReportUploader.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/UploadProgressDialog.cpp b/src/crashreporter/UploadProgressDialog.cpp
index 4030e10..7e5a2d5 100644
--- a/src/crashreporter/UploadProgressDialog.cpp
+++ b/src/crashreporter/UploadProgressDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/UploadProgressDialog.h b/src/crashreporter/UploadProgressDialog.h
index e2cfcec..c41620f 100644
--- a/src/crashreporter/UploadProgressDialog.h
+++ b/src/crashreporter/UploadProgressDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp
index 9d77dfd..82ea6f8 100644
--- a/src/crashreporter/main.cpp
+++ b/src/crashreporter/main.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/tools/nsh2po/nsh2po.cpp b/src/tools/nsh2po/nsh2po.cpp
index 9e6ddf4..3f129b2 100644
--- a/src/tools/nsh2po/nsh2po.cpp
+++ b/src/tools/nsh2po/nsh2po.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include <QHash>
diff --git a/src/tools/po2nsh/po2nsh.cpp b/src/tools/po2nsh/po2nsh.cpp
index 979d00a..c83a738 100644
--- a/src/tools/po2nsh/po2nsh.cpp
+++ b/src/tools/po2nsh/po2nsh.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include <QHash>
diff --git a/src/tools/po2ts/po2ts.cpp b/src/tools/po2ts/po2ts.cpp
index 6d401eb..844d348 100644
--- a/src/tools/po2ts/po2ts.cpp
+++ b/src/tools/po2ts/po2ts.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include <QHash>
diff --git a/src/tools/po2wxl/po2wxl.cpp b/src/tools/po2wxl/po2wxl.cpp
index b62ea52..51edcf5 100644
--- a/src/tools/po2wxl/po2wxl.cpp
+++ b/src/tools/po2wxl/po2wxl.cpp
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include <QFile>
diff --git a/src/tools/ts2po/ts2po.cpp b/src/tools/ts2po/ts2po.cpp
index f225dac..02719c3 100644
--- a/src/tools/ts2po/ts2po.cpp
+++ b/src/tools/ts2po/ts2po.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include <QFile>
diff --git a/src/torcontrol/AddressMap.cpp b/src/torcontrol/AddressMap.cpp
index 802d3f3..69d0d62 100644
--- a/src/torcontrol/AddressMap.cpp
+++ b/src/torcontrol/AddressMap.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/AddressMap.h b/src/torcontrol/AddressMap.h
index 10a7b87..791e964 100644
--- a/src/torcontrol/AddressMap.h
+++ b/src/torcontrol/AddressMap.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/BootstrapStatus.cpp b/src/torcontrol/BootstrapStatus.cpp
index 32adaea..8184ffe 100644
--- a/src/torcontrol/BootstrapStatus.cpp
+++ b/src/torcontrol/BootstrapStatus.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/BootstrapStatus.h b/src/torcontrol/BootstrapStatus.h
index 4123def..7526fdb 100644
--- a/src/torcontrol/BootstrapStatus.h
+++ b/src/torcontrol/BootstrapStatus.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/Circuit.cpp b/src/torcontrol/Circuit.cpp
index 4855290..3b6cb80 100644
--- a/src/torcontrol/Circuit.cpp
+++ b/src/torcontrol/Circuit.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/Circuit.h b/src/torcontrol/Circuit.h
index cb6e41a..33f12ef 100644
--- a/src/torcontrol/Circuit.h
+++ b/src/torcontrol/Circuit.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlCommand.cpp b/src/torcontrol/ControlCommand.cpp
index 6dd8ae0..953ee95 100644
--- a/src/torcontrol/ControlCommand.cpp
+++ b/src/torcontrol/ControlCommand.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlCommand.h b/src/torcontrol/ControlCommand.h
index b3bb974..42aba88 100644
--- a/src/torcontrol/ControlCommand.h
+++ b/src/torcontrol/ControlCommand.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlConnection.cpp b/src/torcontrol/ControlConnection.cpp
index 17d32b1..365da32 100644
--- a/src/torcontrol/ControlConnection.cpp
+++ b/src/torcontrol/ControlConnection.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlConnection.h b/src/torcontrol/ControlConnection.h
index 2fa9fc9..5a56ced 100644
--- a/src/torcontrol/ControlConnection.h
+++ b/src/torcontrol/ControlConnection.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlMethod.cpp b/src/torcontrol/ControlMethod.cpp
index c23dace..dbfd948 100644
--- a/src/torcontrol/ControlMethod.cpp
+++ b/src/torcontrol/ControlMethod.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlMethod.h b/src/torcontrol/ControlMethod.h
index 8a593df..3a9fee4 100644
--- a/src/torcontrol/ControlMethod.h
+++ b/src/torcontrol/ControlMethod.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlReply.cpp b/src/torcontrol/ControlReply.cpp
index 296a8a5..c0eaf1d 100644
--- a/src/torcontrol/ControlReply.cpp
+++ b/src/torcontrol/ControlReply.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlReply.h b/src/torcontrol/ControlReply.h
index 421b128..c7400f3 100644
--- a/src/torcontrol/ControlReply.h
+++ b/src/torcontrol/ControlReply.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlSocket.cpp b/src/torcontrol/ControlSocket.cpp
index 8ba8e86..6a4d729 100644
--- a/src/torcontrol/ControlSocket.cpp
+++ b/src/torcontrol/ControlSocket.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ControlSocket.h b/src/torcontrol/ControlSocket.h
index 3dcc36b..995efeb 100644
--- a/src/torcontrol/ControlSocket.h
+++ b/src/torcontrol/ControlSocket.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/LogEvent.cpp b/src/torcontrol/LogEvent.cpp
index f735f5c..ad4dee4 100644
--- a/src/torcontrol/LogEvent.cpp
+++ b/src/torcontrol/LogEvent.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/LogEvent.h b/src/torcontrol/LogEvent.h
index 8a6c019..7f422e5 100644
--- a/src/torcontrol/LogEvent.h
+++ b/src/torcontrol/LogEvent.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ProtocolInfo.cpp b/src/torcontrol/ProtocolInfo.cpp
index 45ebe4a..07acaeb 100644
--- a/src/torcontrol/ProtocolInfo.cpp
+++ b/src/torcontrol/ProtocolInfo.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ProtocolInfo.h b/src/torcontrol/ProtocolInfo.h
index c523db4..1b69589 100644
--- a/src/torcontrol/ProtocolInfo.h
+++ b/src/torcontrol/ProtocolInfo.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ReplyLine.cpp b/src/torcontrol/ReplyLine.cpp
index 093ab39..2973b9d 100644
--- a/src/torcontrol/ReplyLine.cpp
+++ b/src/torcontrol/ReplyLine.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/ReplyLine.h b/src/torcontrol/ReplyLine.h
index 4cc9438..c3fec8d 100644
--- a/src/torcontrol/ReplyLine.h
+++ b/src/torcontrol/ReplyLine.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/RouterDescriptor.cpp b/src/torcontrol/RouterDescriptor.cpp
index 8bae277..e63ca20 100644
--- a/src/torcontrol/RouterDescriptor.cpp
+++ b/src/torcontrol/RouterDescriptor.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/RouterDescriptor.h b/src/torcontrol/RouterDescriptor.h
index 6dbf33d..d4ff868 100644
--- a/src/torcontrol/RouterDescriptor.h
+++ b/src/torcontrol/RouterDescriptor.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/RouterStatus.cpp b/src/torcontrol/RouterStatus.cpp
index b2644ee..9ee795b 100644
--- a/src/torcontrol/RouterStatus.cpp
+++ b/src/torcontrol/RouterStatus.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/RouterStatus.h b/src/torcontrol/RouterStatus.h
index 4315978..c71e548 100644
--- a/src/torcontrol/RouterStatus.h
+++ b/src/torcontrol/RouterStatus.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/SendCommandEvent.cpp b/src/torcontrol/SendCommandEvent.cpp
index 2e88927..8472324 100644
--- a/src/torcontrol/SendCommandEvent.cpp
+++ b/src/torcontrol/SendCommandEvent.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/SendCommandEvent.h b/src/torcontrol/SendCommandEvent.h
index 356ab14..89499f4 100644
--- a/src/torcontrol/SendCommandEvent.h
+++ b/src/torcontrol/SendCommandEvent.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/Stream.cpp b/src/torcontrol/Stream.cpp
index 258638e..e8c2d18 100644
--- a/src/torcontrol/Stream.cpp
+++ b/src/torcontrol/Stream.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/Stream.h b/src/torcontrol/Stream.h
index 860a04b..3a8d9a6 100644
--- a/src/torcontrol/Stream.h
+++ b/src/torcontrol/Stream.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorControl.cpp b/src/torcontrol/TorControl.cpp
index ea09724..57abeb1 100644
--- a/src/torcontrol/TorControl.cpp
+++ b/src/torcontrol/TorControl.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorControl.h b/src/torcontrol/TorControl.h
index 61313ae..589fa23 100644
--- a/src/torcontrol/TorControl.h
+++ b/src/torcontrol/TorControl.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorEvents.cpp b/src/torcontrol/TorEvents.cpp
index 41f85b7..588a093 100644
--- a/src/torcontrol/TorEvents.cpp
+++ b/src/torcontrol/TorEvents.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorEvents.h b/src/torcontrol/TorEvents.h
index 2c5b7f1..58584ee 100644
--- a/src/torcontrol/TorEvents.h
+++ b/src/torcontrol/TorEvents.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorProcess.cpp b/src/torcontrol/TorProcess.cpp
index 00786bd..7275f7a 100644
--- a/src/torcontrol/TorProcess.cpp
+++ b/src/torcontrol/TorProcess.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorProcess.h b/src/torcontrol/TorProcess.h
index 884d039..8438173 100644
--- a/src/torcontrol/TorProcess.h
+++ b/src/torcontrol/TorProcess.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorService.cpp b/src/torcontrol/TorService.cpp
index bcf782f..7214183 100644
--- a/src/torcontrol/TorService.cpp
+++ b/src/torcontrol/TorService.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorService.h b/src/torcontrol/TorService.h
index b7b4bc0..8c4fad0 100644
--- a/src/torcontrol/TorService.h
+++ b/src/torcontrol/TorService.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorSignal.cpp b/src/torcontrol/TorSignal.cpp
index a9bac4b..bdf10ad 100644
--- a/src/torcontrol/TorSignal.cpp
+++ b/src/torcontrol/TorSignal.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/TorSignal.h b/src/torcontrol/TorSignal.h
index cd8bf26..af0769f 100644
--- a/src/torcontrol/TorSignal.h
+++ b/src/torcontrol/TorSignal.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/tcglobal.cpp b/src/torcontrol/tcglobal.cpp
index 6b2b54f..ffbbbfc 100644
--- a/src/torcontrol/tcglobal.cpp
+++ b/src/torcontrol/tcglobal.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/torcontrol/tcglobal.h b/src/torcontrol/tcglobal.h
index 949647d..6c12019 100644
--- a/src/torcontrol/tcglobal.h
+++ b/src/torcontrol/tcglobal.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/ControlPasswordInputDialog.cpp b/src/vidalia/ControlPasswordInputDialog.cpp
index 5cc4dec..554b668 100644
--- a/src/vidalia/ControlPasswordInputDialog.cpp
+++ b/src/vidalia/ControlPasswordInputDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/ControlPasswordInputDialog.h b/src/vidalia/ControlPasswordInputDialog.h
index 9722062..193027b 100644
--- a/src/vidalia/ControlPasswordInputDialog.h
+++ b/src/vidalia/ControlPasswordInputDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/CrashReporter.cpp b/src/vidalia/CrashReporter.cpp
index b3a06fe..82a722f 100644
--- a/src/vidalia/CrashReporter.cpp
+++ b/src/vidalia/CrashReporter.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
** The append_string() function in this file is derived from the implementation
diff --git a/src/vidalia/CrashReporter.h b/src/vidalia/CrashReporter.h
index 3ad3ffb..fbbea94 100644
--- a/src/vidalia/CrashReporter.h
+++ b/src/vidalia/CrashReporter.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/HelperProcess.cpp b/src/vidalia/HelperProcess.cpp
index 07fa733..0abc848 100644
--- a/src/vidalia/HelperProcess.cpp
+++ b/src/vidalia/HelperProcess.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
** This file was originally written by Steven J. Murdoch, and
diff --git a/src/vidalia/HelperProcess.h b/src/vidalia/HelperProcess.h
index 795d077..cf2b234 100644
--- a/src/vidalia/HelperProcess.h
+++ b/src/vidalia/HelperProcess.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
** This file was originally written by Steven J. Murdoch, and
diff --git a/src/vidalia/LanguageSupport.cpp b/src/vidalia/LanguageSupport.cpp
index b9959ae..7433514 100644
--- a/src/vidalia/LanguageSupport.cpp
+++ b/src/vidalia/LanguageSupport.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/LanguageSupport.h b/src/vidalia/LanguageSupport.h
index 4abc6dc..7953314 100644
--- a/src/vidalia/LanguageSupport.h
+++ b/src/vidalia/LanguageSupport.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/MainWindow.cpp b/src/vidalia/MainWindow.cpp
index 3c5c789..411aa69 100644
--- a/src/vidalia/MainWindow.cpp
+++ b/src/vidalia/MainWindow.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/MainWindow.h b/src/vidalia/MainWindow.h
index 1d913d0..6bdfec0 100644
--- a/src/vidalia/MainWindow.h
+++ b/src/vidalia/MainWindow.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/PackageInfo.cpp b/src/vidalia/PackageInfo.cpp
index 59ef18f..d99d701 100644
--- a/src/vidalia/PackageInfo.cpp
+++ b/src/vidalia/PackageInfo.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/PackageInfo.h b/src/vidalia/PackageInfo.h
index e1dc692..41a98d3 100644
--- a/src/vidalia/PackageInfo.h
+++ b/src/vidalia/PackageInfo.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/UpdateProcess.cpp b/src/vidalia/UpdateProcess.cpp
index cc4be98..e930ac4 100644
--- a/src/vidalia/UpdateProcess.cpp
+++ b/src/vidalia/UpdateProcess.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "UpdateProcess.h"
diff --git a/src/vidalia/UpdateProcess.h b/src/vidalia/UpdateProcess.h
index b92b17e..0224d55 100644
--- a/src/vidalia/UpdateProcess.h
+++ b/src/vidalia/UpdateProcess.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _UPDATEPROCESS_H
diff --git a/src/vidalia/UpdateProgressDialog.cpp b/src/vidalia/UpdateProgressDialog.cpp
index 420cbdd..e7b1753 100644
--- a/src/vidalia/UpdateProgressDialog.cpp
+++ b/src/vidalia/UpdateProgressDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "UpdateProgressDialog.h"
diff --git a/src/vidalia/UpdateProgressDialog.h b/src/vidalia/UpdateProgressDialog.h
index 542bb7d..67a169a 100644
--- a/src/vidalia/UpdateProgressDialog.h
+++ b/src/vidalia/UpdateProgressDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _UPDATEPROGRESSDIALOG_H
diff --git a/src/vidalia/UpdatesAvailableDialog.cpp b/src/vidalia/UpdatesAvailableDialog.cpp
index 65249ce..90456d3 100644
--- a/src/vidalia/UpdatesAvailableDialog.cpp
+++ b/src/vidalia/UpdatesAvailableDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/UpdatesAvailableDialog.h b/src/vidalia/UpdatesAvailableDialog.h
index e90a3de..6bf049f 100644
--- a/src/vidalia/UpdatesAvailableDialog.h
+++ b/src/vidalia/UpdatesAvailableDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/VClickLabel.cpp b/src/vidalia/VClickLabel.cpp
index 61e11fe..9691a52 100644
--- a/src/vidalia/VClickLabel.cpp
+++ b/src/vidalia/VClickLabel.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/VClickLabel.h b/src/vidalia/VClickLabel.h
index ae4ec5a..daa7559 100644
--- a/src/vidalia/VClickLabel.h
+++ b/src/vidalia/VClickLabel.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/VMessageBox.cpp b/src/vidalia/VMessageBox.cpp
index 99d8a74..0dbf927 100644
--- a/src/vidalia/VMessageBox.cpp
+++ b/src/vidalia/VMessageBox.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/VMessageBox.h b/src/vidalia/VMessageBox.h
index a4b7f3b..fc96405 100644
--- a/src/vidalia/VMessageBox.h
+++ b/src/vidalia/VMessageBox.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/Vidalia.cpp b/src/vidalia/Vidalia.cpp
index f88c94f..285bde7 100644
--- a/src/vidalia/Vidalia.cpp
+++ b/src/vidalia/Vidalia.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/Vidalia.h b/src/vidalia/Vidalia.h
index bc5d124..421ae68 100644
--- a/src/vidalia/Vidalia.h
+++ b/src/vidalia/Vidalia.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/VidaliaWindow.cpp b/src/vidalia/VidaliaWindow.cpp
index 4bec2bd..446802c 100644
--- a/src/vidalia/VidaliaWindow.cpp
+++ b/src/vidalia/VidaliaWindow.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/VidaliaWindow.h b/src/vidalia/VidaliaWindow.h
index 30b44da..b844afc 100644
--- a/src/vidalia/VidaliaWindow.h
+++ b/src/vidalia/VidaliaWindow.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/about/AboutDialog.cpp b/src/vidalia/about/AboutDialog.cpp
index 56723ef..8188ec1 100644
--- a/src/vidalia/about/AboutDialog.cpp
+++ b/src/vidalia/about/AboutDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/about/AboutDialog.h b/src/vidalia/about/AboutDialog.h
index 1d654e4..d3e3f4e 100644
--- a/src/vidalia/about/AboutDialog.h
+++ b/src/vidalia/about/AboutDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/about/LicenseDialog.cpp b/src/vidalia/about/LicenseDialog.cpp
index ce8b98d..01653cf 100644
--- a/src/vidalia/about/LicenseDialog.cpp
+++ b/src/vidalia/about/LicenseDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/about/LicenseDialog.h b/src/vidalia/about/LicenseDialog.h
index d462c40..c090ba1 100644
--- a/src/vidalia/about/LicenseDialog.h
+++ b/src/vidalia/about/LicenseDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/bwgraph/BandwidthGraph.cpp b/src/vidalia/bwgraph/BandwidthGraph.cpp
index 938f54e..c6c896a 100644
--- a/src/vidalia/bwgraph/BandwidthGraph.cpp
+++ b/src/vidalia/bwgraph/BandwidthGraph.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/bwgraph/BandwidthGraph.h b/src/vidalia/bwgraph/BandwidthGraph.h
index 4de9d22..35989fb 100644
--- a/src/vidalia/bwgraph/BandwidthGraph.h
+++ b/src/vidalia/bwgraph/BandwidthGraph.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/bwgraph/GraphFrame.cpp b/src/vidalia/bwgraph/GraphFrame.cpp
index 1f182c1..c9537a0 100644
--- a/src/vidalia/bwgraph/GraphFrame.cpp
+++ b/src/vidalia/bwgraph/GraphFrame.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/bwgraph/GraphFrame.h b/src/vidalia/bwgraph/GraphFrame.h
index 17367ba..4819396 100644
--- a/src/vidalia/bwgraph/GraphFrame.h
+++ b/src/vidalia/bwgraph/GraphFrame.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/AbstractTorSettings.cpp b/src/vidalia/config/AbstractTorSettings.cpp
index 462eef7..5f1b8aa 100644
--- a/src/vidalia/config/AbstractTorSettings.cpp
+++ b/src/vidalia/config/AbstractTorSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/AbstractTorSettings.h b/src/vidalia/config/AbstractTorSettings.h
index 15770ef..4c5d1b7 100644
--- a/src/vidalia/config/AbstractTorSettings.h
+++ b/src/vidalia/config/AbstractTorSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/AdvancedPage.cpp b/src/vidalia/config/AdvancedPage.cpp
index 94c0308..e07fc51 100644
--- a/src/vidalia/config/AdvancedPage.cpp
+++ b/src/vidalia/config/AdvancedPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/AdvancedPage.h b/src/vidalia/config/AdvancedPage.h
index de64cbe..4ba26cc 100644
--- a/src/vidalia/config/AdvancedPage.h
+++ b/src/vidalia/config/AdvancedPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/AppearancePage.cpp b/src/vidalia/config/AppearancePage.cpp
index b4a3099..11939c3 100644
--- a/src/vidalia/config/AppearancePage.cpp
+++ b/src/vidalia/config/AppearancePage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/AppearancePage.h b/src/vidalia/config/AppearancePage.h
index b7262a3..9dd94af 100644
--- a/src/vidalia/config/AppearancePage.h
+++ b/src/vidalia/config/AppearancePage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloader.cpp b/src/vidalia/config/BridgeDownloader.cpp
index d70034d..e3a4f96 100644
--- a/src/vidalia/config/BridgeDownloader.cpp
+++ b/src/vidalia/config/BridgeDownloader.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloader.h b/src/vidalia/config/BridgeDownloader.h
index 0cb87f4..86d2f25 100644
--- a/src/vidalia/config/BridgeDownloader.h
+++ b/src/vidalia/config/BridgeDownloader.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloaderProgressDialog.cpp b/src/vidalia/config/BridgeDownloaderProgressDialog.cpp
index b4d8e28..89fcc9a 100644
--- a/src/vidalia/config/BridgeDownloaderProgressDialog.cpp
+++ b/src/vidalia/config/BridgeDownloaderProgressDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/BridgeDownloaderProgressDialog.h b/src/vidalia/config/BridgeDownloaderProgressDialog.h
index 86fb0d3..b935a16 100644
--- a/src/vidalia/config/BridgeDownloaderProgressDialog.h
+++ b/src/vidalia/config/BridgeDownloaderProgressDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/BridgeUsageDialog.cpp b/src/vidalia/config/BridgeUsageDialog.cpp
index a120fe1..ce29d3f 100644
--- a/src/vidalia/config/BridgeUsageDialog.cpp
+++ b/src/vidalia/config/BridgeUsageDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/BridgeUsageDialog.h b/src/vidalia/config/BridgeUsageDialog.h
index 5177254..0f82de5 100644
--- a/src/vidalia/config/BridgeUsageDialog.h
+++ b/src/vidalia/config/BridgeUsageDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ConfigDialog.cpp b/src/vidalia/config/ConfigDialog.cpp
index d147ab8..bb711dc 100644
--- a/src/vidalia/config/ConfigDialog.cpp
+++ b/src/vidalia/config/ConfigDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ConfigDialog.h b/src/vidalia/config/ConfigDialog.h
index 1362038..499a9ae 100644
--- a/src/vidalia/config/ConfigDialog.h
+++ b/src/vidalia/config/ConfigDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ConfigPage.h b/src/vidalia/config/ConfigPage.h
index 1e8eea8..2a237c1 100644
--- a/src/vidalia/config/ConfigPage.h
+++ b/src/vidalia/config/ConfigPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ConfigPageStack.cpp b/src/vidalia/config/ConfigPageStack.cpp
index c8302c5..d7bd5c6 100644
--- a/src/vidalia/config/ConfigPageStack.cpp
+++ b/src/vidalia/config/ConfigPageStack.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ConfigPageStack.h b/src/vidalia/config/ConfigPageStack.h
index 00af77b..377bfd2 100644
--- a/src/vidalia/config/ConfigPageStack.h
+++ b/src/vidalia/config/ConfigPageStack.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/DomainValidator.cpp b/src/vidalia/config/DomainValidator.cpp
index 2ee67cb..ff16e0d 100644
--- a/src/vidalia/config/DomainValidator.cpp
+++ b/src/vidalia/config/DomainValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/DomainValidator.h b/src/vidalia/config/DomainValidator.h
index 996f7f4..8b06880 100644
--- a/src/vidalia/config/DomainValidator.h
+++ b/src/vidalia/config/DomainValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ExitPolicy.cpp b/src/vidalia/config/ExitPolicy.cpp
index 831b4d8..467ed27 100644
--- a/src/vidalia/config/ExitPolicy.cpp
+++ b/src/vidalia/config/ExitPolicy.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ExitPolicy.h b/src/vidalia/config/ExitPolicy.h
index 80f8e88..420cccb 100644
--- a/src/vidalia/config/ExitPolicy.h
+++ b/src/vidalia/config/ExitPolicy.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/GeneralPage.cpp b/src/vidalia/config/GeneralPage.cpp
index eef0d90..0faca19 100644
--- a/src/vidalia/config/GeneralPage.cpp
+++ b/src/vidalia/config/GeneralPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/GeneralPage.h b/src/vidalia/config/GeneralPage.h
index ac43f71..44077e1 100644
--- a/src/vidalia/config/GeneralPage.h
+++ b/src/vidalia/config/GeneralPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/IpValidator.cpp b/src/vidalia/config/IpValidator.cpp
index 87594f9..839caa8 100644
--- a/src/vidalia/config/IpValidator.cpp
+++ b/src/vidalia/config/IpValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/IpValidator.h b/src/vidalia/config/IpValidator.h
index d757eb9..b52c134 100644
--- a/src/vidalia/config/IpValidator.h
+++ b/src/vidalia/config/IpValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/Local8BitStringValidator.cpp b/src/vidalia/config/Local8BitStringValidator.cpp
index 7d1e0dc..ac960e2 100644
--- a/src/vidalia/config/Local8BitStringValidator.cpp
+++ b/src/vidalia/config/Local8BitStringValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/Local8BitStringValidator.h b/src/vidalia/config/Local8BitStringValidator.h
index ee796aa..ee07703 100644
--- a/src/vidalia/config/Local8BitStringValidator.h
+++ b/src/vidalia/config/Local8BitStringValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/NetworkPage.cpp b/src/vidalia/config/NetworkPage.cpp
index f5bbc72..85be25f 100644
--- a/src/vidalia/config/NetworkPage.cpp
+++ b/src/vidalia/config/NetworkPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/NetworkPage.h b/src/vidalia/config/NetworkPage.h
index 04b06ab..c198573 100644
--- a/src/vidalia/config/NetworkPage.h
+++ b/src/vidalia/config/NetworkPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/NetworkSettings.cpp b/src/vidalia/config/NetworkSettings.cpp
index ff2e7d3..de818f4 100644
--- a/src/vidalia/config/NetworkSettings.cpp
+++ b/src/vidalia/config/NetworkSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/NetworkSettings.h b/src/vidalia/config/NetworkSettings.h
index e610224..fe555e3 100644
--- a/src/vidalia/config/NetworkSettings.h
+++ b/src/vidalia/config/NetworkSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/NicknameValidator.cpp b/src/vidalia/config/NicknameValidator.cpp
index e960481..76a9aed 100644
--- a/src/vidalia/config/NicknameValidator.cpp
+++ b/src/vidalia/config/NicknameValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/NicknameValidator.h b/src/vidalia/config/NicknameValidator.h
index c8192e5..ca6c562 100644
--- a/src/vidalia/config/NicknameValidator.h
+++ b/src/vidalia/config/NicknameValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/Policy.cpp b/src/vidalia/config/Policy.cpp
index 0c73e04..94579fd 100644
--- a/src/vidalia/config/Policy.cpp
+++ b/src/vidalia/config/Policy.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/Policy.h b/src/vidalia/config/Policy.h
index 28f5871..2d73533 100644
--- a/src/vidalia/config/Policy.h
+++ b/src/vidalia/config/Policy.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/PortValidator.cpp b/src/vidalia/config/PortValidator.cpp
index c328963..b5f4e2b 100644
--- a/src/vidalia/config/PortValidator.cpp
+++ b/src/vidalia/config/PortValidator.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/PortValidator.h b/src/vidalia/config/PortValidator.h
index 062ed7b..1e4aa4d 100644
--- a/src/vidalia/config/PortValidator.h
+++ b/src/vidalia/config/PortValidator.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ServerPage.cpp b/src/vidalia/config/ServerPage.cpp
index d42fb70..aaadbfc 100644
--- a/src/vidalia/config/ServerPage.cpp
+++ b/src/vidalia/config/ServerPage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ServerPage.h b/src/vidalia/config/ServerPage.h
index d40e605..03e4938 100644
--- a/src/vidalia/config/ServerPage.h
+++ b/src/vidalia/config/ServerPage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ServerSettings.cpp b/src/vidalia/config/ServerSettings.cpp
index 22de6d6..91f8600 100644
--- a/src/vidalia/config/ServerSettings.cpp
+++ b/src/vidalia/config/ServerSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/ServerSettings.h b/src/vidalia/config/ServerSettings.h
index 79a5db9..775c92d 100644
--- a/src/vidalia/config/ServerSettings.h
+++ b/src/vidalia/config/ServerSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/Service.cpp b/src/vidalia/config/Service.cpp
index 3e9b7f8..c880529 100644
--- a/src/vidalia/config/Service.cpp
+++ b/src/vidalia/config/Service.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "Service.h"
diff --git a/src/vidalia/config/Service.h b/src/vidalia/config/Service.h
index 8218774..6c6a790 100644
--- a/src/vidalia/config/Service.h
+++ b/src/vidalia/config/Service.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _SERVICE_H
diff --git a/src/vidalia/config/ServiceList.cpp b/src/vidalia/config/ServiceList.cpp
index 7ce8c24..fd644f0 100644
--- a/src/vidalia/config/ServiceList.cpp
+++ b/src/vidalia/config/ServiceList.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "ServiceList.h"
diff --git a/src/vidalia/config/ServiceList.h b/src/vidalia/config/ServiceList.h
index fb35f9c..a5c216d 100644
--- a/src/vidalia/config/ServiceList.h
+++ b/src/vidalia/config/ServiceList.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _SERVICELIST_H
diff --git a/src/vidalia/config/ServicePage.cpp b/src/vidalia/config/ServicePage.cpp
index 91c29da..ac412f9 100644
--- a/src/vidalia/config/ServicePage.cpp
+++ b/src/vidalia/config/ServicePage.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "ServicePage.h"
diff --git a/src/vidalia/config/ServicePage.h b/src/vidalia/config/ServicePage.h
index bdb0c51..70c53cf 100644
--- a/src/vidalia/config/ServicePage.h
+++ b/src/vidalia/config/ServicePage.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _SERVICEPAGE_H
diff --git a/src/vidalia/config/ServiceSettings.cpp b/src/vidalia/config/ServiceSettings.cpp
index d74ab43..3c6fa91 100644
--- a/src/vidalia/config/ServiceSettings.cpp
+++ b/src/vidalia/config/ServiceSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "ServiceSettings.h"
diff --git a/src/vidalia/config/ServiceSettings.h b/src/vidalia/config/ServiceSettings.h
index dc2d677..946dc62 100644
--- a/src/vidalia/config/ServiceSettings.h
+++ b/src/vidalia/config/ServiceSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _SERVICESETTINGS_H
diff --git a/src/vidalia/config/TorSettings.cpp b/src/vidalia/config/TorSettings.cpp
index 046ff72..106938a 100644
--- a/src/vidalia/config/TorSettings.cpp
+++ b/src/vidalia/config/TorSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/TorSettings.h b/src/vidalia/config/TorSettings.h
index a116c61..e5679a7 100644
--- a/src/vidalia/config/TorSettings.h
+++ b/src/vidalia/config/TorSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/TorrcDialog.cpp b/src/vidalia/config/TorrcDialog.cpp
index 81d1a4a..08dd6a0 100644
--- a/src/vidalia/config/TorrcDialog.cpp
+++ b/src/vidalia/config/TorrcDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/TorrcDialog.h b/src/vidalia/config/TorrcDialog.h
index b5eadcc..0d60804 100644
--- a/src/vidalia/config/TorrcDialog.h
+++ b/src/vidalia/config/TorrcDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/UPNPControl.cpp b/src/vidalia/config/UPNPControl.cpp
index a87f785..f1003c9 100644
--- a/src/vidalia/config/UPNPControl.cpp
+++ b/src/vidalia/config/UPNPControl.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/UPNPControl.h b/src/vidalia/config/UPNPControl.h
index 2e7006a..17d462d 100644
--- a/src/vidalia/config/UPNPControl.h
+++ b/src/vidalia/config/UPNPControl.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/UPNPControlThread.cpp b/src/vidalia/config/UPNPControlThread.cpp
index d92ff46..25f5649 100644
--- a/src/vidalia/config/UPNPControlThread.cpp
+++ b/src/vidalia/config/UPNPControlThread.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/UPNPControlThread.h b/src/vidalia/config/UPNPControlThread.h
index 4a183f1..8b366ab 100644
--- a/src/vidalia/config/UPNPControlThread.h
+++ b/src/vidalia/config/UPNPControlThread.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/UPNPTestDialog.cpp b/src/vidalia/config/UPNPTestDialog.cpp
index 7c28cd8..9652027 100644
--- a/src/vidalia/config/UPNPTestDialog.cpp
+++ b/src/vidalia/config/UPNPTestDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/UPNPTestDialog.h b/src/vidalia/config/UPNPTestDialog.h
index 1c26212..2204e26 100644
--- a/src/vidalia/config/UPNPTestDialog.h
+++ b/src/vidalia/config/UPNPTestDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/VSettings.cpp b/src/vidalia/config/VSettings.cpp
index 168392c..aab0f9b 100644
--- a/src/vidalia/config/VSettings.cpp
+++ b/src/vidalia/config/VSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/VSettings.h b/src/vidalia/config/VSettings.h
index d921b97..ed31255 100644
--- a/src/vidalia/config/VSettings.h
+++ b/src/vidalia/config/VSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/VidaliaSettings.cpp b/src/vidalia/config/VidaliaSettings.cpp
index f16e456..0812b03 100644
--- a/src/vidalia/config/VidaliaSettings.cpp
+++ b/src/vidalia/config/VidaliaSettings.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/config/VidaliaSettings.h b/src/vidalia/config/VidaliaSettings.h
index dbcc860..2667b12 100644
--- a/src/vidalia/config/VidaliaSettings.h
+++ b/src/vidalia/config/VidaliaSettings.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/help/browser/HelpBrowser.cpp b/src/vidalia/help/browser/HelpBrowser.cpp
index 94d77c3..34ee1b0 100644
--- a/src/vidalia/help/browser/HelpBrowser.cpp
+++ b/src/vidalia/help/browser/HelpBrowser.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/help/browser/HelpBrowser.h b/src/vidalia/help/browser/HelpBrowser.h
index 2170822..2b9bdd5 100644
--- a/src/vidalia/help/browser/HelpBrowser.h
+++ b/src/vidalia/help/browser/HelpBrowser.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/help/browser/HelpTextBrowser.cpp b/src/vidalia/help/browser/HelpTextBrowser.cpp
index cb525ab..d580825 100644
--- a/src/vidalia/help/browser/HelpTextBrowser.cpp
+++ b/src/vidalia/help/browser/HelpTextBrowser.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/help/browser/HelpTextBrowser.h b/src/vidalia/help/browser/HelpTextBrowser.h
index 5ca8700..c222eee 100644
--- a/src/vidalia/help/browser/HelpTextBrowser.h
+++ b/src/vidalia/help/browser/HelpTextBrowser.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/help/content/ar/bridges.html b/src/vidalia/help/content/ar/bridges.html
index 8bf082a..9559708 100644
--- a/src/vidalia/help/content/ar/bridges.html
+++ b/src/vidalia/help/content/ar/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/config.html b/src/vidalia/help/content/ar/config.html
index 1131faa..1c5fa66 100644
--- a/src/vidalia/help/content/ar/config.html
+++ b/src/vidalia/help/content/ar/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/index.html b/src/vidalia/help/content/ar/index.html
index 6ac88a6..44adde7 100644
--- a/src/vidalia/help/content/ar/index.html
+++ b/src/vidalia/help/content/ar/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/links.html b/src/vidalia/help/content/ar/links.html
index e2754c4..3238a53 100644
--- a/src/vidalia/help/content/ar/links.html
+++ b/src/vidalia/help/content/ar/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/log.html b/src/vidalia/help/content/ar/log.html
index b0ba06c..27273dd 100644
--- a/src/vidalia/help/content/ar/log.html
+++ b/src/vidalia/help/content/ar/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/netview.html b/src/vidalia/help/content/ar/netview.html
index 3d065f0..f73f684 100644
--- a/src/vidalia/help/content/ar/netview.html
+++ b/src/vidalia/help/content/ar/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/running.html b/src/vidalia/help/content/ar/running.html
index 4f66c60..bfb03df 100644
--- a/src/vidalia/help/content/ar/running.html
+++ b/src/vidalia/help/content/ar/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/server.html b/src/vidalia/help/content/ar/server.html
index 05d03a9..75c91dd 100644
--- a/src/vidalia/help/content/ar/server.html
+++ b/src/vidalia/help/content/ar/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/services.html b/src/vidalia/help/content/ar/services.html
index 97d57bc..cc60e58 100644
--- a/src/vidalia/help/content/ar/services.html
+++ b/src/vidalia/help/content/ar/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ar/troubleshooting.html b/src/vidalia/help/content/ar/troubleshooting.html
index 04426f4..7420f5d 100644
--- a/src/vidalia/help/content/ar/troubleshooting.html
+++ b/src/vidalia/help/content/ar/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/bridges.html b/src/vidalia/help/content/bms/bridges.html
index 5b2567c..26b850c 100644
--- a/src/vidalia/help/content/bms/bridges.html
+++ b/src/vidalia/help/content/bms/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/config.html b/src/vidalia/help/content/bms/config.html
index 693c1d2..a6f510c 100644
--- a/src/vidalia/help/content/bms/config.html
+++ b/src/vidalia/help/content/bms/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/index.html b/src/vidalia/help/content/bms/index.html
index 1704fa3..853ddfc 100644
--- a/src/vidalia/help/content/bms/index.html
+++ b/src/vidalia/help/content/bms/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/links.html b/src/vidalia/help/content/bms/links.html
index 0f5678d..ac2c75d 100644
--- a/src/vidalia/help/content/bms/links.html
+++ b/src/vidalia/help/content/bms/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/log.html b/src/vidalia/help/content/bms/log.html
index 2ea865d..1f17b37 100644
--- a/src/vidalia/help/content/bms/log.html
+++ b/src/vidalia/help/content/bms/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/netview.html b/src/vidalia/help/content/bms/netview.html
index 9f504ed..8916aad 100644
--- a/src/vidalia/help/content/bms/netview.html
+++ b/src/vidalia/help/content/bms/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/running.html b/src/vidalia/help/content/bms/running.html
index fb3a058..8307fd0 100644
--- a/src/vidalia/help/content/bms/running.html
+++ b/src/vidalia/help/content/bms/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/server.html b/src/vidalia/help/content/bms/server.html
index 6dae358..ddebdeb 100644
--- a/src/vidalia/help/content/bms/server.html
+++ b/src/vidalia/help/content/bms/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/services.html b/src/vidalia/help/content/bms/services.html
index b13f598..9d1c92c 100644
--- a/src/vidalia/help/content/bms/services.html
+++ b/src/vidalia/help/content/bms/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/bms/troubleshooting.html b/src/vidalia/help/content/bms/troubleshooting.html
index 112d41d..ad93d22 100644
--- a/src/vidalia/help/content/bms/troubleshooting.html
+++ b/src/vidalia/help/content/bms/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/config.html b/src/vidalia/help/content/de/config.html
index bb47085..876f04b 100644
--- a/src/vidalia/help/content/de/config.html
+++ b/src/vidalia/help/content/de/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/de/index.html b/src/vidalia/help/content/de/index.html
index d8d9c02..836ac3e 100644
--- a/src/vidalia/help/content/de/index.html
+++ b/src/vidalia/help/content/de/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/links.html b/src/vidalia/help/content/de/links.html
index 0d73e07..3a2a64b 100644
--- a/src/vidalia/help/content/de/links.html
+++ b/src/vidalia/help/content/de/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/log.html b/src/vidalia/help/content/de/log.html
index 6c9d9fb..04a3213 100644
--- a/src/vidalia/help/content/de/log.html
+++ b/src/vidalia/help/content/de/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/de/netview.html b/src/vidalia/help/content/de/netview.html
index 1e0adc4..9cc77c1 100644
--- a/src/vidalia/help/content/de/netview.html
+++ b/src/vidalia/help/content/de/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/running.html b/src/vidalia/help/content/de/running.html
index 3dc8f48..068c113 100644
--- a/src/vidalia/help/content/de/running.html
+++ b/src/vidalia/help/content/de/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/de/server.html b/src/vidalia/help/content/de/server.html
index 8d0c365..da7a72b 100644
--- a/src/vidalia/help/content/de/server.html
+++ b/src/vidalia/help/content/de/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/de/troubleshooting.html b/src/vidalia/help/content/de/troubleshooting.html
index 12e0a19..3855400 100644
--- a/src/vidalia/help/content/de/troubleshooting.html
+++ b/src/vidalia/help/content/de/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/bridges.html b/src/vidalia/help/content/en/bridges.html
index 8f99cd3..24a0c27 100644
--- a/src/vidalia/help/content/en/bridges.html
+++ b/src/vidalia/help/content/en/bridges.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/config.html b/src/vidalia/help/content/en/config.html
index 889a402..b1c25c0 100644
--- a/src/vidalia/help/content/en/config.html
+++ b/src/vidalia/help/content/en/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/index.html b/src/vidalia/help/content/en/index.html
index d9710d7..8ea83d3 100644
--- a/src/vidalia/help/content/en/index.html
+++ b/src/vidalia/help/content/en/index.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/links.html b/src/vidalia/help/content/en/links.html
index 20eafd3..479dd4e 100644
--- a/src/vidalia/help/content/en/links.html
+++ b/src/vidalia/help/content/en/links.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/log.html b/src/vidalia/help/content/en/log.html
index 5731710..966b4ba 100644
--- a/src/vidalia/help/content/en/log.html
+++ b/src/vidalia/help/content/en/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/netview.html b/src/vidalia/help/content/en/netview.html
index e34aa0d..5e887be 100644
--- a/src/vidalia/help/content/en/netview.html
+++ b/src/vidalia/help/content/en/netview.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/running.html b/src/vidalia/help/content/en/running.html
index b6561c9..38dbfa1 100644
--- a/src/vidalia/help/content/en/running.html
+++ b/src/vidalia/help/content/en/running.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/server.html b/src/vidalia/help/content/en/server.html
index 924991d..ccfedd8 100644
--- a/src/vidalia/help/content/en/server.html
+++ b/src/vidalia/help/content/en/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/services.html b/src/vidalia/help/content/en/services.html
index 4ad627c..4e636bd 100644
--- a/src/vidalia/help/content/en/services.html
+++ b/src/vidalia/help/content/en/services.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/en/troubleshooting.html b/src/vidalia/help/content/en/troubleshooting.html
index 3e76582..751920a 100644
--- a/src/vidalia/help/content/en/troubleshooting.html
+++ b/src/vidalia/help/content/en/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/es/bridges.html b/src/vidalia/help/content/es/bridges.html
index 153b1af..0cbcd39 100644
--- a/src/vidalia/help/content/es/bridges.html
+++ b/src/vidalia/help/content/es/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/bridges.html b/src/vidalia/help/content/fa/bridges.html
index 698b6b3..43daff8 100644
--- a/src/vidalia/help/content/fa/bridges.html
+++ b/src/vidalia/help/content/fa/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/config.html b/src/vidalia/help/content/fa/config.html
index 2753d47..67cc5df 100644
--- a/src/vidalia/help/content/fa/config.html
+++ b/src/vidalia/help/content/fa/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/index.html b/src/vidalia/help/content/fa/index.html
index ef8cdb7..0c14592 100644
--- a/src/vidalia/help/content/fa/index.html
+++ b/src/vidalia/help/content/fa/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/links.html b/src/vidalia/help/content/fa/links.html
index fc63768..a6c8bab 100644
--- a/src/vidalia/help/content/fa/links.html
+++ b/src/vidalia/help/content/fa/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/log.html b/src/vidalia/help/content/fa/log.html
index 4d91b32..cd838b7 100644
--- a/src/vidalia/help/content/fa/log.html
+++ b/src/vidalia/help/content/fa/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/netview.html b/src/vidalia/help/content/fa/netview.html
index f487973..7e21870 100644
--- a/src/vidalia/help/content/fa/netview.html
+++ b/src/vidalia/help/content/fa/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/running.html b/src/vidalia/help/content/fa/running.html
index cf9fd94..771d2ee 100644
--- a/src/vidalia/help/content/fa/running.html
+++ b/src/vidalia/help/content/fa/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/server.html b/src/vidalia/help/content/fa/server.html
index 264e5f7..1748015 100644
--- a/src/vidalia/help/content/fa/server.html
+++ b/src/vidalia/help/content/fa/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/services.html b/src/vidalia/help/content/fa/services.html
index 8fe1f4d..75bc53c 100644
--- a/src/vidalia/help/content/fa/services.html
+++ b/src/vidalia/help/content/fa/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fa/troubleshooting.html b/src/vidalia/help/content/fa/troubleshooting.html
index 8bc6e8a..212d7a1 100644
--- a/src/vidalia/help/content/fa/troubleshooting.html
+++ b/src/vidalia/help/content/fa/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fi/bridges.html b/src/vidalia/help/content/fi/bridges.html
index 4951e93..b441f05 100644
--- a/src/vidalia/help/content/fi/bridges.html
+++ b/src/vidalia/help/content/fi/bridges.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/config.html b/src/vidalia/help/content/fi/config.html
index d9760a1..1145a9f 100644
--- a/src/vidalia/help/content/fi/config.html
+++ b/src/vidalia/help/content/fi/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/index.html b/src/vidalia/help/content/fi/index.html
index 9d7075a..c2c5ab6 100644
--- a/src/vidalia/help/content/fi/index.html
+++ b/src/vidalia/help/content/fi/index.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/links.html b/src/vidalia/help/content/fi/links.html
index 397da6a..6e5a0f6 100644
--- a/src/vidalia/help/content/fi/links.html
+++ b/src/vidalia/help/content/fi/links.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/log.html b/src/vidalia/help/content/fi/log.html
index facc03e..4339d26 100644
--- a/src/vidalia/help/content/fi/log.html
+++ b/src/vidalia/help/content/fi/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/netview.html b/src/vidalia/help/content/fi/netview.html
index f379387..d03ab22 100644
--- a/src/vidalia/help/content/fi/netview.html
+++ b/src/vidalia/help/content/fi/netview.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/running.html b/src/vidalia/help/content/fi/running.html
index 6a237cc..b7082db 100644
--- a/src/vidalia/help/content/fi/running.html
+++ b/src/vidalia/help/content/fi/running.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/server.html b/src/vidalia/help/content/fi/server.html
index 36c22b6..7b2e30e 100644
--- a/src/vidalia/help/content/fi/server.html
+++ b/src/vidalia/help/content/fi/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fi/troubleshooting.html b/src/vidalia/help/content/fi/troubleshooting.html
index 014c5c0..e56ac58 100644
--- a/src/vidalia/help/content/fi/troubleshooting.html
+++ b/src/vidalia/help/content/fi/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/fr/bridges.html b/src/vidalia/help/content/fr/bridges.html
index 1e488af..b362ba5 100644
--- a/src/vidalia/help/content/fr/bridges.html
+++ b/src/vidalia/help/content/fr/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/config.html b/src/vidalia/help/content/fr/config.html
index 4985cde..730acac 100644
--- a/src/vidalia/help/content/fr/config.html
+++ b/src/vidalia/help/content/fr/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/index.html b/src/vidalia/help/content/fr/index.html
index b21b355..fdc40ad 100644
--- a/src/vidalia/help/content/fr/index.html
+++ b/src/vidalia/help/content/fr/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/links.html b/src/vidalia/help/content/fr/links.html
index 512c41b..f7771a4 100644
--- a/src/vidalia/help/content/fr/links.html
+++ b/src/vidalia/help/content/fr/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/log.html b/src/vidalia/help/content/fr/log.html
index e83b992..c29f95f 100644
--- a/src/vidalia/help/content/fr/log.html
+++ b/src/vidalia/help/content/fr/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/netview.html b/src/vidalia/help/content/fr/netview.html
index 1b744af..0343ccc 100644
--- a/src/vidalia/help/content/fr/netview.html
+++ b/src/vidalia/help/content/fr/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/running.html b/src/vidalia/help/content/fr/running.html
index 54c0115..ab0f2da 100644
--- a/src/vidalia/help/content/fr/running.html
+++ b/src/vidalia/help/content/fr/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/server.html b/src/vidalia/help/content/fr/server.html
index d02e09a..1ed055b 100644
--- a/src/vidalia/help/content/fr/server.html
+++ b/src/vidalia/help/content/fr/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/services.html b/src/vidalia/help/content/fr/services.html
index 7f4265d..dff8776 100644
--- a/src/vidalia/help/content/fr/services.html
+++ b/src/vidalia/help/content/fr/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/fr/troubleshooting.html b/src/vidalia/help/content/fr/troubleshooting.html
index 5f37a32..79873fd 100644
--- a/src/vidalia/help/content/fr/troubleshooting.html
+++ b/src/vidalia/help/content/fr/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/it/links.html b/src/vidalia/help/content/it/links.html
index 82e63c7..68e8cff 100644
--- a/src/vidalia/help/content/it/links.html
+++ b/src/vidalia/help/content/it/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/bridges.html b/src/vidalia/help/content/my/bridges.html
index a7901da..9a59daf 100644
--- a/src/vidalia/help/content/my/bridges.html
+++ b/src/vidalia/help/content/my/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/config.html b/src/vidalia/help/content/my/config.html
index de05c88..e3ae08d 100644
--- a/src/vidalia/help/content/my/config.html
+++ b/src/vidalia/help/content/my/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/index.html b/src/vidalia/help/content/my/index.html
index 71bb9bc..7782308 100644
--- a/src/vidalia/help/content/my/index.html
+++ b/src/vidalia/help/content/my/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/links.html b/src/vidalia/help/content/my/links.html
index 81224ee..5f92f10 100644
--- a/src/vidalia/help/content/my/links.html
+++ b/src/vidalia/help/content/my/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/log.html b/src/vidalia/help/content/my/log.html
index b8e592d..862fbc5 100644
--- a/src/vidalia/help/content/my/log.html
+++ b/src/vidalia/help/content/my/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/netview.html b/src/vidalia/help/content/my/netview.html
index 7d91627..bd1fab2 100644
--- a/src/vidalia/help/content/my/netview.html
+++ b/src/vidalia/help/content/my/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/running.html b/src/vidalia/help/content/my/running.html
index b259d4d..e42f841 100644
--- a/src/vidalia/help/content/my/running.html
+++ b/src/vidalia/help/content/my/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/server.html b/src/vidalia/help/content/my/server.html
index fe01454..8823957 100644
--- a/src/vidalia/help/content/my/server.html
+++ b/src/vidalia/help/content/my/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/services.html b/src/vidalia/help/content/my/services.html
index b13f598..9d1c92c 100644
--- a/src/vidalia/help/content/my/services.html
+++ b/src/vidalia/help/content/my/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/my/troubleshooting.html b/src/vidalia/help/content/my/troubleshooting.html
index 522167c..5bfd4e0 100644
--- a/src/vidalia/help/content/my/troubleshooting.html
+++ b/src/vidalia/help/content/my/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/nl/index.html b/src/vidalia/help/content/nl/index.html
index 3ab483b..2289b41 100644
--- a/src/vidalia/help/content/nl/index.html
+++ b/src/vidalia/help/content/nl/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/nl/links.html b/src/vidalia/help/content/nl/links.html
index e1501dd..a1d021e 100644
--- a/src/vidalia/help/content/nl/links.html
+++ b/src/vidalia/help/content/nl/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/nl/running.html b/src/vidalia/help/content/nl/running.html
index 2d0d1ee..82173cb 100644
--- a/src/vidalia/help/content/nl/running.html
+++ b/src/vidalia/help/content/nl/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pl/bridges.html b/src/vidalia/help/content/pl/bridges.html
index 0f2ece2..40a8e93 100644
--- a/src/vidalia/help/content/pl/bridges.html
+++ b/src/vidalia/help/content/pl/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pl/index.html b/src/vidalia/help/content/pl/index.html
index 5472351..a37c481 100644
--- a/src/vidalia/help/content/pl/index.html
+++ b/src/vidalia/help/content/pl/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pl/links.html b/src/vidalia/help/content/pl/links.html
index 495b55f..50514ae 100644
--- a/src/vidalia/help/content/pl/links.html
+++ b/src/vidalia/help/content/pl/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/pt_BR/bridges.html b/src/vidalia/help/content/pt_BR/bridges.html
index dd49383..a09ff9b 100644
--- a/src/vidalia/help/content/pt_BR/bridges.html
+++ b/src/vidalia/help/content/pt_BR/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/bridges.html b/src/vidalia/help/content/ru/bridges.html
index 2d34421..550f6fa 100644
--- a/src/vidalia/help/content/ru/bridges.html
+++ b/src/vidalia/help/content/ru/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/config.html b/src/vidalia/help/content/ru/config.html
index 0f5921f..fff08a1 100644
--- a/src/vidalia/help/content/ru/config.html
+++ b/src/vidalia/help/content/ru/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/index.html b/src/vidalia/help/content/ru/index.html
index 1247453..17aec54 100644
--- a/src/vidalia/help/content/ru/index.html
+++ b/src/vidalia/help/content/ru/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/links.html b/src/vidalia/help/content/ru/links.html
index fd0b216..12926b4 100644
--- a/src/vidalia/help/content/ru/links.html
+++ b/src/vidalia/help/content/ru/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/log.html b/src/vidalia/help/content/ru/log.html
index a84201f..d44904c 100644
--- a/src/vidalia/help/content/ru/log.html
+++ b/src/vidalia/help/content/ru/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/netview.html b/src/vidalia/help/content/ru/netview.html
index 214f01b..3c7c3e0 100644
--- a/src/vidalia/help/content/ru/netview.html
+++ b/src/vidalia/help/content/ru/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/running.html b/src/vidalia/help/content/ru/running.html
index 867a636..5544447 100644
--- a/src/vidalia/help/content/ru/running.html
+++ b/src/vidalia/help/content/ru/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/server.html b/src/vidalia/help/content/ru/server.html
index 83cff3f..57d23dd 100644
--- a/src/vidalia/help/content/ru/server.html
+++ b/src/vidalia/help/content/ru/server.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/services.html b/src/vidalia/help/content/ru/services.html
index 971101d..ce80bcc 100644
--- a/src/vidalia/help/content/ru/services.html
+++ b/src/vidalia/help/content/ru/services.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/ru/troubleshooting.html b/src/vidalia/help/content/ru/troubleshooting.html
index 8feb976..33284bb 100644
--- a/src/vidalia/help/content/ru/troubleshooting.html
+++ b/src/vidalia/help/content/ru/troubleshooting.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/sv/bridges.html b/src/vidalia/help/content/sv/bridges.html
index 99f20cb..f04b99e 100644
--- a/src/vidalia/help/content/sv/bridges.html
+++ b/src/vidalia/help/content/sv/bridges.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/config.html b/src/vidalia/help/content/sv/config.html
index 6caf6d0..7124058 100644
--- a/src/vidalia/help/content/sv/config.html
+++ b/src/vidalia/help/content/sv/config.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/index.html b/src/vidalia/help/content/sv/index.html
index be2b53b..d9adb3f 100644
--- a/src/vidalia/help/content/sv/index.html
+++ b/src/vidalia/help/content/sv/index.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/links.html b/src/vidalia/help/content/sv/links.html
index 4bbe6af..1a1ecf6 100644
--- a/src/vidalia/help/content/sv/links.html
+++ b/src/vidalia/help/content/sv/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/sv/log.html b/src/vidalia/help/content/sv/log.html
index eefe508..2ecf5b0 100644
--- a/src/vidalia/help/content/sv/log.html
+++ b/src/vidalia/help/content/sv/log.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/netview.html b/src/vidalia/help/content/sv/netview.html
index 737b064..98f337c 100644
--- a/src/vidalia/help/content/sv/netview.html
+++ b/src/vidalia/help/content/sv/netview.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/running.html b/src/vidalia/help/content/sv/running.html
index fbda086..dc1f21d 100644
--- a/src/vidalia/help/content/sv/running.html
+++ b/src/vidalia/help/content/sv/running.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/server.html b/src/vidalia/help/content/sv/server.html
index fc4a252..e487601 100644
--- a/src/vidalia/help/content/sv/server.html
+++ b/src/vidalia/help/content/sv/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/services.html b/src/vidalia/help/content/sv/services.html
index 11f5a95..ef3aaf8 100644
--- a/src/vidalia/help/content/sv/services.html
+++ b/src/vidalia/help/content/sv/services.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/sv/troubleshooting.html b/src/vidalia/help/content/sv/troubleshooting.html
index c56a2bf..f1bd43b 100644
--- a/src/vidalia/help/content/sv/troubleshooting.html
+++ b/src/vidalia/help/content/sv/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/tr/links.html b/src/vidalia/help/content/tr/links.html
index cdddfff..b785f22 100644
--- a/src/vidalia/help/content/tr/links.html
+++ b/src/vidalia/help/content/tr/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/bridges.html b/src/vidalia/help/content/zh_CN/bridges.html
index 87e683c..fa17ecc 100644
--- a/src/vidalia/help/content/zh_CN/bridges.html
+++ b/src/vidalia/help/content/zh_CN/bridges.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/config.html b/src/vidalia/help/content/zh_CN/config.html
index 95eea5f..bab870d 100644
--- a/src/vidalia/help/content/zh_CN/config.html
+++ b/src/vidalia/help/content/zh_CN/config.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/index.html b/src/vidalia/help/content/zh_CN/index.html
index 62ac9c8..ba76667 100644
--- a/src/vidalia/help/content/zh_CN/index.html
+++ b/src/vidalia/help/content/zh_CN/index.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/links.html b/src/vidalia/help/content/zh_CN/links.html
index 7f1472f..bae5d99 100644
--- a/src/vidalia/help/content/zh_CN/links.html
+++ b/src/vidalia/help/content/zh_CN/links.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/log.html b/src/vidalia/help/content/zh_CN/log.html
index 83a4ac1..3febf66 100644
--- a/src/vidalia/help/content/zh_CN/log.html
+++ b/src/vidalia/help/content/zh_CN/log.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/netview.html b/src/vidalia/help/content/zh_CN/netview.html
index 3cabda1..2641fa7 100644
--- a/src/vidalia/help/content/zh_CN/netview.html
+++ b/src/vidalia/help/content/zh_CN/netview.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/running.html b/src/vidalia/help/content/zh_CN/running.html
index d1ac3af..0b7dd70 100644
--- a/src/vidalia/help/content/zh_CN/running.html
+++ b/src/vidalia/help/content/zh_CN/running.html
@@ -7,9 +7,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
<body>
diff --git a/src/vidalia/help/content/zh_CN/server.html b/src/vidalia/help/content/zh_CN/server.html
index 2c06f43..b7f33f6 100644
--- a/src/vidalia/help/content/zh_CN/server.html
+++ b/src/vidalia/help/content/zh_CN/server.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/help/content/zh_CN/troubleshooting.html b/src/vidalia/help/content/zh_CN/troubleshooting.html
index 928cc65..577737e 100644
--- a/src/vidalia/help/content/zh_CN/troubleshooting.html
+++ b/src/vidalia/help/content/zh_CN/troubleshooting.html
@@ -5,9 +5,9 @@
** LICENSE file, found in the top level directory of this distribution. If
** you did not receive the LICENSE file with this file, you may obtain it
** from the Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to
-** the terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
-->
<html>
diff --git a/src/vidalia/log/LogFile.cpp b/src/vidalia/log/LogFile.cpp
index 310294f..a4ec760 100644
--- a/src/vidalia/log/LogFile.cpp
+++ b/src/vidalia/log/LogFile.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogFile.h b/src/vidalia/log/LogFile.h
index d01f9d7..6e46522 100644
--- a/src/vidalia/log/LogFile.h
+++ b/src/vidalia/log/LogFile.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogHeaderView.cpp b/src/vidalia/log/LogHeaderView.cpp
index c62b7a1..1b04d3a 100644
--- a/src/vidalia/log/LogHeaderView.cpp
+++ b/src/vidalia/log/LogHeaderView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogHeaderView.h b/src/vidalia/log/LogHeaderView.h
index 6223d73..96491ef 100644
--- a/src/vidalia/log/LogHeaderView.h
+++ b/src/vidalia/log/LogHeaderView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogMessageColumnDelegate.cpp b/src/vidalia/log/LogMessageColumnDelegate.cpp
index 8821438..3baa749 100644
--- a/src/vidalia/log/LogMessageColumnDelegate.cpp
+++ b/src/vidalia/log/LogMessageColumnDelegate.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogMessageColumnDelegate.h b/src/vidalia/log/LogMessageColumnDelegate.h
index dbf9ca6..6f16b38 100644
--- a/src/vidalia/log/LogMessageColumnDelegate.h
+++ b/src/vidalia/log/LogMessageColumnDelegate.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogTreeItem.cpp b/src/vidalia/log/LogTreeItem.cpp
index e7b6598..e8842bc 100644
--- a/src/vidalia/log/LogTreeItem.cpp
+++ b/src/vidalia/log/LogTreeItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogTreeItem.h b/src/vidalia/log/LogTreeItem.h
index a402011..48426b6 100644
--- a/src/vidalia/log/LogTreeItem.h
+++ b/src/vidalia/log/LogTreeItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogTreeWidget.cpp b/src/vidalia/log/LogTreeWidget.cpp
index 0124a63..0936b78 100644
--- a/src/vidalia/log/LogTreeWidget.cpp
+++ b/src/vidalia/log/LogTreeWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/LogTreeWidget.h b/src/vidalia/log/LogTreeWidget.h
index ad1dd91..2d9ada8 100644
--- a/src/vidalia/log/LogTreeWidget.h
+++ b/src/vidalia/log/LogTreeWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/MessageLog.cpp b/src/vidalia/log/MessageLog.cpp
index e15799e..7e3e9c2 100644
--- a/src/vidalia/log/MessageLog.cpp
+++ b/src/vidalia/log/MessageLog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/MessageLog.h b/src/vidalia/log/MessageLog.h
index 3462ae1..f9905e1 100644
--- a/src/vidalia/log/MessageLog.h
+++ b/src/vidalia/log/MessageLog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/StatusEventItem.cpp b/src/vidalia/log/StatusEventItem.cpp
index d42823f..ef62360 100644
--- a/src/vidalia/log/StatusEventItem.cpp
+++ b/src/vidalia/log/StatusEventItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/StatusEventItem.h b/src/vidalia/log/StatusEventItem.h
index f70f711..8e599a2 100644
--- a/src/vidalia/log/StatusEventItem.h
+++ b/src/vidalia/log/StatusEventItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/StatusEventItemDelegate.cpp b/src/vidalia/log/StatusEventItemDelegate.cpp
index b8852eb..32bbcfa 100644
--- a/src/vidalia/log/StatusEventItemDelegate.cpp
+++ b/src/vidalia/log/StatusEventItemDelegate.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/StatusEventItemDelegate.h b/src/vidalia/log/StatusEventItemDelegate.h
index c4eb244..bd24c48 100644
--- a/src/vidalia/log/StatusEventItemDelegate.h
+++ b/src/vidalia/log/StatusEventItemDelegate.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/StatusEventWidget.cpp b/src/vidalia/log/StatusEventWidget.cpp
index 9fd4dbc..4bd11d0 100644
--- a/src/vidalia/log/StatusEventWidget.cpp
+++ b/src/vidalia/log/StatusEventWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/log/StatusEventWidget.h b/src/vidalia/log/StatusEventWidget.h
index ee0130f..da12c13 100644
--- a/src/vidalia/log/StatusEventWidget.h
+++ b/src/vidalia/log/StatusEventWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/main.cpp b/src/vidalia/main.cpp
index acb9d66..7abc708 100644
--- a/src/vidalia/main.cpp
+++ b/src/vidalia/main.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/CircuitItem.cpp b/src/vidalia/network/CircuitItem.cpp
index bca061e..d74254d 100644
--- a/src/vidalia/network/CircuitItem.cpp
+++ b/src/vidalia/network/CircuitItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/CircuitItem.h b/src/vidalia/network/CircuitItem.h
index b188098..c2c1b7e 100644
--- a/src/vidalia/network/CircuitItem.h
+++ b/src/vidalia/network/CircuitItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/CircuitListWidget.cpp b/src/vidalia/network/CircuitListWidget.cpp
index a0af5e7..5e01c9a 100644
--- a/src/vidalia/network/CircuitListWidget.cpp
+++ b/src/vidalia/network/CircuitListWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/CircuitListWidget.h b/src/vidalia/network/CircuitListWidget.h
index 9bfdfec..a6d92c2 100644
--- a/src/vidalia/network/CircuitListWidget.h
+++ b/src/vidalia/network/CircuitListWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/CountryInfo.cpp b/src/vidalia/network/CountryInfo.cpp
index dd6b998..c7d749a 100644
--- a/src/vidalia/network/CountryInfo.cpp
+++ b/src/vidalia/network/CountryInfo.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/CountryInfo.h b/src/vidalia/network/CountryInfo.h
index 30a8207..f660a12 100644
--- a/src/vidalia/network/CountryInfo.h
+++ b/src/vidalia/network/CountryInfo.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/GeoIpDatabase.cpp b/src/vidalia/network/GeoIpDatabase.cpp
index 3f496c7..c1e6d40 100644
--- a/src/vidalia/network/GeoIpDatabase.cpp
+++ b/src/vidalia/network/GeoIpDatabase.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/GeoIpDatabase.h b/src/vidalia/network/GeoIpDatabase.h
index 5b8a6db..48697ca 100644
--- a/src/vidalia/network/GeoIpDatabase.h
+++ b/src/vidalia/network/GeoIpDatabase.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/GeoIpRecord.cpp b/src/vidalia/network/GeoIpRecord.cpp
index 8a37813..25d11c1 100644
--- a/src/vidalia/network/GeoIpRecord.cpp
+++ b/src/vidalia/network/GeoIpRecord.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/GeoIpRecord.h b/src/vidalia/network/GeoIpRecord.h
index bf254e9..002085f 100644
--- a/src/vidalia/network/GeoIpRecord.h
+++ b/src/vidalia/network/GeoIpRecord.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/GeoIpResolver.cpp b/src/vidalia/network/GeoIpResolver.cpp
index 45e09e6..f2c5100 100644
--- a/src/vidalia/network/GeoIpResolver.cpp
+++ b/src/vidalia/network/GeoIpResolver.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/GeoIpResolver.h b/src/vidalia/network/GeoIpResolver.h
index b0bbab9..cf39153 100644
--- a/src/vidalia/network/GeoIpResolver.h
+++ b/src/vidalia/network/GeoIpResolver.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/NetViewer.cpp b/src/vidalia/network/NetViewer.cpp
index 2501537..6a67d57 100644
--- a/src/vidalia/network/NetViewer.cpp
+++ b/src/vidalia/network/NetViewer.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/NetViewer.h b/src/vidalia/network/NetViewer.h
index e5c7208..1d1f85f 100644
--- a/src/vidalia/network/NetViewer.h
+++ b/src/vidalia/network/NetViewer.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterDescriptorView.cpp b/src/vidalia/network/RouterDescriptorView.cpp
index 63c3102..367ad82 100644
--- a/src/vidalia/network/RouterDescriptorView.cpp
+++ b/src/vidalia/network/RouterDescriptorView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterDescriptorView.h b/src/vidalia/network/RouterDescriptorView.h
index 1a77412..94af97a 100644
--- a/src/vidalia/network/RouterDescriptorView.h
+++ b/src/vidalia/network/RouterDescriptorView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterInfoDialog.cpp b/src/vidalia/network/RouterInfoDialog.cpp
index 935a1e3..806d3e9 100644
--- a/src/vidalia/network/RouterInfoDialog.cpp
+++ b/src/vidalia/network/RouterInfoDialog.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterInfoDialog.h b/src/vidalia/network/RouterInfoDialog.h
index ac09ea3..96f3117 100644
--- a/src/vidalia/network/RouterInfoDialog.h
+++ b/src/vidalia/network/RouterInfoDialog.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterListItem.cpp b/src/vidalia/network/RouterListItem.cpp
index 904a3f7..6750103 100644
--- a/src/vidalia/network/RouterListItem.cpp
+++ b/src/vidalia/network/RouterListItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterListItem.h b/src/vidalia/network/RouterListItem.h
index ea423a3..f50f53a 100644
--- a/src/vidalia/network/RouterListItem.h
+++ b/src/vidalia/network/RouterListItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterListWidget.cpp b/src/vidalia/network/RouterListWidget.cpp
index ce34355..e35bc22 100644
--- a/src/vidalia/network/RouterListWidget.cpp
+++ b/src/vidalia/network/RouterListWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/RouterListWidget.h b/src/vidalia/network/RouterListWidget.h
index 34dfd95..04d7263 100644
--- a/src/vidalia/network/RouterListWidget.h
+++ b/src/vidalia/network/RouterListWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/StreamItem.cpp b/src/vidalia/network/StreamItem.cpp
index 5c9fff9..27823f4 100644
--- a/src/vidalia/network/StreamItem.cpp
+++ b/src/vidalia/network/StreamItem.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/StreamItem.h b/src/vidalia/network/StreamItem.h
index 9390469..2842423 100644
--- a/src/vidalia/network/StreamItem.h
+++ b/src/vidalia/network/StreamItem.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/TorMapImageView.cpp b/src/vidalia/network/TorMapImageView.cpp
index dbcf634..6c04d89 100644
--- a/src/vidalia/network/TorMapImageView.cpp
+++ b/src/vidalia/network/TorMapImageView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/TorMapImageView.h b/src/vidalia/network/TorMapImageView.h
index 47f08d8..ca26c94 100644
--- a/src/vidalia/network/TorMapImageView.h
+++ b/src/vidalia/network/TorMapImageView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/TorMapWidget.cpp b/src/vidalia/network/TorMapWidget.cpp
index 226ee17..e222218 100644
--- a/src/vidalia/network/TorMapWidget.cpp
+++ b/src/vidalia/network/TorMapWidget.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/TorMapWidget.h b/src/vidalia/network/TorMapWidget.h
index 0671874..f371198 100644
--- a/src/vidalia/network/TorMapWidget.h
+++ b/src/vidalia/network/TorMapWidget.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/TorMapWidgetInputHandler.cpp b/src/vidalia/network/TorMapWidgetInputHandler.cpp
index 3344d83..467594b 100644
--- a/src/vidalia/network/TorMapWidgetInputHandler.cpp
+++ b/src/vidalia/network/TorMapWidgetInputHandler.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#include "TorMapWidgetInputHandler.h"
diff --git a/src/vidalia/network/TorMapWidgetInputHandler.h b/src/vidalia/network/TorMapWidgetInputHandler.h
index 8265944..066a4dc 100644
--- a/src/vidalia/network/TorMapWidgetInputHandler.h
+++ b/src/vidalia/network/TorMapWidgetInputHandler.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
#ifndef _TORMAPWIDGETINPUTHANDLER_H
diff --git a/src/vidalia/network/TorMapWidgetPopupMenu.cpp b/src/vidalia/network/TorMapWidgetPopupMenu.cpp
index 2bc9ae5..a98c7e6 100644
--- a/src/vidalia/network/TorMapWidgetPopupMenu.cpp
+++ b/src/vidalia/network/TorMapWidgetPopupMenu.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/TorMapWidgetPopupMenu.h b/src/vidalia/network/TorMapWidgetPopupMenu.h
index b892a1e..c83ded3 100644
--- a/src/vidalia/network/TorMapWidgetPopupMenu.h
+++ b/src/vidalia/network/TorMapWidgetPopupMenu.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/ZImageView.cpp b/src/vidalia/network/ZImageView.cpp
index cf712a7..c0cad4f 100644
--- a/src/vidalia/network/ZImageView.cpp
+++ b/src/vidalia/network/ZImageView.cpp
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
diff --git a/src/vidalia/network/ZImageView.h b/src/vidalia/network/ZImageView.h
index 37b53ea..436b3d9 100644
--- a/src/vidalia/network/ZImageView.h
+++ b/src/vidalia/network/ZImageView.h
@@ -3,9 +3,9 @@
** LICENSE file, found in the top level directory of this distribution. If you
** did not receive the LICENSE file with this file, you may obtain it from the
** Vidalia source package distributed by the Vidalia Project at
-** http://www.vidalia-project.net/. No part of Vidalia, including this file,
-** may be copied, modified, propagated, or distributed except according to the
-** terms described in the LICENSE file.
+** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
+** including this file, may be copied, modified, propagated, or distributed
+** except according to the terms described in the LICENSE file.
*/
/*
[View Less]
1
0