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