[geeklog-cvs] geeklog: Stick all the Spam-X modules in a @subpackage Modules

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sun Mar 15 16:55:22 EDT 2009


details:   http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/cb1ba8d99085
changeset: 6838:cb1ba8d99085
user:      Dirk Haun <dirk at haun-online.de>
date:      Sun Mar 15 17:29:16 2009 +0100
description:
Stick all the Spam-X modules in a @subpackage Modules

diffstat:

22 files changed, 22 insertions(+)
plugins/spamx/BaseAdmin.class.php               |    1 +
plugins/spamx/BaseCommand.class.php             |    1 +
plugins/spamx/BlackList.Examine.class.php       |    1 +
plugins/spamx/DeleteComment.Action.class.php    |    1 +
plugins/spamx/EditBlackList.Admin.class.php     |    1 +
plugins/spamx/EditHeader.Admin.class.php        |    1 +
plugins/spamx/EditIP.Admin.class.php            |    1 +
plugins/spamx/EditIPofURL.Admin.class.php       |    1 +
plugins/spamx/Header.Examine.class.php          |    1 +
plugins/spamx/IP.Examine.class.php              |    1 +
plugins/spamx/IPofUrl.Examine.class.php         |    1 +
plugins/spamx/Import.Admin.class.php            |    1 +
plugins/spamx/LogView.Admin.class.php           |    1 +
plugins/spamx/MTBlackList.Examine.class.php     |    1 +
plugins/spamx/MailAdmin.Action.class.php        |    1 +
plugins/spamx/MassDelTrackback.Admin.class.php  |    1 +
plugins/spamx/MassDelete.Admin.class.php        |    1 +
plugins/spamx/ProjectHoneyPot.Examine.class.php |    1 +
plugins/spamx/SLV.Examine.class.php             |    1 +
plugins/spamx/SLVbase.class.php                 |    1 +
plugins/spamx/SLVreport.Action.class.php        |    1 +
plugins/spamx/SLVwhitelist.Admin.class.php      |    1 +

diffs (242 lines):

diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/BaseAdmin.class.php
--- a/plugins/spamx/BaseAdmin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/BaseAdmin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -6,6 +6,7 @@
  * @author Tom Willett	tomw AT pigstye DOT net 
  *
  * @package Spam-X
+ * @subpackage Modules
  * @abstract
  *
  */
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/BaseCommand.class.php
--- a/plugins/spamx/BaseCommand.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/BaseCommand.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -6,6 +6,7 @@
  * @author Tom Willett	tomw AT pigstye DOT net 
  *
  * @package Spam-X
+ * @subpackage Modules
  * @abstract
  *
  */
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/BlackList.Examine.class.php
--- a/plugins/spamx/BlackList.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/BlackList.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
  * Licensed under GNU General Public License
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'BlackList.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/DeleteComment.Action.class.php
--- a/plugins/spamx/DeleteComment.Action.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/DeleteComment.Action.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
  * Licensed under GNU General Public License
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'DeleteComment.Action.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/EditBlackList.Admin.class.php
--- a/plugins/spamx/EditBlackList.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/EditBlackList.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -11,6 +11,7 @@
  * Licensed under GNU General Public License
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'EditBlackList.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/EditHeader.Admin.class.php
--- a/plugins/spamx/EditHeader.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/EditHeader.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -12,6 +12,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'EditHeader.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/EditIP.Admin.class.php
--- a/plugins/spamx/EditIP.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/EditIP.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -11,6 +11,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'EditIP.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/EditIPofURL.Admin.class.php
--- a/plugins/spamx/EditIPofURL.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/EditIPofURL.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -11,6 +11,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'EditIPofURL.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/Header.Examine.class.php
--- a/plugins/spamx/Header.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/Header.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -12,6 +12,7 @@
 * Licensed under the GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'Header.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/IP.Examine.class.php
--- a/plugins/spamx/IP.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/IP.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'IP.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/IPofUrl.Examine.class.php
--- a/plugins/spamx/IPofUrl.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/IPofUrl.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'IPofUrl.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/Import.Admin.class.php
--- a/plugins/spamx/Import.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/Import.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -16,6 +16,7 @@
  * Cheah Chu Yeow (http://blog.codefront.net/)
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'Import.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/LogView.Admin.class.php
--- a/plugins/spamx/LogView.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/LogView.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
  * Licensed under GNU General Public License
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'LogView.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/MTBlackList.Examine.class.php
--- a/plugins/spamx/MTBlackList.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/MTBlackList.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -14,6 +14,7 @@
  * http://www.jayallen.org/comment_spam/
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'MTBlackList.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/MailAdmin.Action.class.php
--- a/plugins/spamx/MailAdmin.Action.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/MailAdmin.Action.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
  * Licensed under GNU General Public License
  *
  * @package Spam-X
+ * @subpackage Modules
  */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'MailAdmin.Action.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/MassDelTrackback.Admin.class.php
--- a/plugins/spamx/MassDelTrackback.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/MassDelTrackback.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -13,6 +13,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'MassDelTrackback.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/MassDelete.Admin.class.php
--- a/plugins/spamx/MassDelete.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/MassDelete.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -11,6 +11,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'MassDelete.Admin.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/ProjectHoneyPot.Examine.class.php
--- a/plugins/spamx/ProjectHoneyPot.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/ProjectHoneyPot.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -36,6 +36,7 @@
 
 /**
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'ProjectHoneyPot.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/SLV.Examine.class.php
--- a/plugins/spamx/SLV.Examine.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/SLV.Examine.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
 * Licensed under the GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'SLV.Examine.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/SLVbase.class.php
--- a/plugins/spamx/SLVbase.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/SLVbase.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
 * Licensed under the GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'SLVbase.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/SLVreport.Action.class.php
--- a/plugins/spamx/SLVreport.Action.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/SLVreport.Action.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -10,6 +10,7 @@
 * Licensed under the GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'SLVreport.Action.class.php') !== false) {
diff -r bc2e579f5041 -r cb1ba8d99085 plugins/spamx/SLVwhitelist.Admin.class.php
--- a/plugins/spamx/SLVwhitelist.Admin.class.php	Sun Mar 15 17:16:21 2009 +0100
+++ b/plugins/spamx/SLVwhitelist.Admin.class.php	Sun Mar 15 17:29:16 2009 +0100
@@ -11,6 +11,7 @@
 * Licensed under GNU General Public License
 *
 * @package Spam-X
+* @subpackage Modules
 */
 
 if (strpos(strtolower($_SERVER['PHP_SELF']), 'SLVwhitelist.Admin.class.php') !== false) {



More information about the geeklog-cvs mailing list