forked from neubot/neubot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2967 lines (2905 loc) · 143 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Neubot 0.4.6-rc3 [2012-01-20]
* M-Lab: scripts to deploy, start and stop
* M-Lab/deploy.sh: make sure $HOST is up and running
* M-Lab/deploy.sh: two more prints to help automatic output parsing
* M-Lab/deploy.sh: stanza format to separate host logs
* M-Lab: fetch the list of hosts in realtime
* M-Lab/deploy.sh: Improve the deploy script
* M-Lab: more explanatory comments
* M-Lab: import contries information from Wikipedia
* M-Lab/servers.py: write approxymate location of nodes
* M-Lab/ip_addr.sh: get slivers IP address
* .gitignore: Ignore generated M-Lab files
* M-Lab/redir_table.py: code to build redirection table
* M-Lab/countries.dat: allow comments and convert to UTF-8
* M-Lab/deploy.sh: add help message
* M-Lab/servers.py: write output to M-Lab/servers.dat
* M-Lab/redir_table.py: always use just one server per country
* M-Lab/redir_table.py: DELETE all, don't DROP table
* M-Lab/redir_table.py: fix some SQL doofus
* www: use new NEXA logo
* Toplevel: Update to privacy policy 2.0
* neubot/www: Update to privacy policy 2.0
* lang/it.js: typos
* rendezvous/client.py: Remove useless privacy check
* table_speedtest.py: Move glue to speedtest/client.py
* database/_table_utils.py: allow to rename columns
* neubot/privacy.py: Refactor main()
* neubot/config.py: Update to privacy policy 2.0
* neubot/privacy.py: Update to privacy policy 2.0
* database: Update to privacy policy 2.0
* neubot/privacy: Add command line option to test settings
* clients servers: Update to privacy policy 2.0
* Remainder of neubot/: Update to privacy policy 2.0
* Debian: Update to privacy policy 2.0
* neubot/log.py: listify(): don't unconditionally connect to database
* Makefile: add target to run all the available regression tests
* neubot/config.py: do not suggest to sqlite3.connect()
* notifier/unix.py: stop spreading lies in comments
* regress/negotiate/smoke.sh: better usage message
* regress: Add regression tests for database version schema
* regress: Add regression test for database/migrate.py
* regress: Repair table_*_gen.py
* Merge some regression test goodies
* M-Lab: Install /etc/rc.d/rc.local not /etc/rc.local
* net/stream.py: Bump copyright
* net/stream.py: disable less relevant pylint warnings
* net/stream.py: remove unused bytes_recv bytes_sent
* net/stream.py: remove unused import os
* Sanitize certfile before passing it to wrap_socket()
* net/stream.py: get rid of two simple pylint warnings
* net/stream.py: Connector: avoid pylint warning
* net/stream.py: Listener: avoid pylint warning
* net/stream.py: directly access all configuration variables
* net/stream.py: cosmetic change
* net/stream.py: return to settings for localhost
* net/stream.py: do not duplicate code in main()
* regress: net/stream.py: repair after recent changes
* Merge maintenance patches for net/stream.py
* agent.py: net.stream does not provide default settings anymore
* regress: add regression test for http.server.rootdir setting
* server.py: more info on selected ports
* net/poller.py: zap comment
* net/poller.py: say we're gonna replace the task scheduler
* regress: add regression test for net/poller.py
* net/poller.py: simplify check_timeout() code
* log.py: delayed string interpolation
* viewer/unix.py: adjust not_running.html path when not installed
* MacOS: Update PrivacyPane to privacy policy 2.0
* MacOS: prerun.sh: cosmetic changes
* MacOS/makepkg.py: cosmetic changes
* MacOS: postflight: cosmetic changes
* MacOS: postflight: update to privacy policy 2.0
* MacOS: /tmp/neubot-can-share is no more
* Merge branch 'pu.privacy' into next
* net/stream.py: missing import
* http/message.py: compose(): support for up_to_eof body
* net/stream.py: Don't delay close() after EOF
* log.py: avoid some pylint warnings
* log.py: Introduce streaming API
* runner_lst.py: Keep track of available tests
* runner_core.py: Run a test on demand
* runner_api.py: Implements /api/runner
* runner_api.py: NOT (streaming AND overlapped tests)
* runner_clnt.py: Client for running tests via /api/runner
* api/server.py: Enable /api/runner
* rendezvous/client.py: Use the runner module
* config.py: add runner.enabled setting
* bittorrent/__init__.py: Use runner by default
* speedtest/client.py: Use runner by default
* log.py: Kill interactive
* Globally s/neubot.blupixel.net/master.neubot.org/
* rendezvous/client.py: get_next_test() may return None
* www: allow to start test manually
* runner_api: disable /api/runner when a test is running
* runner_clnt: select return value more carefully
* log.py: don't pass ACCESS logs down the stream
* www: now we support tests from the web interface
* Merge code to run tests from web user interface
* www: Italian is not an opinion
* updater/unix.py: Do not delay startup
* notifier/macos.py: notify users of bad privacy settings
* notifier: support for macos notifier
* MacOS: Add notifier PLIST
* MacOS: Include notifier PLIST in package
* MacOS: Install notifier PLIST
* www: better privacy message
* Merge simple and stupid MacOS notifier
* Release neubot/0.4.6-rc3
Neubot 0.4.5 [2011-11-24]
* MacOS: tell the login screen not to pick Neubot user
* Debian: control/postinst: empty setting implies false
* Release neubot/0.4.5
Neubot 0.4.5-rc3 [2011-11-22]
* regress: bittorrent/sched.py: add test case for sched_idx()
* regress: bittorrent/config.py: add test case for finalize_conf()
* regress: bittorrent/config.py: add test case for _random_bytes()
* scripts/debugmem: allow to monitor objects count
* scripts/debugmem: move time.sleep at the beginning of the loop
* scripts/debugmem: doofus in the while condition
* server: more flexible debugmem instrumentation
* speedtest/server.py: keep memory fragmentation under control
* regress: negotiate/smoke.sh: more aggressive testing
* Debian: control/prerm: update pkill arguments
* Debian: control/postinst: refactor
* regress: add unit test Debian/control/postinst
* regress: add unit test Debian/control/prerm
* regress: add unit test Debian/control/postrm
* regress: add Debian/reinst unit test
* regress: add Debian/inst regression test
* regress: Debian/reinst: account for notification
* Debian: control/preinst: show notification on first install
* regress: add Debian/conflict regression test
* regress: Debian/inst: fix informative message
* speedtest/wrapper.py: old clients do not set content-length
* rendezvous: more strict rules for redirection
* rendezvous/server.py: rewrite update advertisement
* Release neubot/0.4.5-rc3
Neubot 0.4.5-rc2 [2011-11-18]
* MacOS/makepkg.py: update location of manual page
* Makefile: swap find arguments to avoid warning
* scripts/cleanup: remember to cleanup gzipped manpages
* simplejson: move CHANGES.txt LICENSE.txt below doc/
* Makefile: honour $(LOCALSTATEDIR)
* regress/Makefile/install.sh: more checks
* regress/Makefile/install.sh: also check directories
* regress/Makefile/install: do not install more exec files than needed
* Makefile: rewrite uninstall in terms of install
* Makefile: zap empty line
* Debian: get dependency right
* Debian: support for -nox flavour
* Makefile: remember to compile modules on plain install
* i18n: do not use empty string to indicate default language
* Makefile: automatize uninstall
* viewer/unix.py: refactor
* negotiate: tweak the big patch after code review
* negotiate: deal with old speedtest clients (part 1)
* bittorrent: simplify and clarify maximum message length
* Release neubot/0.4.5-rc2
Neubot 0.4.5-rc1 [2011-11-15]
* debian: make sure neubot is restarted
* debian: document previous patch
* nagios-plugin-neubot: allow to specify alternative port
* negotiate: complete rewrite
* speedtest: repair /speedtest/latency
* server: memleak debugging infrastructure
* geoip_wrapper.py: die in open_or_die() only
* geoip_wrapper.py: Improve pylint score
* utils/blocks.py: kickstart by fetching the first block
* Merge branch 'pu.mlab' into next
* config: define www.lang setting
* i18n in Settings
* js/settings.js: Revert some unneeded bits in previous patch
* Merge branch 'pu.wwwlang' into next
* privacy.py: do not assume database directory exists
* privacy.py: improve pylint score
* debugmem: make absolute view the default
* setup.py: chmod +x
* setup.py: do not install nagios-plugin-neubot
* debian: reset packager version number
* UNIX: simplify the task of creating a package
* server.py: add /debug/count to debug API
* Win32: consolidate win32-only files
* icons: remove the folder and its content
* Win32/setup.py: pylintify
* Remove all references to start-neubot-daemon
* debian -> Debian
* Debian: simplify packaging
* Debian: What's the point of an empty preinst?
* BUGS: it may be confusing to mention the ML address like this
* README: sync with Debian/control/control
* simplejson: Upgrade to simplejson 2.2.1
* regress/bittorrent/config.py: maintenance
* bittorrent/config.py: maintenance
* regress/bittorrent/sched.py: maintenance
* bittorrent/sched.py: maintenance
* bittorrent: remove support for sending big messages
* bittorrent: remove support for receiving big messages
* bittorrent/stream.py: remove unused PieceMessage class
* bittorrent/stream.py: remove unused import
* bittorrent/stream.py: reduce the number of pylint warnings
* regress/database: reorganize
* regress/net/stream.py: maintenance
* regress/config.py: maintenance
* regress/log.py: maintenance
* regress/state.py: maintenance
* Release neubot/0.4.5-rc1
Neubot 0.4.4 [2011-10-25]
* nagios-plugin-neubot: fix usage string
* bin/nagios-plugin-neubot: print current queue length
* table_config.py: Python 2.5 sqlite3.Row cannot iterate
* net/stream.py: avoid exception in atclose()
* rendezvous/server.py: no more separate bittorrent negotiation
* Release neubot/0.4.4
Neubot 0.4.3 [2011-10-25]
* scripts/diffstat: helpers for release announcement
* debian: control/postinst: restart neubot if privacy is OK
* debian: cron.daily/neubot: honour grammar
* js/update.js: don't live commentedout code around
* Makefile: use SYSCONFDIR not /etc
* UNIX: always install neubot_notify and neubot_gui
* Release neubot/0.4.3
Neubot 0.4.3-rc4 [2011-10-21]
* debian: create system user and group
* debian: postinst: avoid races between neubot and sqlite3
* Release neubot/0.4.3-rc4
Neubot 0.4.3-rc3 [2011-10-20]
* debian: add sqlite3 to predepends
* debian: bye bye neubot-web-ui.desktop
* debian: rename neubot-on-gui-login.desktop neubot.desktop
* net/stream.py: garbage collect encrypt and decrypt
* Makefile: adjust debian package permissions
* debian: Better name for menu entry
* debian/neubot_notify: die when graphic session is over
* www: pleasant no-privacy informative message
* Revert "debian: use cron.hourly for debugging purpose"
* neubot_notify: tune sleep interval and log exceptions
* doc/RELEASE: tweak final part of the file
* Release neubot/0.4.3-rc3
Neubot 0.4.3-rc2 [2011-10-19]
* post-release: Undo some unwanted strings changes
* Makefile: GC release_stable _release DEB_UPDATE_URI
* rendezvous: "just works" update notification for Windows
* doc/RELEASE: misc updates
* api/server.py: close stream on /api/close
* utils/blocks.py: repair win32 bug using WWW
* http/server.py: honour the connection header
* api/server.py: escape watchdog for active streams
* privacy.py: skip checks if no privacy settings involved
* js/i18n.js: correct privacy policy display with IE
* api/server.py: add reachable objects info to /api/debug
* Release neubot/0.4.3-rc2
Neubot 0.4.3-rc1 [2011-10-19]
* Makefile: I don't need SHA256.inc anymore
* privacy.html: fixed size text area
* neubot_webkit: Maximize at startup.
* neubot_webkit: Shows a static page if neubot is not running.
* neubot_webkit: Tweak previous
* neubot_webkit: zap unused arguments
* neubot_webkit: no need to repeat window title
* neubot_webkit: note we need to be more precise
* database: unbreak migrate
* database: Zap tool_*
* table_bittorrent.py table_speedtest.py: pylintify
* table_config.py: byebye functional style
* regress: unbreak table_config.py regression
* debian: preinst: ask for privacy settings if needed
* Makefile: add preinst to debian package
* debian: control: Less lintian warnings
* debian: move 'update-rc.d remove' from prerm to postrm
* debian: mention config files
* Makefile: compress manpages
* debian: add changelog and copyright
* Makefile: do not install *.pyc and useless scripts
* Makefile: install neubot-on-gui-login.desktop w/o +x bit
* debian: /etc/init.d/neubot: mention $remote_fs
* debian: /etc/init.d/neubot: add fake force-reload
* debian: control/postinst: use invoke-rc.d
* debian: prerm: do not use /usr/bin/pkill
* debian: prerm: use invoke-rc.d
* debian: control: list python as pre-depend
* debian: preinst: show full privacy policy in webkit
* debian: preinst: do not use curses to show license text
* debian: preinst: help users stuck in less(1)
* debian: preinst: avoid some pylint warnings
* Merge branches 'pu.database', 'pu.debian' and 'pu.debian-webkit' into next
* Move utils.py -> utils/__init__.py
* Move libersion.py to utils/version.py
* http/utils.py: remove unused negotiate_mime()
* http: make prettyprintbody a method of Message
* http: move date() to Message
* http: make content_length a method of Message
* http: move parse_range to speedtest/server.py
* http: move urlsplit to http/message.py
* http/utils.py: remove unused imports
* http: move nextstate() to stream.py and justice utils.py
* http: improve pylint score
* Merge branches 'pu.http' and 'pu.utils' into next
* net: Remove measurer
* speedtest/client.py: fallback of measurer removal
* net: simpler and more robust timeout model
* net: Simplify task scheduling
* net: start using same names as asyncore
* net: more asyncore affinity
* Merge branch 'pu.net' into next
* poller.py: fallout after scheduler simplification
* stream.py: stop passing exceptions upstream
* scripts/make_lang_en.py: fallout of http rationalization
* privacy: policy v2.0
* lang/it.js: zap old privacy policy translation
* www/privacy.html: make it wellformed XML
* www/lang/en.js: regen
* Merge branch 'pu.privacy-policy' into next
* Merge branch 'next' of github.com:neubot/neubot into next
* privacy: Revert privacy policy to version 1.0
* debian: control/postinst: Most moral license choice
* debian: add etc/cron.daily/neubot
* debian: nuke python-based preinst
* Makefile: do not require superuser privs to make deb package
* debian: robust and least surprising reenable-repository algorithm
* debian: use cron.hourly for debugging purpose
* debian: Privacy strategy that works (TM)
* privacy: Bye bye special provisions
* win32: open browser if privacy not OK
* www: use \r\n in privacy policy to please IE
* privacy.py: use system default database path
* neubot_notify: fallback to browser
* neubot.nsi: install with user privilege level
* Repair favicon
* Garbage collect on_gui_login and infobox
* js/privacy.js: explicit var declaration
* MacOS: update privacy policy
* Garbage collect unused show_database command
* Ditch statusicon
* compat.py: garbage collect unused code
* Forgot to rename utils/version.py unit test
* Garbage collect unused arcfour
* utils/blocks.py: new data generator
* Unbreak release script
* Release neubot/0.4.3-rc1
Neubot 0.4.2 [2011-09-19]
* Release neubot/0.4.2
Neubot 0.4.2-rc6 [2011-09-18]
* scripts/sed_inplace: clarify help message
* scripts/sed_inplace: quote the pattern
* updater/unix.py: remove duplicate informational message
* updater/unix.py: saner interval between two updates checks
* MacOS: don't log on stderr in SH scripts
* Release neubot/0.4.2-rc6
Neubot 0.4.2-rc5 [2011-09-16]
* updater/unix.py: more robustness in the main loop
* updater/unix.py: note we should install a signal handler
* updater/unix.py: mark a possibly-redundant piece of code
* updater/unix.py: debug-friendlier syslog output
* updater/unix.py: more frequent check for updates
* updater/unix.py: syslog cmdline to verify signature
* doc/updater/unix.txt: more documentation
* Merge branch 'pu.updater' into next
* Release neubot/0.4.2-rc5
Neubot 0.4.2-rc4 [2011-09-16]
* MacOS: Remove Neubot-pkg
* MacOS: add neubot-pkg
* MacOS doc: s/Neubot-VERSION.pkg/neubot-VERSION.pkg/
* Merge branch 'pu.MacOS' into next
* database: fix regression with old clients
* database/_table_utils.py: allow null entries
* table_bittorrent.py table_speedtest.py: pylintify
* neubot.nsi: make sure we delete all from autostart
* neubot.nsi: Typo
* neubot.nsi: Want to run as admin
* Merge branch 'pu.win32-installer' into next
* Release neubot/0.4.2-rc4
Neubot 0.4.2-rc3 [2011-09-15]
* doc: updater/unix.py: no need to use current version number
* doc: MacOS/installer.txt: mention the ``latest`` file
* MacOS: makepkg.py: also create the ``latest`` file
* Merge branches 'pu.MacOS' and 'pu.doc' into next
* scripts/fixperms: fix permissions
* neubot.nsi: do not autostart neubot
* Makefile: force UID=0 and GID=0 when installing
* Release neubot/0.4.2-rc3
Neubot 0.4.2-rc2 [2011-09-10]
* MacOS/makepkg.py: be python2.6-compatible
* www: privacy.js: don't mix 1/0 and true/false in settings.html
* www: settings.html: clarify that some settings require restart
* doc: MacOS/installer.txt: update
* Merge branches 'pu.MacOS' and 'pu.www' into next
* updater/unix.py: reverse time comparison to give updates a chance
* updater/unix.py: must chdir before chroot
* updater/unix.py: follow 'setuid demystified' guidelines
* updater/unix.py: naive chroot for MacOSX
* updater/unix.py: make sure chroot directory starts with /
* updater/unix.py: be more precise with respect to copyright
* updater/unix.py: unbreak downloading sha256 sum
* updater/unix.py: unbreak switching to new version
* updater/unix.py: more readable error messages
* updater/unix.py: improve pylint score
* updater/unix.py: disable chroot for 0.4.2
* Merge branch 'pu.updater' into next
* Release neubot/0.4.2-rc2
Neubot 0.4.2-rc1 [2011-09-07]
* log.py: table_log may be None
* system/unix.py: fix openlog() and syslog() flags
* system/unix.py: remove possible incompatibility with pypy
* system/unix.py: rewrite BackgroundLogger to improve pylint score
* system/unix.py: factor lookup_user_info
* system/unix.py: improve pylint score
* system/unix.py: python3 compatible
* system/unix.py: prettify redirection to /dev/null
* Merge branch 'pu.system' into next
* libversion: print numeric representation for arbitrary versions
* scripts/release: also update numeric representation
* del neubot/updater.py
* doc/neubot.1.txt: document neubot/main/__init__.py
* man/man1/neubot.1: regen
* Revert "main/__init__.py: remove fork nonsense"
* main/__init__.py: make the code more readable
* main/__init__.py: X11.app avail by default on 10.5+
* main/__init__.py: don't open browser when running as root
* main/__init__.py: don't blindly override address and port
* MacOS: Neubot-app: update neubot.icns icons
* MacOS: basedir-skel/start.sh: spelling
* MacOS: versiondir-skel/start.sh: start updater/unix.py
* MacOS: versiondir-skel/prerun.sh: add _neubot_update user
* MacOS/icon.txt: update procedure to create icon
* doc/MacOS/installer.txt: use 0.4.0 as example version
* MacOS: Neubot-pkg: Info.plist: omit major and minor
* debian: prerm: attempt to kill 'neubot on_gui_login'
* system: clean-up log backend a bit
* system/unix.py: sys.exit -> os._exit for robustness
* updater/unix.py: Updater daemon for Unix
* doc/updater/unix.txt: Updater documentation
* Merge branches 'pu.MacOS', 'pu.debian', 'pu.doc', 'pu.main', 'pu.system' and 'pu.updater' into next
* bittorrent/config.py: Raise watchdog timeout
* database/_table_utils.py: more robust INSERT INTO autogen
* database/_table_utils.py: deploy docstrings
* database/_table_utils.py: longer variable names
* database/table_speedtest.py: use _table_utils
* regress: Add speedtest/__init__.py
* Move neubot/speedtest/gen.py -> regress/speedtest/_gen.py
* database/table_speedtest.py: move unit-test to regress
* database/table_config.py: move unit test to regress
* database/table_config.py: add docstrings
* database: add os_name and neubot_version columns
* log.py: Break circular dependencies
* net/stream.py: undo 262144 recvbuf optimization
* privacy: redirect to /privacy.html if no privacy settings
* privacy.py: explicitly utils.intify() privacy settings
* privacy.py: more checks
* Merge branches 'pu.bittorrent', 'pu.database', 'pu.log', 'pu.stream' and 'pu.privacy' into next
* database/migrate.py: use logging.info not LOG.info
* poller.py notify.py: We MUST stringify compact_traceback()
* speedtest/client.py: it was not intended to create tuples
* database: Use sys.platform not os.name
* doc/updater/unix.txt: use previous version to avoid autobump
* main/__init__.py: ditch creeping featurism
* main/browser.py: bump pylint score to 10.0
* main/browser.py: python3 ready
* main/browser.py: deploy a couple of flush()
* doc: update neubot.1.txt
* man: regen
* Merge branches 'pu.main' and 'pu.doc' into next
* server.py: enable sapi w/o SSL
* negotiate.py: export the queue length
* speedtest/session.py: export the queue length
* server.py: export queue length via sapi
* server.py: Put sapi into global http server
* nagios-plugin-neubot: adapt to work with /sapi/state
* nagios-plugin-neubot: add --hostname flag
* nagios-plugin-neubot: sync docstring with reality
* Merge branch 'pu.nagios' into next
* speedtest/client.py: use just one connection
* patches: rm not needed fix-manpage.patch
* updater/unix.py: add code to verify signature
* doc: MacOS/installer.txt: document public key
* MacOS: versiondir-skel: add public key
* log.py: ditch debugging leftover
* log.py: sched maintenance when we use database only
* Merge branches 'pu.updater' and 'pu.log' into next
* Merge branch 'pu.speedtest' into next
* MacOS/makepkg.py: generate autoupdate, checksum and signature
* doc: MacOS/installer.txt: sync with autoupdates
* debian: add neubot_webkit command
* debian: control/prerm: tear down neubot_webkit
* Makefile: add neubot_webkit to debian package
* applications: add neubot.desktop
* Makefile: add neubot.desktop to NEEDEDIT list
* main/__init__.py: settle after merge
* Merge branches 'pu.debian' and 'pu.updater' into next
* Release neubot/0.4.2-rc1
Neubot 0.4.1 [2011-08-30]
* MacOS: uninstall.sh: remove all Neubot receipts
* MacOS: uninstall.sh: add comment
* Merge branch 'pu.MacOS' into next
* Release neubot/0.4.1
Neubot 0.4.1-rc4 [2011-08-29]
* MacOS: move icon-creation tutorial to the proper place
* doc/RELEASE: mention the Mac package too
* icons: Update neubot.ico
* icons/Makefile: forgot to mention neubot-48x48.png
* icons: update neubot-48x48.png
* www: update header web
* www: Translate title and subtitle into italian
* Merge branches 'pu.MacOS', 'pu.icons' and 'pu.www' into next
* doc/RELEASE: sections
* doc/RELEASE: prepend .exe to the command
* MacOS: preflight: Make sure /tmp/neubot-can-share exists
* Merge branches 'pu.doc' and 'pu.MacOS' into next
* neubot: make sure there are no executable files inside
* MacOS: makepkg.py must be run by root. Period.
* MacOS: document makepkg.py algorithm
* simplejson: Upgrade to 2.1.6
* MacOS: makepkg.py: more precise unhandled exceptions handling
* MacOS: makepkg.py must not write bytecode
* MacOS: makepkg.py: really ensure root:wheel ownership
* Merge branches 'pu.MacOS', 'pu.doc', 'pu.icons', 'pu.simplejson' and 'pu.www' into next
* Release neubot/0.4.1-rc4
Neubot 0.4.1-rc3 [2011-08-28]
* bittorrent: don't need to exit(0)
* bittorrent: drop privileges after listen()
* rendezvous/server.py: export initialization via run()
* negotiate: export run() and propagate changes
* neubot: Add server.py to start server-side components
* Merge branch 'server-command' into next
* main/module.py: re-raise SystemExit
* speedtest: server: Remove old test server code
* speedtest: server: We don't need StringIO anymore
* server.py: Expose simple server-side API on port 9775
* bin: Add Nagios plugin for Neubot
* Merge branch 'nagios-plugin' into next
* nagios-plugin-neubot: critical in nagios is 2 not 1
* nagios-plugin-neubot: set default socket timeout of 3 seconds
* nagios-plugin-neubot: arm 10-seconds watchdog timeout
* nagios-plugin-neubot: avoid NameError in error path
* nagios-plugin-neubot: wrap very long line
* nagios-plugin-neubot: basic command line options parsing
* nagios-plugin-neubot: manual-compliant strings
* nagios-plugin-neubot: Unknown is 3 not -1
* Merge branch 'nagios-plugin-fixes' into next
* nagios-plugin-neubot: drop root privileges automatically
* nagios-plugin-neubot: comment about the expected scenario
* nagios-plugin-neubot: refuse to run as root
* net/stream.py: Treat zero bytes send() as EOF
* http/server.py: allow to flag some ports as SSL ports
* net/CA.py: Generate self-signed certificate under posix
* server.py: Export server-api using SSL
* nagios-plugin-neubot: Fetch server state via SSL
* Merge branch 'nagios-plugin-ssl-and-paranoia' into next
* negotiate.py: clarify upstream modules' duties
* regress: net/stream.py: repair after s/foo/handle_foo/
* icons: Improved Neubot icon, step 1
* New version management strategy
* main/module.py: add two missing modules to py2exe list of modules
* Locate neubot directory using os.path.dirname and abspath
* Create package installer for MacOSX
* main/module.py: disable some modules on Win32
* main/__init__.py: sys.exit(0) at the end is implied
* main/__init__.py: remove fork nonsense
* server.py: disable server sapi
* rendezvous/server.py: explain recent change
* libversion.py: print version number when invoked directly
* Release neubot/0.4.1-rc3
Neubot 0.4.1-rc2 [2011-07-26]
* infobox.py: better testing code
* on_gui_login.py: Annoy the user if we cannot collect
* privacy: add version number
* scripts/make_lang_en.js: Autogenerate www/lang/en.js
* www/privacy.html: make sure it's valid XML
* www/footer.html: make i18n using class and not id
* www/footer.html: always use same value of i18n_resultof
* lang: Add autogenerated en.js to repository
* Merge branch 'autogen-en.js' into next
* debian: add and use postrm to honour apt-get purge
* scripts/new_version.py: bugfix regex for 0.4.1-rc1
* scripts/release: zap code to auto-guess next version number
* Release neubot/0.4.1-rc2
Neubot 0.4.1-rc1 [2011-07-21]
* Don't offer -rc updates to stable clients
* Offer to download from the frontend not the backend
* doc/RELEASE: remove redundant sentence
* doc/RELEASE: typo
* Handle exceptions in calling module's MAIN()
* api/server.py: make the dispatch table and his callbacks protected
* on_gui_login: raise timeout
* debian: zap also /var/neubot on purge
* release: unbreak regex for matching version
* Release neubot/0.4.1-rc1
Neubot 0.4 [2011-07-20]
* rendezvous/server.py: stop redirecting bittorrent on a test server
* Globally replace next(foo) with foo.next()
* Release neubot/0.4
Neubot 0.4-rc6 [2011-07-20]
* doc: add windows instructions to RELEASE
* manpage: add BUGS section
* manpage: s/help/COMMAND/ in in-place example
* manpage: Claudio also contributed patches
* Release neubot/0.4-rc6
Neubot 0.4-rc5 [2011-07-19]
* neubot.list: No more testing repository
* Makefile: adjust debian packaging number
* privacy.py: keep the oops but switch to LOG.debug
* bittorrent/config.py: use port 8080 not 80
* doc: document testing procedure before release
* Release neubot/0.4-rc5
Neubot 0.4-rc4 [2011-07-19]
* on_gui_login.py: Loop just once to avoid problems with Windows
* i18n.js: correct bug, let i18n work on IE
* js: delay i18n.translate()
* Release neubot/0.4-rc4
Neubot 0.4-rc3 [2011-07-18]
* Make it simpler to debug 404 Not Found events
* Makefile: quick-dirty fix to adjust permissions
* Makefile: initial support for uninstalling neubot
* log.py: don't defer commit for too much time
* Release neubot/0.4-rc3
Neubot 0.4-rc2 [2011-07-18]
* setup.py: fix indent
* main/module.py: align
* main/module.py: ref all modules so py2exe includes them
* on_gui_login.py: spam the user immediately
* on_gui_login.py: give daemon time to breathe first
* system: add win32 code to kill a process
* on_gui_login: add -k switch to kill on_gui_login process
* neubot.nsi: kill on_gui_login process on uninstall
* neubot.nsi: change on_gui_login start-menu name
* neubot.nsi: run also on_gui_login after install
* Merge branch 'win32-fix-updates' into next
* scripts/release: Initial support for -rc releases
* Release neubot/0.4-rc2
Neubot 0.4-rc1 [2011-07-16]
* manpage: simplify how-to-dump example
* database/main.py: allow to query database path
* Release neubot/0.3.7
* speedtest/client.py: remeber position-in-queue history
* Let /api/debug return position-in-queue history too
* Merge branch 'measure-queue' into next
* speedtest/client.py: print uri we're connecting to
* rendezvous: add geoip_wrapper.py
* database: add table_geoloc.py
* database: Bump minor version because of geoloc table
* rendezvous/server.py: implement geo-aware rendezvous
* geo-rendezvous: Update configuration properties
* Merge branch 'geo-rendezvous' into next
* rendezvous/server.py: transparent geo-aware rendezvous
* api/client.py: hide some properties
* api/server.py: remove duplicate properties
* http/client.py: hide some properties
* http/server.py: hide some properties
* net/CA.py: hide some properties
* net/stream.py: hide most properties
* rendezvous/client.py: hide some properties
* rendezvous/server.py: hide some properties
* speedtest/client.py: hide some properties
* speedtest/negotiate.py: hide some properties
* speedtest/server.py: hide some properties
* move agent.py properties to config.py
* Merge branch 'remove-noise-from-config' into next
* Makefile: deb: s/install/$(INSTALL)/g
* Makefile: debian: fix postinst prerm permissions
* Makefile: -m755 is already the default for install
* Merge branch 'improve-Makefile-quality' into next
* net/stream.py: duplicate http/stream.py outgoing functionality
* http/stream.py: properly set/reset self.writing
* http/stream.py: note we can use net/stream.py instead of outgoing
* bittorrent/stream.py: allow PIECE block to be a file-like
* bittorrent/stream.py: simplify code in the recv path
* bittorrent/stream.py: stub for handling jumbo messages
* Merge branch 'improve-bittorrent-core' into next
* bittorrent/stream.py: prefer exceptions to LOG.error()+close()
* bittorrent: Add and use new BitTorrent peer model
* bittorrent: cache partial PIECE params in stream.py
* bittorrent: ConnectingPeer + ListeningPeer = PeerSimple
* bittorrent/stream.py: bitfield is optional
* Merge branch 'add-bittorrent-peer' into next
* bittorrent/peer.py: save peer bitfield
* bittorrent: process HAVE messages
* stream.py: add LOG.debug() for HAVE and BITFIELD
* bittorrent/stream.py: check incoming CANCEL for correctness
* bittorrent/stream.py: deploy more checks on the index
* bittorrent/stream.py: deploy some more whitespaces
* bittorrent/peer.py: allow to override default random infohash
* bittorrent/peer.py: do not choke/unchoke automatically
* bittorrent/stream.py: pack/unpack unsigned integers
* Merge branch 'bittorrent-misc-enhancements' into next
* bitfield.py: Add code to get a randomly filled bitfield
* bittorrent/peer.py: use randomly filled bitfields
* bittorrent/sched.py: simple algorithms for scheduling requests
* bittorrent/peer.py: join initialization and configuration
* bittorrent/peer.py: extend peer to perform a simple test
* Merge branch 'extend-bittorrent-peer' into next
* bittorrent/main.py: sync with new bittorrent/peer.py
* Link /api/bittorrent to ServerAPI.api_speedtest()
* bittorrent/peer.py: start measuring after the first PIECE
* bittorrent/sched.py: ensure we always fill the pipeline
* bittorrent/sched.py: force npieces npiecespipe to integer
* bittorrent/peer.py: get rid of some self.conf gymnastics
* Create a new Peer object for each peer that connects
* bittorrent/peer.py: invoke complete() at the end of the test
* bittorrent/peer.py: print more informative messages
* bittorrent/main.py: stop when the test is complete
* bittorrent/peer.py: sync channel adaptation with speedtest
* Merge branch 'test-bittorrent-at-home' into next
* Revert "bittorrent/sched.py: ensure we always fill the pipeline"
* bittorrent/peer.py: Wait for the other end to complete the test
* bittorrent/main.py: never activate the measurer
* bittorrent/main.py: allow to hint with estimated download speed
* bittorrent/peer.py: raise if inflight becomes negative
* bittorrent/sched.py: do not schedule 0-7 in sequential order
* bittorrent/stream.py: LOG.debug on incoming KEEPALIVEs
* Pass time-to-connect to connection_made()
* net/dns.py: Cache recent DNS lookups
* http/client.py: print and save time-to-connect
* bittorrent/peer.py: print and save time-to-connect
* Merge branch 'better-time-to-connect-measurement' into next
* bittorrent: pass also rtt to complete()
* bittorrent/peer.py: implement seeder-only peer
* bittorrent: handle each connection with a new Peer (sub)class
* bittorrent/peer.py: make BitTorrent test a bit longer
* bittorrent/bitfield.py cosmetics
* Move bittorrent/main.py content to bittorrent/__init__.py
* bittorrent/__init__.py: we don't use MEASURER
* bittorrent/__init__.py: pull expected duration from peer.py
* bittorrent/__init__.py: factor common code
* bittorrent/bitfield.py: paranoid division by two
* bittorrent/peer.py: clarify comment
* bittorrent/peer.py: always update target_bytes
* bittorrent/peer.py: refine and document the stopping rule
* bittorrent/peer.py: clarify interested/not interested
* bittorrent/sched.py: clarify comment
* bittorrent/stream.py: remove unused import
* bittorrent/stream.py: protocol_name -> PROTOCOL_NAME
* bittorrent/stream.py: cosmetic changes
* Merge branch 'bittorrent-maint' into next
* speedtest/client.py: comment on some to-be-done refinements
* Revert "net/dns.py: Cache recent DNS lookups"
* debian: Update GPG pubkey expire time
* debian: Update GPG pubkey expire time
* debian: Bump packaging number
* Makefile: deb: s/install/$(INSTALL)/g
* Makefile: debian: fix postinst prerm permissions
* debian: Bump packaging number
* Makefile: -m755 is already the default for install
* bittorrent/stream.py: redef message types for testability
* bittorrent/stream.py: RuntimeError on jumbo protocol violation
* bittorrent/stream.py: space nit
* bittorrent: s/tostring/__str__/ for bitfield
* bittorrent/stream.py: check handshake for correctness
* bittorrent: send bitfield in peer.py not in stream.py
* bittorrent/stream.py: simplify type and length checking
* bittorrent: create bitfield at the peer level
* bittorrent/stream.py: bugfix message reassembler
* bittorrent/stream.py: allow to specify small-message threshold
* bittorrent/stream.py: sync _send_message and send_piece
* Add regress test for bittorrent/stream.py
* Merge branch 'bittorrent-regress' into next
* net/stream.py: some cosmetic changes
* net/stream.py: move self.conf near self.parent self.poller
* net/stream.py: {recvb,send}locked -> {recv,send}_blocked
* net/stream.py: get rid of _do_close()
* net/stream.py: s/isclosed/close_complete/
* net/stream.py: put all state variables together
* net/stream.py: s/kickoffssl/recv_ssl_needs_kickoff/
* net/stream.py: Use True/False for booleans
* net/stream.py: implement close-pending
* Merge branch 'stream-maint' into next
* net/stream.py: parent is not optional anymore
* net/stream.py: distinguish between closed() and shutdown()
* net/stream.py: protection against multiple closed()
* net/stream.py: recv_maxlen was over-engineering
* net/stream.py: guard vs. close_complete
* net/stream.py: cosmetic change
* net/stream.py: simplify and boolize recv_ssl_needs_kickoff
* net/stream.py: reorganize and document global variables
* net/stream.py: more clear read_send_queue()
* regress: add net/stream.py set of tests
* Merge branch 'stream-unittest' into next
* net/poller.py: allow to pass arguments to sched()
* www: Added language support
* www: allow to i18n textareas too
* www: i18n now use GetText idea
* www: make the page visible when i18n is not available
* Merge branch 'web-gui-i18n' into next
* net/stream.py: print error if connect doesn't fail immediately
* Update BitTorrent test to avoid simultaneous downloading
* bittorrent: sync peer.py duration with speedtest
* doc: add documentation for bittorrent/peer
* Merge branch 'bittorrent-peer-enhancements' into next
* net/dns.py: Cache recent DNS lookups
* http/client.py: convert to debug() an annoying LOG.info()
* net/dns.py: Make sure we also consider the port number
* Merge branch 'cache-dns' into next
* Under debian always use /usr/bin/python
* http/stream.py: I don't like docstrings
* http/stream.py: let net/stream.py manage outgoing queue
* http/stream.py: raise RuntimeError on errors
* http/stream.py: send_message(): allow to customize smallmessage
* Merge branch 'http-layer-cleanups' into next
* bittorrent/stream.py: update to new net/stream.py code
* Note we should move close() from protocols to generic stream
* http/messages.py: RFC2616-compliant host header support
* http/client.py: Save host header value
* When needed, pass compose() host header information
* Merge branch 'fix-host-header' into next
* http/message.py: responses are not supposed to have host header
* Distinguish between periodic and nonperiodic notifications
* notify.py: Do not declare global event names
* Teach versioncmp() about release candidate numbers
* Make sure versioncmp() refuses to process negative numbers
* database/tool_collate.py: Collate various databases
* database/tool_goodset.py: extract goodset from database
* database/tool_slice.py: split database in monthly chunks
* database/tool_users.py: Count per-month active users
* database/tool_buckets.py: make stats out of a database
* Merge branch 'database-analysis' into next
* database/tool_collate.py: Honour -o command line option
* database/tool_buckets.py: robustness vs negative values
* database/tool_buckets.py: convert buckets number to real value
* database/tool_buckets.py: write percentage not absolute value
* utils.py: raise RuntimeError even if rc number is greater than sys.maxint
* database/tool_buckets.py: minor fixes
* database/tool_privacy.py: enforce privacy settings
* database/tool_goodset.py: for god's sake don't commit every row
* tool_gooset.py tool_privacy.py: Never override timestamp
* database/tool_privacy.py: we can do better when we don't have perms
* Merge branch 'database-goodies' into next
* speedtest.html: internationalize page
* www: added bittorrent support
* database/_table_utils.py: helpers to build queries
* database: always use sqlite.Row as row factory
* bittorrent/_gen.py: generate random bittorrent results
* database/table_bittorrent.py: manage table bittorrent
* Bump database version number because we've added bittorrent table
* api/server.py: Really implement /api/bittorrent
* database/table_speedtest.py: remember we should update it
* speedtest/gen.py: remember we should rename it
* api/server.py: minor cleanup in api_speedtest()
* Adapt existing BitTorrent code to test client and server
* Prototype of BitTorrent test's client
* Prototype of BitTorrent test's server
* Merge branch 'bittorrent-negotiation' into next
* database: Sort in descending order
* www: insert connect time in bittorrent results
* bittorrent.js speedtest.js: Better label for X axis
* www: Less emphasis on the test name
* main.py: Wait for more before timing out
* main.py: Die if we cannot reach the GUI
* main.py: response.read() before connection.close()
* http/server.py: Do not violate RFC 2616 Sect. 14.30
* http/message.py: Capitalize HTTP header names
* Live up to the promise that header names are case insensitive
* Merge branch 'improve-openbrowser' into next
* net/poller.py: Safer timeout algorithm
* net: Implement watchdog mechanism
* http/server.py: add connection_ready()
* net/stream.py: add __repr__() to listener and connector
* net/stream.py: register and then run hooks at close()
* privacy.py: add collect_allowed()
* tool_privacy.py: Make can_share count what is supposed to
* regress/bittorrent/stream.py: bells and whistles
* regress/net/streams.py: bells and whistles
* regress/blocks.py: unbreak test
* Move regress/speedtest.py to a more convenient place
* Merge branch 'regress-love' into next
* http/server.py: bells and whistles
* http/server.py: export HTTP_SERVER
* http/server.py: By default daemonize
* Merge branch 'http-server-love' into next
* http: allow for outgoing body to be a basestring
* http: allow to rewrite request uri at will
* streams: globally replace shutdown() with close()
* log: allow to attach custom message to exception
* doc: temporarily remove outdated documentation
* http/utils.py: add content_length() function
* net/stream.py: make atclose() robust wrt duplicate entries
* http/utils.py: make prettyprintbody string-safe
* http/server.py: send 500 if child.got_request_headers() fails
* negotiate.py: Add new negotiation code
* bittorrent: Use new negotiation code
* www/privacy.html: corrected & -> &
* www/privacy.html: add i18n classes
* http/utils.py: unbreak prettyprintbody()
* http/server.py: Better content-type and content-encoding
* i18n: retain the i18n_ prefix for HTML classes
* settings.html: add italian translation
* database/tool_slice.py: make a slice over a true range
* database/tool_buckets.py: count the number of tests per user
* net/poller.py: check_timeout(): deploy some blank lines
* net/poller.py: cosmetic: move break_loop() up
* net/poller.py: Merge update_tasks() and dispatch_events()
* net/poller.py: _loop_once(): remove redundant else
* net/poller.py: Now ready to loop forever
* Merge branch 'poller-prepare-to-loop-forever' into next
* rendezvous/client.py: fix the unknown-test-type case
* rendezvous/client.py: choose a test at random
* rendezvous: support for BitTorrent test
* Merge branch 'bittorrent-rendezvous' into next
* net/poller.py: of course tasks are AHEAD in time
* privacy.html: italian translation
* lang/it.js: give credit to Claudio
* www/bittorrent.html: minor language fix
* bittorrent.html: translate to italian
* Merge branch 'finalize-i18n' into next
* database/table_config.py: Work-around Py 2.5 sqlite.Row
* main.py: use bittorrent.client to implement bittorrent
* bittorrent/server.py: Fix the port number
* bittorrent/client.py: make sure we connect to port 6881
* speedtest/client.py: anticipate decision of test to perform
* bittorrent/client.py: normalize response's queue_pos parsing
* regress/negotiate.py: minor changes
* bittorrent/client.py: do not collect if test fails
* bittorrent/client.py: cosmetic change
* js/state.js: cosmetic changes
* js/state.js: avoid name clashes with reserved words
* state.py: The dumber, the better
* state.py: add unit test, remove ad-hoc test code
* state.py: leading underscore before private attributes
* Let BitTorrent update() the STATE
* Clear results before test in a robust way
* Merge branch 'bittorrent-api-state' into next
* bittorrent/estimate.py: download and upload speed estimate
* negotiate.py: always process request bodies
* bittorrent: pass adjusted target_bytes to complete()
* bittorrent: adapt target_bytes to channel conditions
* Merge branch 'bittorrent-estimate' into next
* bittorrent: log PEER_ID during handshake
* bittorrent/stream.py: remove redundant conditional
* bittorrent/server.py: always use the same PEER_ID
* bittorrent: use same infohash for listener and connector
* Merge branch 'more-compliant-bt' into next
* rendezvous/client.py: alternate speedtest and bittorrent tests
* net/poller.py: ongoing work
* bittorrent: unsanely raise watchdog timeout
* bittorrent: Instrument peer to measure time-to-upload
* Merge branch 'bittorrent-upload-takes-too-much-time' into next
* bittorrent/peer.py: oops, unbreak previous
* Modularize main.py and make boot.py a submodule of main
* Add new show_database command
* log.py: reindent InteractiveLogger
* log.py: Make oops() and exception() more similar
* log.py: Move test code into regress
* Merge branch 'log-misc' into next
* bittorrent/client.py: remember to handle connection_failed
* notify: print names of events we publish
* net/poller.py: Take care of select() returning EINTR.
* net: more readable function names
* _table_utils.py: Verify strings more strictly
* database: By default select ascending
* Store log records into the database
* regress: add test for neubot/config.py
* bittorrent/peer.py: Cosmetic changes
* bittorrent/peer.py: stub for connection_failed
* bittorrent/client.py: Deal with BitTorrent connect() failure
* Merge branch 'bittorrent-fixes' into next
* bittorrent/negotiate.py: add explanatory comment
* bittorrent/stream.py: add explanatory comment
* bittorrent/stream.py: Use tuple not vector
* bittorrent/stream.py: document global objects
* bittorrent/stream.py: the project starts with uppercase
* bittorrent/stream.py: Tweak comment
* bittorrent/stream.py: Sync comment with reality
* bittorrent/stream.py: More robustness in the reader
* bittorrent/stream.py: document the reader a bit more
* bittorrent: consistently use 'big' in place of 'jumbo'
* bittorrent: improve function names
* bittorrent/peer.py: add explanatory comment
* bittorrent/peer.py: Use tuple, not vector, for states
* bittorrent/client.py: add explanatory comment
* Merge branch 'bittorrent-cosmetics' into next
* log.js: Fetch severity properly when deciding color
* utils.js: zap newline at end of file
* bittorrent: improve scheduling and channel adaptation
* bittorrent/peer.py: rewrite logging