Sophie

Sophie

distrib > * > 2010.0 > * > by-pkgid > aaed9a725103cd38a823131d6fd8d9da > files > 4

apache-mod_scrmable-0.1-11mdv2010.0.i586.rpm

*** mod_scrmable README ***

What is mod_scrmable?

mod_scrmable is an apache2 module to scramble words. As long as the
first and the last letter of a word are in place you can still read the
word.

How does it works?

mod_scrmable is a module for the apache2 webserver. It works as a filter that 
hooks up to HTML output. The module filters html-tags and scrambles all other
words.

Who makes it?

mod_scrmable is written by Rob Gietema and Mark Kampstra.

Why make it?

Because it can be done.

Installation

Prerequisites

* Apache 2.0.47 - http://www.apache.org/
You will need the webserver and the source headers. Other versions 
may work but have not been tested.

Building and Installation

You need to know where the apxs tool is. Apxs is part of the apache2 
webserver and needed to compile mod_scrmable.

$ tar xfz mod_scrmable-0.1.tar.gz
$ cd mod_scrmable-0.3
$ ./configure --with-apxs=/path/to/apxs 
$ make
$ su root
# make install

That compiles mod_scrmable and installs the module into the httpd module directory.

Configuration

Now you need to configure the webserver.

Add the following directives to your httpd.conf file. The path to 
mod_scrmable.so depends on your apache installation.

LoadModule	scrmable_module	/usr/local/httpd/modules/mod_scrmable.so
AddOutputFilterByType	SCRMABLE	text/html application/xhtml+xml
or
AddOutputFilter	SCRMABLE	.html

So the webserver loads mod_scrmable and uses mod_scrmable to filter HTML and XHTML 
output.