NAME

WWW::Offline::Toolkit - Perl module for offline website creation.

SYNOPSIS

my $kit = 
	WWW::Offline::Toolkit->new(
		'DataDirectory'   => './data',
		'OnlineDirectory' => './online',
		'IndexFile'       => './online/index.html',

		'MainCategoryId'         => 'cat-Main',
		'PostsDirectory'         => './online/posts',
		'CategoriesDirectory'    => './online/categories',
		'CategoryPageTemplateId' => 'tmpl-Main',
		'PostTeaserTemplateId'   => 'tmpl-Teaser',
		'ImageTemplateId'        => 'tmpl-Image',
	);

$kit->process;

DESCRIPTION

WWW::Offline::Toolkit provides a way of creating a website offline (aka bunch of XHTML files) based on a set of assets that are defined using a custom lisp-like text format.

Assets like pages, posts, categories, images, albums and sounds are supported.

EXPORT

None by default.

SEE ALSO

Nothing to mention here, yet.

AUTHOR

Tom Kirchner, <tom@tomkirchner.com>

COPYRIGHT AND LICENSE

Copyright (C) 2011 by Tom Kirchner

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.