Classifieds servlet 1.2

It is a Java servlet allows you to publish small announces (like classifieds sections in the newspaper).

the usage is:

    http://your_host/servlet/Classifieds?config_file

    Runs the classified manager and use the mentioned file as a configuration file.
 

Configuration file is a text file, each line describes one parameter in the form of

    param=value

Empty lines and lines starts with # are ignored. Current version supports the following list of parameters:

#
#
# classified config
#
 

# title (by default is empty)
title=My classified

# background color (by default is #FFFFFF)
bgcolor=#FFFFF

# columns per page (by default is 3)
columns=3

# rows per page (by default is 4)
rows=4

# border for announces (by default is 1)
border=0

# allow/disable add (by default is 1)
add=1

# directory for announces (must be set). Any existing directory on your server
base=/your_directory_is_here
 

    For downloading:   Classifieds.class
    Sample of configuration file: sclass
 

    Comments, suggestions?