aboutsummaryrefslogtreecommitdiff
path: root/modules/format_activity.py
Commit message (Collapse)AuthorAgeFilesLines
* move core modules to src/core_modules, make them uneffected by white/black listGravatar jesopo2019-12-101-285/+0
|
* set private NOTICE context so print_activity shows who a notice was sent toGravatar jesopo2019-11-191-7/+4
|
* refactor formatting privmsg/notice, show symbols on noticeGravatar jesopo2019-11-151-35/+26
|
* move all datetime-related code from utils/__init__ to utils.datetimeGravatar jesopo2019-11-151-1/+2
|
* dont use "%s %s"%("thing", "%s") trick - messes up when "thing" has %Gravatar jesopo2019-11-151-33/+43
|
* add minimal/normal for "topic set at" linesGravatar jesopo2019-11-141-3/+6
|
* `nickname` doesn't exist in `_on_chghost`Gravatar jesopo2019-11-141-3/+3
|
* `nickname` doesn't exist in _on_part, should be user.nicknameGravatar jesopo2019-11-141-3/+3
|
* typo, 'mode_str' -> 'modes_str'Gravatar jesopo2019-11-141-1/+1
|
* don't duplicate `event["user"].nickname` for prettified invite formatGravatar jesopo2019-11-141-2/+2
|
* typo, 'prettyb' -> 'prettyGravatar jesopo2019-11-141-1/+1
|
* separate formatted lines from pretty formatted linesGravatar jesopo2019-11-141-77/+122
|
* change formatted JOIN to have userhost in parensGravatar jesopo2019-11-131-1/+3
|
* change formatted NOTICEs to be denoted by "-nick-" (PRIVMSG as "<nick>")Gravatar jesopo2019-11-111-1/+1
|
* colorize nicknames on more line formatting eventsGravatar jesopo2019-11-111-12/+23
|
* colorize nicks on JOIN formattingGravatar jesopo2019-11-111-2/+4
|
* add bot-wide option to colorize nicknames in formatted outputGravatar jesopo2019-11-111-6/+16
|
* 'changed host (_@_)' -> 'changed host to _@_'Gravatar jesopo2019-10-311-1/+1
|
* format and print CHGHOST eventsGravatar jesopo2019-10-311-0/+8
|
* update channel.topic_setter-related codeGravatar jesopo2019-09-161-1/+1
|
* get_user_status() -> get_user_modes(), filter in format_activity.pyGravatar jesopo2019-09-121-1/+2
|
* prefix formatted KICKs with "- "Gravatar jesopo2019-08-161-2/+5
|
* return parsed modes from IRCChannel.parse_modes, pass through mode eventsGravatar jesopo2019-07-031-2/+2
|
* pass IRCUser objects through formatted.notice eventsGravatar jesopo2019-07-021-2/+3
|
* Pass channel object along with formatted.notice.channel eventsGravatar jesopo2019-07-021-1/+1
|
* Remove PRIORITY values for NOTICE events - i dont think we need themGravatar jesopo2019-07-011-3/+3
|
* Only show highest channel access symbol in format_activity.pyGravatar jesopo2019-06-231-6/+4
|
* pass ParsedLine on message and formatted.* message eventsGravatar jesopo2019-06-211-3/+3
|
* pass from_self arg in formatted.* message eventsGravatar jesopo2019-06-211-5/+8
|
* remove extra formatted.notice format paramGravatar jesopo2019-06-201-4/+4
|
* Change formatted.notice format to have `context`Gravatar jesopo2019-06-201-2/+3
|
* Pass along minimalistic formatted lines, as well as prettier onesGravatar jesopo2019-06-051-11/+27
|
* Add a space between channel name and kick reason in format_activity.pyGravatar jesopo2019-04-161-1/+1
|
* Show QUIT reason as "" not NoneGravatar jesopo2019-04-021-1/+1
|
* Set PART `reason` to "" when it's NoneGravatar jesopo2019-04-021-1/+1
|
* Show user hostmask (not just nick) on formatted.joinGravatar jesopo2019-03-121-1/+1
|
* Fix local variable overwrite for `reason` in formatted.quit logicGravatar jesopo2019-03-081-6/+3
|
* prefix formatted.mode.channel with "- "Gravatar jesopo2019-03-081-1/+1
|
* Send IRCUser object on formatted.quit eventGravatar jesopo2019-03-071-1/+1
|
* "- " should have been inside the stringGravatar jesopo2019-03-071-1/+1
|
* Prefix user-related lines in format_activity with "- "Gravatar jesopo2019-03-071-4/+4
|
* Send IRCChannel on formatted.topic-timestamp eventGravatar jesopo2019-03-061-1/+1
|
* don't utils.irc.parse_format in format_activity.py, so we don't have to useGravatar jesopo2019-03-061-2/+1
| | | | raw_line in channel_log
* Attach channel object to formatted.rename eventsGravatar jesopo2019-03-061-1/+2
|
* Pass IRCChannel and IRCUser objects on formatted events where applicableGravatar jesopo2019-03-061-24/+34
|
* Do format parsing (color, bold, etc) in format_activity.pyGravatar jesopo2019-03-061-2/+2
|
* private notices shouldn't be sent out as formatted.notice.channelGravatar jesopo2019-03-051-6/+13
|
* _on_topic doesn't take an IRCChannel paramGravatar jesopo2019-03-051-1/+1
|
* We need to pass a user object to _privmsgGravatar jesopo2019-03-051-4/+9
|
* Use utils.ISO8601_PARSE in format_activityGravatar jesopo2019-03-051-1/+1
|