summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* point to correct entry in I18n.BRIDGEDB_TEXTaagbsn2011-09-20
| | | | | use correct text for blocked bridges this didn't get changed when merging.
* import after logging is configuredaagbsn2011-09-20
| | | | | | | | | | | | | bridgedb.Server tries to graciously import GeoIP support, but because logging is not yet configured at import time Python creates a default handler that goes to the console and ignores further basicConfig calls See also: http://stackoverflow.com/questions/1943747/ \ python-logging-before-you-run-logging-basicconfig Our solution is to relocate the import so that configureLogging() is called first.
* update READMEaagbsn2011-09-18
|
* add email domains to captcha templateaagbsn2011-09-18
|
* 1836 - recaptcha supportaagbsn2011-09-18
| | | | | | This set of changes adds recaptcha support to bridgedb. The implementation proxies responses from clients to preserve their privacy.
* 1860 - email rate limiting supportaagbsn2011-09-18
| | | | | | This set of changes implements email rate-limiting for the EmailBasedDistributor. Abusers are warned, and then temporarily blacklisted.
* 1608 - don't give out known blocked bridgesaagbsn2011-09-18
| | | | | | This set of changes allows bridgedb to filter responses by country; if a bridge is known to be blocked in a country it can be filtered from the set of returned bridges.
* 2678 - filter bridges in same /16 from responseaagbsn2011-09-18
|
* change our hard-coded smtp serverRoger Dingledine2011-09-15
|
* Merge branch 'spec'Karsten Loesing2011-04-12
|\
| * Add two sentences from the old proposal idea.Karsten Loesing2011-04-12
| |
| * Replace MAY/MUST/SHOULD with description of what BridgeDB does.Karsten Loesing2011-04-12
| | | | | | | | | | | | The BridgeDB specification is meant as a description what the current BridgeDB code does, not what a compatible BridgeDB implementation is expected to do.
| * Respond to Nick's comments.Karsten Loesing2011-04-12
| |
| * Answer some questions in bridge-db-spec.txt; add some textNick Mathewson2011-02-14
| |
| * Finish first draft of bridge-db-spec.txt.Karsten Loesing2011-02-14
| |
| * Add first version of bridge-db-spec.txt.Karsten Loesing2011-02-13
| |
* | Fix http utf8 issue: Add a content-type header to the HTML.Christian Fromme2011-04-09
| |
* | Add new translation files for cs, es, pl_PL, sl_SI and zh_CNChristian Fromme2011-04-09
| |
* | Cherry-pick from Karsten's #2688 branchChristian Fromme2011-03-31
| |
* | Filter non-pseudo distributors early to omit disaster.Christian Fromme2011-03-31
| |
* | Fix part 2 of #2688:Christian Fromme2011-03-31
| | | | | | | | - Don't append to bucket files, overwrite existing files if necessary.
* | Fix part 1 of #2688:Christian Fromme2011-03-31
| | | | | | | | - Don't re-assign buckets when its not necessary.
* | Merge branch 'dump-rebased'Karsten Loesing2011-03-13
|\ \
| * | Dump bridge pool assignments to a file for statistics.Karsten Loesing2011-03-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this patch we dump the list of currently running bridges with information about their assigned rings, subrings, and file buckets to a local file. The idea is to publish sanitized versions of these assignment files and analyze how the assignment affects a bridge's usage. The assignment file is written on startup and after receiving a HUP signal and parsing new bridge descriptors. Note that the assignments file is not updated when bridges are dumped to file buckets; in that case the changed assignments to file buckets will be reflected in the assignments file after the next HUP. Also note that the assignment file only contains bridges that are believed to be running from parsing the last network status. As a result, bridges that are contained in file buckets, but that are not believed to be running, won't be contained in the assignment file.
* | | Add a more verbose comment on what insertBridgeAndGetRing() does now.Christian Fromme2011-03-10
|/ /
* | Fix #2557: Don't crash if a distributor gets disabled.Christian Fromme2011-03-06
| |
* | Fix german translation. Thanks, qbi!Christian Fromme2011-02-15
| |
* | Fix katmagic's commit f87a57b55aacd5119389842170e8d8329796e9b2Christian Fromme2011-02-15
| |
* | Fix rransom's commit 5faa1d3edea943f8b6b6e8f5e74ed70f18d17fa3Christian Fromme2011-02-15
| |
* | Fix #2556. Thanks to karsten for reporting.Christian Fromme2011-02-15
| |
* | Fix some issues that popped up during BridgeDB deploymentChristian Fromme2011-02-15
| | | | | | | | | | | | - Install translations to ~/ by default instead of /usr - Use ~ as prefix by default - Make sure pseudo distributors don't end up as actual ring names
* | Update .pot and .po files and instructions for updating them.Robert Ransom2011-01-01
| |
* | Internationalize the ‘e-mail requests broken’ message.Robert Ransom2010-12-11
| |
* | Identify the ‘no bridges’ message using a positive index.Robert Ransom2010-12-11
| |
* | Display a useful message if no e-mail domains are supported.Robert Ransom2010-12-11
| |
* | Make the web page list which domains bridge request emails must be from.katmagic2010-12-11
|/
* Merge remote branch 'kaner/bug_1613'Nick Mathewson2010-09-29
|\ | | | | | | | | Conflicts: bridgedb.conf
| * Adopted changes according to Nickm's review at ↵Christian Fromme2010-09-29
| | | | | | | | | | | | https://trac.torproject.org/projects/tor/ticket/1613 Also, let users request languages by URL via /?lang=foo *and* /foo (Thanks, arma)
| * Moved indexed variables to a list as Nickm suggestedChristian Fromme2010-09-27
| |
| * Towards l10n of BridgeDB: Add gettext facilities, make BridgeDB switch languagesChristian Fromme2010-08-24
| | | | | | | | when asked.
* | Add some explanation on how this bucket stuff worksChristian Fromme2010-09-27
| |
* | Incorporate Nick's commentsChristian Fromme2010-09-19
| |
* | SavefileChristian Fromme2010-09-03
| |
* | Changed and cleaned up the unallocated-bridges-to-bucket-files feature a bit,Christian Fromme2010-07-18
| | | | | | | | according to the review comments by Nick.
* | Adding the code that Nick reviewed to the bug_1612 branchChristian Fromme2010-07-04
|/
* Add a missing R.Nick Mathewson2009-10-12
|
* Handle seeing email addresses for the first timeNick Mathewson2009-10-12
|
* Add a TODO entry from armaNick Mathewson2009-10-12
|
* Fix pychecker warnings.Nick Mathewson2009-10-12
|
* Fix bug in declaration of getDB()Nick Mathewson2009-10-12
|