summaryrefslogtreecommitdiffstatsabout
Commit message (Collapse)AuthorAgeFilesLines
...
* separated out most mysql specific code to mod_log_sql_mysql.cEdward Rudd2004-02-299-379/+409
| | | | | | | | | | beginnings of separation of core SQL logging logic moved DB connection paramters to a table (for cutoms params for DB drivers) added new configuration directive to handle any DB parameter renamed all log_sql_* vars and type to logsql_* Added enums for opendb return codes. organized config directives and commented for easier reading of source
* Fixed version and help flags so they work.Edward Rudd2004-02-211-30/+27
| | | | | redid all hash variable names for command arguments so they use the long name internally {table} instead of {t}
* Added mysql_import_combined_log.pl to distribution with permission from ↵Edward Rudd2004-02-122-2/+42
| | | | | | | | Aaron Jenson http://www.visualprose.com/software.php (Original Source) Updated documentation in README for usage of contrib files/scripts
* Updated help and added check and error to make sure the user edited the file ↵Edward Rudd2004-02-121-10/+18
| | | | first.
* Updated Author information in file.Edward Rudd2004-02-121-0/+6
|
* moved create_tables.sql and make_combined_log.pl into contrib directory.Edward Rudd2004-02-128-24/+26
| | | | | | Added contrib directory to build system. Updated new maintainer information in AUTHORS,LICENSE, and manual.xml
* Split Changelog and TODO to separate files.Edward Rudd2004-02-122-23/+26
|
* Fixed preserve_file configuration parameter.Edward Rudd2004-02-121-2/+2
|
* Cleaned up changelogEdward Rudd2004-02-121-5/+5
|
* update changelog1.95Edward Rudd2004-02-051-1/+5
| | | | | release 1.95
* synchronized extract_* functions with latest apache 1.3 and 2.0.Edward Rudd2004-02-058-145/+118
| | | | | | | Added some more recent extract_* functions.. still need to assign format letters cleanup/audit of extract_* functions release 1.95
* added mod_log_sql_ssl.c into dist1.94Edward Rudd2004-02-041-1/+1
|
* fixed segfaul bug with pointer arithmetic in add_server_string_slotEdward Rudd2004-02-043-6/+7
| | | | | | Added authors file release 1.94
* added DocBook version of the manualEdward Rudd2004-01-241-0/+1600
|
* SSL support working under 1.3 and 2.0 as a separate moduleEdward Rudd2004-01-2211-137/+202
| | | | | | preparsing of logformat completed. updated configure scripts to detect mod_ssl.h for 1.3 (mostly)
* fixed log_error function1.93Edward Rudd2004-01-217-116/+162
| | | | | | | finished ssl split into separate module added item registration function. (for ssl sub-module) release 1.93
* make sure I initialize the hashEdward Rudd2004-01-201-3/+5
|
* Added item registration function and added functions to new system header ↵Edward Rudd2004-01-206-58/+105
| | | | | | | mod_log_sql.h Registered core item functions in pre_config
* moved extract_* functions to functions.h (version specific in ↵Edward Rudd2004-01-209-424/+453
| | | | | | | | | functions(13|20).h) moves SSL logging routings to mod_log_sql_ssl.c updated changelog added AUTHORS
* split out version specific codeEdward Rudd2004-01-2010-279/+523
| | | | | | | code compiles under apache 1.3 and 2.0 updated apache m4 script to detect both verions (two minumums) defaulted install to not activate module in configuration file (use make activate)
* fixed SSL cflag inclusion1.92Edward Rudd2004-01-062-4/+3
|
* update m4 filesEdward Rudd2004-01-066-19/+80
| | | | | release 1.92
* update apache.m4 to use -with-apxs instead of --with-apacheEdward Rudd2004-01-0413-58/+135
| | | | | | got SSL support to compile. added Documentation subdirectory.
* uses Date::Parse instead of ParseDateEdward Rudd2003-12-301-28/+46
| | | | | | uses Getopt::Long instead of Getopt:Std Added in filling in of request_time fields instead of just timestamp.
* added mysql import script by Aaron Jenson.Edward Rudd2003-12-302-0/+289
|
* removed -n parameter to apxs as it isn\'t needed for this moduleEdward Rudd2003-12-301-3/+3
|
* mysql_error returns const char * in mysql 4.x, updated variable defs in ↵Edward Rudd2003-12-301-2/+2
| | | | safe_sql_query to avoid warning.
* update autoconf scripts to check MySQL..1.91Edward Rudd2003-12-239-180/+520
| | | | | | | | | moved autoconf DEFUN macros to m4 subdirectory autogen.sh calls aclocal to include m4 directory. merged in changes from 1.19b1 fixed log_sql_merge_config bug in 1.19b1 release 1.91
* compiles and loads under apache2.0Edward Rudd2003-12-226-585/+599
| | | | | | consolidated configuration functions uses APR_OFFSETOF.. delayed inserts are configurable
* *** empty log message ***Edward Rudd2003-12-221-0/+109
|
* CVS headers addedEdward Rudd2003-12-212-4/+4
|
* .cvsignore addedEdward Rudd2003-12-201-0/+28
|
* install.sh (autoconf)Edward Rudd2003-12-201-0/+251
|
* added aclocal.m4 (rest of autoconf stuff)Edward Rudd2003-12-201-0/+128
|
* added autoconfig filesEdward Rudd2003-12-205-0/+2908
|
* Initial revisionEdward Rudd2003-12-2013-4982/+148
|
* Changes on the way to 1.19. This is probably going to be 1.19b1. Detail:1.19b1Christopher Powell2003-07-229-98/+4661
| | | | | | | | | | | | | | | * Hostnames are now converted to lowercase in the mass-virtual naming section. The loop that converts dots to underscores has been optimized as well. * Migration to autoconf * New directive LogSQLTableType allows one to specify the kind of table that the module makes during table creation (e.g. InnoDB, MyISAM). Thanks to Jim Turner for the suggestion and patch. If your MySQL server does not support the specified type, it will create a MyISAM table instead. * Directives can now be placed in the 'main' server config and will be inherited by the virtual hosts. This means a LOT less repetition: you only specify the item once to have it inherited, but it can still be overridden on a virtualhost level.
* Some minor additions / edits to the docs.Christopher Powell2003-03-272-89/+248
|
* Migrated from gz to bz2 for better compression.Christopher Powell2002-12-181-4/+4
|
* Removed message about insufficient info to log.1.18Christopher Powell2002-12-183-27/+4
|
* Delayed inserts, includes, better table creation, renamed global vars,Christopher Powell2002-12-185-355/+571
|
* *** empty log message ***Christopher Powell2002-12-103-53/+20
|
* Changes on route to 1.18 release (better table creation logic and ↵Christopher Powell2002-12-105-793/+1279
| | | | workarounds for delayed insert kluge).
* Further Makefile reorg/cleanup, a new option to support delayed insertsChristopher Powell2002-11-273-82/+407
| | | | | with accompanying documentation.
* Some more doc edits & cleanup.Christopher Powell2002-11-191-132/+278
|
* Some makefile changes to take care of images embedded in the docs.Christopher Powell2002-11-191-4/+8
|
* Yet more minor documentation edits.Christopher Powell2002-11-191-15/+114
|
* Many more doc edits. Reworked the makefile to use ssh/scp for 'make distro'.1.17Christopher Powell2002-11-172-316/+1184
|
* Further changes to the documentation and how it is generated.Christopher Powell2002-11-152-461/+913
|
* More documentation work on the way to final 1.17 release.Christopher Powell2002-11-148-1920/+2010
| | | | | Additional work on the Makefile.