[tor-commits] [stem/master] 'async' SyntaxError with python 3.6 and above

2018-07-11 Thread atagar
commit 6c677b6a4080d14a56d2d88ab2ddd9766cc60b9a Author: Damian Johnson Date: Wed Jul 11 09:05:32 2018 -0700 'async' SyntaxError with python 3.6 and above Python 3.6 adds a couple new keywords to the language (async and await) so we need to be careful not to use those. 99.9%

[tor-commits] [sbws/master] Release 0.6.0

2018-07-11 Thread pastly
commit e14928509b2170cc5921a46015d553baa00248ca Author: Matt Traudt Date: Wed Jul 11 10:55:27 2018 -0400 Release 0.6.0 **Important changes**: - The way users configure logging has changed. No longer are most users expected to be familiar with how to configure

[tor-commits] [sbws/master] Use fixtures

2018-07-11 Thread pastly
commit 3f6e83aaf366766543f5fccb9258c8fcd3b4990e Author: juga0 Date: Thu Jul 5 15:08:56 2018 + Use fixtures --- tests/integration/lib/test_relayprioritizer.py | 72 +- 1 file changed, 25 insertions(+), 47 deletions(-) diff --git

[tor-commits] [sbws/master] Create args, confs and other fixtures

2018-07-11 Thread pastly
commit 4f5fd8f5729ef8f734efb8a96b7adbcb585c1252 Author: juga0 Date: Thu Jul 5 14:58:32 2018 + Create args, confs and other fixtures --- tests/integration/conftest.py | 115 +- 1 file changed, 91 insertions(+), 24 deletions(-) diff --git

[tor-commits] [sbws/master] Check that args has attribute

2018-07-11 Thread pastly
commit 3e398b31e05b74097033e3cdcb640bf02a807b0c Author: juga0 Date: Thu Jul 5 15:05:18 2018 + Check that args has attribute --- sbws/core/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/core/stats.py b/sbws/core/stats.py index 881f3c7..2b497ce 100644

[tor-commits] [sbws/master] Use args, conf fixtures

2018-07-11 Thread pastly
commit 72acff552b2316e0bb97c231381b7f47b0bb1bf9 Author: juga0 Date: Thu Jul 5 15:09:23 2018 + Use args, conf fixtures --- tests/integration/core/test_scanner.py | 51 ++ 1 file changed, 8 insertions(+), 43 deletions(-) diff --git

[tor-commits] [sbws/master] Replace variables for results' fixtures

2018-07-11 Thread pastly
commit 4999ed64dfdeb693f2e72d4b5675c07d1e5a9746 Author: juga0 Date: Thu Jul 5 15:03:10 2018 + Replace variables for results' fixtures --- tests/unit/lib/test_resultdump.py | 61 +-- 1 file changed, 20 insertions(+), 41 deletions(-) diff --git

[tor-commits] [sbws/master] Use result fixtures

2018-07-11 Thread pastly
commit 6b39431b7c6b90c468e0646327eb599d18a68de8 Author: juga0 Date: Thu Jul 5 15:01:25 2018 + Use result fixtures --- tests/unit/lib/test_v3bwfile.py | 70 +++-- 1 file changed, 12 insertions(+), 58 deletions(-) diff --git

[tor-commits] [sbws/master] Bump to 0.6.1-dev

2018-07-11 Thread pastly
commit c3ce3bb537b303102eed4c923a92c659eaa8a37e Author: Matt Traudt Date: Wed Jul 11 10:57:49 2018 -0400 Bump to 0.6.1-dev --- sbws/__init__.py | 2 +- tests/unit/lib/data/v3bw/20180425_131057.v3bw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff

[tor-commits] [sbws/master] Use args, conf, results' fixtures

2018-07-11 Thread pastly
commit 184afd0912f30675436283fb5d335ef36a843048 Author: juga0 Date: Thu Jul 5 15:07:06 2018 + Use args, conf, results' fixtures --- tests/unit/core/test_stats.py | 178 +- 1 file changed, 55 insertions(+), 123 deletions(-) diff --git

[tor-commits] [sbws/master] Use args, conf fixtures

2018-07-11 Thread pastly
commit 8a3bc1afbd9d89b9211ee2f63cc1edb81a43c0db Author: juga0 Date: Thu Jul 5 15:04:22 2018 + Use args, conf fixtures --- tests/unit/core/test_cleanup.py | 93 ++--- 1 file changed, 31 insertions(+), 62 deletions(-) diff --git

[tor-commits] [sbws/master] Validate syslog level

2018-07-11 Thread pastly
commit ec0d7db70923540ffb0e1cc37417133bbdf957ba Author: juga0 Date: Tue Jul 10 08:03:16 2018 + Validate syslog level --- sbws/util/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sbws/util/config.py b/sbws/util/config.py index 585d23c..c75eef3 100644 ---

[tor-commits] [sbws/master] Replace variables for results' fixtures

2018-07-11 Thread pastly
commit f1b2d205ead05bf9a0d46bed867c6d5fe2eec2a8 Author: juga0 Date: Thu Jul 5 15:02:00 2018 + Replace variables for results' fixtures --- tests/unit/lib/test_results.py | 137 +++-- 1 file changed, 9 insertions(+), 128 deletions(-) diff --git

[tor-commits] [sbws/master] Add common conftest

2018-07-11 Thread pastly
commit 77d639d8eee6557739037140db966ed3c48ad3d3 Author: juga0 Date: Thu Jul 5 14:51:31 2018 + Add common conftest --- tests/conftest.py | 31 +++ 1 file changed, 31 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index

[tor-commits] [sbws/master] Stop calling write method from the class

2018-07-11 Thread pastly
commit 67b8850ce7d1cbc9dc72f0be674c6e687bcadd1d Author: juga0 Date: Fri Jul 6 17:04:10 2018 + Stop calling write method from the class and call it from object instance, otherwise generate would fail. write method should not be a classinstance since a Class won't have

[tor-commits] [sbws/master] Create fixtures for results, rename/cleanup

2018-07-11 Thread pastly
commit 6e8fd96f9dd4d8e3dddabb7b67f26e46b7d2 Author: juga0 Date: Thu Jul 5 14:53:30 2018 + Create fixtures for results, rename/cleanup --- tests/unit/conftest.py | 347 +++-- 1 file changed, 164 insertions(+), 183 deletions(-) diff --git

[tor-commits] [sbws/master] Add level to default conf file

2018-07-11 Thread pastly
commit d6e26d77e2c05191c773f9ea92cbfff93387fffb Author: juga0 Date: Tue Jul 10 08:02:02 2018 + Add level to default conf file --- sbws/config.default.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/sbws/config.default.ini b/sbws/config.default.ini index e08b3b9..b21ba0b 100644

[tor-commits] [sbws/master] Add possibility to log to system log

2018-07-11 Thread pastly
commit f0977a682c1c68e94ef47b7e2630b81d319056ba Author: juga0 Date: Sat Jul 7 16:26:02 2018 + Add possibility to log to system log Since sbws migth be run as a system service, it should give some information to the system log. There are no new options to configure for

[tor-commits] [sbws/master] Add unit test for init

2018-07-11 Thread pastly
commit 63e5ac172b6b66d1046474aefaf2ad1b19e63fc1 Author: juga0 Date: Thu Jul 5 19:08:07 2018 + Add unit test for init --- tests/unit/core/test_init.py | 45 1 file changed, 45 insertions(+) diff --git a/tests/unit/core/test_init.py

[tor-commits] [sbws/master] Add UML diagrams to doc

2018-07-11 Thread pastly
commit 93bb4575f558dbba7e98d8260f5a25c204eba1aa Author: juga0 Date: Thu Jul 5 19:35:47 2018 + Add UML diagrams to doc --- docs/source/diagrams.rst | 16 ++ docs/source/images/classes_sbws.svg | 379 +++ docs/source/images/packages_sbws.svg

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 9ed1fbb9426ceb707a13c6d7a5093ec6a02660fc Author: juga0 Date: Wed Jul 4 08:54:31 2018 + Replace Exception by the possible exceptions --- sbws/util/stem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Use syslog level

2018-07-11 Thread pastly
commit 0306526e2a83968d3383bf8df5c06b41c0ee71ab Author: juga0 Date: Tue Jul 10 08:03:38 2018 + Use syslog level --- sbws/util/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sbws/util/config.py b/sbws/util/config.py index c75eef3..bfd828c 100644 ---

[tor-commits] [sbws/master] Stop calculating median on empty list

2018-07-11 Thread pastly
commit fd74a4c4832847b6d77fc0a87788316fa894ffbf Author: juga0 Date: Fri Jul 6 19:49:37 2018 + Stop calculating median on empty list --- sbws/lib/v3bwfile.py | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sbws/lib/v3bwfile.py b/sbws/lib/v3bwfile.py

[tor-commits] [sbws/master] Add changelog entry about using median on empty lists

2018-07-11 Thread pastly
commit c0e6945045ab6f77d29982278e761695706ae200 Author: juga0 Date: Fri Jul 6 19:51:08 2018 + Add changelog entry about using median on empty lists --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc2b07a..e7a18b9 100644 ---

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 0bb09a896bb4fc7a2535cf08833388ea1444e3bb Author: juga0 Date: Wed Jul 4 08:58:59 2018 + Replace Exception by the possible exceptions --- sbws/util/stem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Add changelog entry about V3BWFile class method

2018-07-11 Thread pastly
commit d3bf951f5e7d30b00422bf83b8581027b0db563c Author: juga0 Date: Fri Jul 6 17:05:52 2018 + Add changelog entry about V3BWFile class method --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62f16d8..fc2b07a 100644 ---

[tor-commits] [sbws/master] Remove format from default log file

2018-07-11 Thread pastly
commit c80d4ecd9cbe9dbd09d6f5998a3e3463a1c0374e Author: juga0 Date: Tue Jul 10 07:59:08 2018 + Remove format from default log file --- sbws/config.log.default.ini | 3 --- 1 file changed, 3 deletions(-) diff --git a/sbws/config.log.default.ini b/sbws/config.log.default.ini index

[tor-commits] [sbws/master] Remove two v3bw parsing/plotting scripts

2018-07-11 Thread pastly
commit 250c7e62a2d131eef86780fdedcb0a9eb1e16dc6 Author: Matt Traudt Date: Thu Jul 5 22:09:59 2018 -0400 Remove two v3bw parsing/plotting scripts GH: ref #201 --- CHANGELOG.md | 4 ++ scripts/tools/plot-v3bw-xy.py | 156 --

[tor-commits] [sbws/master] Add format to default config file

2018-07-11 Thread pastly
commit 031a808d9d1bda37659ecde82aa4890840f09950 Author: juga0 Date: Tue Jul 10 07:59:37 2018 + Add format to default config file --- sbws/config.default.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/sbws/config.default.ini b/sbws/config.default.ini index 04bdd61..e08b3b9

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit c20f90acd6c7a10888b3dc4d48045d436ad957d8 Author: juga0 Date: Wed Jul 4 08:52:55 2018 + Replace Exception by the possible exceptions --- sbws/lib/relaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py index

[tor-commits] [sbws/master] Add changelog entry for system log

2018-07-11 Thread pastly
commit 4d01e9ae705b5491c2b36b6ccf99c7ed4def2db7 Author: juga0 Date: Sat Jul 7 16:28:28 2018 + Add changelog entry for system log --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7a18b9..8608b1a 100644 --- a/CHANGELOG.md +++

[tor-commits] [sbws/master] Add metadata entry to changelog

2018-07-11 Thread pastly
commit d67772bae4474b6a4468ab98fdc5a045fd7d5ce8 Author: juga0 Date: Fri Jul 6 16:14:59 2018 + Add metadata entry to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c35713..62f16d8 100644 --- a/CHANGELOG.md +++

[tor-commits] [sbws/master] Add package metadata

2018-07-11 Thread pastly
commit bab1f33c54c29244cb33f169acf3a047c1e1a683 Author: juga0 Date: Fri Jul 6 09:22:56 2018 + Add package metadata and add a simple first sentence about what this program does. --- README.md | 3 +++ setup.py | 29 - 2 files changed, 19

[tor-commits] [sbws/master] Include target to build diagrams

2018-07-11 Thread pastly
commit c3264df50c685da7dd0160a51efced5b8e2b5690 Author: juga0 Date: Thu Jul 5 20:23:55 2018 + Include target to build diagrams --- docs/Makefile | 13 + setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit af869ad0701064600c9f1d161c8cb6300bb023f3 Author: juga0 Date: Wed Jul 4 08:50:29 2018 + Replace Exception by the possible exceptions --- sbws/lib/circuitbuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/circuitbuilder.py

[tor-commits] [sbws/master] Remove level from default log config file

2018-07-11 Thread pastly
commit 9b9baad50e9fab6195d75ec931b063137aa82798 Author: juga0 Date: Tue Jul 10 08:01:20 2018 + Remove level from default log config file --- sbws/config.log.default.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/sbws/config.log.default.ini b/sbws/config.log.default.ini index

[tor-commits] [sbws/master] Add changelog entry for uml diagrams

2018-07-11 Thread pastly
commit 5f5911f558b57197897be790983b1dedf7f0cc86 Author: Matt Traudt Date: Thu Jul 5 20:23:08 2018 -0400 Add changelog entry for uml diagrams --- CHANGELOG.md | 5 + 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index feaff96..ecd79f2 100644 ---

[tor-commits] [sbws/master] Replace log message by checking bootstrap

2018-07-11 Thread pastly
commit 36b0cd82619adaa382ef8d2a68029064244e5137 Author: juga0 Date: Wed Jul 4 08:13:05 2018 + Replace log message by checking bootstrap --- sbws/util/stem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 218da1c5243c4c9d95eb91f44be15a155b56e848 Author: juga0 Date: Wed Jul 4 08:26:14 2018 + Replace Exception by the possible exceptions --- sbws/util/stem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 3036638b9ebe69bd36ab312b9eb5b275a39d89a8 Author: juga0 Date: Wed Jul 4 08:32:05 2018 + Replace Exception by the possible exceptions --- sbws/lib/circuitbuilder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbws/lib/circuitbuilder.py

[tor-commits] [sbws/master] Validate and use syslog format

2018-07-11 Thread pastly
commit 15e6cdb718f470762451562b43877e6d720947df Author: juga0 Date: Tue Jul 10 08:00:32 2018 + Validate and use syslog format --- sbws/util/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sbws/util/config.py b/sbws/util/config.py index 6917033..585d23c

[tor-commits] [sbws/master] Catch other possible exception

2018-07-11 Thread pastly
commit 58934941b20cdcc583e17bdafd10265d7c2a6927 Author: juga0 Date: Wed Jul 4 08:51:34 2018 + Catch other possible exception --- sbws/lib/circuitbuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/circuitbuilder.py b/sbws/lib/circuitbuilder.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 026330bcfc2b7ab256d7aeef6bf249a05d9f113c Author: juga0 Date: Wed Jul 4 08:57:48 2018 + Replace Exception by the possible exceptions --- sbws/util/stem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit e7c51a10daf6ab718e25075814b68bee975e2704 Author: juga0 Date: Wed Jul 4 08:15:58 2018 + Replace Exception by the possible exceptions --- sbws/util/stem.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit d1aebaf48960fe7e85299213ff49fc02b71521ae Author: juga0 Date: Wed Jul 4 08:54:53 2018 + Replace Exception by the possible exceptions --- sbws/util/stem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Replace log message, unify with previous log

2018-07-11 Thread pastly
commit db7ebb39df4bc34341eea870a27704c87a75db70 Author: juga0 Date: Wed Jul 4 08:24:26 2018 + Replace log message, unify with previous log --- sbws/util/stem.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 4776f2e3c1d2929ce61110c6a6d10d73c827c6fa Author: juga0 Date: Wed Jul 4 08:42:22 2018 + Replace Exception by the possible exceptions --- sbws/lib/circuitbuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/circuitbuilder.py

[tor-commits] [sbws/master] Remove not needed exception

2018-07-11 Thread pastly
commit 6064cbae49f7995971a176ad01be75a819973781 Author: juga0 Date: Wed Jul 4 08:48:26 2018 + Remove not needed exception --- sbws/lib/circuitbuilder.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sbws/lib/circuitbuilder.py b/sbws/lib/circuitbuilder.py index caca3eb..c2c9b97

[tor-commits] [sbws/master] Remove docstring about removed get_circuit_path

2018-07-11 Thread pastly
commit 46b64f7283867572e08fa55df64faf4b06d81047 Author: juga0 Date: Wed Jul 4 08:28:48 2018 + Remove docstring about removed get_circuit_path --- sbws/lib/circuitbuilder.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sbws/lib/circuitbuilder.py b/sbws/lib/circuitbuilder.py index

[tor-commits] [sbws/master] Replace log message by which stream/circuit failed

2018-07-11 Thread pastly
commit e5dca77d1c788cb97bf4beb4273be93b60481d81 Author: juga0 Date: Wed Jul 4 08:08:36 2018 + Replace log message by which stream/circuit failed --- sbws/util/stem.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Move the exception where it actually would happen

2018-07-11 Thread pastly
commit 03ba568621bcce04a4dce8156a9d26cf5090c654 Author: juga0 Date: Wed Jul 4 08:23:43 2018 + Move the exception where it actually would happen --- sbws/util/stem.py | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit a398aaffedaa4270aa16a4e25cbba71c910cb7fa Author: juga0 Date: Wed Jul 4 08:04:14 2018 + Replace Exception by the possible exceptions --- sbws/lib/relaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py index

[tor-commits] [sbws/master] Replace Exception by the possible exceptions

2018-07-11 Thread pastly
commit 3ee931dbdb43386fec8274c311e33ca94d93293f Author: juga0 Date: Wed Jul 4 08:01:56 2018 + Replace Exception by the possible exceptions --- sbws/lib/relaylist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py

[tor-commits] [sbws/master] Replace Exception by the possible exception

2018-07-11 Thread pastly
commit 8ca26840f210438d5dc049007547fabfb054b0ff Author: juga0 Date: Wed Jul 4 08:09:46 2018 + Replace Exception by the possible exception --- sbws/util/stem.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Remove unused method get_circuit_path

2018-07-11 Thread pastly
commit 3b92990816c9d8613488b3680dc5a5977555fc94 Author: juga0 Date: Wed Jul 4 07:53:46 2018 + Remove unused method get_circuit_path --- sbws/lib/circuitbuilder.py | 10 -- 1 file changed, 10 deletions(-) diff --git a/sbws/lib/circuitbuilder.py b/sbws/lib/circuitbuilder.py

[tor-commits] [sbws/master] Replace ns by desc in log message

2018-07-11 Thread pastly
commit e6fb529cbd79c56b5b6f457ed3779991b0af2cc7 Author: juga0 Date: Wed Jul 4 08:02:46 2018 + Replace ns by desc in log message --- sbws/lib/relaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py index

[tor-commits] [sbws/master] Add 2 conf opts for logging to file, but not used yet

2018-07-11 Thread pastly
commit d111af98e18a176590bffd9f80cb8c0b7ca3601b Author: Matt Traudt Date: Wed Jul 4 11:32:18 2018 -0400 Add 2 conf opts for logging to file, but not used yet --- sbws/config.default.ini | 7 +++ sbws/util/config.py | 7 ++- 2 files changed, 13 insertions(+), 1 deletion(-)

[tor-commits] [sbws/master] With --log-level, override the right thing

2018-07-11 Thread pastly
commit f52bc5b0ac6e5c5e529ed8655038be4a5dc27f97 Author: Matt Traudt Date: Wed Jul 4 11:32:50 2018 -0400 With --log-level, override the right thing --- sbws/util/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/config.py b/sbws/util/config.py index

[tor-commits] [sbws/master] Move is_controller_ok changelog entry to unreleased

2018-07-11 Thread pastly
commit 2cf477274125a18b6a6b1140b51e4e9074dbfea8 Author: juga0 Date: Tue Jul 3 17:28:39 2018 + Move is_controller_ok changelog entry to unreleased --- CHANGELOG.md | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index

[tor-commits] [sbws/master] Update comment: we do more things here now

2018-07-11 Thread pastly
commit ee720405b0f532138d0ba6a11e6eeb4097991852 Author: Matt Traudt Date: Wed Jul 4 11:33:07 2018 -0400 Update comment: we do more things here now --- sbws/util/config.py | 21 + 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/sbws/util/config.py

[tor-commits] [sbws/master] Remove comment that doesn't really apply anymore

2018-07-11 Thread pastly
commit a316ff667e0128c5ad9252d0e130141bee953129 Author: Matt Traudt Date: Wed Jul 4 11:31:41 2018 -0400 Remove comment that doesn't really apply anymore --- sbws/config.log.default.ini | 4 1 file changed, 4 deletions(-) diff --git a/sbws/config.log.default.ini

[tor-commits] [sbws/master] s/DEBUG/debug/

2018-07-11 Thread pastly
commit 9bb2913035c1c4e786a5cdd76c46a1c03191642a Author: Matt Traudt Date: Wed Jul 4 12:02:23 2018 -0400 s/DEBUG/debug/ --- tests/integration/conftest.py | 2 +- tests/integration/core/test_scanner.py | 2 +- tests/integration/lib/test_relayprioritizer.py | 2 +-

[tor-commits] [sbws/master] config.log.ini no longer exists

2018-07-11 Thread pastly
commit dca6e408fd760b294b2402665e1ffa0eaf1c5122 Author: Matt Traudt Date: Mon Jun 25 11:10:45 2018 -0400 config.log.ini no longer exists --- sbws/globals.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sbws/globals.py b/sbws/globals.py index 3ae7d60..a00cfb1

[tor-commits] [sbws/master] Change capitalization of --log-level values

2018-07-11 Thread pastly
commit 9fea5c1c8d9c6b10aece0157dbac5dacef1665dc Author: Matt Traudt Date: Mon Jun 25 11:11:02 2018 -0400 Change capitalization of --log-level values --- sbws/util/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/util/parser.py b/sbws/util/parser.py index

[tor-commits] [sbws/master] Add changelog entry for logging overhaul

2018-07-11 Thread pastly
commit ae7f5d8c65a14f6361eddb63907a697ac57e2cb2 Author: Matt Traudt Date: Wed Jul 4 12:24:33 2018 -0400 Add changelog entry for logging overhaul --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c3e372..a8acfb9 100644 ---

[tor-commits] [sbws/master] Set _ns to None when there's an exception

2018-07-11 Thread pastly
commit 5bbb344c420c2b6102e3d927b95fb8b47fa93876 Author: juga0 Date: Wed Jul 4 07:55:28 2018 + Set _ns to None when there's an exception --- sbws/lib/relaylist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py index bafd7b7..bb59a3b

[tor-commits] [sbws/master] Add changelog for is_controller_ok changes

2018-07-11 Thread pastly
commit bfea21d8e5aeffc0157bea667026bdc9d96dff35 Author: juga0 Date: Tue Jul 3 08:56:08 2018 + Add changelog for is_controller_ok changes --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8acfb9..360d76a 100644 --- a/CHANGELOG.md

[tor-commits] [sbws/master] Add test that calls sbws init

2018-07-11 Thread pastly
commit 43856fdbe3d242396b3c9f6533bd20b9d1c5ec27 Author: Matt Traudt Date: Wed Jul 4 12:33:13 2018 -0400 Add test that calls sbws init --- tests/integration/test_sbws.py | 22 ++ 1 file changed, 22 insertions(+) diff --git a/tests/integration/test_sbws.py

[tor-commits] [sbws/master] Log exception and exit when launching tor fails

2018-07-11 Thread pastly
commit 2fce34d0adc0bd3704f35339f6b75d8171920b45 Author: juga0 Date: Tue Jul 3 08:56:50 2018 + Log exception and exit when launching tor fails --- sbws/util/stem.py | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sbws/util/stem.py b/sbws/util/stem.py index

[tor-commits] [sbws/master] Remove is_controller_ok and log exceptions

2018-07-11 Thread pastly
commit b5d3fb4fc8d1d2edb9c48a7a6d9996f7b37912b9 Author: juga0 Date: Tue Jul 3 08:26:40 2018 + Remove is_controller_ok and log exceptions --- sbws/core/scanner.py| 1 - sbws/lib/circuitbuilder.py | 32 - sbws/lib/relaylist.py

[tor-commits] [sbws/master] Update docs about the config files that are read

2018-07-11 Thread pastly
commit 65978ba49b1e91c776fbb52e2d1a8d026d38ebe9 Author: Matt Traudt Date: Wed Jul 4 11:52:34 2018 -0400 Update docs about the config files that are read --- docs/source/config.rst | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/source/config.rst

[tor-commits] [sbws/master] Update example config.ini

2018-07-11 Thread pastly
commit 813c1198a7048b769f6befb9aa4baed491f7bfd6 Author: Matt Traudt Date: Wed Jul 4 11:52:18 2018 -0400 Update example config.ini --- docs/source/config.ini | 4 1 file changed, 4 deletions(-) diff --git a/docs/source/config.ini b/docs/source/config.ini index 640b3a9..1b4cf26 100644

[tor-commits] [sbws/master] This needs a valid file name or sbws can't start

2018-07-11 Thread pastly
commit 82ad8983f54630ab19cacd76ef33e76658522778 Author: Matt Traudt Date: Wed Jul 4 11:31:09 2018 -0400 This needs a valid file name or sbws can't start --- sbws/config.log.default.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/config.log.default.ini

[tor-commits] [sbws/master] Remove unused config option log_filepath

2018-07-11 Thread pastly
commit fa105e14697d30c624fe79cdd2c2d9fe2efbe139 Author: Matt Traudt Date: Mon Jun 25 11:22:41 2018 -0400 Remove unused config option log_filepath --- sbws/config.default.ini | 1 - sbws/util/config.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git

[tor-commits] [sbws/master] Remove config.log.ini

2018-07-11 Thread pastly
commit 10c7b9e0034a26c7f65948573724ea7723acf588 Author: Matt Traudt Date: Mon Jun 25 10:01:30 2018 -0400 Remove config.log.ini --- sbws/core/init.py | 3 --- sbws/sbws.py| 2 +- sbws/util/config.py | 13 - 3 files changed, 1 insertion(+), 17 deletions(-) diff

[tor-commits] [sbws/master] Remove unused import to make flake8 happy

2018-07-11 Thread pastly
commit 5254ea6d75797d63ebf046b7c31aafb36145d627 Author: Matt Traudt Date: Wed Jul 4 12:01:46 2018 -0400 Remove unused import to make flake8 happy --- sbws/core/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/core/init.py b/sbws/core/init.py index

[tor-commits] [sbws/master] Logging config overhaul ...

2018-07-11 Thread pastly
commit 7db1887f1c33e8202a796d2ca38c5242bcd27b9d Author: Matt Traudt Date: Mon Jun 25 11:18:43 2018 -0400 Logging config overhaul ... User should configure logging via the [logging] section in their config.ini. User can change the log level using --log-level, or in the

[tor-commits] [sbws/master] Add [logging] section to config and validate it

2018-07-11 Thread pastly
commit f3a487bd8fd950fb2f9e41d1a944bc87aca49e44 Author: Matt Traudt Date: Mon Jun 25 09:58:30 2018 -0400 Add [logging] section to config and validate it --- sbws/config.default.ini | 11 +++ sbws/util/config.py | 22 +- 2 files changed, 32 insertions(+), 1

[tor-commits] [sbws/master] Add funcs for validating enums

2018-07-11 Thread pastly
commit 11fac0c6581158586f26e94a1ac2dfe6e4ca140d Author: Matt Traudt Date: Mon Jun 25 09:57:49 2018 -0400 Add funcs for validating enums --- sbws/util/config.py | 21 + 1 file changed, 21 insertions(+) diff --git a/sbws/util/config.py b/sbws/util/config.py index

[tor-commits] [sbws/master] Create generator_started line only when it is known

2018-07-11 Thread pastly
commit de0a46cbf1dba509d68a429f51ac7763d4658bbc Author: juga0 Date: Mon Jun 25 16:13:25 2018 + Create generator_started line only when it is known --- sbws/lib/v3bwfile.py | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sbws/lib/v3bwfile.py

[tor-commits] [sbws/master] Add fixtures for unit tests

2018-07-11 Thread pastly
commit 89ed8ace6ef2d6e3d0dd68ee5d671fcdf96005fd Author: juga0 Date: Mon Jun 25 16:09:41 2018 + Add fixtures for unit tests --- tests/unit/conftest.py | 35 ++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/tests/unit/conftest.py

[tor-commits] [sbws/master] Move back write function to V3BWFile

2018-07-11 Thread pastly
commit 666b9d7f57f2080146c9ee14aa8ee59e9228849b Author: juga0 Date: Mon Jun 25 15:52:16 2018 + Move back write function to V3BWFile but not allowing /dev/stdout --- sbws/core/generate.py | 28 +--- sbws/lib/v3bwfile.py | 23 ++- 2

[tor-commits] [sbws/master] Add unit tests for writing v3bw file

2018-07-11 Thread pastly
commit 6912a1fb2aa42cdd221b189fb0c1bf8e44043630 Author: juga0 Date: Mon Jun 25 16:12:29 2018 + Add unit tests for writing v3bw file --- tests/unit/lib/test_v3bwfile.py | 24 1 file changed, 24 insertions(+) diff --git a/tests/unit/lib/test_v3bwfile.py

[tor-commits] [sbws/master] Add changelog entry for contributing additions

2018-07-11 Thread pastly
commit 0f82e0b41446ca6b40fe7dc78139349543f8a447 Author: Matt Traudt Date: Mon Jun 25 15:16:29 2018 -0400 Add changelog entry for contributing additions --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8bbd36..77fb16a 100644 ---

[tor-commits] [sbws/master] Require python version from 3.4.5

2018-07-11 Thread pastly
commit c21c6e9e9ba8b36280cb5469e8c1c87aa25864c0 Author: juga0 Date: Sun Jul 1 10:35:47 2018 + Require python version from 3.4.5 Since version 3.4.2 gives error on install_layout and it is not the default in stable OS distributions --- setup.py | 2 +- 1 file changed, 1

[tor-commits] [sbws/master] Measure Exit+BadExit relays as non-exits

2018-07-11 Thread pastly
commit 305e75d40b12054e23ac19eba2e4828f48bd7252 Author: Matt Traudt Date: Fri Jun 29 09:17:59 2018 -0400 Measure Exit+BadExit relays as non-exits --- CHANGELOG.md | 4 sbws/core/scanner.py | 3 ++- sbws/lib/relaylist.py | 4 3 files changed, 10 insertions(+), 1

[tor-commits] [sbws/master] Fix dumb logic error in RelayList.bad_exits(); Thanks @teor2345

2018-07-11 Thread pastly
commit d1537ac69df8d744053f8334c99f7126ad317dab Author: Matt Traudt Date: Mon Jul 2 08:39:41 2018 -0400 Fix dumb logic error in RelayList.bad_exits(); Thanks @teor2345 GH: closes #218 --- sbws/lib/relaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [sbws/master] Check that there are exits

2018-07-11 Thread pastly
commit a00625b036dbff58d2038deea91782e0ba664549 Author: juga0 Date: Mon Jun 25 10:55:53 2018 + Check that there are exits to perform usability tests. This will avoid raising IndexError when choosing an exit. --- sbws/lib/destination.py | 3 +++ 1 file changed, 3

[tor-commits] [sbws/master] Update scale-v3bw-with-budget.py to handle new v3bw format

2018-07-11 Thread pastly
commit d00fae040fb252ecb22de3516e2280bf0b554c5e Author: Matt Traudt Date: Tue Jun 26 12:31:59 2018 -0400 Update scale-v3bw-with-budget.py to handle new v3bw format --- scripts/tools/scale-v3bw-with-budget.py | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git

[tor-commits] [sbws/master] Add git/github guidelines

2018-07-11 Thread pastly
commit 1b7453a6918ea63d5aad9fffd9f5e8c5163e2f87 Author: Matt Traudt Date: Mon Jun 25 15:14:03 2018 -0400 Add git/github guidelines --- CONTRIBUTING.rst | 21 ++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index

[tor-commits] [sbws/master] Allow datetime objects

2018-07-11 Thread pastly
commit 32e37a12f0255ee5fd5028f5e0a9181f597d35d3 Author: Matt Traudt Date: Mon Jun 25 15:13:35 2018 -0400 Allow datetime objects --- CONTRIBUTING.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index bdbdd99..b72d118 100644 ---

[tor-commits] [sbws/master] Reword sentences about flake8

2018-07-11 Thread pastly
commit 7586585de8e065da70d7b4a064a4398173ccf0c4 Author: Matt Traudt Date: Mon Jun 25 15:12:52 2018 -0400 Reword sentences about flake8 --- CONTRIBUTING.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 31d0324..d286e98

[tor-commits] [sbws/master] Move test coverage paragraph

2018-07-11 Thread pastly
commit 10bfaac548e5be30ba1bea7ca5b6cef13e23e9bb Author: Matt Traudt Date: Mon Jun 25 15:13:19 2018 -0400 Move test coverage paragraph --- CONTRIBUTING.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index d286e98..bdbdd99

[tor-commits] [tor/master] Move all use cases of micro-revision.i to a single place

2018-07-11 Thread nickm
commit 5aee26ee46d8d38759713d00ce4310a3aef4a559 Author: Nick Mathewson Date: Wed Jul 11 09:52:39 2018 -0400 Move all use cases of micro-revision.i to a single place That place is git-revision.c; git-revision.c now lives in lib/log. Also fix the compilation rules so that

[tor-commits] [tor/master] Merge branch 'unify_microrevision_users'

2018-07-11 Thread nickm
commit 66074ad1e21cfe6c98a70b279ed690e357d1c41c Merge: 537092cdb 5aee26ee4 Author: Nick Mathewson Date: Wed Jul 11 10:20:39 2018 -0400 Merge branch 'unify_microrevision_users' src/app/config/config.c | 2 +- src/core/include.am | 6 --

[tor-commits] [onionoo/master] Avoid IllegalStateException when descriptors are missing.

2018-07-11 Thread karsten
commit b6e3a1d51722f02f2d391295a676c7b241090213 Author: Karsten Loesing Date: Wed Jul 11 09:35:07 2018 +0200 Avoid IllegalStateException when descriptors are missing. A missing descriptor directory has caused an IllegalStateException when we attempted to write our parse

[tor-commits] [translation/https_everywhere_completed] Update translations for https_everywhere_completed

2018-07-11 Thread translation
commit 2a3442a8d87a45c7c7540999723718b40c78910c Author: Translation commit bot Date: Wed Jul 11 12:45:39 2018 + Update translations for https_everywhere_completed --- uk/https-everywhere.dtd | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git

[tor-commits] [translation/https_everywhere] Update translations for https_everywhere

2018-07-11 Thread translation
commit b54b350b232ca88e5cf0e9be6fe526ff62c2e863 Author: Translation commit bot Date: Wed Jul 11 12:45:30 2018 + Update translations for https_everywhere --- uk/https-everywhere.dtd | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uk/https-everywhere.dtd

[tor-commits] [tor-browser-build/master] Bug 26251: Adapt macOS snowflake compilation to new toolchain

2018-07-11 Thread boklm
commit 6d3f0f5dfbec918368f3114ff96fdeb308c9d7a9 Author: Sukhbir Singh Date: Wed Jun 20 07:32:27 2018 -0400 Bug 26251: Adapt macOS snowflake compilation to new toolchain This commit adds support for building Snowflake (and its associated components, webrtc and go-webrtc) with

[tor-commits] [tor-browser-build/master] Merge remote-tracking branch 'azadi/bug-26251-rev1'

2018-07-11 Thread boklm
commit 82a0bd2d85fe53b61460a3e3b833f10a0bb01519 Merge: 6d63b2e 6d3f0f5 Author: Nicolas Vigier Date: Wed Jul 11 12:58:51 2018 +0200 Merge remote-tracking branch 'azadi/bug-26251-rev1' projects/webrtc/build| 10 - projects/webrtc/webrtc-mac.patch | 45

  1   2   >