<feed xmlns='http://www.w3.org/2005/Atom'>
<title>~steering/inspircd++.git/src/modes/cmode_k.cpp, branch insp2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://www.cgit.space/~steering/inspircd++.git/atom/src/modes/cmode_k.cpp?h=insp2</id>
<link rel='self' href='https://www.cgit.space/~steering/inspircd++.git/atom/src/modes/cmode_k.cpp?h=insp2'/>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/'/>
<updated>2017-12-10T12:38:45Z</updated>
<entry>
<title>Extract RFC modes from the core to core_channel and core_user.</title>
<updated>2017-12-10T12:38:45Z</updated>
<author>
<name>Peter Powell</name>
</author>
<published>2017-12-03T17:16:28Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=98372c3cf2c1455e41c388d822876a4d146ae76d'/>
<id>urn:sha1:98372c3cf2c1455e41c388d822876a4d146ae76d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cmode_k Fix oversight in substr() conversion</title>
<updated>2015-01-14T11:07:20Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2015-01-14T11:07:20Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=66221de4b6cca64692c84eabfe0b81cabdbd00bc'/>
<id>urn:sha1:66221de4b6cca64692c84eabfe0b81cabdbd00bc</id>
<content type='text'>
While at it, introduce a named constant for maximum key length
</content>
</entry>
<entry>
<title>Reduce std::string::substr() usage</title>
<updated>2015-01-10T14:16:03Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2015-01-10T14:16:03Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=47dda4f61512f6047f2b1dcccd1943aab74726e3'/>
<id>urn:sha1:47dda4f61512f6047f2b1dcccd1943aab74726e3</id>
<content type='text'>
substr() returns a new string while erase() and assign() modify the existing one
</content>
</entry>
<entry>
<title>Kill needless #includes in source files</title>
<updated>2014-06-14T13:30:14Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2014-06-14T13:30:14Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=82435b6fa8805baa65e04a582f3e4a2c84237f73'/>
<id>urn:sha1:82435b6fa8805baa65e04a582f3e4a2c84237f73</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add ParamModeBase and ParamMode, change all parameter modes to inherit from ParamMode</title>
<updated>2014-02-15T13:38:24Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2014-02-15T13:38:24Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=0556720b559d7ec5d8badacf0ac9b11e9c864847'/>
<id>urn:sha1:0556720b559d7ec5d8badacf0ac9b11e9c864847</id>
<content type='text'>
- Type of the extension used to store data is a template parameter
- The extension is automatically unset when the mode is unset
- Handlers inheriting from ParamMode have to provide OnSet() and SerializeParam(); may optionally provide OnUnset()
- Transparently handle the case when OnSet() modifies the mode parameter
- Remove Channel::custom_mode_params map; ask the mode handlers to serialize their parameters instead
</content>
</entry>
<entry>
<title>Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() with ModeHandlers, part 1</title>
<updated>2013-07-01T17:21:08Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-04-11T21:47:45Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173'/>
<id>urn:sha1:f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Call Channel::SetModeParam() from the mode parser when needed instead of requiring mode handlers to do it</title>
<updated>2013-06-13T17:00:01Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-06-13T17:00:01Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=95593de52c9b89dd3dae8d79a2c76efc81d9d353'/>
<id>urn:sha1:95593de52c9b89dd3dae8d79a2c76efc81d9d353</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simplify user mode removal via ModeHandler::RemoveMode()</title>
<updated>2013-05-26T23:07:30Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-05-26T21:23:47Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=3406c7234ac15b6a2fc52afa770fb851da25c215'/>
<id>urn:sha1:3406c7234ac15b6a2fc52afa770fb851da25c215</id>
<content type='text'>
The function does not need to be virtual because the core can remove any user mode using the default logic
The optional modestack parameter was always NULL, so remove it
</content>
</entry>
<entry>
<title>Deduplicate RemoveMode() implementations</title>
<updated>2013-05-26T23:07:29Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-05-26T21:23:47Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=9bb24d3f458274b7485554bc95f1274900a69ec2'/>
<id>urn:sha1:9bb24d3f458274b7485554bc95f1274900a69ec2</id>
<content type='text'>
The default (core) implementation can now remove prefix modes
The modestacker parameter is now mandatory
</content>
</entry>
<entry>
<title>Unite include/modes/*.h into include/builtinmodes.h</title>
<updated>2013-04-08T21:13:24Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-04-03T16:46:24Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=1bf6cf727da706d821bc4cf84055e27be5ed7f7c'/>
<id>urn:sha1:1bf6cf727da706d821bc4cf84055e27be5ed7f7c</id>
<content type='text'>
</content>
</entry>
</feed>
