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.13 by root, Mon Aug 14 19:17:09 2006 UTC vs.
Revision 1.18 by root, Tue Mar 25 01:46:36 2008 UTC

1package CFPlus::Pod; 1package DC::Pod;
2 2
3use strict; 3use strict;
4use utf8; 4use utf8;
5 5
6use Storable; 6use Storable;
7 7
8our $VERSION = 1; 8our $VERSION = 1.03;
9 9
10our $goto_document = sub { }; 10our $goto_document = sub { };
11our %wiki; 11our %wiki;
12 12
13my $MA_BEG = "\x{fcd0}"; 13my $MA_BEG = "\x{fcd0}";
14my $MA_SEP = "\x{fcd1}"; 14my $MA_SEP = "\x{fcd1}";
15my $MA_END = "\x{fcd2}"; 15my $MA_END = "\x{fcd2}";
16 16
17# nodes (order must stay as it is)
18sub N_PARENT (){ 0 }
19sub N_PAR (){ 1 }
20sub N_LEVEL (){ 2 }
21sub N_KW (){ 3 }
22sub N_DOC (){ 4 }
23
24# paragraphs (order must stay as it is)
25sub P_INDENT (){ 0 }
26sub P_LEVEL (){ 1 }
27sub P_MARKUP (){ 2 }
28sub P_INDEX (){ 3 }
29
17*wiki = Storable::retrieve CFPlus::find_rcfile "docwiki.pst"; 30*wiki = Storable::retrieve DC::find_rcfile "docwiki.pst";
18 31
19sub goto_document($) { 32sub goto_document($) {
20 $goto_document->(split /\//, $_[0]); 33 $goto_document->(split /\//, $_[0]);
21} 34}
22 35
28 my $kw = lc pop @path; 41 my $kw = lc pop @path;
29 42
30 $node = $node->{parent} 43 $node = $node->{parent}
31 or return 0; 44 or return 0;
32 45
33 return ! ! grep $_ eq $kw, @{ $node->{kw} }; 46 return scalar grep $_ eq $kw, @{ $node->{kw} };
34} 47}
35 48
36sub find(@) { 49sub find(@) {
37 my (@path) = @_; 50 my (@path) = @_;
38 51
43 # TODO: make sure results are unique 56 # TODO: make sure results are unique
44 57
45 grep { is_prefix_of $_, @path } 58 grep { is_prefix_of $_, @path }
46 map @$_, 59 map @$_,
47 $kw eq "*" ? @wiki{sort keys %wiki} 60 $kw eq "*" ? @wiki{sort keys %wiki}
48 : grep $_, $wiki{$kw} 61 : $wiki{$kw} || ()
49} 62}
50 63
51sub full_path_of($) { 64sub full_path_of($) {
52 my ($node) = @_; 65 my ($node) = @_;
53 66
76 my @res; 89 my @res;
77 90
78 do { 91 do {
79 my $p = $doc->[$par]; 92 my $p = $doc->[$par];
80 93
81 if (length $p->{markup}) { 94 if (length $p->[P_MARKUP]) {
82 push @res, { 95 push @res, {
83 markup => $p->{markup}, 96 markup => $p->[P_MARKUP],
84 indent => $p->{indent}, 97 indent => $p->[P_INDENT],
85 }; 98 };
86 } 99 }
87 } while $doc->[++$par]{level} > $lvl; 100 } while $doc->[++$par][P_LEVEL] > $lvl;
88 101
89 @res 102 @res
90} 103}
91 104
92sub section(@) { 105sub section(@) {
114 "<small>img</small>" 127 "<small>img</small>"
115 }, 128 },
116 link => sub { 129 link => sub {
117 my ($par, $text, $link) = @_; 130 my ($par, $text, $link) = @_;
118 131
119 "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>" 132 "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (DC::asxml $text) . "</span>"
120 }, 133 },
121); 134);
122 135
123sub as_label(@) { 136sub as_label(@) {
124 thaw_section @_, %as_label; 137 thaw_section @_, %as_label;
136 149
137my %as_paragraphs = ( 150my %as_paragraphs = (
138 image => sub { 151 image => sub {
139 my ($par, $path, $flags) = @_; 152 my ($par, $path, $flags) = @_;
140 153
141 push @{ $par->{widget} }, new CFPlus::UI::Image path => $path, 154 push @{ $par->{widget} }, new DC::UI::Image path => $path,
142 $flags & 1 ? (max_h => $::FONTSIZE) : (); 155 $flags & 1 ? (max_h => $::FONTSIZE) : ();
143 156
144 "\x{fffc}" 157 "\x{fffc}"
145 }, 158 },
146 link => sub { 159 link => sub {
147 my ($par, $text, $link) = @_; 160 my ($par, $text, $link) = @_;
148 161
149 push @{ $par->{widget} }, new CFPlus::UI::Label 162 push @{ $par->{widget} }, new DC::UI::Label
150 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>", 163 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (DC::asxml $text) . "</span>",
151 fontsize => 0.8, 164 fontsize => 0.8,
152 can_hover => 1, 165 can_hover => 1,
153 can_events => 1, 166 can_events => 1,
154 padding_x => 0, 167 padding_x => 0,
155 padding_y => 0, 168 padding_y => 0,
156 tooltip => "Go to <i>" . (CFPlus::asxml $link) . "</i>", 169 tooltip => "Go to <i>" . (DC::asxml $link) . "</i>",
157 on_button_up => sub { 170 on_button_up => sub {
158 goto_document $link; 171 goto_document $link;
159 }; 172 };
160 173
161 "\x{fffc}" 174 "\x{fffc}"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines