Changeset 230
- Timestamp:
- 08/04/03 15:06:59 (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
PREREQUISITES (modified) (1 diff)
-
lib/OpenGuides.pm (modified) (1 diff)
-
lib/OpenGuides/Template.pm (modified) (2 diffs)
-
t/61_bug_textareas.t (added)
-
wiki.cgi (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changes
r228 r230 1 0.23 4 August 2003 2 Removed the "POST_CHOMP" option as it was messing up textareas, added 3 a test to make sure this doesn't reoccur. 4 1 5 0.22 4 August 2003 2 6 Fixed bug with usernames containing spaces in recent changes/userstats. -
trunk/MANIFEST
r214 r230 56 56 t/41_pubcrawl.t 57 57 t/51_diff.t 58 t/61_bug_textareas.t 58 59 t/templates/15_test.tt 59 60 wiki.cgi -
trunk/PREREQUISITES
r224 r230 1 Modules required by OpenGuides 0.2 21 Modules required by OpenGuides 0.23 2 2 =================================== 3 3 -
trunk/lib/OpenGuides.pm
r213 r230 4 4 use vars qw( $VERSION ); 5 5 6 $VERSION = '0.2 2';6 $VERSION = '0.23'; 7 7 8 8 =head1 NAME -
trunk/lib/OpenGuides/Template.pm
r226 r230 3 3 use strict; 4 4 use vars qw( $VERSION ); 5 $VERSION = '0.1 0';5 $VERSION = '0.11'; 6 6 7 7 use Carp qw( croak ); … … 105 105 my $config = $args{config} or croak "No config supplied"; 106 106 my $template_path = $config->{_}->{template_path}; 107 my $tt = Template->new( { POST_CHOMP => 1, 108 INCLUDE_PATH => $template_path } ); 107 my $tt = Template->new( { INCLUDE_PATH => $template_path } ); 109 108 110 109 my $script_name = $config->{_}->{script_name}; -
trunk/wiki.cgi
r225 r230 5 5 6 6 use vars qw( $VERSION ); 7 $VERSION = '0.2 2';7 $VERSION = '0.23'; 8 8 9 9 use CGI qw/:standard/;
