diff options
author | bstpierre <bstpierre@web> | 2008-10-07 12:34:52 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-10-07 12:34:52 -0400 |
commit | 5b2b4a28a6e8d04b05f3bd3904c245aef5758716 (patch) | |
tree | d3f2fd89b9a224350cbd901324e5c33eb6afaec9 /doc | |
parent | cbde407de8cb26d227410f5fc47db842a55c0a4a (diff) | |
download | ikiwiki-5b2b4a28a6e8d04b05f3bd3904c245aef5758716.tar ikiwiki-5b2b4a28a6e8d04b05f3bd3904c245aef5758716.tar.gz |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/todo/modify_page_filename_in_plugin.mdwn | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/todo/modify_page_filename_in_plugin.mdwn b/doc/todo/modify_page_filename_in_plugin.mdwn new file mode 100644 index 000000000..7c0a909eb --- /dev/null +++ b/doc/todo/modify_page_filename_in_plugin.mdwn @@ -0,0 +1,33 @@ +I'm writing a plugin to wikify c/c++ code. + +By default ikiwiki generates xxx.html for a file called xxx.c. + +The problem is that I occasionally have xxx.c and xxx.h in the same directory and there's a filename collision. + +My solution is to allow plugins to provide a hook that sets the pagename. --[[/users/bstpierre]] + + --- /usr/share/perl5/IkiWiki.pm.ORIG 2008-10-03 14:12:50.000000000 -0400 + +++ /usr/share/perl5/IkiWiki.pm 2008-10-07 11:57:26.000000000 -0400 + @@ -196,11 +196,32 @@ + + sub pagename ($) { #{{{ + my $file=shift; + + my $type=pagetype($file); + + + + if(defined $type && + + exists $hooks{pagename} && + + exists $hooks{pagename}{$type}) { + + + + return $hooks{pagename}{$type}{call}($file); + + + + } else { + + + my $page=$file; + $page=~s/\Q.$type\E*$// if defined $type; + return $page; + + } + } #}}} + + sub htmlpage ($) { #{{{ + |