]> sipb.mit.edu Git - ikiwiki.git/commitdiff
minor layout changes
authorJoey Hess <joey@kodama.kitenet.net>
Wed, 5 Nov 2008 20:09:04 +0000 (15:09 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Wed, 5 Nov 2008 20:09:04 +0000 (15:09 -0500)
IkiWiki/Plugin/po.pm

index b8c218c5a98c65db81c14726e5cf26986565dcdc..4bac376561139cbf6077276b9e89a7198c2201ca 100644 (file)
@@ -31,7 +31,7 @@ $origsubs{'bestlink'}=\&IkiWiki::bestlink;
 $origsubs{'beautify_urlpath'}=\&IkiWiki::beautify_urlpath;
 $origsubs{'targetpage'}=\&IkiWiki::targetpage;
 
-sub import {
+sub import { #{{{
        hook(type => "getsetup", id => "po", call => \&getsetup);
        hook(type => "checkconfig", id => "po", call => \&checkconfig);
        hook(type => "needsbuild", id => "po", call => \&needsbuild);
@@ -41,7 +41,7 @@ sub import {
        inject(name => "IkiWiki::bestlink", call => \&mybestlink);
        inject(name => "IkiWiki::beautify_urlpath", call => \&mybeautify_urlpath);
        inject(name => "IkiWiki::targetpage", call => \&mytargetpage);
-}
+} #}}}
 
 sub getsetup () { #{{{
        return
@@ -289,8 +289,8 @@ sub filter (@) { #{{{
        my $destpage = $params{destpage};
        my $content = decode_utf8(encode_utf8($params{content}));
 
-       # decide if this is a PO file that should be converted into a translated document,
-       # and perform various sanity checks
+       # decide if this is a PO file that should be converted into a
+       # translated document, and perform various sanity checks
        if (! istranslation($page) || $filtered{$page}{$destpage}) {
                return $content;
        }