Directory server/trunk/plugins/cflogger/

Directory Created:
2007-01-07 07:56
Total Files:
2
Deleted Files:
1
Lines of Code:
772

[root]/server/trunk/plugins/cflogger
                    directory in repo include (2 files, 65 lines)

Lines of Code

server/trunk/plugins/cflogger/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 43 (100.0%) 2058 (100.0%) 47.8
ryo_saeba 12 (27.9%) 1351 (65.6%) 112.5
anmaster 13 (30.2%) 245 (11.9%) 18.8
mwedel 4 (9.3%) 163 (7.9%) 40.7
gros 1 (2.3%) 156 (7.6%) 156.0
akirschbaum 8 (18.6%) 91 (4.4%) 11.3
quinet 1 (2.3%) 49 (2.4%) 49.0
silvernexus 1 (2.3%) 3 (0.1%) 3.0
partmedia 3 (7.0%) 0 (0.0%) 0.0

Most Recent Commits

akirschbaum 2015-11-21 06:36 Rev.: 20049

Add missing #include statements.

2 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+2)
partmedia 2014-06-06 17:54 Rev.: 19531

Remove automatic prototype generation with cproto

Obtained from: Tolga Dalman

0 lines of code changed in 2 files:

  • server/trunk/plugins/cflogger: Makefile.am (-4), cflogger.c (-4)
silvernexus 2014-05-18 10:06 Rev.: 19444

Fixed several typos in cflogger error messages.

3 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+3 -3)
partmedia 2013-07-16 08:30 Rev.: 18792

Trim legacy Makefile headers.

0 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: Makefile.am (-25)
mwedel 2011-11-27 01:34 Rev.: 15936

Add logic to do svn version check between plugin and server - this prevents
incompatible plugins from being used.
MSW 2011-11-26

3 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+3)
ryo_saeba 2011-09-04 04:22 Rev.: 15043

Clean unused variables.

4 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+4 -4)
ryo_saeba 2011-06-09 16:47 Rev.: 14534

Give player's killer to plugins.

7 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+7 -2)
anmaster 2010-10-09 15:29 Rev.: 13978

Add missing CF_PLUGIN in cflogger. This would only fail on Windows since by default on *nix, all symbols are exported. Thus this error went unnoticed until I tried with -fvisibility=hidden and setting the MODULEAPI and CF_PLUGIN macros use __attribute__((visibility("default"))...

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -1)
ryo_saeba 2010-08-07 04:03 Rev.: 13559

Change event listener prototype for plugins to return int instead of void*.

7 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+7 -9)
mwedel 2010-04-26 02:00 Rev.: 12967

Add missing includes, add some makefiles for them for make distcheck.
MSW 2010-04-25

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: Makefile.am (+1 -1)
ryo_saeba 2010-04-07 14:16 Rev.: 12866

Fix crash potential when changing class.

3 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+3)
anmaster 2009-02-12 13:48 Rev.: 11461

plugins/cfpython/include/cfpython_proto.h, plugins/cfpython/cfpython.c: Fix
broken give command. Was broken due to MSW removing -Bsymbolic when building
plugins about half a year ago. Also change some other symbols to static in the
plugins to avoid more issues like this.
plugins/cflogger/include/cflogger_proto.h, plugins/cflogger/cflogger.c,
plugins/citylife/include/citylife_proto.h, plugins/citylife/citylife.c,
plugins/cfrhg/include/cfrhg_proto.h, plugins/cfrhg/cfrhg.c,
plugins/cfanim/include/cfanim.h, plugins/cfanim/include/cfanim_proto.h,
plugins/cfanim/cfanim.c, plugins/cfnewspaper/include/cfnewspaper_proto.h,
plugins/cfnewspaper/cfnewspaper.c: More changes in the same style as the above
python changes to reduce possible symbol lookup conflicts. Also make some
functions static.
plugins/cfrhg/include/cfrhg_proto.h, plugins/cfrhg/cfrhg.c: Fix a typo in cfrhg
(was "cfrgh" in one place).

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -1)
anmaster 2009-02-07 04:21 Rev.: 11380

plugins/cfanim/cfanim.c, plugins/cflogger/cflogger.c: Fix some minor issues
(variables that should have been static, using 0 instead of NULL, leading to
more confusing code) found using the static analysis tool "sparse".

2 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+2 -2)
anmaster 2009-01-23 12:00 Rev.: 11223

plugins/cflogger/cflogger.c: Make non-direct kills (kill by spell, kill by
poison, kill by golem and so on) register properly.

8 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+8 -2)
anmaster 2009-01-23 05:08 Rev.: 11222

plugins/cflogger/cflogger.c: Slight error in last commit, turns out time table
can't use real time as primary key. Change database schema to format 3.
Upgrades directly from version 1 not run into the issue.

46 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+46 -15)
anmaster 2009-01-22 16:16 Rev.: 11220

plugins/cflogger/cflogger.c: Clean out some of the messy and broken SQL (didn't
use indexes, was missing important constraints and so on) in cflogger. This
includes introducing a new version of the SQL schema used. The database will
be automatically upgraded at next run. Be aware of that older versions were
missing a check for too new format, thus once you upgraded the format you
should not run it with an older version of the server. Changes to the schema
includes adding some indexes and similar.

161 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+161 -11)
anmaster 2009-01-22 15:22 Rev.: 11219

plugins/cflogger/cflogger.c, plugins/cfnewspaper/cfnewspaper.c: Now handles
random maps the way the source code comments claims it does.
plugins/cfnewspaper/cfnewspaper.c: Make info about kills from a specific region
work.

4 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+4 -4)
anmaster 2009-01-21 16:07 Rev.: 11208

server/plugins.c: Remove forgotten debug output.
plugins/cflogger/cflogger.c, plugins/cfnewspaper/cfnewspaper.c: Add missing
newline in log output.
plugins/cfnewspaper/cfnewspaper.c: Close the second sqlite database as well.

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -1)
akirschbaum 2009-01-21 15:30 Rev.: 11205

Whitespace changes: consistently reformat code.

80 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+80 -88)
ryo_saeba 2008-09-19 14:36 Rev.: 9891

Fix for bug #2088893: Assertion in cfanim.c globalEventListener on client connect.

15 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+15 -15)
mwedel 2008-07-24 22:32 Rev.: 9684

plugins/*/Makefile.am: Remove -Xlinker -export-dynamic -Xlinker -Bsymbolic
from extra LDFLAGS. Those are gnu specific linker options which cause
the plugins to fail to compile when not using gld. I've tested the build
without those options with gld on linux, and all works fine, so not sure
if those are still needed - in theory, libtool should cover that. If
those options are still needed, configure.ac should get updated with a
a better test.
MSW 2008-07-24


1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: Makefile.am (+1 -1)
quinet 2008-07-20 04:49 Rev.: 9584

Automatic style fix: replace "foo* bar" by "foo *bar", remove extra spaces inside parentheses, etc.

49 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+49 -49)
anmaster 2008-06-05 16:45 Rev.: 9231

Make more functions and variables in plugins static. Clean up some indention in plugins.

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -1)
anmaster 2008-06-04 16:39 Rev.: 9228

Clean up in plugins, fix a lot of gcc warnings (in plugins), update prototype
headers in plugins, make some functions static. Also update build system for
cflogger to make it not include common plugin stuff in header. Followed example
set by cfnewspaper's Makefile.am. Make the template plugin include prototype
header. (It is a good idea to do so, for various reasons.) Also add some missing
newlines at end of copyright header comments in some files. Also make some
variables const (in python plugin) in order to fix gcc warnings and to make
code cleaner (a string literal is always a const char* in C90 or later, but
char* is allowed for compatibility reasons, though it will actually be a const).

18 lines of code changed in 2 files:

  • server/trunk/plugins/cflogger: Makefile.am (+4 -2), cflogger.c (+14 -11)
anmaster 2008-06-01 11:40 Rev.: 9198

Set svn:eol-style to native on *.c and *.h files that were missing it.

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1)
anmaster 2008-05-27 07:07 Rev.: 9154

Fix some more snprintf using a non-constant string as format parameter, and no
arguments to format string. Also change some more // comments to /**/, as crossfire
is C89 not C99. Add some missing prototypes to headers. Add missing value to a return.
Change from using strcasestr (GNU specific) to the already existing strcasestr_local
in one place.

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -1)
akirschbaum 2008-05-12 13:44 Rev.: 9024

Ansi C compatibility improvement: use prototypes.

4 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+4 -4)
akirschbaum 2007-04-24 16:34 Rev.: 6115

Remove unused variables.

0 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (-1)
ryo_saeba 2007-04-12 15:41 Rev.: 6005

Plugin API changes. More void* conversion removing.

27 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+27 -33)
ryo_saeba 2007-03-31 02:37 Rev.: 5906

Remove generated files.

0 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: Makefile.in (del)
ryo_saeba 2007-03-25 12:40 Rev.: 5888

Fix crash.

3 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+3 -8)
mwedel 2007-02-07 03:02 Rev.: 5398

Makefile.am, Makefile.in (and Makefiles in subdirs): Put types in list of
SUBDIRS before server so that compilation happens in correct order -
server area requires types to be up to date.
MSW 2007-02-07

158 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: Makefile.in (+158 -165)
akirschbaum 2007-01-29 17:30 Rev.: 5357

Remove unused variables.

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -3)
akirschbaum 2007-01-29 17:29 Rev.: 5356

cflogger: Add missing return value in store_time().

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1 -1)
akirschbaum 2007-01-29 17:27 Rev.: 5355

Add missing call to va_end().

1 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+1)
akirschbaum 2007-01-29 17:05 Rev.: 5354

Whitespace changes.

2 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+2 -2)
gros 2007-01-21 10:43 Rev.: 5339

Refactored several object types.
Implemented the move_on event, replacing the call to move_apply().

2007-01-21 - gros

156 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: Makefile.in (+156 -155)
ryo_saeba 2007-01-07 08:59 Rev.: 5302

Forgot to comment the file :)

184 lines of code changed in 1 file:

  • server/trunk/plugins/cflogger: cflogger.c (+184 -1)
ryo_saeba 2007-01-07 07:56 Rev.: 5301

New plugin: cflogger, which logs to sqlite3 database.

1101 lines of code changed in 3 files:

  • server/trunk/plugins/cflogger: Makefile.am (new 44), Makefile.in (new 662), cflogger.c (new 395)
Generated by StatSVN 0.7.0