From d599a5d3390e91a1d7a8e8d1867902ea9047893e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 7 Feb 2008 17:01:36 -0500 Subject: web commit by greg --- doc/todo/wikiwyg/discussion.mdwn | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'doc/todo') diff --git a/doc/todo/wikiwyg/discussion.mdwn b/doc/todo/wikiwyg/discussion.mdwn index 78da75c38..3d17e15b2 100644 --- a/doc/todo/wikiwyg/discussion.mdwn +++ b/doc/todo/wikiwyg/discussion.mdwn @@ -155,3 +155,7 @@ merge it into ikiwiki. --[[Joey] [Revision 3840]: http://ikiwiki.info/cgi-bin/viewvc.cgi?view=rev&root=ikiwiki&revision=3840 + + +None of the links for the WYSIWYG editor work anymore. Does anyone have an up to date link? +Thanks, [[greg]] -- cgit v1.2.3 From 4084c9a655b638571d4ff1f8119b4ead2c182bc9 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 7 Feb 2008 17:04:24 -0500 Subject: web commit by greg --- doc/todo/wikiwyg/discussion.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/todo') diff --git a/doc/todo/wikiwyg/discussion.mdwn b/doc/todo/wikiwyg/discussion.mdwn index 3d17e15b2..d15299642 100644 --- a/doc/todo/wikiwyg/discussion.mdwn +++ b/doc/todo/wikiwyg/discussion.mdwn @@ -158,4 +158,4 @@ merge it into ikiwiki. --[[Joey] None of the links for the WYSIWYG editor work anymore. Does anyone have an up to date link? -Thanks, [[greg]] +Thanks, [[Greg]] -- cgit v1.2.3 From f16b3f17c0919b9a40352680a88781a44fee680f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 9 Feb 2008 22:56:29 -0500 Subject: note that's there's a git branch for this --- doc/todo/wikiwyg/discussion.mdwn | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc/todo') diff --git a/doc/todo/wikiwyg/discussion.mdwn b/doc/todo/wikiwyg/discussion.mdwn index d15299642..ef6f6cd59 100644 --- a/doc/todo/wikiwyg/discussion.mdwn +++ b/doc/todo/wikiwyg/discussion.mdwn @@ -159,3 +159,8 @@ merge it into ikiwiki. --[[Joey] None of the links for the WYSIWYG editor work anymore. Does anyone have an up to date link? Thanks, [[Greg]] + +> There's a branch in [[git]] for the wikiwyg stuff, which includes +> the latest version I sucked in from TaylorKillian's svn repository before +> it went offline. Disapponted that nothing seems to be moving here. +> --[[Joey]] -- cgit v1.2.3 From f1fcb5be9ca9e473a7a0c723871cad2c8e1493ec Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 9 Feb 2008 23:05:48 -0500 Subject: * Page templates can now use CTIME to show when the page was created. --- IkiWiki/Render.pm | 1 + debian/changelog | 3 ++- doc/todo/ctime_on_blog_post_pages_.mdwn | 4 ++++ templates/page.tmpl | 1 + 4 files changed, 8 insertions(+), 1 deletion(-) (limited to 'doc/todo') diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index 26f7de331..2682e13ae 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -126,6 +126,7 @@ sub genpage ($$) { #{{{ backlinks => $backlinks, more_backlinks => $more_backlinks, mtime => displaytime($pagemtime{$page}), + ctime => displaytime($pagectime{$page}), baseurl => baseurl($page), ); diff --git a/debian/changelog b/debian/changelog index 45a26e43a..8c610fe19 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -ikiwiki (2.31) unstable; urgency=low +ikiwiki (2.31) UNRELEASED; urgency=low [ Joey Hess ] * Revert preservation of input file modification times in output files, @@ -40,6 +40,7 @@ ikiwiki (2.31) unstable; urgency=low * Don't die if running with --getctime and rcs_getctime throws an error. There are several cases (recentchanges files, aggregated files) where some source files are not in revision control. + * Page templates can now use CTIME to show when the page was created. [ Josh Triplett ] * README.Debian: Mention user wikilists. diff --git a/doc/todo/ctime_on_blog_post_pages_.mdwn b/doc/todo/ctime_on_blog_post_pages_.mdwn index 4fd099d9d..d75dcd932 100644 --- a/doc/todo/ctime_on_blog_post_pages_.mdwn +++ b/doc/todo/ctime_on_blog_post_pages_.mdwn @@ -3,3 +3,7 @@ The user has to look at the history link to find when a blog item was posted. It would be nice if blog entry post pages could include the ctime. -- [[Edward_Betts]] + +> I've committed a change that adds a CTIME variable to page.tmpl. I left +> it commented out in the default template, since it seems like a bit of +> clutter to me. Good enough? --[[Joey]] diff --git a/templates/page.tmpl b/templates/page.tmpl index 3a1ac9ef8..249ee2efb 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -104,6 +104,7 @@ License:
Last edited +
-- cgit v1.2.3