aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Collapse)AuthorAge
* Pass array of names of files that have been deleted to needsbuild hook as ↵Joey Hess2010-09-10
| | | | second parameter, to allow for plugins that needs access to this information earlier than the delete hook.
* use warnJoey Hess2010-09-10
|
* avoid dups getting into @slavelanguagesJoey Hess2010-09-10
| | | | This could happen if checkconfig was run twice, I think.
* po: Auto-upgrade old format settings to new formats when writing setup file.Joey Hess2010-09-10
|
* po: Make the po_master_language use a langpair like "en|English", so it can ↵Joey Hess2010-09-10
| | | | be configured via the web.
* po: Allow enabling via web setup.Joey Hess2010-09-10
| | | | | The only unsafe thing should be that enabling it with some languages will generate po files.
* teximg: Use Unicode UTF-8 encoding by default.Paul Menzel2010-09-09
| | | | | | | | | | | | | | | | | | | | | | 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>
* needsbuild hook interface changed; the hooks should now return the modified ↵Joey Hess2010-09-07
| | | | array of things that need built. (Backwards compatability code keeps plugins using the old interface working.)
* saner return codes for check_can{remove,rename}Joey Hess2010-08-30
| | | | These return codes are not currently used, but might be later.
* httpauth: Avoid redirecting the user to the cgiauthurl if they already have ↵Joey Hess2010-08-30
| | | | a login session.
* revert check_canedit nosubs thingJoey Hess2010-08-30
| | | | | Abstraction violation. I now think the problem should be treated as a bug in httpauth.
* correct logic on error fallthroughJoey Hess2010-08-30
|
* Receive: avoid hiding check_canedit error messagesJoey Hess2010-08-30
| | | | | | | | 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.
* remove dead codeJoey Hess2010-08-30
|
* minor typoJoey Hess2010-08-30
|
* add explicit check_canedit calls when checking canattach or canremoveJoey Hess2010-08-30
|
* Avoid trying to log the user in when receiving anonymous pushes from git and ↵Joey Hess2010-08-30
| | | | | | a plugin like httpauth returns a login function. Just use check_canedit in nonfatal mode.
* factor out check_canedit calls from check_canremoveJoey Hess2010-08-30
|
* don't run check_canedit in nonfatal modeJoey Hess2010-08-30
|
* remove obsolete check to see if check_canedit is availableJoey Hess2010-08-30
| | | | | The function moved from the editpage plugin into IkiWiki core some time ago.
* call preprocess in scan mode hooks before scan hooksJoey Hess2010-08-30
| | | | Following along with change in Render.pm
* Merge remote branch 'intrigeri/po'Joey Hess2010-08-30
|\
| * Merge remote branch 'upstream/master' into prv/pointrigeri2010-08-22
| |\
| * \ Merge remote branch 'upstream/master' into prv/pointrigeri2010-08-22
| |\ \
| * | | fix copy'n'paste errorintrigeri2010-08-02
| | | |
| * | | po: re-scan in scan hook rather than using the rescan hook that won't be added.intrigeri2010-08-02
| | | |
| * | | Run the preprocess hooks in scan mode *before* the scan hooks.intrigeri2010-08-02
| | | |
| * | | Revert "Added a rescan hook."intrigeri2010-08-02
| | | | | | | | | | | | | | | | This reverts commit 25447bccae0439ea56da7a788482a4807c7c459d.
| * | | po: ignore non-existent translations in otherlanguages*intrigeri2010-08-02
| | | |
| * | | po: avoid bringing duplicates into %linksintrigeri2010-08-02
| | | |
| * | | po(mybestlink): avoid linking to non-existent translation pages.intrigeri2010-08-02
| | | |
| * | | Merge remote branch 'upstream/master' into prv/pointrigeri2010-08-02
| |\ \ \
| * | | | po: rescan converted content on refresh too.intrigeri2010-07-30
| | | | |
| * | | | po: use rescan hook instead of rebuilding twice.intrigeri2010-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The po rescan hook re-runs the scan hooks, and runs the preprocess ones in scan mode, both on the po-to-markup converted content. This way, plugins such as meta are given a chance to gather correct information, rather than ugly/buggy escaped data it did gather from unconverted PO files.
| * | | | Added a rescan hook.intrigeri2010-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is needed for the po plugin vs. e.g. meta titles. In order to get rid of the ugly "rebuilding all pages to fix meta titles" thing, Joey suggested to make "po, at scan time, re-run the scan hooks, passing them modified content (either converted from po to mdwn or with the escaped stuff cheaply de-escaped)". This would unfortunately not work, as the meta plugin gathers its data using the preprocess hook in scan mode: it would overwrite with buggy data the correct data we would have forced it to gather in po's scan hook. We then need a hook that runs *after* the preprocess hook has been run in scan mode, but *before* any page rendering is started. Hence this one.
* | | | | highlight: Make location of highlight's files configurable in setup file to ↵Joey Hess2010-08-30
| |_|_|/ |/| | | | | | | | | | | allow for nonstandard installations.
* | | | htmlscrubber: Do not scrub url anchors that contain colons.Joey Hess2010-08-19
| |_|/ |/| |
* | | smiley: warn instead of error for missing smileysGiuseppe Bilotta2010-08-13
| | | | | | | | | | | | | | | | | | | | | A missing smileys.mdwn caused the plugin to error out interrupting the building process. Instead, we check for the file presence and warn without erroring out in case it's missing, in a similar fashion as it's currently done for the shortcut plugin.
* | | Revert "insert flattr javascript via sanitize, not format hook"Joey Hess2010-08-12
| | | | | | | | | | | | | | | | | | | | | This reverts commit 3ef8864122c2e665d41ed4d45baa50d4a5d21873. Most aggregators block javascript and so it would display uglily. Need to find a way to fallback to static buttons instead.
* | | insert flattr javascript via sanitize, not format hookJoey Hess2010-08-12
| | | | | | | | | | | | | | | | | | This makes the javascript be added to rss feeds, which allows the buttons to be displayed by aggregators. At least, if the aggregator does not sanitize javascript.
* | | flattr: New plugin.Joey Hess2010-08-12
| | | | | | | | | | | | | | | | | | Thanks to jaywalk for the initial implementation at a flattr plugin! This one is less configurable, but simpler.
* | | correct comment; javascript is put after <body>Joey Hess2010-08-12
| | |
* | | filecheck: Fall back to using the file command if the freedesktop magic file ↵Joey Hess2010-08-09
| |/ |/| | | | | cannot identify a file.
* | Use Digest::SHA built into perl rather than external Digest::SHA1 to ↵Joey Hess2010-07-31
|/ | | | simplify dependencies. Closes: #591040
* remove debug codeJoey Hess2010-07-26
|
* Add new disable hook, allowing plugins to perform cleanup after they have ↵Joey Hess2010-07-26
| | | | been disabled.
* use new disable hookJoey Hess2010-07-26
| | | | clean up xapian db when plugin is disabled
* avoid generating receive wrapper if there are no untrusted committersJoey Hess2010-07-26
| | | | | The wrapper is pointless in that configuration. Also, the code for it doesn't compile w/o untrusted commiters to test. :)
* meta: Allow syntax closer to html meta to be used.Joey Hess2010-07-25
| | | | | | | | The idea here is that <meta name="foo" description="bar"> can be written like [[!meta name="foo" description="bar">. Of course, [[!meta foo=bar]] is still supported; this new feature provides some DWIM when trying to directly convert a meta tag into a meta directive.
* move wrapper building loop into Wrapper.pmJoey Hess2010-07-24
|