1 Here is a patch for the [[plugins/meta]] plugin. It adds the possibility to define the language
2 used for a page, with \[[!meta lang="ja"]]
4 It doesn't insert the langage information in the xhtml meta elements, but defines a LANG
5 variable to use in the templates, for example with
7 <html xmlns="http://www.w3.org/1999/xhtml"
8 lang="<TMPL_IF NAME="LANG"><TMPL_VAR LANG><TMPL_ELSE>fr</TMPL_IF>"
9 xml:lang="<TMPL_IF NAME="LANG"><TMPL_VAR LANG><TMPL_ELSE>fr</TMPL_IF>">
11 This way also allows to define a language for a subset of the final page, with custom
12 templates and inclusion.
14 This may be useful for sites with a few pages in different languages, but no full i18n.
16 > Looks good, but the need to modify the template and include a default
17 > language in it is a bit problimatic, I think. --[[Joey]]
19 >> --lang=XX could be a setup option, with a default value, then the template would be
21 <html xmlns="http://www.w3.org/1999/xhtml" lang="<TMPL_VAR LANG>" xml:lang="<TMPL_VAR LANG>">
23 >>> Yes, that seems reasonable. I guess there's no problem with defaulting
24 >>> to en if it can be overridden in the setup. --[[Joey]]
26 >>>> Yes, english default makes sense. I guess we should use the `$config{lang}`,
27 >>>> defined from the setup file or command-line options to define the default language
28 >>>> (`$config{lang}` defaults to `en` which is fine) if the html pages, and override
29 >>>> it from the `meta` directive.
30 >>>> — [[NicolasLimare]]
32 >>>>> ikiwiki already has a $config{locale}, which is a full locale (ie,
33 >>>>> "en_US.UTF-8". This just needs to be parsed for the lang. --[[Joey]]
35 >>>>>> My mistake, I meant $config{locale} --[[NicolasLimare]]
37 > So the patch below could be changed to parse `$config{locale}` for the
38 > language, and pass it if no specific lang was set for the page. The only
39 > problem with that would be that this is all done inside the meta plugin,
40 > so if that plugin were disabled, the lang would be empty. To avoid that,
41 > I guess that the template needs to look like:
43 <html xmlns="http://www.w3.org/1999/xhtml"
44 <TMPL_IF NAME="LANG">lang="<TMPL_VAR LANG>" xml:lang="<TMPL_VAR LANG>"</TMPL_IF>>
46 > Now it just needs to be finished up.. --[[Joey]]
49 --- meta.orig.pm 2007-07-27 00:19:51.000000000 +0200
50 +++ meta.pm 2007-08-05 22:37:40.000000000 +0200
58 hook(type => "preprocess", id => "meta", call => \&preprocess, scan => 1);
60 $meta{$page}.='<link href="'.encode_entities($value).
61 "\" rel=\"openid.delegate\" />\n";
63 + elsif ($key eq 'lang') {
64 + if ($value =~ /^[A-Za-z]{2}$/) {
65 + $lang{$page}=$value;
69 $meta{$page}.=scrub("<meta name=\"".encode_entities($key).
70 "\" content=\"".encode_entities($value)."\" />\n");
72 if exists $author{$page} && $template->query(name => "author");
73 $template->param(authorurl => $authorurl{$page})
74 if exists $authorurl{$page} && $template->query(name => "authorurl");
75 + $template->param(lang => $lang{$page})
76 + if exists $lang{$page} && $template->query(name => "lang");
81 > Please resolve lang somewhere reusable rather than within meta plugin: It is certainly usable outside
82 > the scope of the meta plugin as well. --[[JonasSmedegaard]]
84 [[!tag wishlist patch plugins/meta translation]]