summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-03-03lastfm: make replies more compatible with gettextRaine Virta
_() returns frozen strings in 1.92.0. This patch not only addresses that, but also makes some of the replies more flexible.
2009-03-03finnish translation for Utils.timeagoRaine Virta
2009-03-03config: add alias config removeRaine Virta
2009-03-03config: allow multiple values in config add and rmRaine Virta
2009-03-03markov: ensure messages are cleaned before learning and replying.Spencer Rinehart
Lines that began with or ended with spaces were breaking the learning thread. The call to clean_str was moved down into learn_line (and random_markov) so that all messages, including those being learned from files, get cleaned.
2009-03-01PO file updateGiuseppe Bilotta
2009-03-01markov: v2 storageGiuseppe Bilotta
Store chains as hashes mapping symbols to weights (and their totals)
2009-02-28markov: refactor triplet learningGiuseppe Bilotta
2009-02-28markov: refactor word pickingGiuseppe Bilotta
2009-02-28rss plugin: upper limit for watched feedsGiuseppe Bilotta
Config option to set the maximum number of items that will be announced when a feed updates. 0 means all of them, anything else clips the list to the latest ones, and also announces that some of the updates will not be listed.
2009-02-28plugins: allow plugins whitelistingRaine Virta
If the whitelist is not empty, only load the specified plugins.
2009-02-28plugins: refactor plugin scanningRaine Virta
Refactor plugin scanning for cleaner distinction between core modules and plugins.
2009-02-28Separate @dirs containing all botmodules (plugins and core modules)Raine Virta
into @core_module_dirs and @plugin_dirs
2009-02-27Italian PO updateGiuseppe Bilotta
2009-02-27hangman: fix score fetching to work for offline users.Spencer Rinehart
m.server.get_user doesn't work for offline users so use what was given instead.
2009-02-26finnish localization for basic expressionsRaine Virta
2009-02-26lastfm: add venue commandRaine Virta
2009-02-26lastfm: find events by venueRaine Virta
2009-02-26lastfm: add method for searching venuesRaine Virta
2009-02-26lastfm: show link to the user's profile in np actionRaine Virta
2009-02-26lastfm: group same tracks in recent tracksRaine Virta
2009-02-26lastfm: add missing 'sRaine Virta
2009-02-26markov: add config option for delay in learning threadRaine Virta
2009-02-26markov: organize helpRaine Virta
2009-02-26markov: add command for learning from filesRaine Virta
2009-02-26search: add command 'lucky'Raine Virta
Sometimes you just wish to google the first hit and have a clutter free output showing only the url.
2009-02-26seen: add part message if anyRaine Virta
2009-02-26seen: add double quotes around user written messagesRaine Virta
2009-02-26seen: show what user said or did before leavingRaine Virta
2009-02-26seen: cyclically store two of the users' latest actions in the registryRaine Virta
2009-02-26markov: enable gettext for more repliesRaine Virta
2009-02-25uno: Mark all uno commands replied.Spencer Rinehart
2009-02-25markov: Only work with unreplied messages.Spencer Rinehart
2009-02-25lastfm: catch all errors when connectingGiuseppe Bilotta
Since httputil.get_response() can raise exceptions, catch them into an appropriate block. Turn a missing response body into a runtime error to handle this error conditions consistently with other exceptions.
2009-02-23seen: If nick doesn't match exactly, fallback to a regexp search (#19).Spencer Rinehart
2009-02-23url: Only reply with disabled host message when url info directly requested.Spencer Rinehart
2009-02-22markov: try harder when generating stringsGiuseppe Bilotta
generate_strings() is now able to work with a single word. Additionally, when the given lookup is not found in the database, it will try lookups that start, and failing that include, the given one.
2009-02-22markov: learn vs learn_lineGiuseppe Bilotta
Make learn a higher-level function that queues one or more lines, and make learn_line the low-level database access method.
2009-02-22registry: expose set and bulk parametersGiuseppe Bilotta
expose set and bulk parameters in the each*() iterators. Some plugins might need it for faster lookup.
2009-02-22registry: spare useless I/OGiuseppe Bilotta
The each_key()/each_value() methods of the accessor relied on the each() method of the database, wasting I/O bandwidth and time by loading unnecessary data (particularly when running each_key() on databases with ridiculously enormous values such as in the markov plugin case).
2009-02-19remove whitespaceRaine Virta
2009-02-19lastfm: require num parameter for lastfm action to be an integerRaine Virta
2009-02-19lastfm: make "tracks" optional in mappings for lovedtracks and recenttracksRaine Virta
2009-02-19lastfm: fix misplaced parenthesis in outputRaine Virta
2009-02-19lastfm: update helpRaine Virta
2009-02-19googlefight pluginRaine Virta
2009-02-17translator: fix BabelfishTranslatorRaine Virta
2009-02-17translator: fix NiftyTranslatorRaine Virta
2009-02-17translator: use *_with(:attribute => value) syntax to find elementsRaine Virta
The way objects are currently searched inside Mechanize objects is deprecated in WWW::Mechanize version 0.9.0, so we switch to the preferred syntax.
2009-02-17translator: update GoogleTranslator for changes in their web interfaceRaine Virta