/usr/share/perl5/Locale/Po4a/Wml.pm is in po4a 0.47-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | #!/usr/bin/perl -w
# Po4a::Wml.pm
#
# extract and translate translatable strings from a WML (web markup language) documents
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
########################################################################
=encoding UTF-8
=head1 NAME
Locale::Po4a::Wml - convert WML (web markup language) documents from/to PO files
=head1 DESCRIPTION
The po4a (PO for anything) project goal is to ease translations (and more
interestingly, the maintenance of translations) using gettext tools on
areas where they were not expected like documentation.
Locale::Po4a::Wml is a module to help the translation of WML documents into
other [human] languages. Do not mixup the WML we are speaking about here
(web markup language) and the WAP crap used on cell phones.
Please note that this module relies upon the Locale::Po4a::Xhtml
module, which also relies upon the Locale::Po4a::Xml module. This
means that all tags for web page expressions are assumed to be written
in the XHTML syntax.
=head1 OPTIONS ACCEPTED BY THIS MODULE
NONE.
=head1 STATUS OF THIS MODULE
This module works for some simple documents, but is still young.
Currently, the biggest issue of the module is probably that it cannot
handle documents that contain non-XML inline tags such as <email
"foo@example.org">, which are often defined in the WML. Improvements
will be added in the future releases.
=cut
package Locale::Po4a::Wml;
use 5.006;
use strict;
use warnings;
require Exporter;
use vars qw(@ISA @EXPORT);
@ISA = qw(Locale::Po4a::Xhtml);
@EXPORT = qw();
use Locale::Po4a::Xhtml;
use File::Temp;
sub initialize {
my $self = shift;
my %options = @_;
$self->SUPER::initialize(%options);
$self->treat_options;
}
sub read {
my ($self,$filename)=@_;
my $tmp_filename;
(undef,$tmp_filename)=File::Temp::tempfile("po4aXXXX",
DIR => $ENV{TMPDIR} || "/tmp",
SUFFIX => ".xml",
OPEN => 0,
UNLINK => 0)
or die wrap_msg(gettext("Can't create a temporary XML file: %s"), $!);
my $file;
open FILEIN,"$filename" or die "Cannot read $filename: $!\n";
{
$/ = undef;
$file=<FILEIN>;
}
$/ = "\n";
# Mask perl cruft out of XML sight
while ( ($file =~ m|^(.*?)<perl>(.*?)</perl>(.*?)$|ms)
or ($file =~ m|^(.*?)<:(.*?):>(.*)$|ms)) {
my ($pre,$in,$post) = ($1,$2,$3);
$in =~ s/</PO4ALT/g;
$in =~ s/>/PO4AGT/g;
$file = "${pre}<!--PO4ABEGINPERL${in}PO4AENDPERL-->$post";
}
# Mask mp4h cruft
while ($file =~ s|^#(.*)$|<!--PO4ASHARPBEGIN$1PO4ASHARPEND-->|m) {
my $line = $1;
print STDERR "PROTECT HEADER: $line\n"
if $self->debug();
if ($line =~ m/title="([^"]*)"/) { #) {#"){
warn "FIXME: We should translate the page title: $1\n";
}
}
# Validate define-tag tag's argument
$file =~ s|(<define-tag\s+)([^\s>]+)|$1PO4ADUMMYATTR="$2"|g;
# Flush the result to disk
open OUTFILE,">$tmp_filename";
print OUTFILE $file;
close INFILE;
close OUTFILE or die "Cannot write $tmp_filename: $!\n";
push @{$self->{DOCXML}{infile}}, $tmp_filename;
$self->{DOCWML}{$tmp_filename} = $filename;
$self->Locale::Po4a::TransTractor::read($tmp_filename);
unlink "$tmp_filename";
}
sub parse {
my $self = shift;
foreach my $filename (@{$self->{DOCXML}{infile}}) {
$self->Locale::Po4a::Xml::parse_file($filename);
my $org_filename = $self->{DOCWML}{$filename};
# Fix the references
foreach my $msgid (keys %{$self->{TT}{po_out}{po}}) {
$self->{TT}{po_out}{po}{$msgid}{'reference'} =~
s|$filename(:\d+)|$org_filename$1|o;
}
# Get the document back (undoing our WML masking)
# FIXME: need to join the file first, and then split?
my @doc_out;
foreach my $line (@{$self->{TT}{doc_out}}) {
$line =~ s/^<!--PO4ASHARPBEGIN(.*?)PO4ASHARPEND-->/#$1/mg;
$line =~ s/<!--PO4ABEGINPERL(.*?)PO4AENDPERL-->/<:$1:>/sg;
$line =~ s/(<define-tag\s+)PO4ADUMMYATTR="([^"]*)"/$1$2/g;
$line =~ s/PO4ALT/</sg;
$line =~ s/PO4AGT/>/sg;
push @doc_out, $line;
}
$self->{TT}{doc_out} = \@doc_out;
}
}
1;
=head1 AUTHORS
Martin Quinson (mquinson#debian.org)
Noriada Kobayashi <nori1@dolphin.c.u-tokyo.ac.jp>
=head1 COPYRIGHT AND LICENSE
Copyright 2005 by SPI, inc.
This program is free software; you may redistribute it and/or modify it
under the terms of GPL (see the COPYING file).
|