aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Backup latest po files from Transifex0.5.1release/0.5.1Seb Bacon2012-02-09-569/+1039
|
* Document troubleshooting email problems a bit moreSeb Bacon2012-02-09-0/+41
|
* Update all the PO files as well as the POT when running our gettext ↵Seb Bacon2012-02-08-1857/+1776
| | | | commands. Also, don't word-wrap. Includes non-word-wrapped source files.
* Update translation documentation to reflect proposed new workflowSeb Bacon2012-02-08-30/+73
|
* Backup latest po files from TransifexSeb Bacon2012-02-08-11725/+13864
|
* Remove redundant 'sr' translation (we are using 'sr@latin' instead)Seb Bacon2012-02-08-4501/+0
|
* Demote CZ translation from a feature.Seb Bacon2012-02-07-1/+2
|
* Invert instructions so they are correct!Seb Bacon2012-02-07-2/+2
|
* Mention CZ translationSeb Bacon2012-02-07-0/+1
|
* changes for version 0.5.1Seb Bacon2012-02-07-0/+28
|
* New Czech translationSeb Bacon2012-02-07-0/+4818
|
* Update translation docs to match current realitySeb Bacon2012-02-07-6/+2
|
* latest translationsSeb Bacon2012-02-07-658/+29127
|
* Update instructions:Seb Bacon2012-02-07-1/+1
| | | | | | all the Exims I've used lately already have a log_selector setting. This syntax allows us to override that. Otherwise, you get complaints from Exim.
* Attempt to ensure tests always run using the "test" environment, by:Seb Bacon2012-02-07-14/+13
| | | | | 1) Not overriding any *existing* RAILS_ENV setting in rails_env.rb 2) Always creating a rails_env.rb file
* Create config/rails_env.rb in productionRobin Houston2012-02-06-18/+41
| | | | | | | | | | Partially revert 2eac4bef8d73f47bbe579b6f787ef54b8d782d7a, creating config/rails_env.rb in production only. This should address some of the difficulties with config/rails_env.rb causing unexpected behaviour in development, whilst forcing Rails into production environment where necessary for scripts run from cron etc. Closes #418?
* Merge branch 'develop' of github.com:sebbacon/alaveteli into developRobin Houston2012-02-06-1/+1
|\
| * Merge branch 'release/0.5' of github.com:sebbacon/alaveteli into developDavid Cabo2012-02-05-1/+1
| |\
| | * Don't use absolute path when including the 'custom-routes' file, or themes ↵0.5release/0.5David Cabo2012-02-05-1/+1
| | | | | | | | | | | | can't override it. Fixes #416.
* | | Don’t index unconfirmed usersRobin Houston2012-02-06-1/+22
| | | | | | | | | | | | Closes #415.
* | | Let admin users use auto-login URLsRobin Houston2012-02-06-8/+70
|/ / | | | | | | | | | | Don't change logged-in user from an admin when visiting a auto-login URL. Closes #306.
* | Change wording of rate-limited pageRobin Houston2012-02-05-4/+14
| | | | | | | | | | Include information about what the per-day limit is, and when the user can next make a request. Fixes #412.
* | Correct link to doc folder from READMERobin Houston2012-02-05-1/+1
| | | | | | | | Fixes #413.
* | Return 404 for /feed/user/no_such_userRobin Houston2012-02-03-0/+6
| | | | | | | | Fixes #407.
* | Test should not depend on nondeterministic orderRobin Houston2012-02-03-9/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #409 seems to be another problem of the same type as #408, though with the important difference that the bug in this case is in the test suite rather than the code under test. RequestMailer sends alert emails warning of overdue requests. However it does not specify the order that these messages are sent in, but runs over the overdue requests in whatever order they are returned by a database query (that does not have an order by clause). Therefore it is not safe for the test code to assume that the alert mails will have been sent in a particular order: just as with #408 it seems that they were *usually* sent in the order assumed by the test code, but occasionally not -- which would result in sporadic test failures. Closes #409.
* | Specify attachment orderingRobin Houston2012-02-03-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So it turns out that issue #408 is a real and potentially nasty bug. The code was assuming that attachments are returned in the order they were created, which is a) not guaranteed to be the case, and b) sometimes actually not the case, hence the occasional test failures. This trivial patch corrects the issue by sorting attachments by id. The effect of this is to return them in the order they were added to the database, since all were added using the same sequence in a single database session. Fixes #408.
* | Remove trailing whitespaceRobin Houston2012-02-03-2/+2
| |
* | Eliminate trailing spaces in test namesRobin Houston2012-02-03-5/+5
| | | | | | | | Really, what was that about?
* | Better test assertionsRobin Houston2012-02-03-17/+17
| | | | | | | | | | Change the test assertions so they give more informative errors when they fail -- as they sometimes do: see issue #408.
* | Merge branch 'release/0.5' into developRobin Houston2012-02-03-176/+131
|\|
| * Make variables localRobin Houston2012-02-03-6/+6
| | | | | | | | | | | | | | The variables last_request_id and last_body_id were not used by the view, so it’s clearer to make them local variables so it’s obvious from the controller code which values influence the rendering.
| * *Do* strip country detection cookies in varnishSeb Bacon2012-02-03-1/+1
| |
| * Merge branch 'release/0.5' of github.com:sebbacon/alaveteli into release/0.5Seb Bacon2012-02-03-1/+16
| |\
| | * Merge branch 'wdtk' into release/0.5Robin Houston2012-02-03-1/+16
| | |\
| | | * Add --log optionRobin Houston2012-02-03-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | Make it possible to log the output of failed pairs, so we have some hope of determining the cause of failure in cases where it does not turn out to be reproducible.
| * | | Don't strip last_seen_* cookies. Fixes #405Seb Bacon2012-02-03-1/+1
| |/ /
| * | Fix namespace problem in i18n interpolationSeb Bacon2012-02-02-2/+2
| | |
| * | Latest POT file for 0.5 releaseSeb Bacon2012-02-02-55/+65
| | |
| * | New improved find-msgids-and-make-pot-file rake task:Seb Bacon2012-02-02-4/+21
| | | | | | | | | | | | | | | (a) it doesn't do fuzzy matches (apparently Transifex does that for you) (b) it doesn't update all the PO files too (which certainly Transifex does for you)
| * | Merge branch 'release/0.5' of github.com:sebbacon/alaveteli into release/0.5Seb Bacon2012-02-02-210/+138
| |\|
| | * Get rid of config/rails_env.rbRobin Houston2012-02-02-27/+0
| | | | | | | | | | | | | | | | | | | | | The rails-post-deploy script was creating a file config/rails_env.rb to force $RAILS_ENV to have the appropriate value. But this is a huge pain during development, and shouldn’t be necessary anyway, so let’s get rid of it.
| | * Remove trailing whitespaceRobin Houston2012-02-02-1/+1
| | |
| * | Remove WDTK-specific categories from core Alaveteli. Replace with ↵Seb Bacon2012-02-02-79/+15
| | | | | | | | | | | | categories that work with the sample data.
| * | Mention where a theme is installed.Seb Bacon2012-02-02-0/+4
| | |
* | | Merge branch 'release/0.5' into developRobin Houston2012-02-01-2148/+3001
|\ \ \ | | |/ | |/|
| * | Merge branch 'wdtk' into release/0.5Robin Houston2012-02-01-182/+137
| |\ \ | | |/ | |/| | | | | | | Conflicts: locale/app.pot
| | * TypoRobin Houston2012-02-01-1/+1
| | |
| | * issue #351 reduxRobin Houston2012-02-01-5/+45
| | | | | | | | | | | | Corrected diagnosis, test & fix for issue #351. Fixes #351.
| | * typoRobin Houston2012-02-01-1/+1
| | |
| | * Revert small unintended changeRobin Houston2012-02-01-1/+1
| | | | | | | | | | | | | | | | | | Revert a small part of 33f8ef66084bbfb61bf0b4e0f53e1da5e7cc84dc, which was not intended, so that the behaviour is unchanged if a xapian database doesn’t exist, say.