| Commit message (Expand) | Author | Age |
* | releasing version 3.20110321 | Joey Hess | 2011-03-21 |
* | releasing version 3.20110225 | Joey Hess | 2011-02-25 |
* | picked | Joey Hess | 2011-01-14 |
* | document needing to wrap footer in dynamic test | Joey Hess | 2010-05-15 |
* | reword | Joey Hess | 2010-05-15 |
* | add missing closing tmpl_if | Joey Hess | 2010-05-15 |
* | Merge branch 'master' into commentreorg | Joey Hess | 2010-05-07 |
|\ |
|
| * | mention style.css changes | Joey Hess | 2010-05-07 |
* | | reorder | Joey Hess | 2010-05-07 |
* | | moved comments pending moderation•••* 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.
| Joey Hess | 2010-05-06 |
|/ |
|
* | typo | Joey Hess | 2010-05-06 |
* | rename ispage variable | Joey Hess | 2010-05-05 |
* | add NEWS about template change | Joey Hess | 2010-05-05 |
* | remove obsolete NEWS | Joey Hess | 2010-04-28 |
* | releasing version 3.20100427 | Joey Hess | 2010-04-27 |
* | typo | Joey Hess | 2010-04-23 |
* | changelog/NEWS update for template changes | Joey Hess | 2010-04-23 |
* | update news for template change | Joey Hess | 2010-04-23 |
* | format | Joey Hess | 2010-04-22 |
* | Merge branch 'autotag' | Joey Hess | 2010-04-22 |
|\ |
|
| * | turn on tag_autocreate by default if tagbase is set | Joey Hess | 2010-04-21 |
* | | force rebuild from pre 20100422•••to ensure those wrong massive depends_simple don't linger on systems that
rebuilt for the other reasons already
| Joey Hess | 2010-04-22 |
|/ |
|
* | reword news | Joey Hess | 2010-04-21 |
* | update changelog, update rebuild version | Joey Hess | 2010-04-10 |
* | Merge remote branch 'smcv/ready/sort-package'•••Conflicts:
debian/NEWS
| Joey Hess | 2010-04-06 |
|\ |
|
| * | Split out sortnaturally into a plugin | Simon McVittie | 2010-04-03 |
* | | add note about minor back compat issue | Joey Hess | 2010-04-06 |
* | | tweak wording and versions and add changelog entry | Joey Hess | 2010-04-06 |
* | | Auto-rebuild wikis on upgrade due to the taglink change•••debian/NEWS and debian/postinst should be edited before release to have
an appropriate version number.
| Simon McVittie | 2010-04-06 |
|/ |
|
* | releasing version 3.20091017 | Joey Hess | 2009-10-17 |
* | Merge branch 'master' into dependency-types•••Conflicts:
doc/bugs/transitive_dependencies.mdwn
| Joey Hess | 2009-10-09 |
|\ |
|
* | | add rebuild handing | Joey Hess | 2009-10-05 |
|/ |
|
* | releasing version 3.14159265 | Joey Hess | 2009-09-24 |
* | changelog and news file, also make postinst rebuild on upgrade | Joey Hess | 2009-08-25 |
* | listdirectives: Avoid listing _comment directives and generally assume any di... | Joey Hess | 2009-05-22 |
* | ikiwiki-transition: deduplinks was broken and threw away all metadata stored ... | Joey Hess | 2009-05-22 |
* | external: Fix pagespec_match and pagespec_match_list. Closes: #527281 | Joey Hess | 2009-05-06 |
* | Avoid %links accumulating duplicates. (For TOVA)•••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.
| Joey Hess | 2009-05-06 |
* | A recent change to gitweb removed support for the form of diffurl that many ... | Joey Hess | 2009-01-05 |
* | more 3.0 docs, changelog | Joey Hess | 2008-12-24 |
* | make ikiwiki-transition prefix_directives take a setup file•••This is easier to remeber, and less error-prone than passing it all the
pages in the wiki.
| Joey Hess | 2008-12-24 |
* | beginning docs for 3.0 | Joey Hess | 2008-12-23 |
* | willu's teximg changes•••* 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.
| Joey Hess | 2008-08-24 |
* | releasing version 2.60 | Joey Hess | 2008-08-12 |
* | add ikiwiki-transition setupformat subcommand.•••Also fixed a bug in how aggregateinternal used IkiWiki::Setup::load,
and added checks for arguments to other subcommands.
| Joey Hess | 2008-08-05 |
* | banned_users move to setup file, stage 1 | Joey Hess | 2008-08-01 |
* | editpage escaping fixes•••* 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.
| Joey Hess | 2008-07-06 |
* | typo | Joey Hess | 2008-07-06 |
* | a bit more about upgrades | Joey Hess | 2008-06-07 |
* | finishing touches on the new search plugin•••- Add a Help link.
- If the pageterm is too long, hash it.
| Joey Hess | 2008-06-04 |