summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-06-30Add missing po(t) filesGiuseppe Bilotta
2010-06-30Added a sed emulation pluginmelmothX
2010-06-30Italian translation updateGiuseppe Bilotta
2010-06-30Update PO filesGiuseppe Bilotta
2010-06-30minor correction to help authGiuseppe Bilotta
2010-06-29Move English messages from po/en_US to po/enGiuseppe Bilotta
When using gettext, the bot will look for English messages in the 'en' locale, rather than en_US. This causes some Ruby GetText version to not find the .mo files, which used to be stored as en_US instead. Since Ruby's GetText seems to be too stupid to fall back to en_US when en is not found, we move the messages to en. This is also probably more correct from a linguistic standpoint, since the messages are actually mostly British English due to the bot origin.
2010-06-28markov: strip lines before learning themGiuseppe Bilotta
This prevents a dead loop when learning lines starting with whitespace, which could otherwise happen e.g. when learning from a file.
2010-06-28Update file list in gemspecGiuseppe Bilotta
2010-06-28Version 0.9.15Giuseppe Bilotta
2010-06-28Thank rane_ for pestering us to release 0.9.15Giuseppe Bilotta
2010-06-23nickserv plugin: more liberal default identified stringGiuseppe Bilotta
2010-06-15New IRC Framework: don't raise on unknown casemapGiuseppe Bilotta
This allows us to support servers that (ab)use the CASEMAPPING to indicate the set of allowed characters for nicks (e.g. Inspire IRCd).
2010-05-22docgen: cope with README -> README.rdoc renameGiuseppe Bilotta
2010-05-21translator: fix undefined variableYaohan Chen
Fix an error in commit 027b6965f5abf5d05a95 which causes @lang_list to be undefined but used in BabelFish.
2010-05-21translator: connect to sites only when necessaryYaohan Chen
Previously the translation services in the plugin would connect to their respective websites on initialize. Now they will only do this when the first time they are used. WorldLingo still connects on initialialize in order to list the supported language pairs, but the Mechanize object is not saved here, so the connection should be closed after initialize, and only reopened if translation by WorldLingo is requested later. Previously the services are assumed to fail if they raise any Exception in initialize, and in that case the service is disabled, and its command as well as the help translate [failed] commands state this. Now this exception catch is done for any do_translate method call.
2010-05-12Survive active_support idiocyGiuseppe Bilotta
Somebody should hang the ActiveSupport developers by their balls with barbed wire. Their MissingSourceFile extension to LoadError _expects_ a second argument, breaking the usual Exception interface (instead, the smart thing to do would have been to make the second parameter optional and run the code in the from_message method if it was missing).
2010-04-16improve READMERaine Virta
2010-04-16change README's extension to rdocRaine Virta
We get cooler github readme.
2010-04-16translator: additional help for google translate auto-detect failureRaine Virta
When translate command is used without source language, "auto" as source language is assumed. It means that google translator is used and we let google figure out what the source language is. Problem is that the google translator will fail if the system that the bot is running on does not have the json gem installed. This commit addresses that problem by showing more informative error message instead of a weird "none of the translators supports auto to en translation".
2010-04-16translator: show info about failed translators in helpRaine Virta
2010-04-16reaction: handle :acts in can_add?Raine Virta
2010-04-16translator: decode html entities on google_translateRaine Virta
2010-03-29IRC: support 'CASEMAPPING=charset' from some idiotic serversGiuseppe Bilotta
2010-03-18Small httputil.rb fix. Wrong Argument port instead of pass.Matthias -apoc- Hecker
2010-03-18Small imdb plugin fix. Just changed the imdb url.Matthias -apoc- Hecker
2010-03-16seen: use corret 'where' in 'before' caseGiuseppe Bilotta
For the 'before' part of the reply, make sure we use the where from the correct Saw. Otherwise, for example, a public message preceeding a quit would show a dangling 'in ' at the end of the reply.
2010-03-16Tokyo Cabinet DB backendVoker57
2010-03-16DB backend optionVoker57
2010-03-16Moved DB stuff to registry/bdbVoker57
2010-03-14seen: Introduce framework for message and channel privacy.Robin H. Johnson
This commit introduces the ability to note that a user was doing something, optionally without disclosing what or where it was. Users themselves do not get the chance to be hidden, because you can ask the /WHOIS service if they logged on at all. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2010-03-14seen: Include the channel where the user's output was.Robin H. Johnson
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2010-03-14basics: implement a channel list status queryRobin H. Johnson
This gets the list of channels we think we are in (not what the server says we are in). Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2010-03-08Fix typo in previous patchGiuseppe Bilotta
My fault for not finding it in review
2010-03-07Implement penalty for WHO and PART based on eggdrop code.Robin H. Johnson
2010-03-07Time parsing: also parse months and yearsGiuseppe Bilotta
2010-03-07rfc2812: Fix multiple RPL_WHOISCHANNELS handlingRobin H. Johnson
The new Freenode ircd returns multiple RPL_WHOISCHANNELS lines (split based on length), and they must be merged, otherwise only the last ends up as the list of channels that the bot is in. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2010-02-25nickserv: add a missing colonRaine Virta
2010-02-25reaction: fix can_add? method logicRaine Virta
It should now follow this logic: * Allow everyone to create basic replies * Require specific permissions for cmd and ruby reactions
2010-02-25reaction: reverse permission checkRaine Virta
2010-02-13geoip: Add blogama and allow for fallback optionsDavid Gadling
2010-02-10react: restrict command reactions by defaultGiuseppe Bilotta
Anybody can create a dangerous reaction, and then trick the owner into triggering it. Credits to apoc for spotting this.
2010-01-26markov: detect addressing-by-nick in channelVoker57
and filter it in smart way
2010-01-25markov: fix delayGiuseppe Bilotta
markov.delay had the wrong default, and its use didn't have any degree of randomness in it. Set the default to 5 and use rand() again.
2010-01-25markov: unify should_talkGiuseppe Bilotta
Unify probability check for addressed and non-addressed case by passing the message as a parameter to should_talk and picking the probability accordingly.
2010-01-25markov: whitespace cleanupGiuseppe Bilotta
2010-01-26markov: removed unnecessary mutexesVoker57
These were slowing down learning process greatly and do not make sense as far as I can see: learning is always done only by single thread anyway.
2010-01-26markov: close registry correctlyVoker57
2010-01-26markov: Intern only when it makes senseVoker57
2010-01-26markov: statsVoker57
2010-01-26markov: Moved weighted pick to separate functionVoker57