From 0428f9c321bffd2afbd5c41c1170b74d240a5c64 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 26 Aug 2011 10:17:03 -0400 Subject: [PATCH] Removed references to Subversion in the code --- citadel/modules/autocompletion/serv_autocompletion.c | 2 +- citadel/modules/bio/serv_bio.c | 2 +- citadel/modules/calendar/serv_calendar.c | 2 +- citadel/modules/checkpoint/serv_checkpoint.c | 2 +- citadel/modules/clamav/serv_virus.c | 2 +- citadel/modules/dspam/serv_dspam.c | 2 +- citadel/modules/expire/serv_expire.c | 2 +- citadel/modules/extnotify/extnotify_main.c | 2 +- citadel/modules/fulltext/serv_fulltext.c | 2 +- citadel/modules/imap/serv_imap.c | 2 +- citadel/modules/inetcfg/serv_inetcfg.c | 2 +- citadel/modules/instmsg/serv_instmsg.c | 2 +- citadel/modules/listsub/serv_listsub.c | 2 +- citadel/modules/managesieve/serv_managesieve.c | 2 +- citadel/modules/migrate/serv_migrate.c | 2 +- citadel/modules/mrtg/serv_mrtg.c | 2 +- citadel/modules/netfilter/serv_netfilter.c | 2 +- citadel/modules/newuser/serv_newuser.c | 2 +- citadel/modules/notes/serv_notes.c | 2 +- citadel/modules/openid/serv_openid_rp.c | 2 +- citadel/modules/pop3/serv_pop3.c | 2 +- citadel/modules/roomchat/serv_roomchat.c | 2 +- citadel/modules/rwho/serv_rwho.c | 2 +- citadel/modules/sieve/serv_sieve.c | 2 +- citadel/modules/smtp/serv_smtp.c | 2 +- citadel/modules/spam/serv_spam.c | 2 +- citadel/modules/test/serv_test.c | 2 +- citadel/modules/vcard/serv_vcard.c | 2 +- citadel/modules/wiki/serv_wiki.c | 2 +- citadel/modules/xmpp/serv_xmpp.c | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/citadel/modules/autocompletion/serv_autocompletion.c b/citadel/modules/autocompletion/serv_autocompletion.c index 9c1c97991..d8c2c30f0 100644 --- a/citadel/modules/autocompletion/serv_autocompletion.c +++ b/citadel/modules/autocompletion/serv_autocompletion.c @@ -227,6 +227,6 @@ CTDL_MODULE_INIT(autocompletion) { { CtdlRegisterProtoHook(cmd_auto, "AUTO", "Do recipient autocompletion"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "autocompletion"; } diff --git a/citadel/modules/bio/serv_bio.c b/citadel/modules/bio/serv_bio.c index ac135cc22..665873ab5 100644 --- a/citadel/modules/bio/serv_bio.c +++ b/citadel/modules/bio/serv_bio.c @@ -148,7 +148,7 @@ CTDL_MODULE_INIT(bio) CtdlRegisterProtoHook(cmd_rbio, "RBIO", "Read a user's bio"); CtdlRegisterProtoHook(cmd_lbio, "LBIO", "List users with bios"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "bio"; } diff --git a/citadel/modules/calendar/serv_calendar.c b/citadel/modules/calendar/serv_calendar.c index f51e427d2..84fb9683c 100644 --- a/citadel/modules/calendar/serv_calendar.c +++ b/citadel/modules/calendar/serv_calendar.c @@ -2598,6 +2598,6 @@ CTDL_MODULE_INIT(calendar) CtdlRegisterCleanupHook(serv_calendar_destroy); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "calendar"; } diff --git a/citadel/modules/checkpoint/serv_checkpoint.c b/citadel/modules/checkpoint/serv_checkpoint.c index 83ac887f4..ba51abd44 100644 --- a/citadel/modules/checkpoint/serv_checkpoint.c +++ b/citadel/modules/checkpoint/serv_checkpoint.c @@ -63,6 +63,6 @@ CTDL_MODULE_INIT(checkpoint) { { CtdlRegisterSessionHook(cdb_checkpoint, EVT_TIMER); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "checkpoint"; } diff --git a/citadel/modules/clamav/serv_virus.c b/citadel/modules/clamav/serv_virus.c index f1d6b105a..9626177a0 100644 --- a/citadel/modules/clamav/serv_virus.c +++ b/citadel/modules/clamav/serv_virus.c @@ -201,6 +201,6 @@ CTDL_MODULE_INIT(virus) CtdlRegisterMessageHook(clamd, EVT_SMTPSCAN); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "virus"; } diff --git a/citadel/modules/dspam/serv_dspam.c b/citadel/modules/dspam/serv_dspam.c index b29ba20a1..9f06f6e13 100644 --- a/citadel/modules/dspam/serv_dspam.c +++ b/citadel/modules/dspam/serv_dspam.c @@ -258,7 +258,7 @@ CTDL_MODULE_INIT(dspam) #endif /* HAVE_LIBDSPAM */ } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "dspam"; } diff --git a/citadel/modules/expire/serv_expire.c b/citadel/modules/expire/serv_expire.c index 6cd2b668d..815cdb7d2 100644 --- a/citadel/modules/expire/serv_expire.c +++ b/citadel/modules/expire/serv_expire.c @@ -952,6 +952,6 @@ CTDL_MODULE_INIT(expire) CtdlRegisterSessionHook(purge_databases, EVT_TIMER); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "expire"; } diff --git a/citadel/modules/extnotify/extnotify_main.c b/citadel/modules/extnotify/extnotify_main.c index 2bdf8f0a6..aa85ab610 100644 --- a/citadel/modules/extnotify/extnotify_main.c +++ b/citadel/modules/extnotify/extnotify_main.c @@ -447,6 +447,6 @@ CTDL_MODULE_INIT(extnotify) create_extnotify_queue(); CtdlRegisterSessionHook(do_extnotify_queue, EVT_TIMER); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "extnotify"; } diff --git a/citadel/modules/fulltext/serv_fulltext.c b/citadel/modules/fulltext/serv_fulltext.c index e2dfd1466..efd808ab4 100644 --- a/citadel/modules/fulltext/serv_fulltext.c +++ b/citadel/modules/fulltext/serv_fulltext.c @@ -508,6 +508,6 @@ CTDL_MODULE_INIT(fulltext) CtdlRegisterCleanupHook(noise_word_cleanup); CtdlRegisterSessionHook(do_fulltext_indexing, EVT_TIMER); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "fulltext"; } diff --git a/citadel/modules/imap/serv_imap.c b/citadel/modules/imap/serv_imap.c index 785d6e53c..e9f566375 100644 --- a/citadel/modules/imap/serv_imap.c +++ b/citadel/modules/imap/serv_imap.c @@ -1718,6 +1718,6 @@ CTDL_MODULE_INIT(imap) CtdlRegisterCleanupHook(imap_cleanup); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "imap"; } diff --git a/citadel/modules/inetcfg/serv_inetcfg.c b/citadel/modules/inetcfg/serv_inetcfg.c index 6d29311b3..8ad0f6810 100644 --- a/citadel/modules/inetcfg/serv_inetcfg.c +++ b/citadel/modules/inetcfg/serv_inetcfg.c @@ -158,7 +158,7 @@ CTDL_MODULE_INIT(inetcfg) CtdlRegisterCleanupHook(clenaup_inetcfg); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "inetcfg"; } diff --git a/citadel/modules/instmsg/serv_instmsg.c b/citadel/modules/instmsg/serv_instmsg.c index a7503133b..fb74d9716 100644 --- a/citadel/modules/instmsg/serv_instmsg.c +++ b/citadel/modules/instmsg/serv_instmsg.c @@ -606,6 +606,6 @@ CTDL_MODULE_INIT(instmsg) CtdlRegisterSessionHook(instmsg_shutdown, EVT_SHUTDOWN); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "instmsg"; } diff --git a/citadel/modules/listsub/serv_listsub.c b/citadel/modules/listsub/serv_listsub.c index 3ad989ab5..19fe74ee6 100644 --- a/citadel/modules/listsub/serv_listsub.c +++ b/citadel/modules/listsub/serv_listsub.c @@ -584,6 +584,6 @@ CTDL_MODULE_INIT(listsub) CtdlRegisterProtoHook(cmd_subs, "SUBS", "List subscribe/unsubscribe"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "listsub"; } diff --git a/citadel/modules/managesieve/serv_managesieve.c b/citadel/modules/managesieve/serv_managesieve.c index 680f26d89..b0e5f7de9 100644 --- a/citadel/modules/managesieve/serv_managesieve.c +++ b/citadel/modules/managesieve/serv_managesieve.c @@ -670,7 +670,7 @@ CTDL_MODULE_INIT(managesieve) CtdlRegisterSessionHook(managesieve_cleanup_function, EVT_STOP); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "managesieve"; } diff --git a/citadel/modules/migrate/serv_migrate.c b/citadel/modules/migrate/serv_migrate.c index 091822c38..5c0a2e27d 100644 --- a/citadel/modules/migrate/serv_migrate.c +++ b/citadel/modules/migrate/serv_migrate.c @@ -1017,6 +1017,6 @@ CTDL_MODULE_INIT(migrate) CtdlRegisterProtoHook(cmd_migr, "ARTV", "Across-the-wire migration (legacy syntax)"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "migrate"; } diff --git a/citadel/modules/mrtg/serv_mrtg.c b/citadel/modules/mrtg/serv_mrtg.c index 2a7d24084..a4be39926 100644 --- a/citadel/modules/mrtg/serv_mrtg.c +++ b/citadel/modules/mrtg/serv_mrtg.c @@ -181,6 +181,6 @@ CTDL_MODULE_INIT(mrtg) CtdlRegisterProtoHook(cmd_mrtg, "MRTG", "Supply stats to MRTG"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "mrtg"; } diff --git a/citadel/modules/netfilter/serv_netfilter.c b/citadel/modules/netfilter/serv_netfilter.c index e379fbe41..a75576948 100644 --- a/citadel/modules/netfilter/serv_netfilter.c +++ b/citadel/modules/netfilter/serv_netfilter.c @@ -122,6 +122,6 @@ CTDL_MODULE_INIT(netfilter) CtdlRegisterNetprocHook(filter_the_idiots); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "netfilter"; } diff --git a/citadel/modules/newuser/serv_newuser.c b/citadel/modules/newuser/serv_newuser.c index df534c25a..c88dc7ad2 100644 --- a/citadel/modules/newuser/serv_newuser.c +++ b/citadel/modules/newuser/serv_newuser.c @@ -113,6 +113,6 @@ CTDL_MODULE_INIT(newuser) CtdlRegisterSessionHook(CopyNewUserGreetings, EVT_LOGIN); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "newuser"; } diff --git a/citadel/modules/notes/serv_notes.c b/citadel/modules/notes/serv_notes.c index db8474b1a..990ae8fd1 100644 --- a/citadel/modules/notes/serv_notes.c +++ b/citadel/modules/notes/serv_notes.c @@ -182,6 +182,6 @@ CTDL_MODULE_INIT(notes) CtdlRegisterMessageHook(serv_notes_beforesave, EVT_BEFORESAVE); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "notes"; } diff --git a/citadel/modules/openid/serv_openid_rp.c b/citadel/modules/openid/serv_openid_rp.c index 69aa50b6e..080916282 100644 --- a/citadel/modules/openid/serv_openid_rp.c +++ b/citadel/modules/openid/serv_openid_rp.c @@ -967,6 +967,6 @@ CTDL_MODULE_INIT(openid_rp) openid_level_supported = 1; /* This module supports OpenID 1.0 only */ } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "openid_rp"; } diff --git a/citadel/modules/pop3/serv_pop3.c b/citadel/modules/pop3/serv_pop3.c index caba33187..f4a3f06b1 100644 --- a/citadel/modules/pop3/serv_pop3.c +++ b/citadel/modules/pop3/serv_pop3.c @@ -682,6 +682,6 @@ CTDL_MODULE_INIT(pop3) CtdlRegisterSessionHook(pop3_cleanup_function, EVT_STOP); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "pop3"; } diff --git a/citadel/modules/roomchat/serv_roomchat.c b/citadel/modules/roomchat/serv_roomchat.c index 225f0861c..fbe16403d 100644 --- a/citadel/modules/roomchat/serv_roomchat.c +++ b/citadel/modules/roomchat/serv_roomchat.c @@ -271,6 +271,6 @@ CTDL_MODULE_INIT(roomchat) CtdlRegisterSessionHook(roomchat_shutdown, EVT_SHUTDOWN); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "roomchat"; } diff --git a/citadel/modules/rwho/serv_rwho.c b/citadel/modules/rwho/serv_rwho.c index 86d2cd449..5c25a3943 100644 --- a/citadel/modules/rwho/serv_rwho.c +++ b/citadel/modules/rwho/serv_rwho.c @@ -290,6 +290,6 @@ CTDL_MODULE_INIT(rwho) CtdlRegisterProtoHook(cmd_stel, "STEL", "Enter/exit stealth mode"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "rwho"; } diff --git a/citadel/modules/sieve/serv_sieve.c b/citadel/modules/sieve/serv_sieve.c index 6a3ad9509..48a574423 100644 --- a/citadel/modules/sieve/serv_sieve.c +++ b/citadel/modules/sieve/serv_sieve.c @@ -1323,7 +1323,7 @@ CTDL_MODULE_INIT(sieve) CtdlRegisterCleanupHook(cleanup_sieve); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "sieve"; } diff --git a/citadel/modules/smtp/serv_smtp.c b/citadel/modules/smtp/serv_smtp.c index dcaf51952..9e1366bc9 100644 --- a/citadel/modules/smtp/serv_smtp.c +++ b/citadel/modules/smtp/serv_smtp.c @@ -989,6 +989,6 @@ CTDL_MODULE_INIT(smtp) CtdlRegisterSessionHook(smtp_cleanup_function, EVT_STOP); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "smtp"; } diff --git a/citadel/modules/spam/serv_spam.c b/citadel/modules/spam/serv_spam.c index df65ba6ef..bce3810f6 100644 --- a/citadel/modules/spam/serv_spam.c +++ b/citadel/modules/spam/serv_spam.c @@ -202,6 +202,6 @@ CTDL_MODULE_INIT(spam) CtdlRegisterMessageHook(spam_assassin, EVT_SMTPSCAN); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "spam"; } diff --git a/citadel/modules/test/serv_test.c b/citadel/modules/test/serv_test.c index 797958f19..8357ee0dd 100644 --- a/citadel/modules/test/serv_test.c +++ b/citadel/modules/test/serv_test.c @@ -81,6 +81,6 @@ CTDL_MODULE_INIT(test) } #endif - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "test"; } diff --git a/citadel/modules/vcard/serv_vcard.c b/citadel/modules/vcard/serv_vcard.c index 7a0df9ae8..cc0ad99fb 100644 --- a/citadel/modules/vcard/serv_vcard.c +++ b/citadel/modules/vcard/serv_vcard.c @@ -1470,6 +1470,6 @@ CTDL_MODULE_INIT(vcard) CitadelServiceDICT_TCP); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "vcard"; } diff --git a/citadel/modules/wiki/serv_wiki.c b/citadel/modules/wiki/serv_wiki.c index 242f52d04..f2b54c892 100644 --- a/citadel/modules/wiki/serv_wiki.c +++ b/citadel/modules/wiki/serv_wiki.c @@ -697,6 +697,6 @@ CTDL_MODULE_INIT(wiki) CtdlRegisterProtoHook(cmd_wiki, "WIKI", "Commands related to Wiki management"); } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "wiki"; } diff --git a/citadel/modules/xmpp/serv_xmpp.c b/citadel/modules/xmpp/serv_xmpp.c index 795112b1c..733c2363c 100644 --- a/citadel/modules/xmpp/serv_xmpp.c +++ b/citadel/modules/xmpp/serv_xmpp.c @@ -635,6 +635,6 @@ CTDL_MODULE_INIT(xmpp) } - /* return our Subversion id for the Log */ + /* return our module name for the log */ return "xmpp"; } -- 2.30.2