Commit Graph

1310 Commits (1b63a0e4fae5396014ed222647ae9c3c88a35de5)

Author SHA1 Message Date
Joey Hess 1b63a0e4fa another problem 2009-08-15 16:15:36 -04:00
Joey Hess d13c07dec1 noticed a problem 2009-08-15 15:20:46 -04:00
Joey Hess 3401dc6110 fix name 2009-08-13 18:12:28 -04:00
Joey Hess 8ba32abaf2 review: question 2009-08-13 17:55:01 -04:00
Joey Hess 7712bb662a Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info 2009-08-10 16:05:50 -04:00
Joey Hess 83480665c2 po: Fix copy of po file from underlay when editing
When first editing a page that was in the underlay, avoid losing
the translation by copying the po file over from the underlay.
2009-08-10 15:59:32 -04:00
http://schmonz.livejournal.com/ af29201c3c the post-commit wrapper wrapper also avoids cvs deadlock 2009-08-09 22:09:42 -04:00
http://schmonz.livejournal.com/ 792026fe97 add install and usage directions, to-do list 2009-08-09 22:06:02 -04:00
http://certifi.ca/lunix c430c5ebd0 add my response 2009-08-09 01:34:11 -04:00
http://certifi.ca/lunix 4e387bc6b6 reponse about highlight plugin 2009-08-08 21:11:03 -04:00
Joey Hess a0ace62664 point out where to get highlight perl bindings 2009-08-08 20:27:50 -04:00
http://certifi.ca/lunix c86842711f centos question 2009-08-08 19:19:32 -04:00
bremner 3c1ebd20f8 ok, thanks. I'll probably do the same. 2009-08-08 17:19:07 -04:00
Joey Hess eb5e6b2bb6 response 2009-08-08 17:01:10 -04:00
bremner 255835660b question (for joeyh?) about IkiWiki::refresh() 2009-08-08 16:48:00 -04:00
Joey Hess c0c1e05dab finish merging getsource 2009-08-08 12:32:39 -04:00
Joey Hess 79312b2754 Merge commit 'smcv/ready/getsource'
Conflicts:
	debian/changelog
2009-08-08 12:22:10 -04:00
http://bob-bernstein.myopenid.com/ 69d26eb573 2009-08-07 01:09:03 -04:00
http://bob-bernstein.myopenid.com/ c7ad7482f4 2009-08-06 22:20:15 -04:00
Jogo 4a331d8afc 2009-08-06 13:07:22 -04:00
Jogo 0b2100727b 2009-08-06 09:42:56 -04:00
Jogo 34e5f5eba3 2009-08-06 08:43:45 -04:00
http://schmonz.livejournal.com/ 9468c553e1 maybe prevent trying to create .../CVS/whatever.mdwn 2009-08-03 03:23:42 -04:00
http://schmonz.livejournal.com/ cf3ab205e8 note Perl module dependencies 2009-08-03 02:56:42 -04:00
http://smcv.pseudorandom.co.uk/ 9def21fcf7 remove reference to needing a branch which was merged already 2009-08-01 07:46:35 -04:00
Simon McVittie 3f39e69b13 Document the getsource plugin 2009-08-01 12:31:34 +01:00
http://schmonz.livejournal.com/ 216a349bb9 specify where in IkiWiki.pm CVS metadata is avoided (wiki_file_prune_regexps) 2009-07-31 18:37:58 -04:00
http://schmonz.livejournal.com/ faa29aaaf3 add working CVS plugin 2009-07-31 18:17:53 -04:00
http://smcv.pseudorandom.co.uk/ 612505d76b Self-review... 2009-07-31 17:18:20 -04:00
http://smcv.pseudorandom.co.uk/ ba1c355353 I now realise that one of trail's modes is a bit flawed... 2009-07-31 17:14:50 -04:00
http://schmonz.livejournal.com/ d9fa13504d add missing backquote 2009-07-29 22:38:51 -04:00
http://schmonz.livejournal.com/ 6f88e3631e fix typo 2009-07-26 05:40:58 -04:00
Simon McVittie f237ea1b9a Add [[!template id=gitbranch]] for things available from git, and use it
The uses are somewhat biased towards my own branches, because I know
where to find them and what they do :-) but I've tagged some other
people's as well.
2009-07-25 19:55:22 +01:00
Joey Hess 62dd02aa79 oddity 2009-07-21 13:21:16 +02:00
Joey Hess d1b316dc05 add a warning 2009-07-21 13:07:49 +02:00
Jon Dowland c28c7846b4 Merge branch 'master' of git://git.ikiwiki.info 2009-07-21 11:45:29 +01:00
Jon Dowland ddd55037d4 some thoughts in the wake of a spam attack 2009-07-21 11:44:52 +01:00
Joey Hess 8effd48854 one issue with basewiki translations 2009-07-21 12:43:48 +02:00
Joey Hess eca2dbe67f po: Add support for mo files in underlays
In order to support translated basewiki and other underlays, we need
support for mo files in underlays.

The code did not allow this before, because if a mo file was in an
underlay, then it might try to update it, and its pot, and write to the
underlay, which is guaranteed to either fail due to permissions, or be
undesirable.

To fix, my approach is to just detect if a mo or pot file that is about to
be updated is in an underlay, and skip updating it. This seems to work
well:

- If the mo is out of date in the underlay, it won't get updated, but this
  would probably be due to a problem in the underlay, or more likely,
  the wiki is being rebuilt and so it *thinks* the mo is out of date,
  but it's really not (and it would be a waste of time to rebuild it
  anyway).
- If a page from the basewiki is edited, it is saved to the srcdir,
  which causes generation of an updated mo and pot also in the srcdir;
  the underlay stops being used for that page, and everything seems
  to work.

Note that I am not including an underlay search directory for pot files.
They *seem* to be unnecessary for the underlay, since the mo files
in there never need to be updated.
2009-07-21 11:31:51 +02:00
harishcm 4954ffb558 2009-07-21 00:33:23 -04:00
http://smcv.pseudorandom.co.uk/ f900e84416 link to existing bug 2009-07-20 11:16:45 -04:00
harishcm 3fef1fbd0d Issue with ul and div tag closure when returning empty map 2009-07-20 10:40:29 -04:00
Joey Hess a7b813182d build translated underlays for use with non-English wikis 2009-07-20 07:20:13 +02:00
Joey Hess 741c33576e create translated underlays in mdwn format
These are for use by wikis where the primary language is not English.
On such a wiki, it makes sense to use an underlay has the source for pages
in the native language.
2009-07-20 06:23:33 +02:00
Joey Hess 7d56f17891 more thoughts on underlays 2009-07-20 04:54:25 +02:00
Joey Hess 3f517fa143 note branch name 2009-07-20 04:49:16 +02:00
Jonas Smedegaard 65aa071f97 Update with Git URL for danish l10n. 2009-07-20 01:22:55 +02:00
Joey Hess 7865433d8e update, think I have the real bug this time 2009-07-20 00:11:56 +02:00
Joey Hess a7e5541c4d %links dedup bug? 2009-07-19 23:55:58 +02:00
Joey Hess 54280d0215 bad po plugin bug 2009-07-19 23:01:43 +02:00