summaryrefslogtreecommitdiff
path: root/status
Commit message (Collapse)AuthorAge
...
* | Implemented a part of the Advanced Query Options - bottom table.Vlad Burca2011-06-24
| |
* | Fixed a display table at the bottom of the index page and cleaned the error ↵Vlad Burca2011-06-24
| | | | | | | | messages in the nodequery page
* | Improved the templates in index and details. Fixed minor bugs with error ↵Vlad Burca2011-06-23
| | | | | | | | generations on details page.
* | Added favicon to the pages and fixed small bug with links to icons/stylesheets.Vlad Burca2011-06-23
| |
* | Small fix in the index page - opening details pages in a new tabVlad Burca2011-06-23
| |
* | Added the Column Preferences feature - user chooses which columns to be ↵Vlad Burca2011-06-23
| | | | | | | | displayed. The user's selection is saved in a cookie.
* | Cleared some redudant code from the columnpreferences. Fixed minor bug on ↵Vlad Burca2011-06-22
|/ | | | index page - sorting by countries.
* Merge /home/jfehr/torstatus-django-postgresqlVlad Burca2011-06-21
|\ | | | | | | | | Conflicts: status/settings.template
| * Merge /home/dcalderon/status/status into postgreSQLJeremy Fehr2011-06-21
| | | | | | | | | | | | | | | | | | | | Conflicts: status/settings.template status/statusapp/templates/index.html~ statusapp/models.py Not entirely sure if this works, due to database issues, but Diego could check this out later. Database should be up soon for testing.
| * Added a lot of documentation to models.py.Jeremy Fehr2011-06-21
| | | | | | | | | | | | | | | | Left to do on models.py: validate fields that are tagged with "# This field type is a guess.", a message generated by "python manage.py inspectdb". I have little idea what some fields in some classes are used for; these fields should be documented by someone who is more familiar with how the Tor metrics database works.
| * Adding documentation to models; incomplete.Jeremy Fehr2011-06-21
| |
| * Added tests for _is_ipaddress and _is_port.Jeremy Fehr2011-06-21
| |
| * Wrote the postgreSQL models.py file and added a settings template.Jeremy Fehr2011-06-21
| |
* | Created the Column Display Preferences page; added support for SESSIONs so ↵Vlad Burca2011-06-21
|/ | | | that the column display preferences could actually work. Currently the index page is not <<synced>> with the Column Display Preferences options...
* Commented out all references to pygeoip and the debug toolbar.Jeremy Fehr2011-06-20
|
* Merge branch 'master' of /home/dcalderon/status/statusJeremy Fehr2011-06-20
| | | | | | | | Conflicts: status/settings.py status/statusapp/templates/nodequery.html~ status/statusapp/templatetags/index_filters.py status/statusapp/views.py
* Abstracted port matching in views.exitnodequery to its own function.Jeremy Fehr2011-06-20
| | | | | | Readability of this method is much improved. The only significant problems that are left with this view are the costly "fingerprints" and "recent_entries" queries on lines 224 and 231.
* statusapp.views.exitnodequery now handles multiple matches.Jeremy Fehr2011-06-20
| | | | | | | | | | Documentation was added to the method as well as its helper functions. Though many improvements have been made, there are a number of things left to do: - statusapp.views.exitnodequery is missing tags. - Lines 269-296 should probably be abstracted into a function for the sake of readability. - nodequery.html should be made prettier.
* Added documentation to custom filters; rewrote details_filters.family.Jeremy Fehr2011-06-20
| | | | | | Before this commit, details_filters.family used multiple try/except blocks; this is no longer the case. The query is also now done with an annotate function instead of iterating through the queryset.
* Changed directory structure to facilitate documentation.Jeremy Fehr2011-06-20
Namely, a superdirectory containing the old status/ directory was created; README.txt was moved into this directory. Additionally, a .gitignore file was added to ignore .swp, .pyc, and .py~ files. A doc/ directory was created; it is currently empty.