summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2007-09-21reaction plugin: range attribute should be an accessor, not a readerGiuseppe Bilotta
2007-09-21reaction plugin: revert [1204], having r.range == nil is an actually ↵Giuseppe Bilotta
supported scenario, and if it happens unexpectedly it's some other bug
2007-09-21* (plugins/url) url.display_link_info now also applies for error messagesDmitry Kim
2007-09-21* (plugins/reaction) fixed r.range == nil caseDmitry Kim
2007-09-20reaction plugin: captures in regexp are now available as match1, match2, etcGiuseppe Bilotta
2007-09-20reaction plugin: allow moving replies from one trigger to anotherGiuseppe Bilotta
2007-09-20reaction plugin: chance was not actually optionalGiuseppe Bilotta
2007-09-20reaction plugin: reply ranges were not being updated when adding a new replyGiuseppe Bilotta
2007-09-20reaction plugin: it is now possible to change the chance of a reaction by ↵Giuseppe Bilotta
'adding' it again
2007-09-20reaction plugin: update helpGiuseppe Bilotta
2007-09-20reaction plugin: missing \! in string-to-chance conversionGiuseppe Bilotta
2007-09-20reaction plugin: author/date/channel information are reply, not trigger ↵Giuseppe Bilotta
specific. Add command to show them
2007-09-20reaction plugin: triggers can have multiple reactions, each with a different ↵Giuseppe Bilotta
percentage If the sum of all the percentages is less than 1, then there is chance that nothing will be replied. Otherwise, the percentage is just the relative chance that each reply will be selected.
2007-09-19url plugin: bail out early when no urls were foundGiuseppe Bilotta
2007-09-19url plugin: only extract URIs for the schemes we're interested in (http[s])Giuseppe Bilotta
2007-09-19reaction plugin: only react to unreplied messagesGiuseppe Bilotta
2007-09-19reaction plugin: check for existing reaction when adding a new oneGiuseppe Bilotta
2007-09-19reaction plugin: new add syntaxGiuseppe Bilotta
2007-09-19reaction plugin: one-liner reply/reaction to in-channel messages/actions. ↵Giuseppe Bilotta
Initial commit
2007-09-18extends: String#ircify_html now has an option to obey non-breakable spaces ↵Giuseppe Bilotta
or turn them into normal spaces This option is used e.g. by the dict plugin to reduce the excessive whitespace in oxford entries.
2007-09-18dict plugin: echo oxford definitionsGiuseppe Bilotta
2007-09-18dict plugin: oxford isn't british only anymoreGiuseppe Bilotta
2007-09-18dict plugin: fix demauro word existence checkGiuseppe Bilotta
2007-09-18dict plugin: demauro can actually have spaces in the leftmost part of the entryGiuseppe Bilotta
2007-09-18HTML processing refactoring: url plugin: only add encoding and size ↵Giuseppe Bilotta
information to pages with title if url.first_par is true
2007-09-18HTML processing refactoring: Utils.get_html_info and related methods ↵Giuseppe Bilotta
factored out of the url plugin
2007-09-18HTML processing refactoring: HTML title extraction is now a String methodGiuseppe Bilotta
2007-09-17shortenurls plugin: service name can be nilGiuseppe Bilotta
Thus, convert it to sym after ||ing it with m.plugin, not before
2007-09-16* (plugins/url) url logging should not depend on url info displayDmitry Kim
2007-09-16* (plugins/url) get_title_for_url(uri_str, opts={})Dmitry Kim
2007-09-16url plugin: add 'url info' as a synonym for 'urls info', and document the ↵Giuseppe Bilotta
command
2007-09-16twitter plugin: set update source to 'rbot'Giuseppe Bilotta
Since September 17 Twitter.com supports us as an 'official' client, and we can use 'rbot' as the source for updates coming from rbot.
2007-09-15rss plugin: add support for twitter formatGiuseppe Bilotta
Twitter feeds can use the generic output format, but there is no need to 'cap' their titles because of the hardcoded length limits imposed by Twitter
2007-09-15twitter plugin: don't update status if message length is > 160 characters, ↵Giuseppe Bilotta
and give a warning when > 140 Twitter has a hard limit for message lengths at 160, and the recommended maximum length is 140 characters, so enforce the hard limit and warn when the soft limit is passed
2007-09-15twitter plugin: customize count of status updates displayed, defaulting to 1Giuseppe Bilotta
2007-09-14lastfm plugin: update to support the new HTML in author/band descriptionsGiuseppe Bilotta
2007-09-14twitter plugin: minor refactoringGiuseppe Bilotta
2007-09-14twitter plugin: whitespace cleanupGiuseppe Bilotta
2007-09-14twitter plugin: identify ourselves as the twitter clientGiuseppe Bilotta
2007-09-14twitter plugin: CGI.escape, not URI.escape (thanks hlb)Giuseppe Bilotta
2007-09-14twitter plugin: don't cache statusGiuseppe Bilotta
2007-09-14twitter plugin: display time elapsed instead of date in statusGiuseppe Bilotta
2007-09-14twitter plugin: initial commit (#145 with changes)Giuseppe Bilotta
2007-09-13shortenurls plugin: shortenurls.services_blacklist config variableGiuseppe Bilotta
2007-09-13shortenurls plugin: handle failing services by trying other services, and ↵Giuseppe Bilotta
make return values more uniform
2007-09-13more rdoc-ificationGiuseppe Bilotta
2007-09-12namespaces: move rbot-specific classes and modules from Irc::* to Irc::Bot::*Giuseppe Bilotta
2007-09-11* (plugins/fish,translator) long-running actions made threaded to avoid blockingDmitry Kim
2007-09-11+ (plugins) :thread option for plugin.map makes an action automatically threadedDmitry Kim
* (plugins/*) converted to the new threading model
2007-09-11translator plugin: catch all exceptions when trying to initialize translatorsGiuseppe Bilotta
The most significant exception that wasn't catched was LoadError, so that a failing require 'mechanize' would cause the whole plugin from failing to load, instead of just disabling the translators depending on WWW::Mechanize