]> sipb.mit.edu Git - ikiwiki.git/blob - doc/news/version_1.4.mdwn
web commit by joey
[ikiwiki.git] / doc / news / version_1.4.mdwn
1 ikiwiki 1.4 released with these changes:
2
3    * Tell HTML::Scrubber to treat "/" as a valid attribute which is its
4      very strange way of enabling proper XHTML br type tags. Output html
5      should be always valid again now.
6    * The page name and parent links has switched from using a h1 to a styled
7      span, so pages can use h1 internally instead of needing to use h2.
8    * Updated all of ikiwiki's own wiki pages for that.
9    * Add pagetemplate hook, which can be used by plugins that want to mess
10      around with adding new stuff to the page template.
11    * Remove headercontent; the search plugin now adds the search box to the
12      header by registering a pagetemplate hook, and other plugins should do
13      similarly.
14    * Rebuilding on upgrade to this version is recommended.
15    * Add a html validity check to the test suite, using the wdg-html-validator,
16      if available.
17    * Make the html valid when there is nothing in the actions list.
18    * Reordered some function call parameters for consistency.
19    * Enable full utf-8 support for page input and output.
20    * Add a workaround for markdown, which does not work well with utf-8
21      strings.
22    * --getctime had bitrotted (well I only ever used it the once so far..),
23      fix and make it a bit more flexible
24    * rcs\_getctime is changed, now rather than needing to loop over all pages,
25      it should just use the rcs to get the ctime of the passed file.
26    * When inlining a page in another one, links from the inlined page are now
27      expanded the same as they are when rendering the inlined page as a
28      standalone page. So rather than being expanded from the POV of the
29      inlining page, they are expanded from the POV of the inlined page.
30      For example, a link from blog/foo to "bar" will now link to blog/bar
31      if it exists. Previously this needed to be a link explicitly to
32      "blog/bar"; such links will also continue to work.
33      (This was slightly complex to do as the link still has to be constructed
34      relative to the inlining page.)
35    * Make page edit textarea resize to fit browser window.
36    * Add -refresh option to ikiwiki-mass-rebuild and use that on upgrades that
37      do not need a full rebuild, in order to update any basewiki pages.