summaryrefslogtreecommitdiff
path: root/IkiWiki
AgeCommit message (Collapse)Author
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.
2010-09-26Merge remote branch 'remotes/smcv/ready/htmlbalance'Joey Hess
2010-09-26Propigate PATH into wrapper.Joey Hess
In the last version, the ikiwiki script stopped setting PATH. But that leads to gcc failing when run from websetup. See http://www.branchable.com/bugs/Crashes_when_rebuilding_wiki_after_setup_change/
2010-09-26htmlbalance: be compatible with HTML::Tree 4.0Simon McVittie
The HTML::Tree changelog says: [THINGS THAT MAY BREAK YOUR CODE OR TESTS] ... * Attribute names are now validated in as_XML and invalid names will cause an error. and indeed the regression tests do get an error.
2010-09-21attachment: Fix attachment file size display.Joey Hess
2010-09-19meta: Ensure that the url specified by xrds-location is absolute.Joey Hess
With a relative xrds-location, the openid perl client module will fail. I haven't checked the specs to see if it needs to be absolute, but all examples I've seen are absolute, so it seems a very good idea.
2010-09-19add missing spaceJoey Hess
2010-09-15cutpaste: Fix bug that occured in some cases involving inlines when text was ↵Joey Hess
pasted on a page before being cut.
2010-09-14git: When updating from remote, use git pull --prune, to avoid possible ↵Joey Hess
errors from conflicting obsolete remote branches.
2010-09-14external: Disable RPC::XML's "smart" encoding, which sent ints for strings ↵Joey Hess
that contained only a number, fixing a longstanding crash of the rst plugin.
2010-09-14blogspam: Fix crash when content contained utf-8.Joey Hess
I also tried setting RPC::XML::ENCODING but that did not prevent the crash, and it seems that blogspam.net doesn't like getting xml encoded in unicode, since it mis-flagged comments as spammy that way that are normally allowed through.
2010-09-13revert accidentially committed changeJoey Hess
2010-09-10Pass array of names of files that have been deleted to needsbuild hook as ↵Joey Hess
second parameter, to allow for plugins that needs access to this information earlier than the delete hook.
2010-09-10use warnJoey Hess
2010-09-10avoid dups getting into @slavelanguagesJoey Hess
This could happen if checkconfig was run twice, I think.
2010-09-10po: Auto-upgrade old format settings to new formats when writing setup file.Joey Hess
2010-09-10po: Make the po_master_language use a langpair like "en|English", so it can ↵Joey Hess
be configured via the web.
2010-09-10po: Allow enabling via web setup.Joey Hess
The only unsafe thing should be that enabling it with some languages will generate po files.
2010-09-09teximg: Use Unicode UTF-8 encoding by default.Paul Menzel
If I am not mistaking all source files in ikiwiki are encoded in Unicode UTF-8. Adding `\usepackage[utf8]{inputenc}` enables LaTeX to deal with the encoding. As a consequence some special characters like umlauts can be used in the source code which is useful for foreign languages. [[!teximg code="a = b \text{ für alle } b \neq 2"]] But for example »≠« cannot be used in LaTeX right now. One has to use other TeX systems like XeTeX or LuaTeX featuring native UTF-8 support or use additional nonstandard packages like uniinput [1]. I used the package `inputenc` (`texdoc inputenc`) and not `inputenx` (`texdoc inputenx`), because I have not used `inputenx` that much and using the option `math` is not supported in Debian (and I guess other distributions too) since `inpmath` is not included in CTAN. [1] http://wiki.neo-layout.org/browser/latex/Standard-LaTeX Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
2010-09-07needsbuild hook interface changed; the hooks should now return the modified ↵Joey Hess
array of things that need built. (Backwards compatability code keeps plugins using the old interface working.)
2010-08-30saner return codes for check_can{remove,rename}Joey Hess
These return codes are not currently used, but might be later.
2010-08-30httpauth: Avoid redirecting the user to the cgiauthurl if they already have ↵Joey Hess
a login session.
2010-08-30revert check_canedit nosubs thingJoey Hess
Abstraction violation. I now think the problem should be treated as a bug in httpauth.
2010-08-30correct logic on error fallthroughJoey Hess
2010-08-30Receive: avoid hiding check_canedit error messagesJoey Hess
Avoid the generic "you are not allowed to change" message, and instead allow check_canedit to propigate out useful error messages. Went back to calling check_canedit in fatal mode, but added a parameter to avoid calling the troublesome subs that might cause a login attempt.
2010-08-30remove dead codeJoey Hess
2010-08-30minor typoJoey Hess
2010-08-30add explicit check_canedit calls when checking canattach or canremoveJoey Hess
2010-08-30Avoid trying to log the user in when receiving anonymous pushes from git and ↵Joey Hess
a plugin like httpauth returns a login function. Just use check_canedit in nonfatal mode.
2010-08-30factor out check_canedit calls from check_canremoveJoey Hess
2010-08-30don't run check_canedit in nonfatal modeJoey Hess
2010-08-30remove obsolete check to see if check_canedit is availableJoey Hess
The function moved from the editpage plugin into IkiWiki core some time ago.
2010-08-30call preprocess in scan mode hooks before scan hooksJoey Hess
Following along with change in Render.pm