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