summaryrefslogtreecommitdiff
path: root/modules/database
AgeCommit message (Collapse)Author
2017-10-08Fix some compiler warningsAdam
2017-10-07No longer expose c->ci and ci->cAdam
2017-05-29Remove recognized status and secureAdam
Also remove /ns status, which is now almost useless with no recognized status, and /ns access.
2017-04-20Merge commit '8656b65e392e8d26de218bf372da949c3a00d8d4'Adam
2017-04-07Merge commit '23a0628fba15be8bae73c8413e406780427fe60c'Adam
2017-02-07Normalize databases by not allowing generic Object referencesAdam
Remove redis database support
2017-01-23Make log system use newer format stringsAdam
Also allow log messages to be translatable
2017-01-16Update copyright to 2017.Robby
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2017 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet.
2017-01-11db_sql: run table creation queries during import synchronously tooAdam
2016-12-01Allow objects to opt out of gc, don't gc accounts with users logged inAdam
Also store cached state with the field by using Serialize::Storage for field storage
2016-11-30Fix some field shadowing warningsAdam
2016-11-25Rename most ext fields names to be consistent with everything else, add ↵Adam
accessors for many
2016-11-11db_old: convert languages to UTF-8 encoded versionAdam
2016-11-11Fix opers not really being serializableAdam
2016-11-09Change default database to sqlite, begin 2.0 db_flatfile supportAdam
2016-10-30Add new RESTful JSON API and documentationAdam
2016-10-17Address casemapping issues in sqlite/mysqlAdam
2016-10-16db_sql: don't update objects pending creation as it duplicates itAdam
2016-10-15Various improvements/bugfixes to extdb stuffAdam
2016-10-09Make vhosts assignable to accounts, not nicks. Allow multiple vhosts per ↵Adam
account.
2016-10-09Split vhosts into its own structureAdam
2016-10-07db_old: fix warningsAdam
2016-10-07Set shared library suffix to .so, add missing serializable type GetTypes ↵Adam
definition
2016-07-31Update license headers and copyrights on all source filesAdam
2016-07-28Allow serializable fields to use storage in the respective objects.Adam
Split service management code nito a proper servicemanager. Make service references managed instead of lazy lookup. Also made events and serializable use service manager instead of their respective systems for management
2016-07-25db_old: fix warningsAdam
2016-04-14Remove memos from memoinfo more reliablyAdam
2016-01-28Update copyright to 2016. This was done with:Robby
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet. Fixed some whitespace and blank lines along the way.
2015-12-31Rename haader file names to be consistent with module namesAdam
2015-12-14New source tree structure for modules. From commands/cs_access => ↵Adam
chanserv/access etc.
2015-10-27Merge branch '2.0' into 2.1Adam
2015-09-06Merge pull request #120 from Alef-Burzmali/2.0+nobackupokAdam
Fix db_flatfile to read the "nobackokay" setting
2015-07-11Fix db_flatfile to read "nobackupokay"Thomas Fargeix
2015-07-08Fix a ton of typos.Peter Powell
2015-07-07Fix various Clang compiler warnings.Peter Powell
include/modules/sql.h:103:10: warning: 'const' type qualifier on return type has no effect [-Wignored-qualifiers] modules/database/db_sql.cpp:273:15: warning: declaration shadows a local variable [-Wshadow] modules/pseudoclients/chanserv/chanserv.cpp:319:150: warning: comparison of integers of different signs: 'unsigned int' and 'int' [-Wsign-compare] modules/pseudoclients/chanserv/chanserv.cpp:329:80: warning: comparison of integers of different signs: 'unsigned int' and 'int' [-Wsign-compare]
2014-12-29Allow configuring casemapsAdam
2014-12-27Remove now unnecessary eventhook constructor calls in module init listsAdam
2014-12-10Unconst these config Get<Anope::string> calls as it makes no senseAdam
2014-12-10Use a triat class for event names instead of having to manually give them ↵Adam
places, which is much less error prone
2014-11-24Rewrite serializable to have field level granularityAdam
Represent serializable objects in a digraph, and as a result made most object relationships implicitly defined, and use the graph to trace references between objects to determine relationships. Edges may also be marked as having a dependency of the object they point to, which allows for automatic cleanup and deletion of most objects when no longer needed. Additionally, this allows not having to require in-memory copies of everything when using external databases. db_sql has been rewritten for this and now always requires a database to function. db_sql with MySQL now requires InnoDB to make use of transactions and foreign key constraints.
2014-07-26When object unserialization fails (due to not having dependency objects) ↵Adam
bump the ts to try again later.
2014-06-23Merge branch '2.0' into 2.1Adam
Conflicts: cmake/Anope.cmake cmake/FindGettext.cmake include/access.h include/messages.h include/modes.h include/modules.h include/users.h modules/CMakeLists.txt modules/commands/bs_bot.cpp modules/commands/cs_access.cpp modules/commands/cs_ban.cpp modules/commands/cs_clone.cpp modules/commands/cs_flags.cpp modules/commands/cs_info.cpp modules/commands/cs_list.cpp modules/commands/cs_log.cpp modules/commands/cs_mode.cpp modules/commands/cs_status.cpp modules/commands/cs_suspend.cpp modules/commands/cs_updown.cpp modules/commands/cs_xop.cpp modules/commands/ms_check.cpp modules/commands/ns_access.cpp modules/commands/ns_cert.cpp modules/commands/ns_group.cpp modules/commands/ns_register.cpp modules/commands/ns_set.cpp modules/commands/ns_suspend.cpp modules/commands/os_session.cpp modules/commands/os_svs.cpp modules/extra/m_ldap_authentication.cpp modules/extra/m_regex_pcre.cpp modules/extra/m_sql_authentication.cpp modules/extra/stats/m_chanstats.cpp modules/protocol/bahamut.cpp modules/protocol/hybrid.cpp modules/protocol/inspircd12.cpp modules/protocol/inspircd20.cpp modules/protocol/unreal.cpp modules/pseudoclients/chanserv.cpp modules/pseudoclients/chanserv/channel.cpp modules/pseudoclients/nickserv/nickserv.cpp modules/webcpanel/pages/chanserv/access.cpp src/access.cpp src/bots.cpp src/channels.cpp src/language.cpp src/modes.cpp src/modulemanager.cpp src/process.cpp src/users.cpp src/version.sh
2014-06-15Log more when unable to backup databases in db_flatfileAdam
2014-05-28Move most of the core pseudoclient logic to modulesAdam
2014-05-27Fix default db name in db_flatfifle in a couple placesAdam
2014-05-21Core prep for p10 stuffAdam
2014-05-14Fix access lists showing the wrong mask if the display nick for a groupAdam
expires but the group still exists. This can cause access entries for nicks to not be deleted whenever the nicks are deleted.
2014-04-20New event systemAdam
2014-04-01Require cmake 2.8 and C++11 supportAdam
2014-03-05Open database files using std::ios_base::binary in db_flatfile, which ↵Adam
Windows can require