summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-24Check BDB version only if it's loadedVoker57
2010-09-24TokyoCabinet: more BDB checksGiuseppe Bilotta
2010-09-23TokyoCabinet: only warn about skipped upgrade if the old reg was foundGiuseppe Bilotta
2010-09-23TokyoCabinet: fix extension in 0.9.9 upgrade pathGiuseppe Bilotta
2010-09-23TokyoCabinet: 0.9.5-to-0.9.9 must use BDB onlyGiuseppe Bilotta
When upgrading from 0.9.5 data, write the 0.9.9-style regisitry using BDB still rather than trying to use TokyoCabinet already. This makes sure that the next step (0.9.9 to modern times) works correctly. (Moreover, the existing BDB-to-TC attempt wouldn't have worked anyway due to wrong var names. I doubt anybody will ever hit this path and notice though.)
2010-09-23translator: stricter url mappingRaine Virta
2010-09-23time: be consistent with <Continent>/<City> notationRaine Virta
2010-09-23translator: url translation through googleRaine Virta
2010-09-23time: use "time zone" consistently in repliesRaine Virta
2010-09-23lastfm: fix set user suggestion replyRaine Virta
2010-09-23time: update helpRaine Virta
2010-09-23tumblr: typo in var nameGiuseppe Bilotta
2010-09-15tumblr: support tagsGiuseppe Bilotta
Tags are specified on the IRC line by putting them between square brakets.
2010-09-15tumblr: embed Vimeo videosGiuseppe Bilotta
2010-09-15tumblr: adjust TODO listGiuseppe Bilotta
2010-09-15tumblr: support reblogging and fix HTML issuesGiuseppe Bilotta
Detect tumblr posts and use the reblogging API to post them. Also produce HTML-escaped lines for video and photo captions because the format=markdown specification doesn't seem to apply to them.
2010-09-15twitter: warn about failed authorizationGiuseppe Bilotta
Fly-by whitespace cleanups too.
2010-09-15twitter: report missing key/secret configurationGiuseppe Bilotta
Instead of failing (silently) when the OAuth process cannot complete due to a missing key/secret pair, report the issue to the user.
2010-09-10twitter: let user know when no status was foundGiuseppe Bilotta
2010-09-10time: calibrate to user's timezone when parsing time inputRaine Virta
2010-09-10time: add timestamp parser as a fallback to the default functionalityRaine Virta
2010-09-07twitter: don't fail on missing oauthGiuseppe Bilotta
When OAuth is missing, some barebone functionality in the twitter plugin is still available (namely, status reading from public timelines), so don't fail loading and just warn the users and admins about the reduced availability.
2010-09-07twitter: bugfix for invalid OAuth PIN EntryNeoLobster
There was a bug in "twitter pin" functionality where it didn't check to verify that the PIN entered by the user was valid. As a result, if the user entered an invalid PIN, the bot would not respond as to whether or not twitter account binding was successful. I replaced it with an error message if the PIN is invalid. I also changed the error message for someone who tries to enter a PIN without first using "twitter authorize" to be more clear.
2010-09-07twitter: add OAuth supportNeoLobster
Module now requires twitter.key and twitter.secret config parameters for write access and private users' statuses. Added twitter authorize, twitter deauthorize, and twitter pin features, removed twitter identify feature, as basic authentication is no longer supported.
2010-09-02rss plugin: support atom categoriesGiuseppe Bilotta
Atom categories don't have a content attribute, and obviously they don't have an empty? method. Squash them to their label rather than bombing out with error during the blank2nil processing.
2010-09-01search: google calc can be in non-h2 headersGiuseppe Bilotta
2010-08-26digg: cleanup whitespace in titleGiuseppe Bilotta
2010-08-26digg: new URLGiuseppe Bilotta
2010-08-26digg: fix message when news could not be retrievedGiuseppe Bilotta
2010-08-24hangman plugin: don't fail silently on !hangmanGiuseppe Bilotta
If the random generation site failed for any reason (eg. by returning a non-2xx page), starting a hangman game would fail silently. Catch this case and announce the failure.
2010-08-24auth: minimal help about user import/exportGiuseppe Bilotta
2010-08-18Plugin rake task: specify the path the plugin was written toGiuseppe Bilotta
2010-08-18Add a plugin skeleton generatorRaine Virta
`rake plugin`
2010-08-18Fix typoRaine Virta
2010-08-18lastfm: require spotify plugin to be enabled for spotify link infoRaine Virta
2010-08-17search: skip non-search-results linkGiuseppe Bilotta
This prevents the regexp scan to grab the Google Privacy link when no results were found.
2010-08-13translator: support both pre-1.0 and post-1.0 Mechanize namespacesGiuseppe Bilotta
2010-08-05UNO!: replace_player() returns whether it worked or notGiuseppe Bilotta
2010-08-05UNO!: don't replace with nonexisting playersGiuseppe Bilotta
2010-08-05UNO!: prevent a challenge after a pick after a W+4Giuseppe Bilotta
2010-08-03hangman: fix playing with a private messageGiuseppe Bilotta
The target was being of the wrong class (String vs Irc::Channel), busting all the hash lookups.
2010-08-03hangman: IRCify HTML in definitionsGiuseppe Bilotta
2010-07-29hangman: ensure 'hangman define' always answersGiuseppe Bilotta
2010-07-24imdb: fix plot detectionGiuseppe Bilotta
2010-07-24imdb: fix grab_info()Giuseppe Bilotta
2010-07-20geoip: massage a few messagesGiuseppe Bilotta
Solve a few gettext issue, and re-introduce the commas around the region.
2010-07-18hangman plugin: update a couple of messagesGiuseppe Bilotta
It's 'hangman define' now, and we should only use one prefix in the example command
2010-07-10factoids plugin: more helpGiuseppe Bilotta
2010-07-10UNO! plugin: clean join_timer when game startsGiuseppe Bilotta
This prevents spurious messages about the game join timer being cancelled when a game is ended by all players but one dropping out.
2010-07-05load-gettext: cope with ruby gettext 2.1.0Giuseppe Bilotta