]> sipb.mit.edu Git - ikiwiki.git/blob - debian/changelog
* Patch from Dr. Zini to add link() and backlink() to globlists. This allows
[ikiwiki.git] / debian / changelog
1 ikiwiki (1.5) UNRELEASED; urgency=low
2
3   * Add --timeformat config option to allow changing how dates are displayed.
4     Note that as a side effect, dates will now be displayed using the local
5     timezone, not as GMT.
6   * More security review.
7   * Patch from Dr. Zini to add link() and backlink() to globlists. This allows
8     for some handy stuff like:
9     - Using links as a kind of tag; creating blog pages that list all pages
10       containing a given tag/link or not containing some other tag.
11     - Subscribing to mail notifications whenever a change is made to a page
12       that is a backlink of page foo. Ie, "Please notify me of changes in all
13       pages that link to my home page in the wiki"
14     - Locking any pages that are linked to from a particular page, so that
15       lists of locks can be exposed in the wiki.
16
17  -- Joey Hess <joeyh@debian.org>  Thu,  1 Jun 2006 20:56:58 -0400
18
19 ikiwiki (1.4) unstable; urgency=low
20
21   * Tell HTML::Scrubber to treat "/" as a valid attribute which is its
22     very strange way of enabling proper XHTML <br /> type tags. Output html
23     should be always valid again now.
24   * The page name and parent links has switched from using a <h1> to a styled
25     <span>, so pages can use <h1> internally instead of needing to use <h2>.
26   * Updated all of ikiwiki's own wiki pages for that.
27   * Add pagetemplate hook, which can be used by plugins that want to mess
28     around with adding new stuff to the page template.
29   * Remove headercontent; the search plugin now adds the search box to the
30     header by registering a pagetemplate hook, and other plugins should do
31     similarly.
32   * Rebuilding on upgrade to this version is recommended.
33   * Add a html validity check to the test suite, using the wdg-html-validator,
34     if available.
35   * Make the html valid when there is nothing in the actions list.
36   * Reordered some function call parameters for consistency.
37   * Enable full utf-8 support for page input and output.
38   * Add a workaround for markdown, which does not work well with utf-8
39     strings.
40   * --getctime had bitrotted (well I only ever used it the once so far..),
41     fix and make it a bit more flexible
42   * rcs_getctime is changed, now rather than needing to loop over all pages,
43     it should just use the rcs to get the ctime of the passed file.
44   * When inlining a page in another one, links from the inlined page are now
45     expanded the same as they are when rendering the inlined page as a
46     standalone page. So rather than being expanded from the POV of the
47     inlining page, they are expanded from the POV of the inlined page.
48
49     For example, a link from blog/foo to "bar" will now link to blog/bar
50     if it exists. Previously this needed to be a link explicitly to
51     "blog/bar"; such links will also continue to work.
52
53     (This was slightly complex to do as the link still has to be constructed
54     relative to the inlining page.)
55   * Make page edit textarea resize to fit browser window.
56   * Add -refresh option to ikiwiki-mass-rebuild and use that on upgrades that
57     do not need a full rebuild, in order to update any basewiki pages.
58
59  -- Joey Hess <joeyh@debian.org>  Sat, 27 May 2006 15:08:49 -0400
60
61 ikiwiki (1.3) unstable; urgency=low
62
63   * Fix the preinst introduced in the last version. Closes: #367458
64
65  -- Joey Hess <joeyh@debian.org>  Tue, 16 May 2006 02:43:02 -0500
66
67 ikiwiki (1.2) unstable; urgency=low
68
69   * Remove dups from the brokenlinks list.
70   * Add libc6-dev to dependencies, needed to build wrappers.
71   * Install wikilist in correct location. Closes: #367371
72
73  -- Joey Hess <joeyh@debian.org>  Mon, 15 May 2006 10:53:49 -0500
74
75 ikiwiki (1.1) unstable; urgency=low
76
77   * Rename inlinepage to depends, so that it can be used to refer to more
78     dependency relationships than just inlining. This will require a rebuild
79     on upgrade to this version.
80   * Move the rss link, put it in the blogpost form if there is one and at the
81     top if not. This is both nicer because easier to find, and it cleans up
82     the code which had used inlinepage as a flag for adding the link later.
83   * Allow the depends GlobList to be built up from multiple sources (such as
84     plugins) during a page render.
85   * Which means that more than one blog is now supported to appear on a
86     single page. (With some limitations, like only the last one getting an
87     rss file.)
88   * Added a plugin system.
89   * Added a pagecount plugin, enabled by default.
90   * Support PreProcessorDirectives with no parameters, ie "[[pagecount ]]".
91   * Fixed/optimised backlinks code, to avoid rebuilding pages to update
92     backlinks when the backlinks hadn't really changed.
93   * Moved inline page support, rss generation etc into the inline plugin,
94     enabled by default.
95   * Added brokenlinks plugin, not enabled by default, but rather handy.
96   * Fix several broken links in the doc wiki.
97   * Smarter behavior when creating a page and a page of the same name (but
98     different location) already exists.
99   * Add an orphans plugin for finding pages that nothing links to.
100   * Removed backlinks page, which it turns out nothing used.
101   * Split off an IkiWiki.pm out of ikiwiki and have all the other modules use
102     it, this will allow for adding a unit test suite.
103   * Add unit tests for several core functions, including globlist_match,
104     dirname, basename, bestlink, linkify, pagetitle, titlepage.
105   * Smart globlist merging.
106   * Patch from Thomas Schwinge to switch from --svn to --rcs=svn, etc,
107     to pave the way for adding other RCS support. This also changes the
108     setup files, where before they had svn => 1 or svn => 0, now they have
109     rcs => "svn" or rcs => "".
110   * Add a debian/NEWS file with upgrade notes.
111   * Load whatever rcs module is specified, so new ones can be just dropped in
112     as plugins and work. (Well, in theory.)
113   * Add some basic docs about writing RCS modules.
114   * Broke search capability out into a plugin, removed the --hyperestraier
115     switch.
116   * Added smiley plugin, nicely controlled and documented by the smileys page.
117   * Copied in some smileys from Moin Moin.
118   * Allow links of the form [[some page|page]], with whitespace in the link
119     text.
120   * Removed --sanitize and --no-sanitize, replaced with --plugin htmlscrubber
121     and --disable-plugin htmlscrubber.
122   * Allow discussion links on pages to be turned off with --no-discussion.
123   * Add ikiwiki-mass-rebuild script, ripped out of the postinst.
124   * Add some new config items to the estseek.conf template, which are needed
125     by hyperestraier 1.2.3.
126
127  -- Joey Hess <joeyh@debian.org>  Fri,  5 May 2006 17:00:41 -0400
128
129 ikiwiki (1.0) unstable; urgency=low
130
131   * First official release.
132
133  -- Joey Hess <joeyh@debian.org>  Tue, 25 Apr 2006 02:08:17 -0400