In article <000c01c259bc$fd917fd0$[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> wrote:

> The module provides methods (it's OO) that allow a programmer to easily
> create a simple blogging system, along the lines of 'blogger.com' (Except
> its a bit more rudimentary). This is a pure Perl module. It requires the
> XML::XSL module.
> 
> I have chosen the name for the module to be Blog::SimpleBlog.

how about Blog::Simple?  you don't need the extra 'Blog'.

> $sbO->create_Blog_Index();

how about $blog->create_index()?  you already know it's a blog,
and you don't need the studly caps.

> $sbO->add_Blog($title,$author,$email,$smmry,$content);

do you have other add_* methods?  if not, how about just "add"?

> $sbO->gen_Blog_Current('blog_test.xsl',3);

what is gen?  how about $blog->transform( 'blog_test.xsl', 3 );

> my @deleted = $sbO->remove_Blog('08');

$blog->remove('08');

-- 
brian d foy (one of many PAUSE admins), http://pause.perl.org

Reply via email to