INSTALLATION
  REQUIREMENTS
    Perl Modules

        HTML::Template (Version 1.8)
            Install: perl -MCPAN -e 'install "HTML::Template"'

            Provides the template page parsing. Version 1.8 introduced a
            'globalVars' paramater which is needed.

        Image::Size
            Install: perl -MCPAN -e 'install "Image::Size"'

            Provides a very fast utility for finding out the exact pixel
            height and width of an image.

        XML::Parser
            Install: perl -MCPAN -e 'install "XML::Parser"'

            This module is need to parse the input xml document describing
            the website. I have had difficulties installing this module
            after verions 2.29 since a required library 'expat' is no longer
            include, and I have been unsucessful installing newer versions
            of 'expat' on some operating systems. If you trouble installing
            the latest XML::Parser module then try to install Version 2.29
            using the command: "perl -MCPAN -e 'install
            "C/CO/COOPERCL/XML-Parser-2.29.tar.gz"'"

    External Programs

        Image Magick (convert)
            The program 'convert' in the Image Magick project is used to
            create all the various sized images. If the program is not
            already installed you can get it from
            http://www.imagemagick.org.

  INSTRUCTIONS
    UNIX
        These are the usual commands to install perl modules:

              perl Makefile.PL
              make
              make test
              make install

    Windows
        Special versions of Perl and Image Magic need to be installed for
        Windows and a special way to install Spidy and dependent perl
        modules is needed.

            ActivePerl
                You need ActivePerl. Download and install it from here:
                http://www.activestate.com/Products/Download/Register.plex?i
                d=ActivePerl

                After ActivePerl is installed start the Perl Package Manager

                 Click "Start" 
                  -> then "Run" 
                  -> in the "Open:" box enter "ppm"
                  -> click "OK"

                A dos-like terminal should appear with a "PPM>" prompt.
                Enter these commands:

                 install Image::Size HTML::Template
                 install http://spidereyeballs.com/ppm/Spidy.ppd

            Image Magick
                You need the Image Magick binaries for windows. You can
                download them from here:
                http://www.imagemagick.org/www/QuickStart.html

                 -> Go to the "XP, Win2K, WinME, NT, Win98, Win95 Install" Section near the bottom
                 and download and install the package.
