]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/edittemplate_should_support_uuid__44___date_variables.mdwn
Merge remote-tracking branch 'remotes/smcv/ready/git-push-origin-master'
[ikiwiki.git] / doc / todo / edittemplate_should_support_uuid__44___date_variables.mdwn
1 [[!template id=gitbranch branch=anderbubble/edittemplate author="Jonathon Anderson"]]
2 [[!tag wishlist patch]]
3
4 I use a default template for all new pages:
5
6     \[[!meta title="<TMPL_VAR name>"]]
7     \[[!meta author=]]
8     \[[!meta date="<TMPL_VAR time>"]]
9     \[[!meta guid="urn:uuid:<TMPL_VAR uuid>"]]
10     \[[!tag ]]
11
12 This encourages me to include useful metadata on the page.  In particular, though, I've modified the `edittemplate` plugin to generate a uuid for use in the guid, for use in `inline`.  Importantly, this keeps `inline` from flooding aggregators when I rename these pages.
13
14 I've also noticed that IkiWiki seems to use the creation time for the generated page for the page date.  This means that when I do a rebuild, `inline`d pages get shuffled.  The inclusion of a `time` variable in `edittemplate` (and in a `meta` declaration for all such pages) prevents the date from changing unexpectedly.
15
16 I've already made these changes in my installation, and have made my patches available in the `edittemplate` branch of git://civilfritz.net/ikiwiki.git.
17
18 Changes to the structure of `$pagestate{$registering_page}{edittemplate}{$pagespec}` mean that a `cgi` rebuild is necessary (for reasons I don't entirely understand); but I think that's preferable to creating an entirely separate `$pagestate` namespace for storing parameters.  That said, I'm not really a perl programmer, so corrections are welcome.
19
20 > I like this patch. I hate seeing things I've already read get marked as unread in my rss feed. -- [[JoshBBall]]
21
22 >> (I don't have commit access so take this with a pinch of salt -
23 >> I'm just trying to help deal with the code-review backlog.)
24 >>
25 >> I mostly like the first and third patches in the branch (adding v4
26 >> (random) UUIDs, and adding the timestamps). I'd be tempted to rename
27 >> `time` and `formatted_time` to `iso_time` and `time`, but that's
28 >> a matter of taste, and perhaps people with commit access have
29 >> stronger opinions one way or another. I haven't researched
30 >> whether there's precendent for any particular naming style
31 >> elsewhere in ikiwiki.
32 >>
33 >> The UUID bit would require adding some reference to libuuid-tiny-perl
34 >> to the Debian packaging - I think a `Recommends` is too strong
35 >> but a `Suggests` seems OK.
36 >>
37 >> I don't like the second patch (adding URL-namespaced UUID support).
38 >> I'm having a hard time thinking of any situation in which a v4 UUID
39 >> would be unsuitable, which means it's unnecessary complexity.
40 >> FYI, the reason that it makes a rebuild is necessary is that
41 >> you've restructured `$pagestate`, which is carried over from one
42 >> refresh to the next (that's its purpose), and you haven't
43 >> built in any migration or backwards-compatibility code that will
44 >> cope with it being in the old format. My inclination would be to
45 >> drop that patch. If there's a really good reason to prefer
46 >> v3/v5 UUIDs, please describe it and I'll try to suggest some
47 >> better way based on that, maybe global configuration in `$config`.
48 >> --[[smcv]]