aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* The LibYAML parser seems to have a problem with comments at the ends of lines.Robin Houston2011-07-08-5/+12
|
* Let’s just ignore anything with a .deployed extension in the config directoryRobin Houston2011-07-08-5/+1
|
* Change the config file to YAML, rather than PHP.Robin Houston2011-07-08-69/+58
|
* Include the id of the OutgoingMessage in the SMTP Message-Id, andRobin Houston2011-07-07-5/+24
| | | | | | record the full Message-Id in the event log. Closes #70.
* More admin links in request pages.Robin Houston2011-07-06-7/+14
| | | | Closes #46.
* Do not attempt to display the locale switcher if it would fail to render.Robin Houston2011-07-06-12/+12
| | | | Closes #59. (In conjunction with the removal of translate_routes))
* Ignore .DS_Store files.Robin Houston2011-07-06-0/+1
|
* Remove the translate_routes plugin, for now, because it appears toRobin Houston2011-07-06-821/+1
| | | | be the cause of several difficult bugs related to routing.
* Correct the links to the list of banned users.Robin Houston2011-07-06-2/+2
| | | | (I assume this path has changed?)
* Fix the routing for "destroy censor rule".Robin Houston2011-07-06-1/+1
|
* Note that you should run behind Apache or similar for productionSeb Bacon2011-07-05-0/+9
|
* 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.