summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-20similarity to internal pagesJoey Hess
2010-04-20no need to return content from postscan hookJoey Hess
2010-04-19responseJoey Hess
2010-04-19Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-04-19change wordingJoey Hess
This is more accurate when a file that is not a page is what is removed.
2010-04-20non comprendhttp://kerravonsen.dreamwidth.org/
2010-04-20formattinghttp://kerravonsen.dreamwidth.org/
2010-04-20further clarificationhttp://kerravonsen.dreamwidth.org/
2010-04-19responseJoey Hess
2010-04-19Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-04-20responsehttp://kerravonsen.dreamwidth.org/
2010-04-19Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-04-19move message into if blockJoey Hess
2010-04-19Merge branch 'master' of git://git.ikiwiki.infoSvend Sorensen
2010-04-19Remove www prefix from Svend's website URLsSvend Sorensen
2010-04-19Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-04-19thinking about changing how templatedir works and allowing wikitemplate ↵Joey Hess
files into the srcdir
2010-04-19Respondhttp://oblomov.myopenid.com/
2010-04-19response to the further thoughtshttp://kerravonsen.dreamwidth.org/
2010-04-18(no commit message)PeteG
2010-04-18(no commit message)PeteG
2010-04-17unfinished file_prune revampJoey Hess
Many calls to file_prune were incorrectly calling it with 2 parameters. In cases where the filename being checked is relative to the srcdir, that is not needed. Made absolute filenames be pruned. (This won't work for the 2 parameter call style.)
2010-04-17improve docsJoey Hess
2010-04-17move File::Find control back into its code blocksJoey Hess
Ok, this is longer, but features less scary action at a distance.
2010-04-17move decode_utf8 closer to reason for itJoey Hess
Filenames need to be decoded, as File::Find does not provide them in decoded form, but other callers of verify_src_file will be using utf8.
2010-04-17fix autotag behavior for relative tagsJoey Hess
A tag like ./foo is searched for relative to the tagging page. However, if multiple pages use such a tag, the only one sure to be in common is in the root, so autocreate it there to avoid scattering redunadant autocreated tags around the tree. (This is probably not ideal.) Also renamed the tagpage and taglink functions for clarity.
2010-04-17call gentag for taglinks tooJoey Hess
2010-04-17fix autofile callJoey Hess
2010-04-17tag_autocreate fixupsJoey Hess
Fix style of prompt. Optional to rebuild when it is changed. (Needed to get new all missing tags)
2010-04-17document add_autofileJoey Hess
2010-04-17recommend gitJoey Hess
2010-04-17bzr getmtime doneJoey Hess
2010-04-17note that tla plugin is not being maintainedJoey Hess
2010-04-17bzr: changelog and refactorJoey Hess
2010-04-17Fix get_ctime implementation in Bazaar plugin, add get_mtime implementation.Jelmer Vernooij
2010-04-17document the gitbranch templateJoey Hess
2010-04-17reformatJoey Hess
2010-04-17my autotag branchJoey Hess
2010-04-17refactor autofilesJoey Hess
Made add_autofile take a generator function, and just register the autofile, for later possible creation. The testing is moved into Render, which allows cleaning up some stuff.
2010-04-17whitespaceJoey Hess
2010-04-17Merge remote branch 'davrieb/autotag' into autotagJoey Hess
Conflicts: IkiWiki.pm IkiWiki/Plugin/tag.pm
2010-04-17few more suggestionsJoey Hess
2010-04-17typoJoey Hess
2010-04-17autoindex: Switch to using %wikistate instead of abusing $pagestate{index}.Joey Hess
2010-04-16add list of compatability breaking changesJoey Hess
2010-04-16remove note about needing --gettime; automatically run on first build nowJoey Hess
2010-04-16squelch warningJoey Hess
2010-04-16update changelogJoey Hess
2010-04-16implement rcs_getmtime for svnJoey Hess
This is a slow implementation; it runs svn log once per file still, rather than running svn log once on the whole srcdir. I did it this way because in my experience, svn log, run on a directory, does not always list every change to files inside that directory. I don't know why, and I use svn as little as possible these days.
2010-04-16automatically run --gettime, and optimise it for gitJoey Hess
* Automatically run --gettime the first time ikiwiki is run on a given srcdir. * Optimise --gettime for git, so it's appropriatly screamingly fast. (This could be done for other backends too.) * However, --gettime for git no longer follows renames. * Use above to fix up timestamps on docwiki, as well as ensure that timestamps on basewiki files shipped in the deb are sane.