Apache2::SiteMap - Dynamically create Google SiteMap files


NAME

Apache2::SiteMap - Dynamically create Google SiteMap files


SYNOPSIS

Create a Google SiteMap much like a mod_dir listing.

  <Location "/sitemap.xml">
      SetHandler modperl
      PerlHandler Apache2::SiteMap
      PerlSetVar SiteMapBase http://host/
      PerlSetVar SiteMapDir /path/to/dir
  </Location>

  <Location "/music/sitemap.xml">
      SetHandler modperl
      PerlHandler Apache2::SiteMap
      PerlSetVar SiteMapBase http://host/archives/
      PerlSetVar SiteMapDir /path/to/archives/dir
  </Location>


PUBLIC FUNCTIONS

handler


AUTHOR

Nick Gerakines, <nick at gerakines.net>


BUGS

Please report any bugs or feature requests to bug-apache2-sitemap at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.


SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Apache2::SiteMap

You can also look for information at:


TODO

Add ability to set a flag for recursive file listings.

Add ability to filter files based on file lists and regex.


COPYRIGHT & LICENSE

Copyright 2006 Nick Gerakines, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

 Apache2::SiteMap - Dynamically create Google SiteMap files