/usr/share/perl5/wApua/Helpers.pm is in wapua 0.06.1-3.
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 173 174 175 176 177 178 179 180 181 | package wApua::Helpers;
# Copyright (C) 2000, 2006, 2009 by Axel Beckert <wapua@deuxchevaux.org>
#
# 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., 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA.
#
# You can reach the author by snail-mail at the following address:
#
# Axel Beckert
# Kuerbergstrasse 20
# 8049 Zurich, Switzerland
#use strict;
# In here are some helpers, needed by wApua (and some of its modules),
# a WAP User Agent, mainly developed for debugging WML pages...
use Exporter ();
@ISA = qw(Exporter);
@EXPORT = qw(&transformEntities &parsecdata &parseentities &parsespaces &telURL
&internalURL &noglobalbind &findINC &preparser &syntaxwarn
&syntaxignore &showSource);
use Data::Dumper;
# Idea from Tk::findINC
sub findINC {
my $file = shift;
if ($file =~ m(^/)) {
return $file if (-e $file);
return undef;
}
foreach my $dir (@INC)
{
return "$dir/$file" if (-e "$dir/$file");
}
return undef;
}
sub noglobalbind { # Keine globalen Key-Bindings für Eingabefelder
my $f = shift;
$f->bindtags([$f,ref($f)]);
$f->bind('<Tab>','focusNext');
$f->bind('<<LeftTab>>','focusPrev');
$f->bind('<Shift-Tab>','focusPrev');
}
# Is it an internal URL?
sub internalURL {
return (shift =~ /^(wapua|about):/i);
}
# Is it an telephone URL?
sub telURL {
return (shift =~ /^(wtai|tel|fax|modem):/i);
}
sub parsespaces {
my $seite = shift;
$seite =~ s/\s+/ /gs;
$seite =~ s/
//gs;
$seite =~ s=\s*(</?(card|p|br|wml|t[dr]|table|head|template|access|meta)(\s[^<>]*)?/?>)((<[^<>]+>)*)\s*=$1$4=gi;
return $seite;
}
sub parseentities {
my $seite = shift;
$seite =~ s/&\#(34|x22);/\"/gi;
$seite =~ s/&\#(38|x26);/\&/gi;
$seite =~ s/&\#(39|x27);/\'/gi;
$seite =~ s/&\#(60|x40);/\</gi;
$seite =~ s/&\#(62|x42);/\>/gi;
$seite =~ s/&\#(160|xA0);/\ /gi;
$seite =~ s/&\#(173|xAD);/\­/gi;
$seite =~ s/&\#(\d+);/pack("C", $1)/eg;
$seite =~ s/&\#x([a-fA-F0-9]+);/pack("C", hex($1))/eg;
return $seite;
}
sub parsecdata {
my $seite = shift;
$seite =~ s/&(.*?);/&!$1;/g;
$seite =~ s/&/&/g;
$seite =~ s/</</g;
$seite =~ s/>/>/g;
$seite =~ s/\"/"/g;
$seite =~ s/\'/'/g;
$seite =~ s/\\\]\\\]/\]\]/g;
return $seite;
}
sub transformEntities {
my $seite = shift;
$seite =~ s/"/\"/g;
$seite =~ s/&/\&/g;
$seite =~ s/'/\'/g;
$seite =~ s/</</g;
$seite =~ s/>/>/g;
$seite =~ s/ / /g;
$seite =~ s/­/-/g;
$seite =~ s/&!(.*?);/&$1;/g;
return $seite;
}
sub preparser {
my $seite = shift;
# Delete redundant white spaces
my $newseite = "";
while ($seite =~ m=<pre(\s[^<>]+)?>(.*)</pre>|<!CDATA\s+\[\[(.*?)\]\]>=s) {
my $before = $`;
my $between;
if (defined $3) {
$between = $3;
}
my $match = $&;
$seite = "$'";
if ($& =~ /^<pre/) {
$newseite .=
&parsespaces(&parseentities($before)).
&parseentities($match);
} else {
$newseite .= (&parsespaces(&parseentities($before)) .
"<pre>" .
&parsecdata($between) .
"</pre>");
}
}
$newseite .= &parsespaces(&parseentities($seite));
return $newseite;
}
sub syntaxwarn {
my $expected = shift;
my $found = shift;
warn <<EOF;
WML Syntax error: Mismatched closing tag!
+ Expected closing tag: </$expected>
+ Found closing tag: </$found>
EOF
}
sub syntaxignore {
my $tag = shift;
if (0 < scalar @_) {
$tag = shift;
warn "Ignored unknown tag: <$tag>";
my %hash = %{shift()};
foreach (keys %hash) {
#warn " $_: $hash{$_}";
}
} else {
warn "Ignored unknown tag: <$tag>";
}
}
sub showSource {
print shift;
}
1;
|