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