Changeset 154

Show
Ignore:
Timestamp:
05/14/03 19:45:15 (6 years ago)
Author:
kake
Message:

Added newpage.cgi

Location:
trunk
Files:
3 added
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/Build.PL

    r147 r154  
    180180        'CGI::Cookie' => 0, 
    181181        'CGI::Wiki' => '0.36', 
    182         'CGI::Wiki::Formatter::UseMod' => '0.03', 
     182        'CGI::Wiki::Formatter::UseMod' => '0.04', # for correct FreeUpper 
    183183        'CGI::Wiki::Plugin::Categoriser' => 0, 
    184184        'CGI::Wiki::Plugin::GeoCache' => 0, 
     
    209209$build->{config}{__extra_scripts}     =  
    210210                      [ "wiki.conf", "preferences.cgi", "supersearch.cgi", 
    211                         "pubcrawl.cgi" ]; 
     211                        "newpage.cgi", "pubcrawl.cgi" ]; 
    212212$build->{config}{__templates}         = [ 
    213213                      "backlink_results.tt", 
     
    217217                      "edit_conflict.tt", 
    218218                      "edit_form.tt", 
     219                      "error.tt", 
    219220                      "footer.tt", 
    220221                      "header.tt", 
    221222                      "home_node.tt", 
    222223                      "navbar.tt", 
     224                      "newpage.tt", 
    223225                      "node.tt", 
    224226                      "node_history.tt", 
  • trunk/Changes

    r142 r154  
    1 0.10     
     10.11     
     2        Added newpage.cgi for an easy way to create new pages. 
     3 
     4        Took loads of repeated code (for extracting and packaging metadata 
     5        variables) out of wiki.cgi into OpenGuides::Template. 
     6 
     70.10    11 May 2003 
    28        Added OpenGuides::Diff to provide nice diff output between 
    39        node versions. 
  • trunk/PREREQUISITES

    r147 r154  
    1 Modules required by OpenGuides 0.10 
     1Modules required by OpenGuides 0.11 
    22=================================== 
    33 
     
    66CGI::Cookie 
    77CGI::Wiki (version 0.36 or later) 
    8 CGI::Wiki::Formatter::UseMod (version 0.03 or later) 
     8CGI::Wiki::Formatter::UseMod (version 0.04 or later) 
    99CGI::Wiki::Plugin::Categoriser 
    1010CGI::Wiki::Plugin::GeoCache 
  • trunk/lib/OpenGuides.pm

    r142 r154  
    44use vars qw( $VERSION ); 
    55 
    6 $VERSION = '0.10'; 
     6$VERSION = '0.11'; 
    77 
    88=head1 NAME 
  • trunk/templates/navbar.tt

    r52 r154  
    44    <li><a href="[% home_link %]">[% home_name %]</a></li> 
    55    <li><a href="[% cgi_url %]?RecentChanges">RecentChanges</a></li> 
     6    <li><a href="newpage.cgi">Create a new page</a></li> 
    67    <li><a href="[% cgi_url %]?action=random">Random Page</a></li> 
    78    [% IF geocache_link %] 
  • trunk/wiki.cgi

    r153 r154  
    55 
    66use vars qw( $VERSION ); 
    7 $VERSION = '0.10'; 
     7$VERSION = '0.11'; 
    88 
    99use CGI qw/:standard/;