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.5 by root, Sun Aug 13 03:20:56 2006 UTC vs.
Revision 1.13 by root, Mon Aug 14 19:17:09 2006 UTC

1package CFPlus::Pod; 1package CFPlus::Pod;
2 2
3use strict; 3use strict;
4use utf8;
4 5
5use Storable; 6use Storable;
6 7
7our $VERSION = 1; 8our $VERSION = 1;
8 9
10our $goto_document = sub { };
9our %wiki; 11our %wiki;
10 12
13my $MA_BEG = "\x{fcd0}";
14my $MA_SEP = "\x{fcd1}";
15my $MA_END = "\x{fcd2}";
16
11*wiki = Storable::retrieve CFPlus::find_rcfile "docwiki.pst"; 17*wiki = Storable::retrieve CFPlus::find_rcfile "docwiki.pst";
18
19sub goto_document($) {
20 $goto_document->(split /\//, $_[0]);
21}
12 22
13sub is_prefix_of($@) { 23sub is_prefix_of($@) {
14 my ($node, @path) = @_; 24 my ($node, @path) = @_;
15 25
16 return 1 unless @path; 26 return 1 unless @path;
17 27
18 my $kw = pop @path; 28 my $kw = lc pop @path;
19 29
20 $node = $node->{parent} 30 $node = $node->{parent}
21 or return 0; 31 or return 0;
22 32
23 return ! ! grep $_ eq $kw, @{ $node->{kw} }; 33 return ! ! grep $_ eq $kw, @{ $node->{kw} };
26sub find(@) { 36sub find(@) {
27 my (@path) = @_; 37 my (@path) = @_;
28 38
29 return unless @path; 39 return unless @path;
30 40
31 my $kw = pop @path; 41 my $kw = lc pop @path;
32 42
33 # TODO: make sure results are unique 43 # TODO: make sure results are unique
34 44
35 grep { is_prefix_of $_, @path } 45 grep { is_prefix_of $_, @path }
36 map @$_, 46 map @$_,
39} 49}
40 50
41sub full_path_of($) { 51sub full_path_of($) {
42 my ($node) = @_; 52 my ($node) = @_;
43 53
44 my $path = $node->{kw}[0]; 54 my @path;
45 $path = "$node->{kw}[0]/$path" while $node = $node->{parent}; 55
56 # skip toplevel hierarchy pod/, because its not a document
57 while ($node->{parent}) {
58 unshift @path, $node;
59 $node = $node->{parent};
60 }
61
46 $path 62 @path
63}
64
65sub full_path($) {
66 join "/", map $_->{kw}[0], &full_path_of
47} 67}
48 68
49sub section_of($) { 69sub section_of($) {
50 my ($node) = @_; 70 my ($node) = @_;
51 71
56 my @res; 76 my @res;
57 77
58 do { 78 do {
59 my $p = $doc->[$par]; 79 my $p = $doc->[$par];
60 80
61 if (exists $p->{markup}) { 81 if (length $p->{markup}) {
62 my %para = ( 82 push @res, {
63 markup => $p->{markup}, 83 markup => $p->{markup},
64 indent => $p->{indent}, 84 indent => $p->{indent},
65 );
66
67 for (@{ $p->{widget} || [] }) {
68 my ($class, @args) = @$_;
69 push @{ $para{widget} }, $class->new (@args);
70 } 85 };
71
72 push @res, \%para;
73 } 86 }
74 } while $doc->[++$par]{level} > $lvl; 87 } while $doc->[++$par]{level} > $lvl;
75 88
76 @res 89 @res
77} 90}
78 91
79sub section(@) { 92sub section(@) {
80 map section_of $_, &find 93 map section_of $_, &find
81} 94}
82 95
96sub thaw_section(\@\%) {
97 for (@{$_[0]}) {
98 $_->{markup} =~ s{
99 $MA_BEG
100 ([^$MA_END]+)
101 $MA_END
102 }{
103 my ($type, @arg) = split /$MA_SEP/o, $1;
104
105 $_[1]{$type}($_, @arg)
106 }ogex;
107 }
108}
109
110my %as_label = (
111 image => sub {
112 my ($par, $path) = @_;
113
114 "<small>img</small>"
115 },
116 link => sub {
117 my ($par, $text, $link) = @_;
118
119 "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>"
120 },
121);
122
83sub as_label(@) { 123sub as_label(@) {
124 thaw_section @_, %as_label;
125
126 my $text =
84 join "\n", 127 join "\n",
85 map +("\xa0" x ($_->{indent} / 4)) . $_->{markup}, 128 map +("\xa0" x ($_->{indent} / 4)) . $_->{markup},
86 @_ 129 @_;
130
131 $text =~ s/^\s+//;
132 $text =~ s/\s+$//;
133
134 $text
135}
136
137my %as_paragraphs = (
138 image => sub {
139 my ($par, $path, $flags) = @_;
140
141 push @{ $par->{widget} }, new CFPlus::UI::Image path => $path,
142 $flags & 1 ? (max_h => $::FONTSIZE) : ();
143
144 "\x{fffc}"
145 },
146 link => sub {
147 my ($par, $text, $link) = @_;
148
149 push @{ $par->{widget} }, new CFPlus::UI::Label
150 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>",
151 fontsize => 0.8,
152 can_hover => 1,
153 can_events => 1,
154 padding_x => 0,
155 padding_y => 0,
156 tooltip => "Go to <i>" . (CFPlus::asxml $link) . "</i>",
157 on_button_up => sub {
158 goto_document $link;
159 };
160
161 "\x{fffc}"
162 },
163);
164
165sub as_paragraphs(@) {
166 thaw_section @_, %as_paragraphs;
167
168 @_
169}
170
171sub section_paragraphs(@) {
172 as_paragraphs &section
173}
174
175sub section_label(@) {
176 as_label &section
87} 177}
88 178
891 1791

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines