ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/cf/pod.pm
(Generate patch)

Comparing deliantra/server/lib/cf/pod.pm (file contents):
Revision 1.9 by root, Tue Jul 3 06:07:07 2007 UTC vs.
Revision 1.28 by root, Tue Nov 13 01:12:23 2012 UTC

1#
2# This file is part of Deliantra, the Roguelike Realtime MMORPG.
3#
4# Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5#
6# Deliantra is free software: you can redistribute it and/or modify it under
7# the terms of the Affero GNU General Public License as published by the
8# Free Software Foundation, either version 3 of the License, or (at your
9# option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the Affero GNU General Public License
17# and the GNU General Public License along with this program. If not, see
18# <http://www.gnu.org/licenses/>.
19#
20# The authors can be reached via e-mail to <support@deliantra.net>
21#
22
1package cf::pod; 23package cf::pod;
24
25use common::sense;
2 26
3use Pod::POM; 27use Pod::POM;
4 28
5our $indent; 29our $indent;
6our $level; 30our $level;
7our @result; 31our @result;
8 32
9package cf::pod::AsParagraphs; 33package cf::pod::AsParagraphs;
10 34
11use strict; 35use common::sense;
12 36
13use base "Pod::POM::View"; 37use base "Pod::POM::View";
14 38
39my %E = (
40 "<" => "E<lt>",
41 ">" => "E<gt>",
42);
43
15sub asxml($) { 44sub aspod($) {
16 local $_ = $_[0]; 45 local $_ = $_[0];
17 46
18 s/&/&amp;/g; 47 s/[<>]/$E{$1}/g;
19 s/>/&gt;/g;
20 s/</&lt;/g;
21 48
22 $_ 49 $_
23} 50}
24 51
25sub flatten($) { 52sub flatten($) {
26 local $_ = $_[0]; 53 local $_ = $_[0];
27 54
28 s/<[^>]+>//g;
29 s/^\s+//; 55 s/^\s+//;
30 s/\s+$//; 56 s/\s+$//;
31 s/\s+/ /g; 57 s/\s+/ /g;
32 58
33 $_ 59 $_
34} 60}
35 61
36*view_seq_file = 62*view_seq_file = sub { "C<$_[1]>" };
37*view_seq_code = 63*view_seq_code = sub { "C<$_[1]>" };
38*view_seq_bold = sub { "<b>$_[1]</b>" }; 64*view_seq_bold = sub { "B<$_[1]>" };
39*view_seq_italic = sub { "<i>$_[1]</i>" }; 65*view_seq_italic = sub { "I<$_[1]>" };
66*view_seq_T = sub { "T<$_[1]>" };
67*view_seq_G = sub { "G<$_[1]>" };
40*view_seq_zero = sub { }; 68*view_seq_zero = sub { "Z<>" };
41*view_seq_space = sub { my $text = $_[1]; $text =~ s/ /\xa0/g; $text }; 69*view_seq_space = sub { my $text = $_[1]; $text =~ s/ /\xa0/g; $text };
42*view_seq_index = sub { push @{ $result[-1]{index} }, $_[1]; "" }; 70*view_seq_index = sub { push @{ $result[-1]{index} }, $_[1]; "" };
43 71
44sub view_seq_text { 72sub view_seq_text {
45 my $text = $_[1]; 73 my $text = $_[1];
46 $text =~ s/\s+/ /g; 74 $text =~ s/\s+/ /g;
47 asxml $text 75 aspod $text
48} 76}
49 77
50sub view_seq_link { 78sub view_seq_link {
51 my (undef, $link) = @_; 79 my (undef, $link) = @_;
52 80
53 my $text = $link =~ s/^(.*)\|// ? $1 : $link; 81 my $text = $link =~ s/^(.*)\|// ? $1 : $link;
54 82
55 if ($link =~ /http:/) { 83 if ($link =~ /http:/) {
56 "<u>" . (asxml $link) . "</u>" 84 "U<" . (aspod $link) . ">"
57 } else { 85 } else {
58 () 86 ()
59 } 87 }
60} 88}
61 89
76sub view_verbatim { 104sub view_verbatim {
77 push @result, { 105 push @result, {
78 type => "verbatim", 106 type => "verbatim",
79 indent => $indent * 16, 107 indent => $indent * 16,
80 level => $level, 108 level => $level,
81 markup => asxml $_[1], 109 markup => $_[1],
82 }; 110 };
83 () 111 ()
84} 112}
85 113
86sub view_textblock { 114sub view_textblock {
164 192
165############################################################################# 193#############################################################################
166 194
167package cf::pod; 195package cf::pod;
168 196
169sub pom_as_paragraphs($) { 197sub pom_as_paragraphs_ng($) {
170 my ($pom) = @_; 198 my ($pom) = @_;
171
172 # we suckers use global variables, unfortunately.
173 my $guard = cf::lock_acquire "cf::pod::as_paragraphs";
174 199
175 local $indent = 0; 200 local $indent = 0;
176 local $level = 1; 201 local $level = 1;
177 local @result = ( { } ); 202 local @result = ( { } );
178 203
179 $pom->present ("cf::pod::AsParagraphs"); 204 $pom->present ("cf::pod::AsParagraphs");
180 205
181 [grep $_->{index} || exists $_->{markup}, @result] 206 [grep $_->{index} || exists $_->{markup}, @result]
182} 207}
183 208
209sub pom_as_paragraphs($) {
210 my ($pom) = @_;
211
212 # we suckers use global variables, unfortunately.
213 my $guard = cf::lock_acquire "cf::pod::as_paragraphs";
214
215 $pom->pom_as_paragraphs_ng
216}
217
184sub load_pod($) { 218sub load_pod($) {
185 my ($path) = @_; 219 my ($path) = @_;
186 220
187 Coro::Storable::thaw cf::cache "cf::pod::as_paragraphs/$path" => [$path], 221 Coro::Storable::thaw cf::cache "cf::pod::as_paragraphs/$path" => [$path],
188 2 => sub { 222 8 => sub {
189 my ($src) = @_; 223 my ($src) = @_;
224
190 cf::fork_call { 225 cf::fork_call {
191 my $pod = $src->[0]; 226 Coro::Storable::blocking_nfreeze
192 utf8::decode $pod; 227 pom_as_paragraphs_ng
193 Coro::Storable::freeze pom_as_paragraphs +(Pod::POM->new->parse_text ($pod)) 228 +(Pod::POM->new->parse_text ($src->[0]))
194 } 229 }
195 }; 230 };
196} 231}
197 232
198# format as cfpod-style text 233# format as cfpod-style text
199sub as_text($) { 234sub as_cfpod($) {
200 my ($pars) = @_; 235 my ($pars) = @_;
201 236
202 my $res; 237 my $res;
203 238
204 for my $par (@$pars) { 239 for my $par (@$pars) {
205 if ($par->{type} =~ /^head\d+$/) { 240 if ($par->{type} =~ /^head\d+$/) {
206 $res .= "B<$par->{markup}>\n\n"; 241 $res .= "B<$par->{markup}>\n\n";
207 } elsif ($par->{type} eq "verbatim") { 242 } elsif ($par->{type} eq "verbatim") {
208 $res .= "\n$par->{markup}\n\n"; 243 $res .= "$par->{markup}\n\n";
209 } elsif ($par->{type} eq "item") { 244 } elsif ($par->{type} eq "item") {
210 $res .= "\n* I<$par->{markup}>\n\n"; 245 $res .= "* I<$par->{markup}>\n\n";
211 } else { 246 } else {
212 $res .= "$par->{markup}\n\n"; 247 $res .= "$par->{markup}\n\n";
213 } 248 }
214 } 249 }
215 250

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines