ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Pod.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/Pod.pm (file contents):
Revision 1.3 by root, Sun Jul 30 13:16:44 2006 UTC vs.
Revision 1.4 by root, Sun Aug 13 02:43:22 2006 UTC

1package CFPlus::Pod; 1package CFPlus::Pod;
2 2
3use strict; 3use strict;
4 4
5use Pod::POM; 5use Storable;
6 6
7use CFPlus;
8use CFPlus::UI; 7use CFPlus::UI;
9 8
10our $VERSION = 1.02; # bump if resultant formatting changes 9our $VERSION = 1;
11 10
12our @result; 11our %wiki;
13our $indent;
14 12
15package CFPlus::Pod::AsMarkup; 13*wiki = Storable::retrieve CFPlus::find_rcfile "docwiki.pst";
16 14
17use strict; 15sub is_prefix_of($@) {
16 my ($node, @path) = @_;
18 17
19use base "Pod::POM::View::Text"; 18 return 1 unless @path;
20 19
21*view_seq_file = 20 my $kw = pop @path;
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 { CFPlus::asxml $_[1] };
27*view_seq_zero =
28*view_seq_index = sub { };
29 21
30sub view_seq_text { 22 $node = $node->{parent}
31 my $text = $_[1]; 23 or return 0;
32 $text =~ s/\s+/ /g; 24
33 CFPlus::asxml $text 25 return ! ! grep $_ eq $kw, @{ $node->{kw} };
34} 26}
35 27
36sub view_item { 28sub find(@) {
37 ("\t" x ($indent / 4)) 29 my (@path) = @_;
38 . $_[1]->title->present ($_[0]) 30
39 . "\n\n" 31 return unless @path;
40 . $_[1]->content->present ($_[0]) 32
33 my $kw = pop @path;
34
35 # TODO: make sure results are unique
36
37 grep { is_prefix_of $_, @path }
38 map @$_,
39 $kw eq "*" ? @wiki{sort keys %wiki}
40 : grep $_, $wiki{$kw}
41} 41}
42 42
43sub view_verbatim { 43sub full_path_of($) {
44 (join "", 44 my ($node) = @_;
45 map +("\t" x ($indent / 2)) . "<tt>$_</tt>\n", 45
46 split /\n/, CFPlus::asxml $_[1]) 46 my $path = $node->{kw}[0];
47 . "\n" 47 $path = "$node->{kw}[0]/$path" while $node = $node->{parent};
48 $path
48} 49}
49 50
50sub view_textblock { 51sub section_of($) {
51 ("\t" x ($indent / 2)) . "$_[1]\n" 52 my ($node) = @_;
53
54 my $doc = $node->{doc};
55 my $par = $node->{par};
56 my $lvl = $node->{level};
57
58 my @res;
59
60 do {
61 my $p = $doc->[$par];
62
63 my %para = (
64 markup => $p->{markup},
65 indent => $p->{indent},
66 );
67
68 for (@{ $p->{widget} || [] }) {
69 my ($class, @args) = @$_;
70 push @{ $para{widget} }, $class->new (@args);
71 }
72
73 push @res, \%para;
74 } while $doc->[++$par]{level} > $lvl;
75
76 @res
52} 77}
53 78
54sub view_head1 { 79sub section(@) {
55 "\n\n<span foreground='#ffff00' size='x-large'>" . $_[1]->title->present ($_[0]) . "</span>\n\n" 80 map section_of $_, &find
56 . $_[1]->content->present ($_[0])
57};
58
59sub view_head2 {
60 "\n<span foreground='#ccccff' size='large'>" . $_[1]->title->present ($_[0]) . "</span>\n\n"
61 . $_[1]->content->present ($_[0])
62};
63
64sub view_head3 {
65 "\n<span size='large'>" . $_[1]->title->present ($_[0]) . "</span>\n\n"
66 . $_[1]->content->present ($_[0])
67};
68
69sub view_over {
70 local $indent = $indent + $_[1]->indent;
71 $_[1]->content->present ($_[0])
72} 81}
73 82
74package CFPlus::Pod::AsParagraphs; 83sub as_label(@) {
75 84 join "\n",
76use strict; 85 map +("\xa0" x ($_->{indent} / 4)) . $_->{markup},
77 86 @_
78use 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
88sub view_seq_text {
89 my $text = $_[1];
90 $text =~ s/\s+/ /g;
91 CFPlus::asxml $text
92} 87}
93 88
94sub view_seq_link { 891
95 my (undef, $link) = @_;
96
97 # TODO:
98 # http://...
99 # ref
100 # pod/ref
101
102 "<u>" . (CFPlus::asxml $_[1]) . "</u>";
103}
104
105sub 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
114sub view_verbatim {
115 push @result, {
116 indent => $indent * 16,
117 markup => "<tt>" . (CFPlus::asxml $_[1]) . "</tt>\n",
118 };
119 ()
120}
121
122sub view_textblock {
123 push @result, {
124 indent => $indent * 16,
125 markup => "$_[1]\n",
126 };
127 ()
128}
129
130sub 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
139sub 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
148sub 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
157sub view_over {
158 local $indent = $indent + $_[1]->indent;
159 push @result, { indent => $indent };
160 $_[1]->content->present ($_[0]);
161 ()
162}
163
164sub view_for {
165 if ($_[1]->format eq "image") {
166 push @result, {
167 indent => $indent * 16,
168 markup => "\x{fffc}",
169 widget => [new CFPlus::UI::Image path => "pod/" . $_[1]->text],
170 };
171 }
172 ()
173}
174
175sub view {
176 my ($self, $type, $item) = @_;
177
178 $item->content->present ($self);
179}
180
181package CFPlus::Pod;
182
183my $pod_cache = CFPlus::db_table "pod_cache";
184
185sub 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
216sub section($$) {
217 my ($pod, $section) = @_;
218}
219
220sub as_markup($) {
221 my ($pom) = @_;
222
223 local $indent = 0;
224
225 $pom->present ("CFPlus::Pod::AsMarkup")
226}
227
228sub as_paragraphs($) {
229 my ($pom) = @_;
230
231 local @result = ( { } );
232 local $indent = 0;
233
234 $pom->present ("CFPlus::Pod::AsParagraphs");
235
236 [grep exists $_->{markup}, @result]
237}
238
239sub pod_paragraphs($) {
240 load CFPlus::find_rcfile "pod/$_[0].pod",
241 pod_paragraphs => 1, sub { as_paragraphs $_[0] };
242}
243

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines