summaryrefslogtreecommitdiff
path: root/IkiWiki
AgeCommit message (Collapse)Author
2008-07-21factor out check_canattachJoey Hess
Other plugins will need to use this.
2008-07-21skeleton rename pluginJoey Hess
2008-07-21error if nothing selectedJoey Hess
2008-07-21probably redundant symlink checkJoey Hess
2008-07-21Merge branch 'master' into tovaJoey Hess
2008-07-21Add allow_symlinks_before_srcdir config settingJoey Hess
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.
2008-07-21Avoid troublesome abs_path calls in wrapper setupJoey Hess
As documented in the forum post.
2008-07-21Merge branch 'master' into tovaJoey Hess
Conflicts: debian/changelog
2008-07-21Don't prepend tagbase to tags if they start with "./" or "/".Simon McVittie
That syntax made little sense previously, and this allows sites to put "most" of their tags under $tagbase.
2008-07-21don't show an error if the image is missing, instead, a broken linkJoey Hess
2008-07-21remove debuggingJoey Hess
2008-07-21avoid internal error message when img uses just-deleted pageJoey Hess
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.
2008-07-21typosJoey Hess
2008-07-21typosJoey Hess
2008-07-21need to untaint..Joey Hess
2008-07-21a few bugfixesJoey Hess
Including a check the the file is in the srcdir, as opposed to some other directory.
2008-07-21support for removing attachmentsJoey Hess
2008-07-21simplified confirmation formJoey Hess
also, there's no titlepage conversion issues
2008-07-21touchupsJoey Hess
2008-07-21redirect after removalJoey Hess
2008-07-21basically, removal worksJoey Hess
Still need to consider all the edge cases..
2008-07-21All rcs backends need to implement rcs_removeJoey Hess
(Done for svn, git.)
2008-07-21form tweaks; use titleJoey Hess
2008-07-21implemented form state saving and retrievalJoey Hess
This is overkill for delete, since it's only used on Cancel. But it will be crucial for rename, so as to restore any pending edits after renaming a page.
2008-07-21basic removal form skeletonJoey Hess
2008-07-21rename skeleton.pmJoey Hess
Add '.example' so it's not installed with the other plugins.
2008-07-19Use correct term prefixes when searching.Gabriel McManus
The Z term prefix is for stemming and shouldn't be used here. X is for custom fields.
2008-07-17mark old web commits as from webJoey Hess
2008-07-17fix web commit determinationJoey Hess
2008-07-17dummy up an email address for web commitsJoey Hess
Not doing so breaks cia and other things that try to parse a username out of the email address.
2008-07-17git: Fix parsing of git logs with no commit messages at all.Joey Hess
2008-07-17change how web commits are specifiedJoey Hess
The trailer line was a bit complex and ugly; I think it's better to just put "(web)" after the user name. This has a side effect of making web commits with no messages have a completly empty commit message. Use --cleanup=verbatim to force git to accept such.
2008-07-17git: Put web committer name/openid/address in the git author fieldJoey Hess
The committer's email address is not used (because leaking email addresses is not liked by many users). Closes: #451023 A "Web-commit" trailer is added, to allow telling the difference between web commits and direct commits.
2008-07-17Add a postscan hook.Joey Hess
* Add a postscan hook. * search: Use postscan hook, avoid updating index when previewing.
2008-07-17fix pos settingJoey Hess
What was really going on is that expanding a smiley modified the string and reset the match process. Force set pos so it continues on from the expanded smiley.
2008-07-17smiley escaping fixesJoey Hess
Smileys need to be double-escaped to work, since the smiley plugin runs as a sanitize hook, and markdown helpfully removes one level of escapes first. There were some bugs in the smiley handling code that made escaped smileys still be expanded. After unescaping a smiley, it needed to move pos forward past it or the next pass would expand it. Also, once the m//g got to the end, it seemed to loop back through and make one more pass (a difference in perl 5.10's regexp exngine? I observed that pos was undefined when this happened, so added a `last unless defined pos`.
2008-07-16formatting etcJoey Hess
2008-07-16Merge commit 'intrigeri/pedigree'Joey Hess
2008-07-15pedigree rename to parentlinks: rename/adapt everythingintrigeri
* Renamed to parentlinks every single variable or function called pedigree * Removed the parentlinks function from Render.pm * Enabled the new parentlinks plugin by default * Adapted testsuite and documentation to reflate the above facts Signed-off-by: intrigeri <intrigeri@boum.org>
2008-07-15pedigree rename to parentlinks: renamed files, to start withintrigeri
Signed-off-by: intrigeri <intrigeri@boum.org>
2008-07-15pedigree: rewrote with different designintrigeri
(and updated testsuite + docs accordingly) Signed-off-by: intrigeri <intrigeri@boum.org>
2008-07-14fixesJoey Hess
2008-07-14use prune to delete rendered filesJoey Hess
This handles deleting empty directories too.
2008-07-15Fix aggregateinternal migration so it skips expired entries, and deletes outputSimon McVittie
2008-07-14Merge commit 'smcv/aggregateinternal' into aggregateinternalJoey Hess
Conflicts: IkiWiki/Plugin/aggregate.pm
2008-07-15Use _aggregated as extension for internalized aggregationSimon McVittie
2008-07-14changes to debug message printingJoey Hess
2008-07-14Add aggregateinternal mode to ikiwiki-transition.Simon McVittie
Usage: 1. Update all pagespecs that use aggregated pages to use internal() 2. ikiwiki-transition aggregateinternal $srcdir $htmlext (where $srcdir and $htmlext are the srcdir and htmlext options in your .setup file) 3. Add aggregateinternal to your .setup file 4. Rebuild the wiki
2008-07-14Merge commit 'origin/master' into aggregateinternalSimon McVittie
2008-07-14pedigree: added DISTANCE loop variableintrigeri
Signed-off-by: intrigeri <intrigeri@boum.org>