summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-20Merge branch 'master' into file_pruned_revampJoey Hess
2010-04-20fix uninitialized value warningJoey Hess
$cgi->params('do') may not be defined. The CSRF code may delete all cgi params. This uninitalized value was introduced when do=register support was added recently.
2010-04-20typoJoey Hess
2010-04-20fix stat to use unmunged filenameJoey Hess
2010-04-20oops, fix for no_chdir modeJoey Hess
$_ will be absolute then
2010-04-20remove 2 argument form of file_prunedJoey Hess
2010-04-20switch to 1 parameter version of file_prunedJoey Hess
Another bit of code that didn't realize that File::Find sets $_ to the relative filename.
2010-04-20remove explicit absolute testJoey Hess
file_pruned now tests for that
2010-04-20use one parameter form of file_pruned here tooJoey Hess
In File::Find, $_ is relative to the current directory, so that is ok. Also, the directory name doesn't need to be stripped from $_.
2010-04-20clarify why absolute is tested & stripped hereJoey Hess
file_prune also fails on absolute filenames now
2010-04-20Merge branch 'master' into file_pruned_revampJoey Hess
2010-04-20fix minor bug if a page's name is "0"Joey Hess
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-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-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.