* Add a html plugin, which can be used to write wikis in raw html,
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 3 Jul 2006 22:31:20 +0000 (22:31 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 3 Jul 2006 22:31:20 +0000 (22:31 +0000)
  if you'd ever want to do such a thing. Slightly tricky, since ikiwiki
  defaults to not processing .html files, since w/o this plugin they would
  be copied unsanitised. With this plugin, it will process, and html
  sanitise, them like any other page type.

IkiWiki/Plugin/html.pm [new file with mode: 0644]
debian/changelog
doc/plugins/html.mdwn [new file with mode: 0644]

diff --git a/IkiWiki/Plugin/html.pm b/IkiWiki/Plugin/html.pm
new file mode 100644 (file)
index 0000000..6bf8132
--- /dev/null
@@ -0,0 +1,18 @@
+#!/usr/bin/perl
+# Raw html as a wiki page type.
+package IkiWiki::Plugin::html;
+
+use warnings;
+use strict;
+use IkiWiki;
+
+sub import { #{{{
+       IkiWiki::hook(type => "htmlize", id => "html", call => sub { shift });
+       IkiWiki::hook(type => "htmlize", id => "htm", call => sub { shift });
+
+       # ikiwiki defaults to skipping .html files as a security measure;
+       # make it process them so this plugin can take effect
+       $IkiWiki::config{wiki_file_prune_regexp} =~ s/\|\\\.html\?\$//;
+} # }}}
+
+1
index 1fafe41681967e837b8925940849a7a4dc1bd6e6..b95b6b7681ea98669cff7cd13c068e662ba6a14d 100644 (file)
@@ -29,8 +29,13 @@ ikiwiki (1.8) UNRELEASED; urgency=low
     are added.
   * Support htmlize plugins and make mdwn one such plugin, which is enabled by
     default (of course!). Based on a patch by Faidon Liambotis.
+  * Add a html plugin, which can be used to write wikis in raw html,
+    if you'd ever want to do such a thing. Slightly tricky, since ikiwiki
+    defaults to not processing .html files, since w/o this plugin they would
+    be copied unsanitised. With this plugin, it will process, and html
+    sanitise, them like any other page type.
 
- -- Joey Hess <joeyh@debian.org>  Mon,  3 Jul 2006 18:06:49 -0400
+ -- Joey Hess <joeyh@debian.org>  Mon,  3 Jul 2006 18:15:30 -0400
 
 ikiwiki (1.7) unstable; urgency=low
 
diff --git a/doc/plugins/html.mdwn b/doc/plugins/html.mdwn
new file mode 100644 (file)
index 0000000..01e366c
--- /dev/null
@@ -0,0 +1,8 @@
+This plugin lets raw html pages be used as source pages for the wiki. The
+html pages will still be wrapped in the same html template as any other
+page, so for best results you should include only the page body in the html
+file. Also, if the htmlscrubber plugin is enabled, the html pages will be
+sanitised like any other page. You can also use standard [[WikiLinks]] etc
+in the html pages.
+
+This plugin is included in ikiwiki, but is not enabled by default.