Files
oddmuse/modules/tables-long.pl
Alex Schroeder 67650e3dc8 More UTF-8 fixes
All the source files containing non-ASCII characters needed to have
utf8 added. This will be necessary for user config files as well! The
regular expressions identifying page names had to be changed.
UrlEncode translates the string back to bytes before encoding it.
Cached RSS files are saved with UTF-8 encoding and therefore need
their meta-data changed (using the XML::RSS module to do this
correctly didn't work for some of the test files). The CGI object's
parameters, keywords and info_path are decoded correctly. File access
uses the UTF-8 layer (reading, writing, appending, access to the log
of recent changes, running sub processes with grep and diff).

The mac compatibility extension will also disable the use of grep if
non-ASCII characters are searched for because of an unexplained
problem with grep.
2012-05-24 18:08:42 +02:00

141 lines
5.0 KiB
Perl

# Copyright (C) 2004, 2005 Alex Schroeder <alex@emacswiki.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.
# 59 Temple Place, Suite 330
# Boston, MA 02111-1307 USA
$ModulesDescription .= '<p><a href="http://git.savannah.gnu.org/cgit/oddmuse.git/tree/modules/tables-long.pl">tables-long.pl</a>, see <a href="http://www.oddmuse.org/cgi-bin/oddmuse/Long_Table_Markup_Extension">Long Table Markup Extension</a></p>';
push(@MyRules, \&TablesLongRule);
my $TablesLongLabels = '';
sub TablesLongRule {
# start table by declaring the abbreviations used:
# <table foo,bar,baz>
# end with a horizontal line:
# ----
# use label: or label= to start a cell
# label: bla
# bla bla bla
# a new row is started when a cell is repeated
# if cells are missing, column spans are created (the first row
# could use row spans...)
if ($bol && m|\G\s*\n*\&lt;table(/[A-Za-z\x{0080}-\x{ffff}/]+)? +([A-Za-z\x{0080}-\x{ffff},;\/ ]+)\&gt; *\n|cg) {
my $class = join(' ', split(m|/|, $1)); # leading / in $1 will make sure we have leading space
Clean(CloseHtmlEnvironments() . "<table class=\"user long$class\">");
# labels and their default class
my %default_class = ();
my @labels = map { my ($label, @classes) = split m|/|;
$default_class{$label} = join(' ', @classes);
$label;
} split(/ *[,;] */, $2);
my $regexp = join('|', @labels);
# read complete table
my @lines = ();
while (m/\G(.*)\n?/cg) { # last line may miss newline
my $line = $1;
last if substr($line,0,4) eq ('----'); # the rest of this line is ignored!
push(@lines, $line);
}
# parse lines and print table rows
my $lastpos = pos;
my @rows = ();
my %row = ();
my %class = %default_class;
my %rowspan = ();
my $label = '';
my $rowspan = '';
my $first = 1;
for my $line (@lines) {
if ($line =~ m|^($regexp)/?([0-9]+)?/?([A-Za-z\x{0080}-\x{ffff}/]+)?[:=] *(.*)|) { # regexp changes for other tables
$label = $1;
$rowspan = $2;
$class = join(' ', split(m|/|, $3)); # no leading / therefore no leading space
$line = $4;
if ($row{$label}) { # repetition of label, we must start a new row
TablesLongRow(\@labels, \%row, \%class, \%rowspan, $first);
$first = 0;
%row = ();
%class = %default_class;
foreach my $key (keys %rowspan) {
delete $rowspan{$key} if $rowspan{$key} == 1;
$rowspan{$key}--; # 0 will turn into negative numbers
}
}
$class{$label} = $class if $class;
$rowspan{$label} = $rowspan if $rowspan;
}
$row{$label} .= $line . "\n";
}
TablesLongRow(\@labels, \%row, \%class, \%rowspan, $first); # don't forget the last row
Clean('</table>' . AddHtmlEnvironment('p'));
pos = $lastpos;
return '';
}
return undef;
}
sub TablesLongRow {
my @labels = @{$_[0]};
my %row = %{$_[1]};
my %class = %{$_[2]};
my %rowspan = %{$_[3]};
my $first = $_[4];
Clean('<tr>');
# first print the old row
for my $i (0 .. $#labels) {
next if not $row{$labels[$i]}; # should only happen after previous cellspans
my $colspan = 1;
while ($i + $colspan < $#labels + 1
and not $row{$labels[$i+$colspan]}
and not $rowspan{$labels[$i+$colspan]}) {
$colspan++;
}
my $rowspan = $rowspan{$labels[$i]};
my $class = $class{$labels[$i]};
my $html = '<';
$html .= $first ? 'th' : 'td';
$html .= " colspan=\"$colspan\"" if $colspan != 1;
$html .= " rowspan=\"$rowspan\"" if defined $rowspan and $rowspan >= 0; # ignore negatives
$html .= " class=\"$class\"" if $class;
$html .= '>';
Clean($html);
# WATCH OUT: here comes the evil magic messing with the internals!
# first, clean everything up like at the end of ApplyRules
if ($Fragment ne '') {
$Fragment =~ s|<p></p>||g; # clean up extra paragraphs (see end Dirty())
print $Fragment;
push(@Blocks, $Fragment);
push(@Flags, 0);
$Fragment = '';
}
# call ApplyRules, and *inline* the results; ignoring $PortraitSupportColorDiv
local $PortraitSupportColorDiv;
my ($blocks, $flags) = ApplyRules($row{$labels[$i]}, 1, 1); # local links, anchors
push(@Blocks, split(/$FS/, $blocks));
push(@Flags, split(/$FS/, $flags));
# end of evil magic
# Alternatively, just use
# Clean($row{$labels[$i]});
# or mark this block as dirty.
Clean(CloseHtmlEnvironments() . '</' . ($first ? 'th' : 'td') . '>');
}
Clean('</tr>');
}