summaryrefslogtreecommitdiff
path: root/IkiWiki
AgeCommit message (Collapse)Author
2010-11-16websetup: Fix encoding problem when restoring old setup file.Joey Hess
2010-11-12comments: Make comment() pagespec also match comments that are being posted.Joey Hess
2010-11-12comments: Make postcomment() pagespec work when previewing a comment.Joey Hess
2010-11-12Fix htmlscrubber_skip to be matched on the source page, not the page it is ↵Joey Hess
inlined into. Should allow setting to "* and !comment(*)" to scrub comments, but leave your blog posts unscrubbed, etc.
2010-10-31Use author date instead of commit dateTuomas Jormola
Signed-off-by: Tuomas Jormola <tj@solitudo.net>
2010-10-31Added missing registration of checkconfig hook.Craig Lennox
2010-10-30Added missing hook registration for checkconfigTuomas Jormola
Signed-off-by: Tuomas Jormola <tj@solitudo.net>
2010-10-25squash undefJoey Hess
2010-10-25remove a last that won't workJoey Hess
2010-10-25highlight: Ensure that other, more-specific format plugins, like txt are ↵Joey Hess
used in preference to this one in case of ties.
2010-10-25txt: Fix display when used inside a format directive.Joey Hess
txt's use of a format hook can't work in that case, so it needs to use a htmlizeformat hook in this case to handle wrapping the text in pre tags.
2010-10-23nice message if someone tries to revert a merge commitJoey Hess
2010-10-23bugfixJoey Hess
2010-10-23fix web reversion when the srcdir is in a subdir of the git repo.Joey Hess
2010-10-23Fix typo that broke anonymous git push.Joey Hess
2010-10-19add a missing chompJoey Hess
2010-10-13img: If a class is specified, don't also put the img in the img class.Joey Hess
2010-10-11monotone: Fix recentchanges page when the srcdir is not at the top of the ↵Joey Hess
monotone workspace. Thanks, tommyd.
2010-10-11websetup: Fix defaults of checkboxes in advanced mode.Joey Hess
So formbuilder has an annoying glitch, that setting the value of a checkbox, even without force, will override the value currently on the form. Thus the guards against changing checkbox values when a form has been submitted. But those guards also prevented the checkboxes for advanced items getting the right value when going into advanced mode. Note that if the user makes changes to advanced mode stuff and leaves advanced mode, those changes are lost. That seems reasonable so I didn't change it -- and it made this fix simple.
2010-10-11websetup: Fix saving of advanced mode changes.Joey Hess
The showadvanced field was not known to formbuilder when hitting the save changes button.
2010-10-08add blank lineJoey Hess
2010-10-08typoJoey Hess
2010-10-08add message field to revert formJoey Hess
2010-10-08propigate rcs_revert error messageJoey Hess
and misc reorg
2010-10-08taint handling for revJoey Hess
2010-10-08refactorJoey Hess
2010-10-08remove todo itemJoey Hess
I understand the need to avoid chdir when running git_parse_changes for receive now. At that point, the changes have not been pushed to the srcdir's repo yet. When running the same code for preprevert, chdir to the srcdir is ok, and necessary.
2010-10-08refactor check_canchange into IkiWiki libraryJoey Hess
2010-10-08fix rcs_prepedit implementation to match specJoey Hess
2010-10-08make revert hooks optionalJoey Hess
I removed the IkiWiki::rcs_ stubs for the revert hooks. Instead recentchanges tests to see if the hooks are available and calls them directly.
2010-10-06convert rcs_revert to only stage the reversionJoey Hess
2010-10-06return to recentchanges page on form cancelJoey Hess
2010-10-06put diff at end of revert formJoey Hess
2010-10-06remove rcs_showpatchJoey Hess
2010-10-04remove debugging dumper codeJoey Hess
2010-10-04indentation and layoutJoey Hess
2010-10-04fix $git_root cachingJoey Hess
2010-10-04fix indentationJoey Hess
2010-10-04document new rcs reversion support functionsJoey Hess
2010-10-04indentationJoey Hess
2010-10-04fix bug if git_root is "0"Joey Hess
2010-10-04Merge remote branch 'remotes/peteg/revert' into revertJoey Hess
2010-10-02fixups tidy changeJoey Hess
Need checkconfig hook; examples don't become default values.
2010-10-01Minor tidy-ups.Peter Gammie
2010-10-01Complete rcs_preprevert and lightly test.Peter Gammie
2010-09-30Make tidy command line configurable for the htmltidy plugin.W. Trevor King
2010-09-29Get things right after moving to a branch.Peter Gammie
2010-09-29First cut at the revert plugin.Peter Gammie
2010-09-27template_depends: throw nice error message when template cannot be foundJoey Hess
plovs reported a crash when templates were not installed properly, with a non-useful error about the template object not being defined. I've audited all uses of template_depends(), and template(), and it makes sense for them to throw an error if the template cannot be found. All code with a user-supplied template catches errors already, to handle template parse failures. It did not make sense for template_file to throw errors, as some code uses it to probe if a template file is available.
2010-09-27avoid fatal error if aggregate page template could not be foundJoey Hess
That template is user-controlled.