summaryrefslogtreecommitdiff
path: root/debian/NEWS
AgeCommit message (Collapse)Author
2011-03-21releasing version 3.20110321Joey Hess
2011-02-25releasing version 3.20110225Joey Hess
2011-01-14pickedJoey Hess
2010-05-15document needing to wrap footer in dynamic testJoey Hess
2010-05-15rewordJoey Hess
2010-05-15add missing closing tmpl_ifJoey Hess
2010-05-07Merge branch 'master' into commentreorgJoey Hess
2010-05-07mention style.css changesJoey Hess
2010-05-07reorderJoey Hess
2010-05-06moved comments pending moderationJoey Hess
* comments: Comments pending moderation are now stored in the srcdir alongside accepted comments, but with a `._comment_pending` extension. * This allows easier byhand moderation, as the "_pending" need only be stripped off and the comment be committed to version control. * The `comment_pending()` pagespec can be used to match such unmoderated comments, which makes it easy to add a feed of them, or a counter indicating how many there are. * Belatedly added a `comment()` pagespec.
2010-05-06typoJoey Hess
2010-05-05rename ispage variableJoey Hess
2010-05-05add NEWS about template changeJoey Hess
2010-04-28remove obsolete NEWSJoey Hess
2010-04-27releasing version 3.20100427Joey Hess
2010-04-23typoJoey Hess
2010-04-23changelog/NEWS update for template changesJoey Hess
2010-04-23update news for template changeJoey Hess
2010-04-22formatJoey Hess
2010-04-22Merge branch 'autotag'Joey Hess
2010-04-22force rebuild from pre 20100422Joey Hess
to ensure those wrong massive depends_simple don't linger on systems that rebuilt for the other reasons already
2010-04-21turn on tag_autocreate by default if tagbase is setJoey Hess
2010-04-21reword newsJoey Hess
2010-04-10update changelog, update rebuild versionJoey Hess
2010-04-06Merge remote branch 'smcv/ready/sort-package'Joey Hess
Conflicts: debian/NEWS
2010-04-06add note about minor back compat issueJoey Hess
2010-04-06tweak wording and versions and add changelog entryJoey Hess
2010-04-06Auto-rebuild wikis on upgrade due to the taglink changeSimon McVittie
debian/NEWS and debian/postinst should be edited before release to have an appropriate version number.
2010-04-03Split out sortnaturally into a pluginSimon McVittie
2009-10-17releasing version 3.20091017Joey Hess
2009-10-09Merge branch 'master' into dependency-typesJoey Hess
Conflicts: doc/bugs/transitive_dependencies.mdwn
2009-10-05add rebuild handingJoey Hess
2009-09-24releasing version 3.14159265Joey Hess
2009-08-25changelog and news file, also make postinst rebuild on upgradeJoey Hess
2009-05-22listdirectives: Avoid listing _comment directives and generally assume any ↵Joey Hess
directive starting with _ is likewise internal.
2009-05-22ikiwiki-transition: deduplinks was broken and threw away all metadata stored ↵Joey Hess
by plugins in the index. Fix this bug.
2009-05-06external: Fix pagespec_match and pagespec_match_list. Closes: #527281Joey Hess
2009-05-06Avoid %links accumulating duplicates. (For TOVA)Joey Hess
This is sorta an optimisation, and sorta a bug fix. In one test case I have available, it can speed a page build up from 3 minutes to 3 seconds. The root of the problem is that $links{$page} contains arrays of links, rather than hashes of links. And when a link is found, it is just pushed onto the array, without checking for dups. Now, the array is emptied before scanning a page, so there should not be a lot of opportunity for lots of duplicate links to pile up in it. But, in some cases, they can, and if there are hundreds of duplicate links in the array, then scanning it for matching links, as match_link and some other code does, becomes much more expensive than it needs to be. Perhaps the real right fix would be to change the data structure to a hash. But, the list of links is never accessed like that, you always want to iterate through it. I also looked at deduping the list in saveindex, but that does a lot of unnecessary work, and doesn't completly solve the problem. So, finally, I decided to add an add_link function that handles deduping, and make ikiwiki-transition remove the old dup links.
2009-01-05A recent change to gitweb removed support for the form of diffurl that many ↵Joey Hess
ikiwiki setups use. Document how to use the new url form.
2008-12-24more 3.0 docs, changelogJoey Hess
2008-12-24make ikiwiki-transition prefix_directives take a setup fileJoey Hess
This is easier to remeber, and less error-prone than passing it all the pages in the wiki.
2008-12-23beginning docs for 3.0Joey Hess
2008-08-24willu's teximg changesJoey Hess
* teximg: The prefix is configurable, and has changed to not include the nonstandard mhchem by default. (willu) * teximg: dvipng is used if available to render images. Its output is antialiased and better than dvips. If not available, the old dvips+convert chain will be used. (willu) * Drop suggests on texlive-science, add suggests on dvipng.
2008-08-12releasing version 2.60Joey Hess
2008-08-05add ikiwiki-transition setupformat subcommand.Joey Hess
Also fixed a bug in how aggregateinternal used IkiWiki::Setup::load, and added checks for arguments to other subcommands.
2008-08-01banned_users move to setup file, stage 1Joey Hess
2008-07-06editpage escaping fixesJoey Hess
* 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.
2008-07-06typoJoey Hess
2008-06-07a bit more about upgradesJoey Hess
2008-06-04finishing touches on the new search pluginJoey Hess
- Add a Help link. - If the pageterm is too long, hash it.