]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/language_definition_for_the_meta_plugin.mdwn
dbee390fa82a5c598e74aae6670443ae5b87c678
[ikiwiki.git] / doc / todo / language_definition_for_the_meta_plugin.mdwn
1 Here is a patch for the [[plugins/meta]] plugin. It adds the possibility to define the language 
2 used for a page, with
3     [[meta lang="ja"]]
4
5 It doesn't insert the langage information in the xhtml meta elements, but defines a LANG
6 variable to use in the templates, for example with
7
8     <html xmlns="http://www.w3.org/1999/xhtml"
9           lang="<TMPL_IF NAME="LANG"><TMPL_VAR LANG><TMPL_ELSE>fr</TMPL_IF>"
10           xml:lang="<TMPL_IF NAME="LANG"><TMPL_VAR LANG><TMPL_ELSE>fr</TMPL_IF>">
11
12 This way also allows to define a language for a subset of the final page, with custom
13 templates and inclusion. 
14
15 This may be useful for sites with a few pages in different languages, but no full i18n.
16
17 > Looks good, but the need to modify the template and include a default
18 > language in it is a bit problimatic, I think. --[[Joey]]
19
20 >> --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"
22 >>          lang="<TMPL_VAR LANG>"
23 >>          xml:lang="<TMPL_VAR LANG>">
24 >> — NicolasLimare
25
26 <pre>
27 --- meta.orig.pm  2007-07-27 00:19:51.000000000 +0200
28 +++ meta.pm       2007-08-05 22:37:40.000000000 +0200
29 @@ -11,6 +11,7 @@
30  my %permalink;
31  my %author;
32  my %authorurl;
33 +my %lang;
34  
35  sub import { #{{{
36         hook(type => "preprocess", id => "meta", call => \&preprocess, scan => 1);
37 @@ -100,6 +101,11 @@
38                 $meta{$page}.='<link href="'.encode_entities($value).
39                         "\" rel=\"openid.delegate\" />\n";
40         }
41 +       elsif ($key eq 'lang') {
42 +           if ($value =~ /^[A-Za-z]{2}$/) {
43 +               $lang{$page}=$value;
44 +           }
45 +       }
46         else {
47                 $meta{$page}.=scrub("<meta name=\"".encode_entities($key).
48                         "\" content=\"".encode_entities($value)."\" />\n");
49 @@ -131,6 +137,8 @@
50                 if exists $author{$page} && $template->query(name => "author");
51         $template->param(authorurl => $authorurl{$page})
52                 if exists $authorurl{$page} && $template->query(name => "authorurl");
53 +       $template->param(lang => $lang{$page})
54 +               if exists $lang{$page} && $template->query(name => "lang");
55  
56  } # }}}
57 </pre>
58
59
60 [[tag wishlist patch plugin/meta translation]]