aboutsummaryrefslogtreecommitdiff
path: root/debian/NEWS
Commit message (Collapse)AuthorAge
...
* releasing version 2.60Joey Hess2008-08-12
|
* add ikiwiki-transition setupformat subcommand.Joey Hess2008-08-05
| | | | | Also fixed a bug in how aggregateinternal used IkiWiki::Setup::load, and added checks for arguments to other subcommands.
* banned_users move to setup file, stage 1Joey Hess2008-08-01
|
* editpage escaping fixesJoey Hess2008-07-06
| | | | | | | | | | | * The editpage form now uses the raw page name, not the page title, in its 'page' cgi parameter. Using the title was ambiguous and made it impossible to tell between some pages, like "foo/bar" and "foo__47__bar", sometimes causing the wrong page to be edited. * This change means that some edit links need to be updated. Force a rebuild on upgrade to this version. * Above change also allowed really fixing escaped slashes from the blogpost form.
* typoJoey Hess2008-07-06
|
* a bit more about upgradesJoey Hess2008-06-07
|
* finishing touches on the new search pluginJoey Hess2008-06-04
| | | | | - Add a Help link. - If the pageterm is too long, hash it.
* more search improvementsJoey Hess2008-06-04
|
* releasing version 2.48Joey Hess2008-05-30
|
* documentation for use of hashed passwordsJoey Hess2008-05-29
| | | | Everything but the actual coding to support them.
* template change documentationJoey Hess2008-05-06
|
* Bring back the svnrepo setup file option. This is needed for ↵Joey Hess2008-04-17
| | | | recentchangediff to work with svn repos.
* fix versionsJoey Hess2008-02-10
|
* Merge branch 'master' into prefix-directivesJoey Hess2008-02-05
|\
| * merged the recentchanges branchJoey Hess2008-01-29
| | | | | | | | misc fixes
| * doc updates, add NEWS itemJoey Hess2008-01-29
| |
* | rename ikiwiki-prefix-directives into ikiwiki-transitionJoey Hess2008-01-30
| | | | | | | | | | If we have transitions of this sort in the future, this program will hopefully be used to handle them too.
* | Add new preprocessor directive syntax¸ using a '!' prefix.Josh Triplett2008-01-27
|/ | | | | | | | Add a prefix_directives option to the setup file to turn this syntax on; currently defaults to false, for backward compatibility. Support optional '!' prefix even with prefix_directives off, and use that in the underlay to support either setting of prefix_directives. Add NEWS entry with migration information.
* * template: Remove bogus htmlize pass added in 2.16.Joey Hess2008-01-09
| | | | | * template: Htmlize template variables, but also provide a raw version via `<TMPL_VAR raw_variable>`.
* * meta: Run in scan mode again (more intelligently) and re-add support forJoey Hess2008-01-09
| | | | | | meta link. * Fix support for the case where metadata appears after an inline directive. This was broken in version 2.16.
* * Re-organise dependencies and recommends now that recommends are installedJoey Hess2007-12-16
| | | | by default.
* * meta: Drop support for "meta link", since supporting this for internalJoey Hess2007-12-16
| | | | | | | | | | | | | | | | links required meta to be run during scan, which complicated its data storage, since it had to clear data stored during the scan pass to avoid duplicating it during the normal preprocessing pass. * If you used "meta link", you should switch to either "meta openid" (for openid delegations), or tags (for internal, invisible links). I assume that nobody really used "meta link" for external, non-openid links, since the htmlscrubber ate those. (Tell me differently and I'll consider bringing back that support.) * meta: Improved data storage. * meta: Drop the hackish filter hook that was used to clear stored data before preprocessing, this hack was ugly, and broken (cf: liw's disappearing openids). * aggregate: Convert filter hook to a needsbuild hook.
* * The calendar plugin stores state about when it needs to be updated,Joey Hess2007-12-08
| | | | | | | | and forces rebuilds of the pages that contain calendars. So running ikiwiki --refresh at midnight is now enough, no need for a full wiki rebuild each midnight. * calendar: Work around block html parsing bug in markdown 1.0.1 by enclosing the calendar in an extra div.
* updatesJoey Hess2007-12-08
|
* releasing version 2.14Joey Hess2007-11-26
|
* clean up bad wiki links, add news itemjoey2007-09-29
|
* fix newsion numberjoey2007-08-27
|
* * Allow raw html in the rst plugin.joey2007-07-29
|
* belated note about upgrades to 2.5joey2007-07-29
|
* * Make all templates have a footer div to ease themeing. Required templatejoey2007-05-11
| | | | | | | | and style sheet updates, and unless you're using customised versions, you'll want to rebuild wikis on upgrade to this version to avoid inconsistencies. * Allow WIKINAME to to used in footers, as an example of something to put there.
* * If Net::OpenID::Consumer is not available, the openid module will quietlyjoey2007-04-30
| | | | | disable itself, this avoids needing a hard dependency on the perl module.
* * Enable openid logins by default.joey2007-04-29
| | | | * Enable usedirs by default.
* * Due to template changes and style sheet changes that depend on them,joey2007-04-26
| | | | wiki rebuilds are recommended on upgrade to this version.
* * Patch from Tuomov to link to the directory in feeds when usedirs is injoey2007-04-14
| | | | | effect. Note that this changes permalinks, so if you are already using usedirs you'll have to deal with that on upgrade to this version.
* fix links to sparklines; abs2rel -> urltojoey2007-04-01
|
* use urlto; htmlpage is no longer appropriate herejoey2007-04-01
|
* * Fix a security hole that allowed insertion of unsafe content via the metajoey2007-03-21
| | | | | | | | | | plugins's support for inserting html link and meta tags. Now such content is passed through the htmlscrubber like everything else. * Unfortunatly, that means that some valid uses of those tags are no longer usable, and special case methods needed to be added for including stylesheets, and for doing openid delegation. If you use either of these in your wiki, it will need to be modified. See the meta plugin docs for details.
* * The underscore escaping support exposed a bug in edit links: Such linksjoey2007-03-08
| | | | | | | | | were titlepage escaped in the urls, and then doubly escaped by the CGI when editing. To fix this, I removed the titlepage escaping in the edit urls. * That means that *every edit link* on the wiki is potentially changed. Rebuilding wikis on upgrade to this version therefore necessary; enabled that in postinst.
* * Changed calling convention for httmllink slightly. The first threejoey2007-02-20
| | | | | | | | | | parameters remain the same, but additional options are now passed in using named parameters. * Change plugin interface version to 1.02 to reflect this change. * Add a new anchor option to htmllink. Thanks Ben for the idea. * Support anchors in wikilinks. * Add a "more" plugin based on one contributed by Ben to allow implementing those dreaded "Read more" links in blogs.
* * Patch based on a patch from Ethan to support relative matching injoey2007-02-06
| | | | | PageSpecs, by using "./". pagespec_match() has grown a new third parameter to support this.
* * Add canedit hook, allowing arbitrary controls over when a page can bejoey2007-02-02
| | | | | | | | | | | | | edited. * Move code forcing signing before edit to a new "signinedit" plugin, and code checking for locked pages into a new "lockedit" plugin. Both are enabled by default. * Remove the anonok config setting. This is now implemented by a new "anonok" plugin. Anyone with a wiki allowing anonymous edits should change their configs to enable this new plugin. * Add an opendiscussion plugin that allows anonymous users to edit discussion pages, on a wiki that is otherwise wouldn't allow it. * Lots of CGI code reorg and cleanup.
* * Add an openid plugin to support logging in using OpenID.joey2006-11-20
| | | | | | | * Web commits by OpenID users will record the full OpenID url for the user, but in recentchanges, these urls will be converted to a simplified display form+link. * Modified svn, git, tla backends to recognise such web commits.
* instead of over and over. Typical speedup is ~4x. Max possible speedup:joey2006-10-28
| | | | | | | | | | | | 8x. * Add "scan" parameter to hook(), which is used to make the hook be called during the scanning pass, as well as the render pass. The meta and tag plugins need to use the new scan parameter, so will any others that modify %links. * Now that links are calculated in a separate pass, it can also precalculate backlinks in one pass, which is O(N^2) instead of the previous code that was O(N^3). A very nice speedup for wikis with lots (thousands) of pages.
* * Change %renderedfiles to store an array of files rendered from a givenjoey2006-10-08
| | | | | | | | | | | source file, to allow tracking of extra rendered files like rss feeds. * Note that plugins that accessed this variable will need to be updated! The plugin interface has been increased to version 1.01 for this change. * Add will_render function to the plugin interface, used to register that a page renders a destination file, and do some security checks. * Use will_render in the inline and linkmap plugins. * Previously but no longer rendered files will be cleaned up. * You will need to rebuild your wiki on upgrade to this version.
* flipjoey2006-08-28
|
* rebuild needed due to css changesjoey2006-08-28
|
* * Change htmlize, format, and sanitize hooks to use named parameters.joey2006-08-28
|
* add upgrade notejoey2006-08-22
|
* updatejoey2006-08-02
|
* * Renamed GlobLists to PageSpecs.joey2006-08-02
| | | | | | | | | | | | | | * PageSpecs can now include nested parens, "and", and "or". This remains backwards compatible to the old GlobList format. It's implemented by treating the GlobList as a very limited microlanguage that is transformed to perl code that does the matching. * The old GlobList format is deprecated, and I encourage users to switch to using the new PageSpec format. Compatability with the old format will be removed at some point, possibly by 2.0. * Wiki rebuild needed on upgrade to this version due to PageSpec change. * Add support for creation_month and creation_year to PageSpec. Closes: #380680 * Changes to index file encoding.