Skip to content

Commit

Permalink
[wiki] chased after hierarchical changes
Browse files Browse the repository at this point in the history
This file still contained some of the old module names. Fixed that.
  • Loading branch information
Carl Masak committed Nov 15, 2010
1 parent d5b14b3 commit 590d5a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wiki
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!perl6
use v6;

use CGI;
use November::CGI;
use November;
use Config;
use November::Config;
use Text::Markup::Wiki::MediaWiki;

my $c = Config.new(
my $c = November::Config.new(
markup => Text::Markup::Wiki::MediaWiki.new(),
skin => 'CleanAndSoft'
);
my November $wiki = November.new(
config => $c,
);
my $cgi = CGI.new;
my $cgi = November::CGI.new;
$wiki.handle_request($cgi);

0 comments on commit 590d5a7

Please sign in to comment.