GLolol
0c081b8a3b
Network: add 'networks --all' option
2014-12-18 17:33:57 -08:00
GLolol
ef9fbc4a07
Network: s/caller/callee/
2014-12-09 22:40:29 -08:00
James Lu
2628dc03c4
Network: More minor improvements to 'whois' output
2014-12-09 18:38:21 -08:00
James Lu
2b324203e7
Network: changes to the 'whois' output formatting
2014-12-09 18:32:31 -08:00
Mikaela Suomalainen
8fbf5193e6
Network: make whois reply more clear
...
Mention that it's possible that whoised user has channel list hiding
umode. This umode is usually +i, but I say "channel list hiding umode",
because +i is not always the umode which hides user list.
For example Quakenet always forces mode +i to every user and it cannot
be unset, but channel list is still visible. Some other IRCds can have
different modes to hide channel lists than +i.
2014-12-08 08:21:29 +02:00
James Lu
a755238ef4
Add/improve help for Debug + plugins from F-W:
...
- Debug
- Factoids
- Format
- Games
- Google
- Herald
- Internet
- Karma
- Lart
- Math
- Misc
- MoobotFactoids
- Network
- News
- NickAuth
- Nickometer
- Note
- Owner
- Protector
- Quote
- QuoteGrabs
- Relay
- Scheduler
- Seen
- ShrinkUrl
- Status
- String
- Time
- Todo
- Topic
- URL
- Unix
- User
- Utilities
- Web
2014-11-30 12:07:41 -08:00
James Lu
b88ff26942
Network: don't allow '.' in network names ( Closes #874 )
...
Network: fix typo
2014-11-26 21:50:24 -08:00
Valentin Lorentz
66d0a7acdd
Network: Fix @whois to work with multiple 319 messages per whois.
2014-05-20 10:49:23 +00:00
Iota Spencer
b8fa70172a
Fix coding style and remove unneeded command
2014-02-06 06:19:02 +00:00
Iota Spencer
974dc00d29
Fix cmdall / Add the wrap()
2014-02-06 06:19:02 +00:00
Ken Spencer
051b0e8994
Add command to do specific command on all networks
...
Helps with Announce and other commands that may be need to go multiple networks.
2014-02-06 06:19:02 +00:00
Valentin Lorentz
2fda69b4d6
Continue accelerating the 2to3 step (remove fix_raise).
2014-01-20 15:43:55 +01:00
Valentin Lorentz
20ff06f3dd
Network: Fix @whois for Python 3.
2013-07-12 17:21:35 +00:00
Valentin Lorentz
9e1cf727e3
Network: Add @whowas. Closes GH-227.
2013-05-18 14:46:58 +02:00
Valentin Lorentz
3dba9088b0
Merge remote-tracking branch 'supybot/master' into testing
...
Conflicts:
INSTALL
plugins/ChannelLogger/README.txt
plugins/ChannelStats/README.txt
plugins/Google/plugin.py
plugins/Google/test.py
plugins/Plugin/test.py
plugins/Web/test.py
setup.py
src/callbacks.py
src/ircdb.py
src/irclib.py
src/utils/str.py
test/test_irclib.py
2013-01-01 21:11:24 +01:00
James McCoy
82ecf36fcd
Update my name/contact information
...
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
2012-09-01 10:16:48 -04:00
Digital-Lemon
de89a9bf90
Added @network uptime
2012-06-30 02:35:40 +02:00
Valentin Lorentz
69fe2e0562
Network: Keep the trailing # to channels, even if the user is voiced/halfoped/oped/whatever on it.
2011-10-29 19:43:53 +02:00
Valentin Lorentz
1cc1ec93a5
Internationalize Config, Network, Plugin, and User
2010-10-16 13:51:27 +02:00
James Vega
408ab6f88a
Network: Properly parse WHOIS response
...
The 319 message that indicates which channel(s) a user is in prefix the
channel name with the modes (@, +, !, etc.) applied to that user. These need
to be stripped from the channel name before we feed it to
irc.state.channels.get(), otherwise when irc.state.channels.get() returns None
we assume the channel can't be private and leak information.
2010-01-10 20:17:10 -05:00
James Vega
a3e4fc5b1d
Change the modeline to use softtabstop instead of tabstop.
2006-02-11 15:52:51 +00:00
James Vega
22c6422f47
plugins/Network: Actually parse the option list and set an ssl variable.
2005-12-29 02:12:32 +00:00
James Vega
0af83d2e24
src/conf, plugins/Owner, plugins/Network: Add support for specifying an ssl connection via Network.connect.
2005-12-14 04:20:04 +00:00
James Vega
fa5ad68958
plugins/Network: Don't include +s channels in Network.whois reply if the reply isn't going to the +s channel.
2005-08-04 18:53:58 +00:00
James Vega
75ecf79d58
plugins/Network: Fix an information leak in Network.whois
2005-07-16 14:41:07 +00:00
Jeremy Fincher
d5a889b54f
Fixed problem that allowed connecting to an already-connected network.
2005-05-18 14:55:55 +00:00
James Vega
9971e991fe
Fix the modelines.
2005-03-23 20:07:45 +00:00
James Vega
90c000793d
utils.gen.* functions shouldn't explicitly be called since they're all in the utils namespace.
2005-02-15 13:57:57 +00:00
Jeremy Fincher
b0cb616709
Changed callbacks.Privmsg to be callbacks.Plugin, and callbacks.PrivmsgCommandAndRegexp to be callbacks.Plugin.
2005-02-09 07:04:04 +00:00
James Vega
de89bf0265
Update usage of utils.str functions.
2005-01-31 14:52:27 +00:00
James Vega
28cb5abc65
Update usage of functions in utils.gen.
2005-01-31 13:06:43 +00:00
Jeremy Fincher
5fd6bbb52d
Completely restructured our utils modules.
...
Tons of changes. Here's the summary of things that matter most:
* There is no more supybot.fix.
* There is no more supybot.webutils; now there is supybot.utils.web.
* It's no longer webutils.WebError, but just utils.web.Error.
* You shouldn't import itertools, ideally, but instead import utils.iter.
* No more using imap/ifilter in commands unless absolutely necessary. It's
premature optimization and annoying.
* utils.str.format isn't quite ready yet, but will be soon. That'll be the
next big thing to fix in our code.
2005-01-27 06:59:08 +00:00
Jeremy Fincher
7fb3b21d94
Removed src/privmsgs.py and all the accompanying crap.
2005-01-27 05:42:36 +00:00
Jeremy Fincher
79c3461dc9
Added Network in the new plugin format.
2005-01-26 07:32:42 +00:00