ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Pod.pm
Revision: 1.2
Committed: Mon Jul 24 08:23:28 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.1: +46 -20 lines
Log Message:
use yaml for config, many misc fixes

File Contents

# Content
1 package CFClient::Pod;
2
3 use strict;
4
5 use Pod::POM;
6
7 use CFClient;
8 use CFClient::UI;
9
10 our $VERSION = 1.02; # bump if resultant formatting changes
11
12 our @result;
13 our $indent;
14
15 package CFClient::Pod::AsMarkup;
16
17 use strict;
18
19 use base "Pod::POM::View::Text";
20
21 *view_seq_file =
22 *view_seq_code =
23 *view_seq_bold = sub { "<b>$_[1]</b>" };
24 *view_seq_italic = sub { "<i>$_[1]</i>" };
25 *view_seq_space =
26 *view_seq_link = sub { CFClient::asxml $_[1] };
27 *view_seq_zero =
28 *view_seq_index = sub { };
29
30 sub view_seq_text {
31 my $text = $_[1];
32 $text =~ s/\s+/ /g;
33 CFClient::asxml $text
34 }
35
36 sub view_item {
37 ("\t" x ($indent / 4))
38 . $_[1]->title->present ($_[0])
39 . "\n\n"
40 . $_[1]->content->present ($_[0])
41 }
42
43 sub view_verbatim {
44 (join "",
45 map +("\t" x ($indent / 2)) . "<tt>$_</tt>\n",
46 split /\n/, CFClient::asxml $_[1])
47 . "\n"
48 }
49
50 sub view_textblock {
51 ("\t" x ($indent / 2)) . "$_[1]\n"
52 }
53
54 sub view_head1 {
55 "\n\n<span foreground='#ffff00' size='x-large'>" . $_[1]->title->present ($_[0]) . "</span>\n\n"
56 . $_[1]->content->present ($_[0])
57 };
58
59 sub view_head2 {
60 "\n<span foreground='#ccccff' size='large'>" . $_[1]->title->present ($_[0]) . "</span>\n\n"
61 . $_[1]->content->present ($_[0])
62 };
63
64 sub view_head3 {
65 "\n<span size='large'>" . $_[1]->title->present ($_[0]) . "</span>\n\n"
66 . $_[1]->content->present ($_[0])
67 };
68
69 sub view_over {
70 local $indent = $indent + $_[1]->indent;
71 $_[1]->content->present ($_[0])
72 }
73
74 package CFClient::Pod::AsParagraphs;
75
76 use strict;
77
78 use base "Pod::POM::View";
79
80 *view_seq_file =
81 *view_seq_code =
82 *view_seq_bold = sub { "<b>$_[1]</b>" };
83 *view_seq_italic = sub { "<i>$_[1]</i>" };
84 *view_seq_zero = sub { };
85 *view_seq_space = sub { my $text = $_[1]; $text =~ s/ /&#160;/g; $text };
86 *view_seq_index = sub { warn "index<@_>\n"; $result[-1]{index}{$_[1]} = undef };
87
88 sub view_seq_text {
89 my $text = $_[1];
90 $text =~ s/\s+/ /g;
91 CFClient::asxml $text
92 }
93
94 sub view_seq_link {
95 my (undef, $link) = @_;
96
97 # TODO:
98 # http://...
99 # ref
100 # pod/ref
101
102 "<u>" . (CFClient::asxml $_[1]) . "</u>";
103 }
104
105 sub view_item {
106 push @result, {
107 indent => $indent * 8,
108 markup => $_[1]->title->present ($_[0]) . "\n\n",
109 };
110 $_[1]->content->present ($_[0]);
111 ()
112 }
113
114 sub view_verbatim {
115 push @result, {
116 indent => $indent * 16,
117 markup => "<tt>" . (CFClient::asxml $_[1]) . "</tt>\n",
118 };
119 ()
120 }
121
122 sub view_textblock {
123 push @result, {
124 indent => $indent * 16,
125 markup => "$_[1]\n",
126 };
127 ()
128 }
129
130 sub view_head1 {
131 push @result, {
132 indent => $indent * 16,
133 markup => "\n\n<span foreground='#ffff00' size='x-large'>" . $_[1]->title->present ($_[0]) . "</span>\n",
134 };
135 $_[1]->content->present ($_[0]);
136 ()
137 };
138
139 sub view_head2 {
140 push @result, {
141 indent => $indent * 16,
142 markup => "\n\n<span foreground='#ccccff' size='large'>" . $_[1]->title->present ($_[0]) . "</span>\n",
143 };
144 $_[1]->content->present ($_[0]);
145 ()
146 };
147
148 sub view_head3 {
149 push @result, {
150 indent => $indent * 16,
151 markup => "\n\n<span size='large'>" . $_[1]->title->present ($_[0]) . "</span>\n",
152 };
153 $_[1]->content->present ($_[0]);
154 ()
155 };
156
157 sub view_over {
158 local $indent = $indent + $_[1]->indent;
159 push @result, { indent => $indent };
160 $_[1]->content->present ($_[0]);
161 ()
162 }
163
164 sub view_for {
165 if ($_[1]->format eq "image") {
166 push @result, {
167 indent => $indent * 16,
168 markup => "\x{fffc}",
169 widget => [new CFClient::UI::Image path => "pod/" . $_[1]->text],
170 };
171 }
172 ()
173 }
174
175 sub view {
176 my ($self, $type, $item) = @_;
177
178 $item->content->present ($self);
179 }
180
181 package CFClient::Pod;
182
183 my $pod_cache = CFClient::db_table "pod_cache";
184
185 sub load($$$$) {
186 my ($path, $filtertype, $filterversion, $filtercb) = @_;
187
188 stat $path
189 or die "$path: $!";
190
191 my $phash = join ",", $filterversion, $VERSION, (stat _)[7,9];
192
193 my ($chash, $pom) = eval {
194 local $SIG{__DIE__};
195 @{ Storable::thaw $pod_cache->get ("$path/$filtertype") }
196 };
197
198 return $pom if $chash eq $phash;
199
200 my $pod = do {
201 local $/;
202 open my $pod, "<:utf8", $_[0]
203 or die "$_[0]: $!";
204 <$pod>
205 };
206
207 #utf8::downgrade $pod;
208
209 $pom = $filtercb->(Pod::POM->new->parse_text ($pod));
210
211 $pod_cache->put ("$path/$filtertype" => Storable::nfreeze [$phash, $pom]);
212
213 $pom
214 }
215
216 sub section($$) {
217 my ($pod, $section) = @_;
218 }
219
220 sub as_markup($) {
221 my ($pom) = @_;
222
223 local $indent = 0;
224
225 $pom->present ("CFClient::Pod::AsMarkup")
226 }
227
228 sub as_paragraphs($) {
229 my ($pom) = @_;
230
231 local @result = ( { } );
232 local $indent = 0;
233
234 $pom->present ("CFClient::Pod::AsParagraphs");
235
236 [grep exists $_->{markup}, @result]
237 }
238
239 sub pod_paragraphs($) {
240 load CFClient::find_rcfile "pod/$_[0].pod",
241 pod_paragraphs => 1, sub { as_paragraphs $_[0] };
242 }
243