summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Basic .gitignoreHEADmasterDamian Johnson2013-07-05
| | | | | Adding a gitignore so git doesn't claim python bytecode and vim swap files as being untracked.
* Misuse of Controller.from_port()Damian Johnson2013-07-05
| | | | | We want to use the 'port' keyword argument here. We were instead using the port as the address.
* Invalid default timezoneDamian Johnson2013-07-05
| | | | | | | | | | | | | | | | | | | | | | | | I'm pretty sure django expects None rather than the string 'None'... atagar@odin:~/Desktop/tor/weather/weather$ python manage.py test weatherapp Traceback (most recent call last): File "manage.py", line 11, in <module> execute_manager(settings) File "/usr/lib/python2.7/dist-packages/django/core/management/__init__.py", line 438, in execute_manager utility.execute() File "/usr/lib/python2.7/dist-packages/django/core/management/__init__.py", line 379, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/usr/lib/python2.7/dist-packages/django/core/management/__init__.py", line 252, in fetch_command app_name = get_commands()[subcommand] File "/usr/lib/python2.7/dist-packages/django/core/management/__init__.py", line 101, in get_commands apps = settings.INSTALLED_APPS File "/usr/lib/python2.7/dist-packages/django/utils/functional.py", line 276, in __getattr__ self._setup() File "/usr/lib/python2.7/dist-packages/django/conf/__init__.py", line 42, in _setup self._wrapped = Settings(settings_module) File "/usr/lib/python2.7/dist-packages/django/conf/__init__.py", line 125, in __init__ raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE) ValueError: Incorrect timezone setting: None
* Dropping more unused methodsDamian Johnson2013-07-05
| | | | | Our get_stable_version_list(), has_rec_version(), and get_finger_list() are all unused.
* General cleanup of the ctlutil.py moduleDamian Johnson2013-07-05
| | | | | | | | Ok, I ignored it as long as I could. Trailing whitespace is fine. No trailing whitespace is fine. But for the love of all *please* be consistent! Fixing all the whitespace in the module. Also some simple general simplifications.
* Dropping the get_full_descriptor() methodDamian Johnson2013-07-05
| | | | So much code for something we already do...
* Dropping the get_single_descriptor() methodDamian Johnson2013-07-05
| | | | | Purging more manual descriptor parsing. On reflection this is a lot of what weather does... hopefully we'll be able to simplify this codebase quite a bit.
* Dropping the get_full_consensus() methodDamian Johnson2013-07-05
| | | | | Weather's get_full_consensus() is presently unused. If it wasn't I would've replaced its usage with the Controller's get_network_statuses() method.
* Dropping the get_single_consensus() methodDamian Johnson2013-07-05
| | | | | Tor Weather is doing some manual descriptor parsing because TorCtl didn't provide that. Stem does. Dropping the hacks.
* Dropping unused importsDamian Johnson2013-07-05
| | | | | Certainly not all of them, but just a handful I spotted while grepping around. I should run pyflakes on this later to get more.
* Dropping unused extra control socketDamian Johnson2013-07-05
| | | | | | | | | | | | | | | We were establishing two sockets to the control port: one via stem that we used, and other via the socket modle that did nothing except to connect/disconnect. Also adding some error handling to our Controller.from_port() call. Actually, the error handling for the old socket was broken. It had a line with simply "raise", which would've resulted in a TypeError... >>> raise Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: exceptions must be old-style classes or derived from BaseException, not NoneType
* Advising users to install stem rather than symlinkDamian Johnson2013-07-05
| | | | | | Stem has packages via pip, debian, fedora, and others. Users should install one of those rather than manually make symlinks (unless they truely need an unreleased feature).
* Fixed minor controller bug of CtlUtillucyd2013-07-04
|
* Modified documentation to reflect migration to stemlucyd2013-07-02
|
* Migrated weatherapp CtlUtil class to stemlucyd2013-07-02
|
* Migrated weatherapp listener to stemlucyd2013-07-02
|
* More email adjustmentsChristian Fromme2011-11-21
|
* Fix email settingsChristian Fromme2011-11-21
|
* Add a patch from Andrew to correct email sendings by WeatherChristian Fromme2011-10-30
|
* Fix syntax error in in version handlingChristian Fromme2011-06-30
|
* Use correct mailing list when mailing new Tor relay operators. Thanks, Michael.Christian Fromme2011-03-06
|
* Fix get_highest_version(), so it really returns the highest version. Thanks, ↵Christian Fromme2011-02-27
| | | | rransom.
* Change permission mode of manage.pyChristian Fromme2011-02-27
|
* Be more consistent in your operator usageChristian Fromme2011-02-26
|
* Fix typoChristian Fromme2011-02-26
|
* If 0.2.1.34 is stable, that means 0.2.1.34-dev is fine, tooChristian Fromme2011-02-26
|
* Add missing default valueChristian Fromme2011-02-26
|
* Simplify the 'send email is Tor version is out of date' feature.Christian Fromme2011-02-26
|
* Fix typoChristian Fromme2011-02-23
|
* Fix shebang.Christian Fromme2011-02-23
|
* Actually use the correct path in weather.wsgiChristian Fromme2011-02-16
|
* Add weather.wsgi file to version controlChristian Fromme2011-02-16
|
* Installation (documentation) now is more convenientChristian Fromme2011-02-16
|
* Add some patches for issues that popped up during deploymentChristian Fromme2011-02-16
|
* Start work on #2485:Christian Fromme2011-02-09
| | | | | - Fix Weather's usage of regexes to find certain lines in the descriptors - Add a note to the INSTALL file about Tor options to use with Weather
* Remove unnecessary TorCtl repository before Sebastian complains even more ;)Christian Fromme2011-02-03
|
* Email strings fix as suggested by armaChristian Fromme2011-02-03
|
* Removed the `edit preferences' link from the `already subscribed' error ↵Christian Fromme2011-01-30
| | | | page. Better not to let people guess already subscribed users and unsubscribe them
* Remove ugly border around link image in the header (Thanks, Sebastian)Christian Fromme2011-01-30
| | | | Remove 404 CSS link (Thanks, Sebastian)
* Add a hint that the weather service isn't for Bridge relaysChristian Fromme2011-01-30
|
* Added a small hint about where to find the node fingerprintChristian Fromme2011-01-30
| | | | Fixed a typo reported by randomdude on IRC. Thanks!
* Fixed T-Shirt links. Thanks, Jens Kubieziel.Christian Fromme2011-01-29
|
* - Added missing PNG files to the repositoryChristian Fromme2011-01-29
| | | | | - Changed default downtime notification period to 1 hour - Added some installation notes
* Some minor fixes.Christian Fromme2011-01-23
|
* Only say the user is subscribed already if he really is subscribed already.Christian Fromme2010-10-18
|
* Initial importChristian Fromme2010-09-29