| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update module descriptions. | Sadie Powell | 2022-12-12 | 1 | -1/+1 |
| * | Implement support for regex capture groups. | Sadie Powell | 2022-05-06 | 1 | -1/+46 |
| * | Fix matching case-insensitive human regex patterns. | Sadie Powell | 2022-05-06 | 1 | -1/+1 |
| * | Abolish the infernal space before accessibility keywords. | Sadie Powell | 2022-01-25 | 1 | -4/+4 |
| * | Refactor CoreException and ModuleException. | Sadie Powell | 2022-01-07 | 1 | -2/+2 |
| * | Rename regex_pcre2 to regex_pcre. | Sadie Powell | 2021-11-14 | 1 | -0/+92 |
| * | Yeet regex_pcre into contrib. | Sadie Powell | 2021-10-01 | 1 | -90/+0 |
| * | Merge branch 'insp3' into master. | Sadie Powell | 2021-08-28 | 1 | -1/+0 |
| |\ |
|
| | * | Update copyright headers. | InspIRCd Robot | 2021-08-27 | 1 | -1/+0 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-06-07 | 1 | -1/+1 |
| |\| |
|
| | * | Migrate Windows builds to installing their dependencies via Conan. | Sadie Powell | 2021-06-07 | 1 | -1/+1 |
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | Dominic Hamon | 2021-05-30 | 1 | -1/+2 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-05-14 | 1 | -2/+2 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2021-05-14 | 1 | -2/+2 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2021-04-27 | 1 | -1/+1 |
| |\| |
|
| | * | Update the module descriptions. | Sadie Powell | 2021-04-21 | 1 | -1/+1 |
| * | | Fix a ton of pedantic compiler warnings. | Sadie Powell | 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.
| Sadie Powell | 2020-07-28 | 1 | -24/+19 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-11 | 1 | -1/+1 |
| |\| |
|
| | * | Update the module descriptions using mkversion. | Sadie Powell | 2020-04-10 | 1 | -1/+1 |
| * | | Improve storage of module description, flags, and link data. | Sadie Powell | 2020-04-11 | 1 | -6/+5 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-04-09 | 1 | -1/+1 |
| |\| |
|
| | * | Fix various documentation and formatting issues. | Sadie Powell | 2020-03-30 | 1 | -1/+1 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2020-01-17 | 1 | -1/+7 |
| |\| |
|
| | * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -1/+7 |
| * | | Merge branch 'insp3' into master. | Sadie Powell | 2019-07-16 | 1 | -4/+5 |
| |\| |
|
| | * | Add package names for ArchLinux. | Peter Powell | 2019-07-16 | 1 | -0/+1 |
| | * | regex_pcre: pkg-config is not required by this module. | Peter Powell | 2019-07-16 | 1 | -4/+4 |
| * | | LogManager: remove fakederef. | Sadie Powell | 2019-02-07 | 1 | -1/+1 |
| * | | Replace the override macro with the override keyword. | Sadie Powell | 2019-01-25 | 1 | -3/+3 |
| |/ |
|
| * | Add PackageInfo directives for Debian. | Peter Powell | 2017-10-21 | 1 | -0/+1 |
| * | Add CentOS PackageInfo | Adam | 2016-09-16 | 1 | -0/+1 |
| * | Rewrite the build system directive parser. | Peter Powell | 2016-09-16 | 1 | -3/+6 |
| * | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 1 | -1/+0 |
| * | 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.
| Peter Powell | 2013-08-27 | 1 | -8/+3 |
| * | Make all regex modules throw the same exception on error. | Peter Powell | 2013-08-27 | 1 | -10/+1 |
| * | Remove $ModDep comments | attilamolnar | 2013-08-15 | 1 | -1/+0 |
| * | Change modules to use the MODNAME constant when logging.•••The majority of modules were logging with their module name as the
log type. There was a few places which were logging to a non-name
type but, with the exception of CONFIG, those messages are so
uncommon that it doesn't make sense to use a seperate type for
them.
| Peter Powell | 2013-08-04 | 1 | -1/+1 |
| * | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 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.
| Peter Powell | 2013-05-15 | 1 | -3/+3 |
| * | Tidy up source files:•••- Use #pragma once instead of include guards.
- Move header files in src/modules to include/modules.
- Fixed various spacing issues.
| Peter Powell | 2013-04-12 | 1 | -2/+2 |
| * | Add LOG_ prefix to the log level enum values. | Peter Powell | 2013-04-12 | 1 | -1/+1 |
| * | Whitespace and empty destructor removal, minor coding style changes | attilamolnar | 2013-04-01 | 1 | -5/+5 |
| * | Windows: In-depth cleanup (see details)•••-Fix x64 builds for Windows. Now all configurations compile.
-Remove the non-working rebase stuff.
-Remove the Windows fork hack and instead use FreeConsole() to emulate the behavior. This directly allows us to compile with ASLR, which is turned on now.
-Remove the old IPC mechanism for the removed GUI. This is not needed anymore as the GUI wasn't ever supported on anything newer than 1.2
-Remove the WIN32/WINDOWS macros. _WIN32 is supported on all x86-based VC++ targets, so that's what we need.
-Enable optimizations for release builds.
-De-duplicate printf_c(), it was previously copy-pasted into colors.h for configure
-Add the VC++ specific bad files in .gitignore
-Disable PID writing on Windows. This is only making sense for *nix builds.
-Replace the CPU usage retrieval with an algorithm analogous to the *nix behavior. Also supports separated now/total values. (Tested with a dummy busy loop - seems working)
-Removed certain unused functions and variables
-Remove stdint defines from the windows wrapper
-Remove CRT debug alloc. This is a bad idea as it would define a macro to replace free which breaks builds.
-Re-evaluated the warnings list, commented it.
-Moved inspircd_config/_version to include/ to match *nix
-Removed the creation of inspircd_se_config, as it isn't used at all.
-Made non-git builds show as "r0" instead of "r" (thanks to @SaberUK for pointing this out)
-Fixed up m_spanningtree's project paths. Now all configurations (debug/release x86/x64) have been tested and build properly.
-Moved FindDNS out of the wrapper and matched its log behavior with *nix. (It's pointless having it in the wrapper after the recent slimming down)
-Replaced random/srandom wrappers with a mechanism that tries to use Windows' Random API first is no SSL module is loaded.
-Removed more old junk from support for compilers older than VC++ 2010 (we don't have project files for these, so compiling them would be hard anyways)
-Removed the unused ClearConsole()
-Removed unused includes from the wrapper. Also, do not include psapi.h here if we don't link psapi.lib. This should be done where appropriate.
-Made inet_aton an inline function for increased performance
-C4800, performance warning about bool forcing, resolved at all occurrences.
-C4701, uninitialized variable 'cached', resolved at all occurrences.
-dlerror() was migrated out of the wrapper for more thread safety (no global buffer being shared) and increased performance.
-Removed the wrong CRT debug flags. This drains a lot of performance.
-Removed the clock_gettime/gettimeofday wrappers
-Replaced all TCHAR/ANSI mix-ups of functions with the correct respective function.
-Added a block of C4355 for < VS2012
-Update project files for c870714
| ChrisTX | 2012-10-12 | 1 | -1/+1 |
| * | Remove superfluous std::string()s | attilamolnar | 2012-10-12 | 1 | -1/+1 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+15 |
| * | Fix extras compilation under Windows | Adam | 2011-06-18 | 1 | -1/+1 |
| * | 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
| danieldg | 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
| brain | 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
| danieldg | 2009-11-16 | 1 | -22/+14 |