Changeset 210

Show
Ignore:
Timestamp:
07/17/03 13:21:28 (5 years ago)
Author:
kake
Message:

Compatibility for upcoming UseMod formatter change

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/Build.PL

    r204 r210  
    217217        }, 
    218218    dynamic_config => 1, 
    219     create_makefile_pl => "traditional", 
    220219); 
    221220 
  • trunk/Changes

    r209 r210  
    1 0.21     
     10.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 
    27        Added version number to CGI.pm prereq as Alex McLintock hit a 
    38        version that didn't have unescape. 
  • trunk/lib/OpenGuides/Utils.pm

    r202 r210  
    33use strict; 
    44use vars qw( $VERSION ); 
    5 $VERSION = '0.04'; 
     5$VERSION = '0.05'; 
    66 
    77use Carp qw( croak ); 
     
    100100        macros              => \%macros, 
    101101        node_prefix         => "$script_name?", 
    102         edit_prefix         => "$script_name?action=edit&id=" 
     102        edit_prefix         => "$script_name?action=edit&id=", 
     103        munge_urls          => 1, 
    103104    ); 
    104105