Changeset 210
Legend:
- Unmodified
- Added
- Removed
-
trunk/Build.PL
r204 r210 217 217 }, 218 218 dynamic_config => 1, 219 create_makefile_pl => "traditional",220 219 ); 221 220 -
trunk/Changes
r209 r210 1 0.21 1 0.21 17 July 2003 2 We no longer autogenerate a Makefile.PL, since it doesn't pick up 3 all the questions that need to be asked. Sorry. Use Module::Build 4 as detailed in INSTALL, since you won't be able to get the right 5 version of Text::WikiFormat installed without it in any case. 6 2 7 Added version number to CGI.pm prereq as Alex McLintock hit a 3 8 version that didn't have unescape. -
trunk/lib/OpenGuides/Utils.pm
r202 r210 3 3 use strict; 4 4 use vars qw( $VERSION ); 5 $VERSION = '0.0 4';5 $VERSION = '0.05'; 6 6 7 7 use Carp qw( croak ); … … 100 100 macros => \%macros, 101 101 node_prefix => "$script_name?", 102 edit_prefix => "$script_name?action=edit&id=" 102 edit_prefix => "$script_name?action=edit&id=", 103 munge_urls => 1, 103 104 ); 104 105
