commit 4a307329553e0039d4b8f80bcfa150e605d68863
Author: Damian Johnson <atagar(a)torproject.org>
Date: Sat Jun 28 13:18:13 2014 -0700
Dropping unnecessary address value from header
We were tracking our address and or_address but the former was simply used as a
default if the former was unset. Might as well simplify this, and drop the
pointless GETINFO query if we don't need it.
---
arm/header_panel.py | 12 ++----------
1 file changed, 2 insertions(+), 10 …
[View More]deletions(-)
diff --git a/arm/header_panel.py b/arm/header_panel.py
index 0d1f0bd..bc0484b 100644
--- a/arm/header_panel.py
+++ b/arm/header_panel.py
@@ -185,18 +185,11 @@ class HeaderPanel(panel.Panel, threading.Thread):
x, include_control_port = 0, True
if vals.or_port:
- my_address = 'Unknown'
-
- if vals.or_address:
- my_address = vals.or_address
- elif vals.address:
- my_address = vals.address
-
# acting as a relay (we can assume certain parameters are set
dir_port_label = ', Dir Port: %s' % vals.dir_port if vals.dir_port != '0' else ''
- for label in (vals.nickname, ' - ' + my_address, ':%s' % vals.or_port, dir_port_label):
+ for label in (vals.nickname, ' - ' + vals.or_address, ':%s' % vals.or_port, dir_port_label):
if x + len(label) <= left_width:
self.addstr(1, x, label)
x += len(label)
@@ -502,10 +495,9 @@ class Sampling(object):
self.retrieved = time.time()
self.arm_total_cpu_time = sum(os.times()[:3])
- self.address = controller.get_info('address', '')
self.fingerprint = controller.get_info('fingerprint', 'Unknown')
self.nickname = controller.get_conf('Nickname', '')
- self.or_address = or_listeners[0][0] if or_listeners else ''
+ self.or_address = or_listeners[0][0] if or_listeners else controller.get_info('address', 'Unknown')
self.or_port = or_listeners[0][1] if or_listeners else ''
self.dir_port = controller.get_conf('DirPort', '0')
[View Less]
commit 58b766222d5784d007ef093eb6dbcc6e37b8bbba
Author: Damian Johnson <atagar(a)torproject.org>
Date: Sun Jun 29 17:07:52 2014 -0700
Moving is_connected attribute into Sampling
Moving the attribute that indicates if we're connected to tor from the header
panel to the sampling. I can see why it was tracked separately, but it will
probably be better handled by cloning sampling attributes when disconnected.
---
arm/header_panel.py | 16 +++++++---------
1 file …
[View More]changed, 7 insertions(+), 9 deletions(-)
diff --git a/arm/header_panel.py b/arm/header_panel.py
index 550dd65..d3d3945 100644
--- a/arm/header_panel.py
+++ b/arm/header_panel.py
@@ -42,7 +42,6 @@ class HeaderPanel(panel.Panel, threading.Thread):
threading.Thread.__init__(self)
self.setDaemon(True)
- self._is_tor_connected = tor_controller().is_alive()
self._halt = False # terminates thread if true
self._cond = threading.Condition() # used for pausing the thread
@@ -95,7 +94,7 @@ class HeaderPanel(panel.Panel, threading.Thread):
if key in (ord('n'), ord('N')) and tor_controller().is_newnym_available():
self.send_newnym()
- elif key in (ord('r'), ord('R')) and not self._is_tor_connected:
+ elif key in (ord('r'), ord('R')) and not self.vals.is_connected:
#oldSocket = tor_tools.get_conn().get_controller().get_socket()
#
#controller = None
@@ -181,7 +180,7 @@ class HeaderPanel(panel.Panel, threading.Thread):
else:
# non-relay (client only)
- if self._is_tor_connected:
+ if self.vals.is_connected:
self.addstr(1, x, 'Relaying Disabled', ui_tools.get_color('cyan'))
x += 17
else:
@@ -229,7 +228,7 @@ class HeaderPanel(panel.Panel, threading.Thread):
uptime_label = ''
if vals.start_time:
- if self.is_paused() or not self._is_tor_connected:
+ if self.is_paused() or not self.vals.is_connected:
# freeze the uptime when paused or the tor process is stopped
uptime_label = str_tools.get_short_time_label(self.get_pause_time() - vals.start_time)
else:
@@ -237,7 +236,7 @@ class HeaderPanel(panel.Panel, threading.Thread):
sys_fields = ((0, 'cpu: %s%% tor, %s%% arm' % (vals.tor_cpu, vals.arm_cpu)),
(27, 'mem: %s (%s%%)' % (memory_label, vals.memory)),
- (47, 'pid: %s' % (vals.pid if self._is_tor_connected else '')),
+ (47, 'pid: %s' % (vals.pid if self.vals.is_connected else '')),
(59, 'uptime: %s' % uptime_label))
for (start, label) in sys_fields:
@@ -281,7 +280,7 @@ class HeaderPanel(panel.Panel, threading.Thread):
# Line 5 / Line 3 Left (flags)
- if self._is_tor_connected:
+ if self.vals.is_connected:
y, x = (2 if is_wide else 4, 0)
self.addstr(y, x, 'flags: ')
x += 7
@@ -406,7 +405,7 @@ class HeaderPanel(panel.Panel, threading.Thread):
while not self._halt:
current_time = time.time()
- if self.is_paused() or current_time - last_draw < 1 or not self._is_tor_connected:
+ if self.is_paused() or current_time - last_draw < 1 or not self.vals.is_connected:
self._cond.acquire()
if not self._halt:
@@ -463,7 +462,6 @@ class HeaderPanel(panel.Panel, threading.Thread):
if event_type in (State.INIT, State.RESET):
initial_height = self.get_height()
- self._is_tor_connected = True
self._halt_time = None
self.vals = Sampling(self.vals)
@@ -478,7 +476,6 @@ class HeaderPanel(panel.Panel, threading.Thread):
# just need to redraw ourselves
self.redraw(True)
elif event_type == State.CLOSED:
- self._is_tor_connected = False
self._halt_time = time.time()
self.vals = Sampling(self.vals)
@@ -501,6 +498,7 @@ class Sampling(object):
start_time = stem.util.system.get_start_time(controller.get_pid(None))
tor_resources = arm.util.tracker.get_resource_tracker().get_value()
+ self.is_connected = controller.is_alive()
self.retrieved = time.time()
self.arm_total_cpu_time = sum(os.times()[:3])
[View Less]
commit 8a7998a71012a844868fa921c0e4919dd9c3b117
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Sun Jun 29 16:08:17 2014 +0200
Add Example usage section.
Suggested by Runa.
---
web/protocol.html | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/web/protocol.html b/web/protocol.html
index 1ffaf04..3142880 100644
--- a/web/protocol.html
+++ b/web/protocol.html
@@ -24,6 +24,7 @@
<li><a …
[View More]href="#weights">Weights documents</a></li>
<li><a href="#clients">Clients documents</a></li>
<li><a href="#uptime">Uptime documents</a></li>
+ <li><a href="#examples">Example usage</a></li>
</ul>
</div>
@@ -2006,6 +2007,66 @@ The specification of uptime history objects is similar to those in the
</div> <!-- box -->
+<div class="box">
+<a name="examples"></a>
+<h3>Example usage <a href="#examples">#</a>
+</h3>
+
+<p>
+The following examples illustrate how to build requests for some trivial
+and some more complex use cases.
+While Onionoo is designed mainly for developers and not end users, there
+may be cases when it's easier to quickly write a specific query Onionoo
+rather than to find an Onionoo client that provides the desired
+information.
+</p>
+
+<pre>https://onionoo.torproject.org/summary?limit=4</pre>
+
+<p>
+This first query returns the first four summary documents that Onionoo can
+find.
+The <code>limit</code> parameter should always be used while developing
+new queries to avoid downloading huge responses.
+</p>
+
+<pre>https://onionoo.torproject.org/summary?limit=4&search=moria</pre>
+
+<p>
+The second query restricts results to relays and bridges containing the
+string "moria" in one of a few searched fields.
+</p>
+
+<pre>https://onionoo.torproject.org/details?limit=4&search=moria</pre>
+
+<p>
+The third query switches from the short summary documents to the longer
+details documents containing, well, more details.
+</p>
+
+<pre>https://onionoo.torproject.org/details?limit=4&search=moria&fields=nickname</pre>
+
+<p>
+The fourth query adds the <code>fields</code> parameter which removes all
+fields except the specified ones from the result.
+This parameter is only implemented for details documents.
+</p>
+
+<pre>https://onionoo.torproject.org/details?limit=4&search=moria&fields=nickname…</pre>
+
+<p>
+The fifth query sorts results by relay consensus weight from largest to
+smallest.
+</p>
+
+<p>
+Obviously, this query can be made even more complex by adding more
+parameters, and in some cases this is necessary and useful.
+Please refer to the protocol specification for details.
+</p>
+
+</div> <!-- box -->
+
</body>
</html>
[View Less]
commit 9bba07afce7b1cdb92da6370c8c90f81d3b444ba
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Sun Jun 29 14:31:41 2014 +0200
Fix form actions on new bandwidth page.
When splitting the Network page into Servers and Bandwidth in 8bda126,
form actions have not been updated.
Spotted by torland. Fixes #12492.
---
website/web/WEB-INF/bandwidth.jsp | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/website/web/WEB-INF/…
[View More]bandwidth.jsp b/website/web/WEB-INF/bandwidth.jsp
index 95d1201..2882236 100644
--- a/website/web/WEB-INF/bandwidth.jsp
+++ b/website/web/WEB-INF/bandwidth.jsp
@@ -26,7 +26,7 @@ graph shows total advertised bandwidth and bandwidth history of all relays
in the network.</p>
<img src="bandwidth.png${bandwidth_url}"
width="576" height="360" alt="Relay bandwidth graph">
-<form action="network.html#bandwidth">
+<form action="bandwidth.html#bandwidth">
<div class="formrow">
<input type="hidden" name="graph" value="bandwidth">
<p>
@@ -55,7 +55,7 @@ Guard flags</a></h3>
Exit and/or Guard flags assigned by the directory authorities.</p>
<img src="bwhist-flags.png${bwhist_flags_url}"
width="576" height="360" alt="Relay bandwidth by flags graph">
-<form action="network.html#bwhist-flags">
+<form action="bandwidth.html#bwhist-flags">
<div class="formrow">
<input type="hidden" name="graph" value="bwhist-flags">
<p>
@@ -87,7 +87,7 @@ Note that these sets possibly overlap with relays having both Exit and
Guard flag.</p>
<img src="bandwidth-flags.png${bandwidth_flags_url}"
width="576" height="360" alt="Advertised bandwidth and bandwidth history by relay flags graph">
-<form action="network.html#bandwidth-flags">
+<form action="bandwidth.html#bandwidth-flags">
<div class="formrow">
<input type="hidden" name="graph" value="bandwidth-flags">
<p>
@@ -119,7 +119,7 @@ dir bytes are extrapolated from those relays who report them to reflect
the number of written and read dir bytes by all relays.</p>
<img src="dirbytes.png${dirbytes_url}"
width="576" height="360" alt="Dir bytes graph">
-<form action="network.html#dirbytes">
+<form action="bandwidth.html#dirbytes">
<div class="formrow">
<input type="hidden" name="graph" value="dirbytes">
<p>
@@ -150,7 +150,7 @@ no sums of advertised bandwidths, but bandwidths of single relays.</p>
<img src="advbwdist-perc.png${advbwdist_perc_url}"
width="576" height="360"
alt="Advertised bandwidth distribution graph">
-<form action="network.html#advbwdist-perc">
+<form action="bandwidth.html#advbwdist-perc">
<div class="formrow">
<input type="hidden" name="graph" value="advbwdist-perc">
<p>
@@ -205,7 +205,7 @@ relays in the network.</p>
<img src="advbwdist-relay.png${advbwdist_relay_url}"
width="576" height="360"
alt="Advertised bandwidth of n-th fastest relays graph">
-<form action="network.html#advbwdist-relay">
+<form action="bandwidth.html#advbwdist-relay">
<div class="formrow">
<input type="hidden" name="graph" value="advbwdist-relay">
<p>
[View Less]
commit 2956e53b99cb51e82d9acd5bbdfd943f8f360307
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Jun 29 13:15:41 2014 +0000
Update translations for tails-misc
---
cs.po | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/cs.po b/cs.po
index beb5228..69b9be2 100644
--- a/cs.po
+++ b/cs.po
@@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-08 19:08+…
[View More]0200\n"
-"PO-Revision-Date: 2014-06-28 20:51+0000\n"
+"PO-Revision-Date: 2014-06-29 13:11+0000\n"
"Last-Translator: mxsedlacek\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
@@ -160,9 +160,9 @@ msgstr[2] "Následující vybrané klíče nejsou plně důvěryhodné:"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
msgid "Do you trust this key enough to use it anyway?"
msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "Věříte tomuto klíči dostatečně na to, abyste ho přesto použili?"
+msgstr[1] "Věříte těmto klíčům dostatečně na to, abyste je přesto použili?"
+msgstr[2] "Věříte těmto klíčům dostatečně na to, abyste je přesto použili?"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
msgid "No keys selected"
@@ -172,7 +172,7 @@ msgstr "Nebyly vybrány žádné klíče"
msgid ""
"You must select a private key to sign the message, or some public keys to "
"encrypt the message, or both."
-msgstr ""
+msgstr "Musíte vybrat soukromý klíč na podepsání nebo veřejný klíč na zašifrování zprávy nebo oba."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
msgid "No keys available"
@@ -181,7 +181,7 @@ msgstr "Žádné dostupné klíče"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
msgid ""
"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
+msgstr "Potřebujete soukromý klíč na podepsání zpráv nebo veřejný klíč na zašifrování zpráv."
#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
msgid "GnuPG error"
@@ -201,7 +201,7 @@ msgstr "Výstup z GnuPG"
#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
msgid "Other messages provided by GnuPG:"
-msgstr ""
+msgstr "Další zprávy poskytnuté GnuPG:"
#: config/chroot_local-includes/usr/local/bin/iceweasel:12
msgid "Tor is not ready"
@@ -245,7 +245,7 @@ msgstr ""
msgid ""
"Build information:\n"
"%s"
-msgstr ""
+msgstr "Buildovací informace:\n%s"
#: config/chroot_local-includes/usr/local/bin/tails-about:27
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
@@ -256,7 +256,7 @@ msgstr "O Tails"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
msgid "Your additional software"
-msgstr ""
+msgstr "Vaše další programy"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
[View Less]