From 18a68a2c4bd671f730968493bbe2916e2d7c012e Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Tue, 1 Dec 2009 20:52:59 -0500 Subject: clearing up a bit of confusion about who I am --- doc/users/rubykat.mdwn | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/users/rubykat.mdwn diff --git a/doc/users/rubykat.mdwn b/doc/users/rubykat.mdwn new file mode 100644 index 000000000..f37d13306 --- /dev/null +++ b/doc/users/rubykat.mdwn @@ -0,0 +1 @@ +See [[KathrynAndersen]]. -- cgit v1.2.3 From 9cfd232a9c7ead375d6bcdfb5a91c8ec02d3e910 Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Tue, 1 Dec 2009 20:54:15 -0500 Subject: clearing up a bit of confusion about who I am --- doc/users/KathrynAndersen.mdwn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/users/KathrynAndersen.mdwn b/doc/users/KathrynAndersen.mdwn index c26a91223..2f2838367 100644 --- a/doc/users/KathrynAndersen.mdwn +++ b/doc/users/KathrynAndersen.mdwn @@ -1,2 +1,4 @@ +* aka [[rubykat]] * Currently an active [PmWiki](http://www.pmwiki.org) user, but investigating changing over to ikiwiki (if I can write the plugins I need). * +* -- cgit v1.2.3 From 6eb35262d5c2cd3a9b24029d958cc24743ccd64f Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Tue, 1 Dec 2009 20:55:25 -0500 Subject: clearing up a bit of confusion about who I am --- doc/plugins/contrib/xslt.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/plugins/contrib/xslt.mdwn b/doc/plugins/contrib/xslt.mdwn index f98f8378d..c30e618ea 100644 --- a/doc/plugins/contrib/xslt.mdwn +++ b/doc/plugins/contrib/xslt.mdwn @@ -1,4 +1,4 @@ -[[!template id=plugin name=xslt author="rubykat"]] +[[!template id=plugin name=xslt author="[[rubykat]]"]] ## NAME IkiWiki::Plugin::xslt - ikiwiki directive to process an XML file with XSLT -- cgit v1.2.3 From 5d68ee9e4e920ef3756c7489fd84eafd1b332f87 Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Wed, 2 Dec 2009 00:43:47 -0500 Subject: here be a plugin for processing POD! --- doc/plugins/contrib/pod.mdwn | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 doc/plugins/contrib/pod.mdwn diff --git a/doc/plugins/contrib/pod.mdwn b/doc/plugins/contrib/pod.mdwn new file mode 100644 index 000000000..648e3b0c2 --- /dev/null +++ b/doc/plugins/contrib/pod.mdwn @@ -0,0 +1,35 @@ +## NAME + +IkiWiki::Plugin::pod - process pages written in POD format. + +## SYNOPSIS + +In the ikiwiki setup file, enable this plugin by adding it to the +list of active plugins. + + add_plugins => [qw{goodstuff pod ....}], + +## DESCRIPTION + +IkiWiki::Plugin::pod is an IkiWiki plugin enabling ikiwiki to +process pages written in POD (Plain Old Documentation) format. +This will treat files with a `.pod` or `.pm` extension as files +which contain POD markup. + +## OPTIONS + +The following options can be set in the ikiwiki setup file. + +* **pod_index:** If true, this will generate an index (table of contents) for the page. +* **pod_toplink:** The label to be used for links back to the top of the page. If this is empty, then no top-links will be generated. + +## PREREQUISITES + + IkiWiki + Pod::Xhtml + IO::String + +## DOWNLOAD + +* browse at GitHub: +* git repo at git://github.com/rubykat/ikiplugins.git -- cgit v1.2.3 From 11a6112b561a5624b30cb587a067d35e0098c21d Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Wed, 2 Dec 2009 00:45:23 -0500 Subject: added the proper template thingie --- doc/plugins/contrib/pod.mdwn | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/plugins/contrib/pod.mdwn b/doc/plugins/contrib/pod.mdwn index 648e3b0c2..5ca1b3347 100644 --- a/doc/plugins/contrib/pod.mdwn +++ b/doc/plugins/contrib/pod.mdwn @@ -1,3 +1,4 @@ +[[!template id=plugin name=pod author="[[rubykat]]"]] ## NAME IkiWiki::Plugin::pod - process pages written in POD format. -- cgit v1.2.3 From 2a0f15d2cd2c5d6855650a27c4f6e7e56900ee84 Mon Sep 17 00:00:00 2001 From: harishcm Date: Wed, 2 Dec 2009 08:23:08 -0500 Subject: --- doc/bugs/bestlink_returns_deleted_pages.mdwn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/bugs/bestlink_returns_deleted_pages.mdwn b/doc/bugs/bestlink_returns_deleted_pages.mdwn index 035023c7d..2aed0520c 100644 --- a/doc/bugs/bestlink_returns_deleted_pages.mdwn +++ b/doc/bugs/bestlink_returns_deleted_pages.mdwn @@ -28,6 +28,10 @@ won't it make sense for bestlink() to check %pagesources first? --[[harishcm]] > maybe by keeping a copy of the old backlinks info, then that fix could be > applied here too. --[[Joey]] +>> Cool that was fast! Well at least half the bug is solved :) For now I'll +>> probably try using a workaround if using bestlink within the needsbuild +>> or scan hooks. + ---- #!/usr/bin/perl -- cgit v1.2.3 From bd3bb876c292e5426a0dcf69e30f2e371cc4e59c Mon Sep 17 00:00:00 2001 From: harishcm Date: Wed, 2 Dec 2009 08:41:16 -0500 Subject: reply to joey's partial bugfix --- doc/bugs/bestlink_returns_deleted_pages.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/bugs/bestlink_returns_deleted_pages.mdwn b/doc/bugs/bestlink_returns_deleted_pages.mdwn index 2aed0520c..861663a56 100644 --- a/doc/bugs/bestlink_returns_deleted_pages.mdwn +++ b/doc/bugs/bestlink_returns_deleted_pages.mdwn @@ -30,7 +30,7 @@ won't it make sense for bestlink() to check %pagesources first? --[[harishcm]] >> Cool that was fast! Well at least half the bug is solved :) For now I'll >> probably try using a workaround if using bestlink within the needsbuild ->> or scan hooks. +>> or scan hooks. Maybe by testing if pagemtime equals zero. --[[harishcm]] ---- -- cgit v1.2.3