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.8 by root, Sun Aug 13 19:47:05 2006 UTC vs.
Revision 1.22 by root, Sun Mar 30 11:31:09 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 $on_link = 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*wiki = Storable::retrieve CFPlus::find_rcfile "docwiki.pst"; 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
30our %wiki;
31
32sub load_docwiki {
33 *wiki = Storable::retrieve $_[0];
34}
35
36sub goto_document($) {
37 $goto_document->(split /\//, $_[0]);
38}
18 39
19sub is_prefix_of($@) { 40sub is_prefix_of($@) {
20 my ($node, @path) = @_; 41 my ($node, @path) = @_;
21 42
22 return 1 unless @path; 43 return 1 unless @path;
23 44
24 my $kw = pop @path; 45 my $kw = lc pop @path;
25 46
26 $node = $node->{parent} 47 $node = $node->[N_PARENT]
27 or return 0; 48 or return 0;
28 49
50 #TODO: maybe get rid of lowercasing?
29 return ! ! grep $_ eq $kw, @{ $node->{kw} }; 51 return scalar grep lc eq $kw, @{ $node->[N_KW] };
30} 52}
31 53
32sub find(@) { 54sub find(@) {
33 my (@path) = @_; 55 my (@path) = @_;
34 56
35 return unless @path; 57 return unless @path;
36 58
37 my $kw = pop @path; 59 my $kw = lc pop @path;
38 60
39 # TODO: make sure results are unique 61 # TODO: make sure results are unique
40 62
41 grep { is_prefix_of $_, @path } 63 grep { is_prefix_of $_, @path }
42 map @$_, 64 map @$_,
43 $kw eq "*" ? @wiki{sort keys %wiki} 65 $kw eq "*" ? @wiki{sort keys %wiki}
44 : grep $_, $wiki{$kw} 66 : $wiki{$kw} || ()
45} 67}
46 68
47sub full_path_of($) { 69sub full_path_of($) {
48 my ($node) = @_; 70 my ($node) = @_;
49 71
50 my $path = $node->{kw}[0]; 72 my @path;
51 $path = "$node->{kw}[0]/$path" while $node = $node->{parent}; 73
74 # skip toplevel hierarchy pod/, because its not a document
75 while ($node->[N_PARENT]) {
76 unshift @path, $node;
77 $node = $node->[N_PARENT];
78 }
79
52 $path 80 @path
81}
82
83sub full_path($) {
84 join "/", map $_->[N_KW][0], &full_path_of
53} 85}
54 86
55sub section_of($) { 87sub section_of($) {
56 my ($node) = @_; 88 my ($node) = @_;
57 89
58 my $doc = $node->{doc}; 90 my $doc = $node->[N_DOC];
59 my $par = $node->{par}; 91 my $par = $node->[N_PAR];
60 my $lvl = $node->{level}; 92 my $lvl = $node->[N_LEVEL];
61 93
62 my @res; 94 my @res;
63 95
64 do { 96 do {
65 my $p = $doc->[$par]; 97 my $p = $doc->[$par];
66 98
67 if (length $p->{markup}) { 99 if (length $p->[P_MARKUP]) {
68 push @res, { 100 push @res, {
69 markup => $p->{markup}, 101 markup => $p->[P_MARKUP],
70 indent => $p->{indent}, 102 indent => $p->[P_INDENT],
71 }; 103 };
72 } 104 }
73 } while $doc->[++$par]{level} > $lvl; 105 } while $doc->[++$par][P_LEVEL] > $lvl;
74 106
75 @res 107 @res
76} 108}
77 109
78sub section(@) { 110sub section(@) {
91 $_[1]{$type}($_, @arg) 123 $_[1]{$type}($_, @arg)
92 }ogex; 124 }ogex;
93 } 125 }
94} 126}
95 127
128my %as_common = (
129 h1 => sub {
130 "\n\n<span foreground='#ffff00' size='x-large'>$_[1]</span>\n"
131 },
132 h2 => sub {
133 "\n\n<span foreground='#ccccff' size='large'>$_[1]</span>\n"
134 },
135 h3 => sub {
136 "\n\n<span size='large'>$_[1]</span>\n"
137 },
138);
139
96my %as_label = ( 140my %as_label = (
141 %as_common,
97 image => sub { 142 image => sub {
98 my ($par, $path) = @_; 143 my ($par, $path) = @_;
99 144
100 "<small>img</small>" 145 "<small>img</small>"
101 }, 146 },
102 link => sub { 147 link => sub {
103 my ($par, $text, $link) = @_; 148 my ($par, $text, $link) = @_;
104 149
105 "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>" 150 "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (DC::asxml $text) . "</span>"
106 }, 151 },
107); 152);
108 153
109sub as_label(@) { 154sub as_label(@) {
110 thaw_section @_, %as_label; 155 thaw_section @_, %as_label;
119 164
120 $text 165 $text
121} 166}
122 167
123my %as_paragraphs = ( 168my %as_paragraphs = (
169 %as_common,
124 image => sub { 170 image => sub {
125 my ($par, $path) = @_; 171 my ($par, $path, $flags) = @_;
126 172
127 push @{ $par->{widget} }, new CFPlus::UI::Image path => $path; 173 push @{ $par->{widget} }, new DC::UI::Image path => $path,
174 $flags & 1 ? (max_h => $::FONTSIZE) : ();
128 175
129 "\x{fffc}" 176 "\x{fffc}"
130 }, 177 },
131 link => sub { 178 link => sub {
132 my ($par, $text, $link) = @_; 179 my ($par, $text, $link) = @_;
133 180
134 push @{ $par->{widget} }, new CFPlus::UI::Label 181 push @{ $par->{widget} }, new DC::UI::Label
135 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>", 182 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (DC::asxml $text) . "</span>",
136 size => 0.8, 183 fontsize => 0.8,
137 can_hover => 1, 184 can_hover => 1,
138 can_events => 1, 185 can_events => 1,
139 padding_x => 0, 186 padding_x => 0,
140 padding_y => 0, 187 padding_y => 0,
188 tooltip => "Go to <i>" . (DC::asxml $link) . "</i>",
141 on_button_up => sub { 189 on_button_up => sub {
142 $on_link->(split /\//, $link); 190 goto_document $link;
143 }; 191 };
144 192
145 "\x{fffc}" 193 "\x{fffc}"
146 }, 194 },
147); 195);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines