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.4 by root, Sun Aug 13 02:43:22 2006 UTC vs.
Revision 1.9 by root, Sun Aug 13 21:46:10 2006 UTC

1package CFPlus::Pod; 1package CFPlus::Pod;
2 2
3use strict; 3use strict;
4use utf8;
4 5
5use Storable; 6use Storable;
6 7
7use CFPlus::UI;
8
9our $VERSION = 1; 8our $VERSION = 1;
10 9
10our $goto_document = sub { };
11our %wiki; 11our %wiki;
12 12
13my $MA_BEG = "\x{fcd0}";
14my $MA_SEP = "\x{fcd1}";
15my $MA_END = "\x{fcd2}";
16
13*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}
14 22
15sub is_prefix_of($@) { 23sub is_prefix_of($@) {
16 my ($node, @path) = @_; 24 my ($node, @path) = @_;
17 25
18 return 1 unless @path; 26 return 1 unless @path;
41} 49}
42 50
43sub full_path_of($) { 51sub full_path_of($) {
44 my ($node) = @_; 52 my ($node) = @_;
45 53
46 my $path = $node->{kw}[0]; 54 my @path;
47 $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
48 $path 62 @path
63}
64
65sub full_path($) {
66 join "/", map $_->{kw}[0], &full_path_of
49} 67}
50 68
51sub section_of($) { 69sub section_of($) {
52 my ($node) = @_; 70 my ($node) = @_;
53 71
58 my @res; 76 my @res;
59 77
60 do { 78 do {
61 my $p = $doc->[$par]; 79 my $p = $doc->[$par];
62 80
63 my %para = ( 81 if (length $p->{markup}) {
82 push @res, {
64 markup => $p->{markup}, 83 markup => $p->{markup},
65 indent => $p->{indent}, 84 indent => $p->{indent},
66 ); 85 };
67
68 for (@{ $p->{widget} || [] }) {
69 my ($class, @args) = @$_;
70 push @{ $para{widget} }, $class->new (@args);
71 } 86 }
72
73 push @res, \%para;
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) = @_;
140
141 push @{ $par->{widget} }, new CFPlus::UI::Image path => $path;
142
143 "\x{fffc}"
144 },
145 link => sub {
146 my ($par, $text, $link) = @_;
147
148 push @{ $par->{widget} }, new CFPlus::UI::Label
149 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (CFPlus::asxml $text) . "</span>",
150 size => 0.8,
151 can_hover => 1,
152 can_events => 1,
153 padding_x => 0,
154 padding_y => 0,
155 tooltip => "Go to <i>" . (CFPlus::asxml $link) . "</i>",
156 on_button_up => sub {
157 goto_document $link;
158 };
159
160 "\x{fffc}"
161 },
162);
163
164sub as_paragraphs(@) {
165 thaw_section @_, %as_paragraphs;
166
167 @_
168}
169
170sub section_paragraphs(@) {
171 as_paragraphs &section
172}
173
174sub section_label(@) {
175 as_label &section
87} 176}
88 177
891 1781

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines