summaryrefslogtreecommitdiff
path: root/IkiWiki
AgeCommit message (Collapse)Author
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
2010-08-30Merge remote branch 'intrigeri/po'Joey Hess
2010-08-30highlight: Make location of highlight's files configurable in setup file to ↵Joey Hess
allow for nonstandard installations.
2010-08-22Merge remote branch 'upstream/master' into prv/pointrigeri
2010-08-22Merge remote branch 'upstream/master' into prv/pointrigeri
2010-08-19htmlscrubber: Do not scrub url anchors that contain colons.Joey Hess
2010-08-13smiley: warn instead of error for missing smileysGiuseppe Bilotta
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.
2010-08-12Revert "insert flattr javascript via sanitize, not format hook"Joey Hess
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.
2010-08-12insert flattr javascript via sanitize, not format hookJoey Hess
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.
2010-08-12flattr: New plugin.Joey Hess
Thanks to jaywalk for the initial implementation at a flattr plugin! This one is less configurable, but simpler.
2010-08-12correct comment; javascript is put after <body>Joey Hess
2010-08-09filecheck: Fall back to using the file command if the freedesktop magic file ↵Joey Hess
cannot identify a file.
2010-08-02fix copy'n'paste errorintrigeri
2010-08-02po: re-scan in scan hook rather than using the rescan hook that won't be added.intrigeri
2010-08-02Run the preprocess hooks in scan mode *before* the scan hooks.intrigeri
2010-08-02Revert "Added a rescan hook."intrigeri
This reverts commit 25447bccae0439ea56da7a788482a4807c7c459d.
2010-08-02po: ignore non-existent translations in otherlanguages*intrigeri
2010-08-02po: avoid bringing duplicates into %linksintrigeri
2010-08-02po(mybestlink): avoid linking to non-existent translation pages.intrigeri
2010-08-02Merge remote branch 'upstream/master' into prv/pointrigeri
2010-07-31Use Digest::SHA built into perl rather than external Digest::SHA1 to ↵Joey Hess
simplify dependencies. Closes: #591040
2010-07-30po: rescan converted content on refresh too.intrigeri
2010-07-30po: use rescan hook instead of rebuilding twice.intrigeri
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.
2010-07-30Added a rescan hook.intrigeri
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.
2010-07-26remove debug codeJoey Hess
2010-07-26Add new disable hook, allowing plugins to perform cleanup after they have ↵Joey Hess
been disabled.
2010-07-26use new disable hookJoey Hess
clean up xapian db when plugin is disabled
2010-07-26avoid generating receive wrapper if there are no untrusted committersJoey Hess
The wrapper is pointless in that configuration. Also, the code for it doesn't compile w/o untrusted commiters to test. :)
2010-07-25meta: Allow syntax closer to html meta to be used.Joey Hess
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.
2010-07-24move wrapper building loop into Wrapper.pmJoey Hess
2010-07-24git: Fix gitweb historyurl examples so "diff to current" links work. (Thanks ↵Joey Hess
jrayhawk)
2010-07-24Merge remote branch 'upstream/master' into prv/pointrigeri
2010-07-23whitespace fixes and a typoJoey Hess
2010-07-20po: optimizationintrigeri
No need to use "keys %{$config{po_slave_languages}}" repeatedly: the slave languages codes list is already cached in @slavelanguages.
2010-07-20Support ordered po_slave_languages as discussed previously.intrigeri
Backward compatibility is still supported.
2010-07-18Revert "po_slave_languages can now be a hash, if order matters."Joey Hess
This reverts commit 4cf185e781a5f94373b30ec9a0e10dfb626b6d86. That commit broke t/po.t (probably the test case only is testing too close the the old implementation and needs correcting). Also, we have not decided how to want to represent it yet, so I'm not ready for this change. Conflicts: IkiWiki/Plugin/po.pm doc/plugins/po.mdwn
2010-07-18typoJoey Hess
2010-07-18Merge remote branch 'intrigeri/po'Joey Hess
2010-07-14add getsetup hookJoey Hess
2010-07-14add section to getsetup infoJoey Hess
2010-07-14add 2 more missing getsetup hooksJoey Hess