summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-21Always give createlink class to links to nonexistent pagesGiuseppe Bilotta
With this change, the <span> with class createlink is always created around the link text, even when no CGI URL is defined. This allows styling of these 'links' in this case too. The same class is used as when CGI URL is defined so that e.g. clones of the same ikiwiki, one with CGI and one without, display in the same way (modulo the missing question mark link). (cherry picked from commit 290d1b498f00f63e6d41218ddb76d87e68ed5081)
2010-04-21Missing links with no CGIhttp://oblomov.myopenid.com/
2010-04-20Merge branch 'master' into autotagJoey Hess
2010-04-20Merge branch 'file_pruned_revamp'Joey Hess
2010-04-20bugfixJoey Hess
So this is the one place that does need to canonpath and compare, as two argument file_pruned used to.
2010-04-20Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2010-04-20darcs: ensure whole darcs query manifest output is consumedJoey Hess
By a stroke of luck, after a long & full day, I happened to remember that in the morning, I had seen someone on irc mention that darcs query manifest doesn't like it if its full output is not consumed. So contrary to the usual case where bug reports sent via irc are like messages written in sand before the new tide, this one was seen and fixed. (But use http://ikiwiki.info/bugs/ next time!)
2010-04-20bugfixJoey Hess
Avoid file_pruned triggering on absolute paths causing the whole comments_pending directory being pruned. Simplify code.
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-20Clarificationshttp://oblomov.myopenid.com/
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-20internal pages: the revenge?http://smcv.pseudorandom.co.uk/
2010-04-20clarify whether the raw files would be put in destdirJon Dowland
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-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