diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-17 19:55:11 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-17 19:55:11 +0000 |
commit | cf35ee04cddd7b9b39636499dd24b689443c0e97 (patch) | |
tree | c5b052a1edf1228f786bfc65229ae634f3c4b1c0 /doc | |
parent | fca6ab6def2536a6566fe3ddca2c069397f856b1 (diff) | |
download | ikiwiki-cf35ee04cddd7b9b39636499dd24b689443c0e97.tar ikiwiki-cf35ee04cddd7b9b39636499dd24b689443c0e97.tar.gz |
* Add a destpage parameter to the filter hook.
* Fix links to smilies generated by the smiley plugin for inlined pages. The
old links were often wrong, but often still worked by accident.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/rss_output_relative_links.mdwn | 3 | ||||
-rw-r--r-- | doc/plugins/write.mdwn | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/bugs/rss_output_relative_links.mdwn b/doc/bugs/rss_output_relative_links.mdwn index ff607cbb3..ba5f90867 100644 --- a/doc/bugs/rss_output_relative_links.mdwn +++ b/doc/bugs/rss_output_relative_links.mdwn @@ -1,3 +1,6 @@ RSS output contains relative links. Ie. http://kitenet.net/~joey/blog/index.rss contains a link to http://kitenet.net/~joey/blog/../blog.html + +> I think I've fixed the last of these, but not 100% sure. Calling it +> [[done]] for now. --[[Joey]] diff --git a/doc/plugins/write.mdwn b/doc/plugins/write.mdwn index 9d85d4a9f..6593ab018 100644 --- a/doc/plugins/write.mdwn +++ b/doc/plugins/write.mdwn @@ -76,8 +76,8 @@ adding or removing files from it. hook(type => "filter", id => "foo", call => \&filter); Runs on the raw source of a page, before anything else touches it, and can -make arbitrary changes. The function is passed named parameters `page` and -`content` and should return the filtered content. +make arbitrary changes. The function is passed named parameters "page", +"destpage", and "content". It should return the filtered content. ### preprocess |