Merge remote-tracking branch 'progval/testing' into l10n-fi

This commit is contained in:
Mika Suomalainen 2011-09-13 17:11:03 +03:00
commit e02104edf1
15 changed files with 31 additions and 16 deletions

View File

@ -107,7 +107,7 @@ class Ctcp(callbacks.PluginRegexp):
"\x01SOURCE\x01" "\x01SOURCE\x01"
self.log.info('Received CTCP SOURCE from %s', msg.prefix) self.log.info('Received CTCP SOURCE from %s', msg.prefix)
self._reply(irc, msg, self._reply(irc, msg,
'SOURCE http://www.sourceforge.net/projects/supybot/') 'SOURCE https://github.com/ProgVal/Limnoria')
def doNotice(self, irc, msg): def doNotice(self, irc, msg):
if ircmsgs.isCtcp(msg): if ircmsgs.isCtcp(msg):

View File

@ -1 +1,7 @@
Insert a description of your plugin here, with any notes, etc. about using it. This will increase or decrease karma for the item.
If "config plugins.karma.allowUnaddressedKarma" is set to true, saying "boats++" will give 1 karma to "boats", and "ships--" will subtract 1 karma from "ships".
However, if you use this in a sentence, like "That deserves a ++. Kevin++", 1 karma will be added to "That deserves a ++. Kevin", so you should only add or subtract karma in a line that doesn't have anything else in it.
If "config plugins.karma.allowUnaddressedKarma" is set to false, you must use "botname: bots++" to add or subtract karma.

View File

@ -60,11 +60,11 @@ class SqliteKarmaDB(object):
if filename in self.dbs: if filename in self.dbs:
return self.dbs[filename] return self.dbs[filename]
if os.path.exists(filename): if os.path.exists(filename):
db = sqlite3.connect(filename) db = sqlite3.connect(filename, check_same_thread=False)
db.text_factory = str db.text_factory = str
self.dbs[filename] = db self.dbs[filename] = db
return db return db
db = sqlite3.connect(filename) db = sqlite3.connect(filename, check_same_thread=False)
db.text_factory = str db.text_factory = str
self.dbs[filename] = db self.dbs[filename] = db
cursor = db.cursor() cursor = db.cursor()

View File

@ -1 +1,5 @@
Insert a description of your plugin here, with any notes, etc. about using it. Allows the use of the Luser Attitude Readjustment Tool on someone or something.
Example:
If you add 'slaps $who'.
Someone says '@lart ChanServ'.
* bot slaps ChanServ

View File

@ -1 +1,2 @@
Insert a description of your plugin here, with any notes, etc. about using it. This will set a limit on the channel based on plugins.Limiter.MaximumExcess plus the current number of users in the channel.
This is useful to prevent flood attacks.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. This plugin provides a calculator, converter, a listo of units and other useful math functions.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. Allows connecting, reconnecting, display the bot's latency between the server and other useful network-related commands.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. This allows the bot to regain access to it's configured nick.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. Will tell you how lame a nick is by the command '@nickometer [nick]'.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. Allows you to send notes to other users.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. This plugin allows you to see the plugins, which plugin a command belongs to, you can find out who the author of the command is and who contributed to it.

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. This plugin allows you to quickly download and install a plugin from other repositories.

View File

@ -1 +1,5 @@
Insert a description of your plugin here, with any notes, etc. about using it. Allows someone to praise someone or something.
Example:
If you add 'hugs $who'.
Someone says '@praise ChanServ'.
* bot hugs ChanServ

View File

@ -1 +1 @@
Insert a description of your plugin here, with any notes, etc. about using it. This plugin allows you to add quotes to the database for the channel.

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change """stick the various versioning attributes in here, so we only have to change
them once.""" them once."""
version = '0.83.4.1+limnoria (2011-09-02T20:03:44+0000)' version = '0.83.4.1+limnoria (2011-09-11T20:13:20+0200)'