| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-07 | 1 | -5/+1 | |
| * | Fix using std::move when not appropriate. | 2023-01-10 | 1 | -1/+1 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -2/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -2/+1 | |
| | * | Import regex_pcre2 from inspircd-contrib.•••The original plan was to make the PCRE2 switch happen in v3 but it seems that distributions are beginning to unpackage the old pcre library already. | 2022-12-05 | 1 | -2/+2 | |
| * | | Merge branch 'insp3' into master. | 2022-09-21 | 1 | -2/+7 | |
| |\| | |||||
| | * | Allow building regex_posix against PCRE on Windows for link compat. | 2022-09-21 | 1 | -2/+8 | |
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -3/+3 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -2/+2 | |
| * | | Fix an off by one error in regex_posix. | 2022-05-06 | 1 | -1/+1 | |
| * | | Implement support for regex capture groups. | 2022-05-06 | 1 | -1/+24 | |
| * | | Fix matching case-insensitive human regex patterns. | 2022-05-06 | 1 | -1/+1 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -4/+4 | |
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -2/+2 | |
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | | Merge branch 'insp3' into master. | 2021-05-14 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-05-14 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-04-27 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions. | 2021-04-21 | 1 | -1/+1 | |
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -1/+1 | |
| * | | Rewrite the regex system from scratch.•••* Move everything to the Regex namespace: - Regex -> Regex::Pattern - RegexException -> Regex::Exception - RegexFactory -> Regex::Engine * Add support for regex flags. - Regex::OPT_CASE_INSENSITIVE performs case-insensitive matching. * Add the Regex::EngineReference class as a friendly wrapper around dynamic_reference_nocheck<Regex::Engine>. * Add the Regex::SimpleEngine template class for automating the implementation of regex factory classes. * Use std::shared_ptr for Regex::Pattern objects instead of making users manage memory manually. | 2020-07-28 | 1 | -42/+30 | |
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | * | Update copyright headers. | 2020-01-11 | 1 | -1/+5 | |
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+4 | |
| * | | Revert "Remove the now obsolete regex_posix module".•••The C++ SG16 has decided to obsolete std::regex because they think its broken and don't want to fix it so this module will probably outlive the regex_stdlib one. 🙄 This reverts commit e1dda3396c64f66b5889f72b65759251fab549ac. | 2020-02-19 | 1 | -0/+98 | |
| * | | Remove the now obsolete regex_posix module.•••The behaviour of this module is included with the regex_stdlib module. You should use that module in bre mode for basic POSIX regular expressions and ere for extended POSIX regular expressions. | 2019-03-06 | 1 | -94/+0 | |
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -4/+4 | |
| |/ | |||||
| * | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -1/+0 | |
| * | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init() | 2013-08-30 | 1 | -2/+1 | |
| * | Fix various small issues.•••- Add CXX11_OVERRIDE to *Regex::Matches and *RegexFactory::Create. - Fix documentation comment on regex_string. - Fix various code duplication/layout issues. | 2013-08-27 | 1 | -8/+3 | |
| * | Make all regex modules throw the same exception on error. | 2013-08-27 | 1 | -10/+1 | |
| * | Remove $ModDep comments | 2013-08-15 | 1 | -2/+0 | |
| * | Automatically attach modules to events | 2013-08-04 | 1 | -2/+0 | |
| * | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -1/+0 | |
| * | Tidy up keywords on module methods.•••- Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | 2013-05-15 | 1 | -4/+4 | |
| * | Tidy up source files:•••- Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues. | 2013-04-12 | 1 | -2/+2 | |
| * | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -5/+6 | |
| * | Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove | 2012-12-02 | 1 | -1/+1 | |
| * | Remove usage of the deprecated ConfigReader | 2012-11-12 | 1 | -2/+1 | |
| * | Remove superfluous std::string()s | 2012-10-12 | 1 | -1/+1 | |
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+15 | |
| * | Specify regex engine in m_filter/m_rline CAPAB line instead of marking m_rege...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12259 e03df62e-2008-0410-955e-edbf42e46eb7 | 2010-01-14 | 1 | -1/+1 | |
| * | ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 | 2010-01-11 | 1 | -1/+1 | |
| * | Use ServiceProvider for inter-module dependencies•••This will stop dependency chains from preventing module reloads when it is not actually needed; however, it removes some failsafes that will need to be reimplemented in order to avoid unmapped vtables. This deprecates Request as an inter-module signaling mechanism, although SQL still uses it. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12140 e03df62e-2008-0410-955e-edbf42e46eb7 | 2009-11-16 | 1 | -26/+17 | |
| * | Remove VF_SERVICEPROVIDER, prevent heap allocation of ConfigReader•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11904 e03df62e-2008-0410-955e-edbf42e46eb7 | 2009-10-18 | 1 | -1/+1 | |
| * | Remove dummy API_VERSION from Version constructor•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11887 e03df62e-2008-0410-955e-edbf42e46eb7 | 2009-10-17 | 1 | -1/+1 | |
| * | Update Event and Request APIs•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11808 e03df62e-2008-0410-955e-edbf42e46eb7 | 2009-10-08 | 1 | -11/+9 | |
| * | Compile fixes and message updates•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11767 e03df62e-2008-0410-955e-edbf42e46eb7 | 2009-09-26 | 1 | -2/+2 | |
| * | Remove InspIRCd* parameters and fields•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7 | 2009-09-26 | 1 | -6/+5 | |
