aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2012-07-05Moved http api requests into separate module. Added ability to poll a URL forPatrick J Cherry
lists of IPs.
2012-07-04Added URL-ability for source lists.Patrick J Cherry
2012-07-04Moved HTTP requests into a generic http api client.Patrick J Cherry
2012-07-03Removed ability to freeze threads, since that is not used any more.Patrick J Cherry
Added checks to make sure threads are run at least every two minutes.
2012-07-03Downgraded buffer size warnings to "info".Patrick J Cherry
2012-07-02Version bumpPatrick J Cherry
2012-07-02Clear cleared_at time if raised_at time is set on alert reception.Patrick J Cherry
2012-06-08Version bumpPatrick J Cherry
2012-06-08Fixed notify_when_on_holiday/off_sick flags in configuration + added tests.Patrick J Cherry
2012-06-07Updated DuringRunner to cache calls to the calendar more.Patrick J Cherry
2012-05-09Version bumpPatrick J Cherry
2012-05-09mergePatrick J Cherry
2012-05-09DuringRunner#no_one_in now is only evaluated once per instance per people_listPatrick J Cherry
to prevent the calendar getting thrashed.
2012-05-09Remnoved destroy command and replaced with clear.Patrick J Cherry
2012-05-08Added dummy xmpp method to PeopleList to make sure that it doesn't cause thePatrick J Cherry
XMPP stuff to barf.
2012-05-08Changed destroy! to destroy everywhere to ensure Histories are deletedPatrick J Cherry
correctly. Added test.
2012-05-08Version bumpPatrick J Cherry
2012-05-08Updated notifier only to try to connect to objects that respond to xmpp.Patrick J Cherry
2012-05-08Changed Person#resolve_notification to match the signature for the people_listPatrick J Cherry
version.
2012-05-08Fixed up PeopleList#resolve_notifications to check for recursion, and onlyPatrick J Cherry
return notify clauses that refer to people.
2012-05-08Fixed time tests + standardised dead zone + daylight hours.Patrick J Cherry
2012-05-08Web interface now uses an ajax call to work out ack times, falling back toPatrick J Cherry
javascript if that takes too long. Default working hours are now 9.30 - 5.30 as per SLA.
2012-05-04Updated changelogPatrick J Cherry
2012-05-03* Person and people lists have now become interchangeable, with notificationsPatrick J Cherry
only recording the username, rather than the Person/PeopleList. This means that notifications in alert groups can use default #during clauses and #every values from people lists and persons. * Notify clauses can now take an array of persons/people_lists, and people_lists can refer to other people lists. * PeopleList names are now in the same namespace as usernames. * Tests to go with.
2012-05-03Update Time.bank_holiday? etc. to work correctly.Patrick J Cherry
Mauve::Configuration#do_parse_time now a class method, and used elsewhere to standardise ranges in the configuration file.
2012-05-03Username is now recorded in the History wherever possible.Patrick J Cherry
2012-05-03Notify anyone who has contributed to an alert's history since its last raise,Patrick J Cherry
either by acknowledging, or by being notified about it.
2012-05-02Fixed typo.Patrick J Cherry
2012-05-02Updated version.Patrick J Cherry
2012-05-02Fixed second typoPatrick J Cherry
2012-05-02Fixed typoPatrick J Cherry
2012-05-02Added configuration options for daytime_hours, dead_zone, and working_hours.Patrick J Cherry
2012-05-01Set default hostname to Socket.gethostname, and default base_url now includesPatrick J Cherry
the port, if it is not port 80
2012-05-01Fixed spelling mistakePatrick J Cherry
2012-05-01Tidied up sqlite mutex nonsense.Patrick J Cherry
2012-05-01Updated sender to try and get things into UTF8 where poss.Patrick J Cherry
2012-04-30Fixed warn on nil method in person.Patrick J Cherry
2012-04-30Non-UTF8 stuff is now stripped. Added encoding tests.Patrick J Cherry
2012-04-28Updated Person to give back sane error messages.Patrick J Cherry
2012-04-28Updated transmission cache expiry to work properly.Patrick J Cherry
2012-04-28Updated version.Patrick J Cherry
2012-04-28Added datamapper logger back in.Patrick J Cherry
2012-04-27Fixed notification when on holiday/off sickPatrick J Cherry
2012-04-27Added better time-based people list polling, and added a "calendar" method toPatrick J Cherry
the config to easily generate Procs to call for people_lists.
2012-04-27Added default configuration options for a person.Patrick J Cherry
2012-04-27Removed extraneous ppPatrick J Cherry
2012-04-27Added no_one_in test for DuringRunnerPatrick J Cherry
2012-04-27Calendar now honours ssl verify + http timeout settings.Patrick J Cherry
2012-04-25Big update.Patrick J Cherry
* Max acknowledgement time is now specified in the config * Calendar interface improved. * holiday_url no longer used -- replaced by notify_when_on_holiday! * added notify_when_off_sick! * Added ability for the calendar to be queried for a list of bank holdays. * Added ability for Time to be given a list of bank holidays to check against. * PeopleLists can now be a Proc, allowing downloading of lists * Person is no longer a struct * Moved the method_missing bit into ObjectBuilder from various sub classes. * Added tests for the calendar interface * Updated tests in other bits.
2012-04-23Persons/PeopleLists can now specify multiple notification preferences.Patrick J Cherry