[Refdb-cvs] CVS: makestyle refdb-ms,1.1,1.2
Status: Beta
Brought to you by:
mhoenicka
From: David N. <dav...@us...> - 2005-09-19 12:02:17
|
Update of /cvsroot/refdb/makestyle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv560 Modified Files: refdb-ms Log Message: Now uses 'Makestyle.pm' module instead of 'refdb-ms.pl' library Index: refdb-ms =================================================================== RCS file: /cvsroot/refdb/makestyle/refdb-ms,v retrieving revision 1.1 retrieving revision 1.2 diff -u -U2 -r1.1 -r1.2 --- refdb-ms 12 Aug 2004 13:46:48 -0000 1.1 +++ refdb-ms 19 Sep 2005 12:02:07 -0000 1.2 @@ -1,9 +1,11 @@ #!/usr/bin/perl -=head1 RefDB MakeStyle (refdb-ms) +=head1 NAME + +refdb-ms - RefDB MakeStyle, a bibliography style generator for RefDB =head1 Summary -A utility to aid the generation of RefDB Styles. +A utility to aid the generation of RefDB bibliography styles for RefDB <refdb.sourceforge.net>. =head1 Requirements @@ -11,13 +13,18 @@ One of the design goals for this utility was to minimise external dependencies. -B<refdb-ms.pl> is a custom library needed by this script and is distributed with it. +=over + +=item Refdb::Makestyle + +A custom module containing methods and attributes used by this script. -See C<refdb-ms.pl> documentation for its dependencies. +Debian package: libperl-refdb-makestyle. + +=back =cut use strict; - -require "refdb-ms.pl"; +use Refdb::Makestyle; $ENV{'CLUI_DIR'} = "OFF"; @@ -43,5 +50,5 @@ =cut -print "RefDB MakeStyle -- a utility to aid in the generation of RefDB styles.\n"; +print "RefDB MakeStyle -- generate bibliography styles for RefDB.\n"; $ui->help_system() if $ui->_input_confirm( "Do you require help?" ); @@ -54,5 +61,6 @@ =cut -my ( $current_element , @choice , $child ) = ( $ui->get_root()->get_last_incomplete() ); +my ( $current_element , @choice , $child ) = + ( $ui->get_root()->get_last_incomplete() ); $current_element->add_attributes(); $current_element->enter_value(); |