Changeset 19

Show
Ignore:
Timestamp:
02/09/05 12:09:33
Author:
brad
Message:

Updates to license and readme; added SelfLoader? back to dsbl.pl.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/license.txt

    r17 r19  
    1 Copyright (c) 2002 Brad Choate, bradchoate.com 
     1Copyright (c) 2004-2005 Brad Choate, bradchoate.com 
     2and Tobias Hollerich, kahunaburger.com 
    23 
    34Permission is hereby granted, free of charge, to 
  • trunk/plugins/dnsbl/dnsbl.pl

    r17 r19  
    1111# MT implementation inspired by http://weblog.sinteur.com/index.php?p=7967 
    1212 
    13 #use SelfLoader; 
     13use SelfLoader; 
    1414 
    1515my $plugin = new MT::Plugin::DNSBL({ 
     
    33331; 
    3434 
    35 #__DATA__ 
     35__DATA__ 
    3636sub instance { 
    3737    $plugin; 
     
    451451    $str; 
    452452} 
    453  
    454 1; 
  • trunk/readme.txt

    r17 r19  
    1 DSBL Check for Movable Type 
    2 Release 1.2 
     1DNSBL 
     2A plugin for Movable Type 
     3 
     4Release 2.0 
    35 
    46Brad Choate 
     
    1517 
    1618 
     19REQUIREMENTS 
     20 
     21This plugin requires Movable Type 3.1 or later. 
     22 
     23 
    1724INSTALLATION 
    1825 
    19 Install the following files to your Movable Type 'plugins' directory: 
     26Install the following files to your Movable Type 'plugins' directory (if 
     27a 'plugins' directory does not already exist with your installation, you 
     28will need to create it): 
    2029 
    21         plugins/dnsbl/dnsbl.pl 
    22         plugins/dnsbl/mt-dnsbl.cgi 
    23         plugins/dnsbl/tmpl/dnsbl.tmpl 
    24         plugins/dnsbl/tmpl/view_cache.tmp
     30    mt/plugins/dnsbl/ 
     31                     dnsbl.pl 
     32                     mt-dnsbl.cgi 
     33                     dnsbltoo
    2534 
     35And these files into this location: 
     36 
     37    mt/plugins/dnsbl/tmpl/ 
     38                          dnsbl.tmpl 
     39                          view_cache.tmpl 
     40 
     41Of these files, mt-dnsbl.cgi and dnsbltool should have "execute" 
     42permission.  The other files must simply be readable. 
    2643 
    2744If you experience problems or unexpected results, simply remove these 
     
    6582 
    6683 
     84CREDITS 
     85 
     86Developers: Brad Choate and Tobias Hollerich. 
     87Testing and technical feedback: Ask Bjørn Hansenand Adam Kalsey. 
     88 
     89 
     90LICENSE 
     91 
     92Released under the MIT license. Please see 
     93    http://www.opensource.org/licenses/mit-license.php 
     94for details. 
     95 
     96 
    6797HISTORY 
    6898 
    69 2/8/2005 - 1.2 release 
     992/8/2005 - 2.0 release 
    70100    * Integrated MT-ProxyPlug functionality by Tobias Hollerich. 
    71101    * Added domain-based blacklisting; extracts URLs mentioned and checks 
    72102      against public domain blacklist services. 
     103    * Added support for TrackBack filtering. 
    73104    * Added IP-block cache management screen. 
    74105    * Added a configuration screen. 
    75106    * Removed requirement of Net::DNS package. 
    76107 
    77 11/5/2004 - 1.1 release to support two modes: deny and block. 
     10811/5/2004 - 1.1 release 
    78109 
    79 11/5/2004 - Initial release. 
     11011/5/2004 - Initial release