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