summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2010-09-30Revert "markov: removed unnecessary mutexes"Giuseppe Bilotta
This reverts commit 06485aeb187dde5e81204b06c8e956e7e035c323. The mutex is necessary because of the concurrent learning and database conversion. Some other approach should be used instead (e.g. skipping the mutex if not running a conversion).
2010-09-28twitter: fix status countGiuseppe Bilotta
2010-09-27time: support POSIX timeGiuseppe Bilotta
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-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-03freshmeat plugin: use XML news if possibleGiuseppe Bilotta
Freshmeat now provides the news in XML form under /index.xml, which provides more information, and in a more computer-friendly way. Use that if possible (correctly-configured API token), fall back to RSS parsing otherwise.
2010-07-03hangmang plugin: rename 'define' to 'hangman define'Giuseppe Bilotta
2010-07-02figlet plugin: never prepend nickGiuseppe Bilotta
2010-07-02UNO! plugin: prevent double wild playGiuseppe Bilotta
This allows lazy players to specify the color after playing the wild by pressing up-arrow and adding the color to the previous line, without running the risk of playing their precious second wild.
2010-07-02UNO! plugin: be more discreet about user failuresGiuseppe Bilotta
The public announcement is now a generic "can't do that", with the specific message being notified to the user. This reduces the chance of other players guessing what the current player has from the error messages.
2010-07-02UNO! plugin: stop join_timer on end_gameGiuseppe Bilotta
This prevents a game from starting after it has ended.
2010-07-02UNO! plugin: cope with pre-game dropsGiuseppe Bilotta
The drop is still counted, to prevent people from leaving and then rejoining until they have nice cards.