Commit Graph

13652 Commits (8a6f4a7e50c247c061fd74b535d0f292aca6bda7)

Author SHA1 Message Date
http://kerravonsen.dreamwidth.org/ d2b50c37b4 formatting 2010-08-06 08:19:39 +00:00
http://kerravonsen.dreamwidth.org/ 0497b63792 Should I remove the old ymlfront format now that it recognises directives? 2010-08-06 08:19:06 +00:00
http://kerravonsen.dreamwidth.org/ f78357348a ymlfront now provides a ymlfront directive 2010-08-06 08:13:48 +00:00
http://kerravonsen.dreamwidth.org/ 5bbbdbecbb update docs for new version 2010-08-06 08:12:11 +00:00
Joey Hess 74d975ff4d typo 2010-08-05 17:46:14 -04:00
Joey Hess 22ae98b2fa add new item for ikiwiki-hosting, the free ikiwiki management interface I developed for Branchable 2010-08-05 17:44:47 -04:00
Joey Hess aac249cca3 Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info 2010-08-05 17:39:47 -04:00
Joey Hess 86dc710d90 add Branchable, new ikiwiki hosting service run by me and liw 2010-08-05 17:38:20 -04:00
Perry 69297da448 2010-08-05 00:40:11 +00:00
Perry 9943e270f8 Note that the problem is not only for Brian May.... 2010-08-05 00:38:44 +00:00
Perry 9fd43faa13 Remove vandalism. 2010-08-04 14:54:28 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkuR0eo_HO1s1hs49h0Y_4Bzm08l9evMEc 7bc5bf54f5 2010-08-04 14:40:27 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkuR0eo_HO1s1hs49h0Y_4Bzm08l9evMEc 6021b7a792 2010-08-04 14:39:25 +00:00
Joey Hess c8d2ea67da add news item for ikiwiki 3.20100804 2010-08-04 09:27:01 -04:00
Joey Hess 522f3d1d65 releasing version 3.20100804 2010-08-04 09:26:43 -04:00
Joey Hess 5d88146861 Fixes a bug that prevented matching deleted pages when using the page() PageSpec. 2010-08-04 08:25:10 -04:00
Joey Hess c2f2349de4 bug isolated 2010-08-04 08:09:11 -04:00
Joey Hess d934cee673 resp 2010-08-02 14:37:02 -04:00
http://liw.fi/ 06641bb880 2010-08-02 18:35:07 +00:00
intrigeri c5b052cbbd explored possible ways to do it, got trapped. 2010-08-02 16:00:37 +02:00
intrigeri 0055354e3c fix copy'n'paste error 2010-08-02 15:27:52 +02:00
intrigeri 97a706f73c both are now fixed in my po branch. 2010-08-02 15:14:33 +02:00
intrigeri 38460076e1 po.t: added a bunch of tests for recent code changes 2010-08-02 15:11:44 +02:00
intrigeri 5b0890f402 po: re-scan in scan hook rather than using the rescan hook that won't be added. 2010-08-02 13:39:41 +02:00
intrigeri a3624aba40 Run the preprocess hooks in scan mode *before* the scan hooks. 2010-08-02 13:39:06 +02:00
intrigeri 46a997db16 Revert "Added a rescan hook."
This reverts commit 25447bccae.
2010-08-02 13:14:33 +02:00
intrigeri 352c62a8de po: ignore non-existent translations in otherlanguages* 2010-08-02 13:10:28 +02:00
intrigeri d8a99e97ad po: avoid bringing duplicates into %links 2010-08-02 12:52:46 +02:00
intrigeri d9f0b56a41 po(mybestlink): avoid linking to non-existent translation pages. 2010-08-02 12:52:10 +02:00
intrigeri 22d9822437 Merge remote branch 'upstream/master' into prv/po 2010-08-02 11:18:35 +02:00
intrigeri e083e4caa8 ack² 2010-08-02 03:23:30 +02:00
Joey Hess 7a1d5632b8 comment 2010-08-01 12:36:44 -04:00
Joey Hess 2ab89b4462 response 2010-08-01 12:25:35 -04:00
Joey Hess 9d62c6382a pot files maybe.. 2010-08-01 12:22:27 -04:00
Joey Hess b2571bb50d close, cannot reproduce 2010-08-01 12:18:57 -04:00
Joey Hess b766ff0044 Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info 2010-07-31 15:55:31 -04:00
Joey Hess fee00fdb7a Use Digest::SHA built into perl rather than external Digest::SHA1 to simplify dependencies. Closes: #591040 2010-07-31 15:54:25 -04:00
intrigeri 543bc7af8b eventually got rid of the double rebuild issue. please have a look. 2010-07-30 16:23:02 +02:00
intrigeri 5948bb01cb po: rescan converted content on refresh too. 2010-07-30 16:20:12 +02:00
intrigeri b09b8621b2 po: use rescan hook instead of rebuilding twice.
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-30 16:14:30 +02:00
intrigeri 25447bccae Added a rescan hook.
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-30 16:14:23 +02:00
intrigeri 1fe87a0808 resubmitted patch to po4a upstream 2010-07-30 13:15:33 +02:00
intrigeri 5e716ca62a fixed by the last po4a release 2010-07-30 12:55:28 +02:00
intrigeri b298fdd78c todo++ 2010-07-29 16:37:17 +02:00
intrigeri ad2722399e fixed broken link 2010-07-29 16:34:57 +02:00
intrigeri d3fc6d797b remove spurious map directive 2010-07-29 16:33:57 +02:00
intrigeri 6c4caf8211 Move po todo/bugs to dedicated pages. 2010-07-29 16:32:56 +02:00
intrigeri 927558ee44 found the root cause of the "bug" 2010-07-29 16:18:59 +02:00
http://kerravonsen.dreamwidth.org/ 4bc3839df8 what approach to take for pagination? 2010-07-29 02:47:26 +00:00
intrigeri ccf80cfa8a todo++ (?) 2010-07-28 20:07:44 +02:00