forked from processing/processing-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.php
More file actions
executable file
·289 lines (230 loc) · 9.52 KB
/
template.php
File metadata and controls
executable file
·289 lines (230 loc) · 9.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php
require(TEMPLATEDIR.'template.nav.php');
define('HEADER', '<div class="processing-logo" alt="Processing cover"></div>');
define('REL_HEADER', '<a href="/" title="Back to the Processing cover."><div class="processing-logo no-cover" alt="Processing cover"></div></a>');
define('HEADER_LINK', '<a href="/" title="Back to the Processing cover."><div class="processing-logo no-cover" alt="Processing cover"></div></a>');
class Page
{
var $xhtml;
var $lang;
var $subtemplate = false;
var $section;
function Page($title = '', $section = '', $bodyid = '', $rel_path = '/')
{
$this->xhtml = new xhtml_page(TEMPLATEDIR.'template.html');
$this->set('relpath', $rel_path);
if (strcmp($rel_path, '/')) {
$this->xhtml->set('header', REL_HEADER);
} else {
$this->xhtml->set('header', $section == 'Cover' ? HEADER : HEADER_LINK);
}
$this->section = $section;
$this->xhtml->set('bodyid', ($bodyid == '') ? $section : $bodyid);
$title = ($title == '') ? 'Processing.org' : $title . ' \ Processing.org';
$this->xhtml->set('title', $title);
$this->xhtml->set('navigation', navigation($section));
}
function set($key, $value)
{
$this->xhtml->set($key, $value);
}
function set_array($array)
{
foreach ($array as $key => $value) {
$this->xhtml->set($key, $value);
}
}
function subtemplate($file)
{
$piece = new xhtml_piece(TEMPLATEDIR.$file);
$this->xhtml->set('content_for_layout', $piece->out());
$this->subtemplate = true;
}
function content($content)
{
if (!$this->subtemplate) {
$this->xhtml->set('content_for_layout', $content);
} else {
$this->xhtml->set('content', $content);
}
}
function language($lang)
{
global $LANGUAGES;
$this->lang = $lang;
$this->xhtml->set('charset', $LANGUAGES[$lang][1]);
$this->xhtml->set('lang', $lang);
if ($lang != 'en') {
#$this->xhtml->set('navigation', navigation_tr($this->section));
$this->xhtml->set('navigation', navigation($this->section));
}
}
function out()
{
if (!$this->lang) { $this->language('en'); }
return $this->xhtml->out();
}
function set_rel_path($path = '')
{
$this->xhtml->set('relpath', $path);
}
}
class ReferencePage
{
var $xhtml;
var $lang;
var $filepath;
function ReferencePage(&$ref, $translation, $lang = 'en')
{
global $LANGUAGES;
$this->filepath = 'reference/' . ($lang == 'en' ? '' : "$lang/") . $ref->name();
$title = $ref->title() . ($lang == 'en' ? '' : " \ {$LANGUAGES[$lang][0]}") .' \ Language (API) \ Processing 3+';
$xhtml = new xhtml_page(TEMPLATEDIR.'template.translation.html');
$xhtml->set('header', HEADER_LINK);
$xhtml->set('title', $title);
$xhtml->set('bodyid', 'Langauge-'.$lang);
$xhtml->set('navigation', ($lang == 'en') ? navigation('Language') : navigation('Language'));
$piece = new xhtml_piece(TEMPLATEDIR.'template.reference.item.html');
$xhtml->set('content_for_layout', $piece->out());
$xhtml->set('reference_nav', reference_nav());
$xhtml->set('language_nav', language_nav($lang));
$xhtml->set('content', $ref->display());
foreach ($translation->attributes as $key => $value) {
$xhtml->set($key, $value);
}
foreach ($translation->meta as $key => $value) {
$xhtml->set($key, $value);
}
$xhtml->set('updated', date('F d, Y h:i:sa T', filemtime(CONTENTDIR.'/'.$ref->filepath)));
$this->xhtml = $xhtml;
$this->language($lang);
}
function language($lang)
{
global $LANGUAGES;
$this->lang = $lang;
$this->xhtml->set('charset', $LANGUAGES[$lang][1]);
$this->xhtml->set('lang', $lang);
}
function out()
{
return $this->xhtml->out();
}
function write()
{
writeFile($this->filepath, $this->xhtml->out());
}
}
class LibReferencePage extends ReferencePage
{
function LibReferencePage(&$ref, $lib, $translation, $lang = 'en')
{
global $LANGUAGES;
$this->langdir = 'reference/' . ($lang == 'en' ? '' : "$lang");
$this->libsdir = $this->langdir . '/libraries';
$this->libdir = $this->libsdir . "/$lib";
$this->filepath = $this->libdir . '/' . $ref->name();
$title = $ref->title() . ($lang == 'en' ? '' : " \ {$LANGUAGES[$lang][0]}") .' \ Language (API) \ Processing 3+';
$xhtml = new xhtml_page(TEMPLATEDIR.'template.translation.html');
$xhtml->set('header', HEADER_LINK);
$xhtml->set('title', $title);
$xhtml->set('bodyid', 'Library-ref');
if ($lang == 'en') {
$xhtml->set('navigation', navigation('Libraries'));
} else {
$xhtml->set('navigation', navigation_tr('Libraries'));
}
$piece = new xhtml_piece(TEMPLATEDIR.'template.reference.item.html');
$xhtml->set('content_for_layout', $piece->out());
$xhtml->set('reference_nav', library_nav($lib));
$xhtml->set('language_nav', language_nav($lang));
$xhtml->set('content', $ref->display());
foreach ($translation->attributes as $key => $value) {
$xhtml->set($key, $value);
}
foreach ($translation->meta as $key => $value) {
$xhtml->set($key, $value);
}
//$xhtml->set('updated', date('F d, Y h:i:sa T', filemtime(CONTENTDIR.'/'.$ref->filepath)));
$this->xhtml = $xhtml;
$this->language($lang);
}
}
class LocalPage extends Page
{
var $xhtml;
var $lang = 'en';
var $subtemplate = false;
function LocalPage($title = '', $section = '', $bodyid = '', $rel_path = '')
{
$this->xhtml = new xhtml_page(TEMPLATEDIR.'template.local.html');
$this->xhtml->set('header', '<a href="http://processing.org/" title="Processing.org"><div class="processing-logo" alt="Processing cover"></div></a>');
$title = ($title == '') ? 'Processing 3+' : $title . ' \ Processing 3+';
$this->xhtml->set('title', $title);
$this->xhtml->set('navigation', local_nav($section, $rel_path));
$this->set('relpath', $rel_path);
$this->language('en');
$this->xhtml->set('bodyid', ($bodyid == '') ? $section : $bodyid);
}
}
class LocalReferencePage extends ReferencePage
{
var $xhtml;
var $lang = 'en';
var $filepath;
function LocalReferencePage(&$ref, $translation, $lang = 'en', $rel_path = '')
{
$this->filepath = 'distribution/' . $ref->name();
$title = $ref->title() .' \ Language (API) \ Processing 3+';
$xhtml = new xhtml_page(TEMPLATEDIR.'template.local.html');
$xhtml->set('header', '<a href="http://processing.org/" title="Processing.org"><div class="processing-logo" alt="Processing cover"></div></a>');
$xhtml->set('title', $title);
$xhtml->set('bodyid', 'Langauge');
$xhtml->set('navigation', local_nav('Language'));
$piece = new xhtml_piece(TEMPLATEDIR.'template.reference.item.html');
$xhtml->set('content_for_layout', $piece->out());
$xhtml->set('reference_nav', reference_nav());
$xhtml->set('language_nav', language_nav($lang));
$xhtml->set('content', $ref->display());
foreach ($translation->attributes as $key => $value) {
$xhtml->set($key, $value);
}
foreach ($translation->meta as $key => $value) {
$xhtml->set($key, $value);
}
$xhtml->set('relpath', $rel_path);
$xhtml->set('updated', date('F d, Y h:i:sa T', filemtime(CONTENTDIR.'/'.$ref->filepath)));
$this->xhtml = $xhtml;
$this->language($lang);
}
}
class LocalLibReferencePage extends ReferencePage
{
function LocalLibReferencePage(&$ref, $lib, $translation, $rel_path = '../../')
{
global $LANGUAGES;
$lang = 'en';
$this->filepath = "distribution/libraries/$lib/" . $ref->name();
$title = $ref->title() . "\\ $lib \\ Language (API) \\ Processing 3+";
$xhtml = new xhtml_page(TEMPLATEDIR.'template.local.html');
$xhtml->set('header', '<a href="http://processing.org/" title="Processing.org"><div class="processing-logo" alt="Processing cover"></div></a>');
$xhtml->set('title', $title);
$xhtml->set('bodyid', 'Library-ref');
$xhtml->set('navigation', local_nav('Libraries', $rel_path));
$piece = new xhtml_piece(TEMPLATEDIR.'template.reference.item.html');
$xhtml->set('content_for_layout', $piece->out());
$xhtml->set('reference_nav', library_nav($lib));
$xhtml->set('language_nav', language_nav($lang));
foreach ($translation->attributes as $key => $value) {
$xhtml->set($key, $value);
}
foreach ($translation->meta as $key => $value) {
$xhtml->set($key, $value);
}
$xhtml->set('content', $ref->display());
$xhtml->set('updated', date('F d, Y h:i:sa T', filemtime(CONTENTDIR.'/'.$ref->filepath)));
$xhtml->set('relpath', $rel_path);
$this->xhtml = $xhtml;
}
}
?>