aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Mention EC2 AMISeb Bacon2011-07-05-0/+6
|
* Merge branch 'master' of github.com:sebbacon/alaveteliSeb Bacon2011-07-05-96/+134
|\
| * Google Docs Viewer can now handle .pptx and .xlsx files.Robin Houston2011-07-04-50/+39
| | | | | | | | Closes #68.
| * Update boot.rb, update rails gem versionLouise Crow2011-07-04-7/+13
| |
| * Add missing line from boot.rb - set up frozen gems.Louise Crow2011-07-04-0/+3
| |
| * Hand the logfile opening over to the runner, rather than the start script.Robin Houston2011-06-29-3/+3
| |
| * Make the init script work even if /sbin is not on the PATHRobin Houston2011-06-29-3/+3
| |
| * Make sure /etc/init.d/foi-alert-tracks check does not produce extraneous ↵Robin Houston2011-06-29-1/+4
| | | | | | | | output, and that it exits with a non-zero status code in the error case (where it has restarted the daemon).
| * Remove the residual addititional # mark from when the “Every 10 minutes” ↵Robin Houston2011-06-29-1/+1
| | | | | | | | section was commented out
| * The alert-tracks script should write a log file.Robin Houston2011-06-29-32/+69
| | | | | | | | | | | | It should also be automatically restarted if it dies and the init.d script should not start the daemon if it is already running (i.e. we should use --startas instead of --exec, when invoking start-stop-daemon).
| * Give a more useful exception message if the Xapian database cannot be ↵Robin Houston2011-06-29-3/+3
| | | | | | | | opened, including the database path and actual error
| * Merge branch 'master' of git@github.com:sebbacon/alaveteliRobin Houston2011-06-29-257/+296
| |\
| * | Remove trailing whitespaceRobin Houston2011-06-24-1/+1
| | |
| * | Remove reference to non-existent fileRobin Houston2011-06-24-1/+1
| | |
* | | remove extraneous CREATE DATABASE commands in docSeb Bacon2011-06-29-3/+0
| |/ |/|
* | include necessary fixtures to get tests always to pass even when run on ↵Seb Bacon2011-06-28-2/+2
| | | | | | | | their own
* | correct references to WTDK, add troubleshooting infoSeb Bacon2011-06-28-15/+32
| |
* | make a sensible README for the projectSeb Bacon2011-06-27-0/+20
| |
* | better formatting for troubleshooting section of install fileSeb Bacon2011-06-27-10/+12
| |
* | incrementally improve docs and reformat in Markdown (because this is default ↵Seb Bacon2011-06-27-118/+118
| | | | | | | | formatting for github wiki) (forgotten commit)
* | incrementally improve docs and reformat in Markdown (because this is default ↵Seb Bacon2011-06-27-0/+0
|/ | | | formatting for github wiki)
* Change the route for the mark_event_as_clarification action toRobin Houston2011-06-24-1/+1
| | | | match the URL used on the client side.
* The error messages are clearly designed to be used *without* theRobin Houston2011-06-23-14/+21
| | | | | | field name being prepended, so change the ApplicationHelper::foi_error_messages_for method to not prepend the field name, and add the field name back to the two messages from which we previously removed it.
* Calling a class method from an instance method needs to be done explicitlyRobin Houston2011-06-22-1/+1
|
* Ah, the alert-tracks daemon needs to put itself into the background,Robin Houston2011-06-22-4/+24
| | | | and write a pid file.
* Merge branch 'master' of git@github.com:sebbacon/alaveteliRobin Houston2011-06-22-0/+0
|\
| * Add support for running alert-tracks as a daemon, rather than a cron job.Robin Houston2011-06-22-2/+2
| |
* | Add support for running alert-tracks as a daemon, rather than a cron job.Robin Houston2011-06-22-2/+60
|/
* Add tests for the external_command library, and fix a bugRobin Houston2011-06-22-4/+70
| | | | | | | (which was actually a fairly late regression, showing the benefits of formal tests vs informal testing). I believe this bug was the cause of the recent Xapian indexing errors.
* Run wvText through the external_command wrapper, tooRobin Houston2011-06-21-1/+1
|
* Fix the scripts so they work even if there is a space in the pathRobin Houston2011-06-21-12/+12
|
* Add an option to make alert_tracks run continually, rather than just ↵Robin Houston2011-06-21-2/+19
| | | | processing whichever alerts are due right now.
* Replace STDERR.puts by $stderr.puts elsewhere, which is potentially more ↵Robin Houston2011-06-21-9/+9
| | | | flexible (because STDERR is always the system standard error file descriptor, whereas $stderr can be replaced by some other ruby object to handle error output).
* Get rid of commented-out STDERR.puts messagesRobin Houston2011-06-21-28/+0
|
* Correct an operator precendence bug in request_controller, and add a test ↵Robin Houston2011-06-21-8/+37
| | | | for it.
* Improve parameter nameRobin Houston2011-06-21-3/+3
|
* - Refactor models/incoming_message.rb to get rid of the hideousRobin Houston2011-06-21-214/+195
| | | | | | | global variables and methods. Move the MIME type stuff into lib/alaveteli_file_types.rb. - Correct the spelling of the word extensions (not extentions).
* TypoRobin Houston2011-06-21-1/+1
|
* If we print an error message from an external converter program,Robin Houston2011-06-20-0/+1
| | | | indicate which program produced the message.
* When external converters are used to extract text from attachmentsRobin Houston2011-06-20-23/+170
| | | | | | | | | | | for Xapian, suppress the stderr output of these external programs unless they actually fail. It is possible this will not significantly reduce the noise from converters, because they may actually have been failing. At least with this change we’ll be able to tell which it is. Closes #52.
* Argh! Another spec that uses the :public_bodies fixture and needsRobin Houston2011-06-20-0/+1
| | | | :public_body_translations to be added for it to work correctly.
* Non-ASCII characters in views appear to upset the HTML validatorRobin Houston2011-06-17-25/+25
| | | | | | that is used by the tests. Of course this is a limitation of the validator, rather than an actual problem, so it breaks my heart to make this change — but it’s the simplest thing to do for now.
* Silence another deprecation warning, this time just by muting it (since ↵Robin Houston2011-06-17-4/+10
| | | | | | there is no obvious fix). See also https://github.com/joshmh/globalize2/issues/42
* Move the rake task from the translate_routes plugin into the (new?) standard ↵Robin Houston2011-06-17-0/+0
| | | | directory, to avoid an annoying warning message.
* Get rid of (at least some instances of) the deprecation warning that says ↵Robin Houston2011-06-17-1/+1
| | | | :session_key is deprecated
* There is no real sense in keeping the fuzzy-string markers in es/app.po, ↵Robin Houston2011-06-17-4/+0
| | | | when this is not a real locale file
* After discussing this with Seb, we have decided to keep theRobin Houston2011-06-17-35/+36
| | | | | | | | msgids equal to the English strings even in the case of minor changes, to avoid confusion when reading the code. So this commit reverts locale/en/app.po to having blank msgstr entries everywhere, and shifts the changes into the source code and hence the msgids.
* Remove a trailing spaceRobin Houston2011-06-17-1/+1
|
* Use a better header line for search results when there is onlyRobin Houston2011-06-16-235/+289
| | | | | | one result, since "1 to 1 of 1" is rather baffling. Closes #50.
* Ignore the generated file locale/model_attributes.rbRobin Houston2011-06-16-1/+2
|