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