Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 344
- Log:
Massive changeset which brings the old, ROOL customised Instiki
version up to date, but without any ROOL customisations in this
latest checked-in version (which is 0.19.1). This is deliberate,
so that it's easy to see the changes made for the ROOL version
in a subsequent changeset. The 'app/views/shared' directory is not
part of Instiki but is kept to maintain the change history with
updated ROOL customisations, some of which involve the same files
in that same directory.
- Author:
- rool
- Date:
- Sat Mar 19 19:52:13 +0000 2011
- Size:
- 1592 Bytes
1 | This plugin checks if a user of your web application is listed in DNSBLs |
2 | (DNS Blackhole Lists). These are lists of misbehaving IP addresses. |
3 | There are many DNSBLs, some are more aggressive than others. |
4 | More information at http://en.wikipedia.org/wiki/DNSBL |
5 | |
6 | This filter will result in one DNS request for every blocklist that you have |
7 | configured. This might be problematic for sites under heavy load, although this |
8 | plugin has been used on high-traffic sites without any problem. One DNS |
9 | request takes a few miliseconds to complete, after all. |
10 | |
11 | |
12 | INSTALLATION |
13 | |
14 | 1. execute "script/plugin install http://www.spacebabies.nl/svn/dnsbl_check" |
15 | 2. add "before_filter :dnsbl_check" to controllers that need checking |
16 | 3. restart your application. |
17 | |
18 | |
19 | VERSION HISTORY |
20 | |
21 | 0.1 18 June 2006 Initial release |
22 | 0.2 10 June 2006 Renamed to dnsbl_check, bugfix |
23 | 0.3 20 June 2006 Removed sorbs from distribution, was not supposed to be included (too aggressive) |
24 | 0.4 18 July 2006 Explicit return false added, moved to a per-controller basis (not global anymore) |
25 | 1.0 16 August 2006 Renamed 0.4 to 1.0. I have been using the plugin very succesfully for months now. |
26 | 1.1 17 October 2006 Multithreaded version |
27 | 1.2 23 October 2006 Using the native Ruby resolver library for better multithreaded support |
28 | 1.2.1 25 October 2006 Accepts a wider range of dns responses |
29 | 1.2.2 11 December 2006 dnsbls are seemingly under attack, added code to cope with failing service |
30 | 1.3 30 November 2007 Chique 403 template, moved to Subversion based installation |
31 | |
32 | |
33 | MORE INFORMATION |
34 | |
35 | http://spacebabies.nl/dnsbl_check/ |
36 | joost@spacebabies.nl |