diff options
author | spalax <spalax@web> | 2012-03-03 20:25:38 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-03-03 20:25:38 -0400 |
commit | 8c6980e74275a24650519cea0647f1d9dcd7a3eb (patch) | |
tree | 3643966bd32a8a3ce93fa0e94f712b3566cf4ebd /doc/todo | |
parent | f6174572db65168ab00b15162a44163170a28846 (diff) | |
download | ikiwiki-8c6980e74275a24650519cea0647f1d9dcd7a3eb.tar ikiwiki-8c6980e74275a24650519cea0647f1d9dcd7a3eb.tar.gz |
Diffstat (limited to 'doc/todo')
-rw-r--r-- | doc/todo/Javascript_calendar.mdwn | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/todo/Javascript_calendar.mdwn b/doc/todo/Javascript_calendar.mdwn new file mode 100644 index 000000000..067331aac --- /dev/null +++ b/doc/todo/Javascript_calendar.mdwn @@ -0,0 +1,27 @@ +[[! meta title="Javascript equivalent of plugin 'calendar'"]] +[[!tag patch]] + +Hello, +we ([[Grésille|http://www.gresille.org]]) have a calendar (built using the [[calendar|plugins/calendar]] plugin) in the sidebar of our website. This caused the whole website to be rebuilded each night, and we did not like it. So I wrote a javascript equivalent of the calendar plugin. + +Here are the differences compared to the [[calendar|plugins/calendar]] plugin. + +* Pros + * No need to rebuild the page containing the calendar each time day changes, or + a page (indexed by the calendar) is added, changed or deleted. This is + particularly useful if you want to have this calendar in the sidebar. + * Smooth navigation among months. +* Neutral + * Most of options are defined in Ikiwiki's setup files instead of the options + of the directive. +* Cons + * As a consequence, every calendar of the wiki must index the same set of pages. + * Javascript :( . + +You can see this plugin in action on [[our website|http://www.gresille.org]]. + +I do not know how contributions are processed, but if you want to include this plugin in Ikiwiki, I made a copy of Ikiwiki repository, with this new plugin (as well as the documentation for the plugin and the directive). + + git clone http://spalax.homedns.org/git/ikiwiki + +-- Spalax |