aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* updatesJoey Hess2008-07-22
|
* check for absolute pathsJoey Hess2008-07-22
|
* Don't allow uploading an attachment with the same name as an existing page, ↵Joey Hess2008-07-22
| | | | to avoid confusion.
* typoJoey Hess2008-07-22
|
* add rcs_commit_staged and rcs_renameJoey Hess2008-07-22
| | | | | | | | | Implemented for git and svn so far. Note that rcs_commit_staged does assume that the rcs has the ability to "stage" multiple changes for a later commit. Support for this varies, but all we really care about is staging removals and renames, which, AFAIK, all modern rcs's support.
* qualifiyJoey Hess2008-07-22
|
* make message a bit more genericJoey Hess2008-07-22
|
* rename checks improvementsJoey Hess2008-07-22
|
* permission checking improvementsJoey Hess2008-07-22
| | | | Break out into function so it can be done up-front before confirmation too.
* avoid uninitialised valueJoey Hess2008-07-22
|
* Merge commit 'origin/master' into tovaJoey Hess2008-07-22
|\
| * (no commit message)http://lollipopman.myopenid.com/2008-07-22
| |
| * (no commit message)http://lollipopman.myopenid.com/2008-07-22
| |
| * (no commit message)http://lollipopman.myopenid.com/2008-07-22
| |
| * bug when pages changing extension; new patchhttp://gmcmanus.myopenid.com/2008-07-22
| |
| * patch to prevent email obfuscationhttp://gmcmanus.myopenid.com/2008-07-22
| |
| * response to responsehttp://brian.may.myopenid.com/2008-07-22
| |
| * bug already noted, so mark as donehttp://gmcmanus.myopenid.com/2008-07-22
| |
| * email obfuscation by Text::Markdown undone by HTML::Scrubberhttp://gmcmanus.myopenid.com/2008-07-21
| |
* | improve docsJoey Hess2008-07-21
| |
* | really addJoey Hess2008-07-21
| |
* | use check_canattachJoey Hess2008-07-21
| | | | | | | | As noted, this may be overkill..
* | factor out check_canattachJoey Hess2008-07-21
| | | | | | | | Other plugins will need to use this.
* | skeleton rename pluginJoey Hess2008-07-21
| |
* | error if nothing selectedJoey Hess2008-07-21
| |
* | probably redundant symlink checkJoey Hess2008-07-21
| |
* | Merge branch 'master' into tovaJoey Hess2008-07-21
|\|
| * Add allow_symlinks_before_srcdir config settingJoey Hess2008-07-21
| | | | | | | | | | | | | | | | | | can be used to avoid a security check that is a good safe default, but problimatic overkill in some situations. I decided to underdocument this, because the option looks ugly, and I don't want people randomly turning it on because it looks like a good idea. So if you need it, you'll get an error message mentioning how to fix it.
| * Avoid troublesome abs_path calls in wrapper setupJoey Hess2008-07-21
| | | | | | | | As documented in the forum post.
| * responseJoey Hess2008-07-21
| |
| * responseJoey Hess2008-07-21
| |
* | Merge branch 'master' into tovaJoey Hess2008-07-21
|\| | | | | | | | | | | Conflicts: debian/changelog
| * Really fix bug with links to pages with names containing colonsJoey Hess2008-07-21
| | | | | | | | Previous fix mised a few cases.
| * remove testJoey Hess2008-07-21
| |
| * testJoey Hess2008-07-21
| |
| * typoJoey Hess2008-07-21
| |
| * testJoey Hess2008-07-21
| |
| * responseJoey Hess2008-07-21
| |
| * changelogJoey Hess2008-07-21
| |
| * Merge commit 'smcv/master'Joey Hess2008-07-21
| |\
| | * Don't prepend tagbase to tags if they start with "./" or "/".Simon McVittie2008-07-21
| | | | | | | | | | | | | | | That syntax made little sense previously, and this allows sites to put "most" of their tags under $tagbase.
| * | (no commit message)Mathias2008-07-21
| |/
| * Fix one missed instance of a directive without [[! (it was committed after I ↵http://smcv.pseudorandom.co.uk/2008-07-21
| | | | | | | | branched)
* | don't show an error if the image is missing, instead, a broken linkJoey Hess2008-07-21
| |
* | remove debuggingJoey Hess2008-07-21
| |
* | avoid internal error message when img uses just-deleted pageJoey Hess2008-07-21
| | | | | | | | | | | | | | | | | | | | | | I think this used to be a fatal error, not just inline error, so I don't know why it was never noticed, but if a page that an img directive mentions gets deleted, bestlink() returns a file that no longer exists, and srcfile() throws an error. Note that bestlink's behavior of returning a deleted file could be considered buggy. But, if it's changed to not do that, the page with the img on it is not updated at all when the file is removed.
* | typosJoey Hess2008-07-21
| |
* | typosJoey Hess2008-07-21
| |
* | need to untaint..Joey Hess2008-07-21
| |
* | a few bugfixesJoey Hess2008-07-21
| | | | | | | | | | Including a check the the file is in the srcdir, as opposed to some other directory.