1 | <?php
|
---|
2 | $Naziv="Project Odin Sourcecode Documentation Guidelines";
|
---|
3 |
|
---|
4 | $sMainDir = "../";
|
---|
5 |
|
---|
6 | require $sMainDir."stilovi.php3";
|
---|
7 | require "Odin32DBHelpers.php3";
|
---|
8 |
|
---|
9 | /* Profiling */
|
---|
10 | $sPageTimer = Odin32DBTimerStart("page timer");
|
---|
11 | /* Profiling */
|
---|
12 |
|
---|
13 |
|
---|
14 | require $sMainDir."01-PreTitle.php3";
|
---|
15 | echo $Naziv;
|
---|
16 | require $sMainDir."02-PostTitle.php3";
|
---|
17 |
|
---|
18 | require $sMainDir."03-MainTableBeg.php3";
|
---|
19 | require $sMainDir."04-ColumnOne.php3";
|
---|
20 |
|
---|
21 | require $sMainDir."05-ColumnTwoHeader.php3";
|
---|
22 | echo $Naziv;
|
---|
23 | require $sMainDir."06-ColumnTwoHeader2.php3";
|
---|
24 |
|
---|
25 | /* I would like to number the sections and subsections */
|
---|
26 | ODin32DBNumberSections();
|
---|
27 |
|
---|
28 | /*
|
---|
29 | *
|
---|
30 | */
|
---|
31 | TekstBeg();
|
---|
32 | echo "
|
---|
33 | This page describes the sourcecode documentation guildelines
|
---|
34 | used in Project Odin.
|
---|
35 | ";
|
---|
36 | TekstEnd();
|
---|
37 |
|
---|
38 |
|
---|
39 | /*
|
---|
40 | *
|
---|
41 | */
|
---|
42 | Odin32DBNaslov("Introduction","intro");
|
---|
43 | TekstBeg();
|
---|
44 | echo " The documentation guidelines will keep reminding us that documentation
|
---|
45 | is necessary; and we may benefit from it when monitoring progress.
|
---|
46 | (Odin32 API Database) The status for each API function is essential.
|
---|
47 | <p>
|
---|
48 | The documentation style is based on Javadoc and
|
---|
49 | ";
|
---|
50 | UrlLink("sds.sourceforge.net/", "SDS (Software Development Foundation)");
|
---|
51 | echo " . We have made our own additions in form of new keywords.
|
---|
52 | <p>
|
---|
53 | It is of course recommended that everyone follows all of these
|
---|
54 | guidelines, but to some are more important than others. These
|
---|
55 | are marked <i>(required)</i>.
|
---|
56 | ";
|
---|
57 | TekstEnd();
|
---|
58 |
|
---|
59 |
|
---|
60 | /*
|
---|
61 | *
|
---|
62 | */
|
---|
63 | Odin32DBNaslov("File Header <i>(required)</i>","fileheader");
|
---|
64 | TekstBeg();
|
---|
65 | echo " Each and every source file should start with a header like this:
|
---|
66 | ";
|
---|
67 | TekstEnd();
|
---|
68 | CodeBeg();
|
---|
69 | echo "
|
---|
70 | /* \$Id: Odin32GuidelineDocumentation.phtml,v 1.5 2001-09-05 21:40:46 bird Exp $
|
---|
71 | *
|
---|
72 | * <i><insert file description here></i>
|
---|
73 | *
|
---|
74 | * Copyright (c) <i><YYYY>[-YYYY] <author 1></i>
|
---|
75 | [* Copyright (c) <i><YYYY>[-YYYY] <author 2></i>]
|
---|
76 | *
|
---|
77 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
78 | */";
|
---|
79 | CodeEnd();
|
---|
80 | TekstBeg();
|
---|
81 | echo "
|
---|
82 | The file header starts with CVS keyword, \$Id\$. When commiting
|
---|
83 | the file CVS expandes this keyword. Following is a blank line and
|
---|
84 | a description of the file contents. Then a blank line and
|
---|
85 | copyright info for all authors. As the final statement is the
|
---|
86 | license information.<p>
|
---|
87 |
|
---|
88 | <b>Note:</b> If someone like to include CVS keywords (\$Log\$, \$Header\$, \$...)
|
---|
89 | other that \$Id\$, we will have to discuss this in the WAI and MAD
|
---|
90 | teams. As long as a keyword is not decided used (by the MAD or/and the WAI
|
---|
91 | teams), it should not be used!
|
---|
92 | ";
|
---|
93 | TekstEnd();
|
---|
94 |
|
---|
95 |
|
---|
96 | /*
|
---|
97 | *
|
---|
98 | */
|
---|
99 | Odin32DBNaslov("Function Header <i>(required)</i>", "functonheader");
|
---|
100 | TekstBeg();
|
---|
101 | echo "
|
---|
102 | A function header is required for all API functions and recommended
|
---|
103 | for all other functions. Using and maintaining the described function
|
---|
104 | header will allow us to monitor the progress of the project and
|
---|
105 | generate documentation.<p>
|
---|
106 |
|
---|
107 | <b>Note:</b> The function header which is described here is not the
|
---|
108 | only one found in the sources. You are discouraged from using other
|
---|
109 | function header(s) than the one described here.
|
---|
110 | ";
|
---|
111 | TekstEnd();
|
---|
112 |
|
---|
113 | /*
|
---|
114 | *
|
---|
115 | */
|
---|
116 | Odin32DBPodNaslov("SDS Function Header", "sdsfunctionheader");
|
---|
117 | TekstBeg();
|
---|
118 | echo "
|
---|
119 | <i>(SDS is a Javadoc styled documentation system for many languages.
|
---|
120 | We will use some of the standard SDS tags, and add three Odin specific
|
---|
121 | ones; <tt>@status</tt>, <tt>@group</tt> and <tt>@author</tt>.)</i><p>
|
---|
122 |
|
---|
123 | First have a look at an example function header:
|
---|
124 | ";
|
---|
125 | TekstEnd();
|
---|
126 | CodeBeg();
|
---|
127 | echo "
|
---|
128 | /**
|
---|
129 | * The OpenFileMappingA function opens a named file-mapping object.
|
---|
130 | * @returns HANDLE to map object.
|
---|
131 | * @param dwDesiredAccess access mode
|
---|
132 | * @param bInheritHandle inherit flag
|
---|
133 | * @param lpName address of name of file-mapping object
|
---|
134 | * @status STUB
|
---|
135 | * @group Filemapping
|
---|
136 | * @author Patrick Haller [Mon, 1998/06/15 08:00]
|
---|
137 | */
|
---|
138 | HANDLE WIN32API OS2OpenFileMappingA(DWORD dwDesiredAccess,";
|
---|
139 | CodeEnd();
|
---|
140 |
|
---|
141 | TekstBeg();
|
---|
142 | echo "
|
---|
143 | As you see, the the different parts of the header is identified by a
|
---|
144 | tag (also called keyword). A tag starts with the <tt>'@'</tt>
|
---|
145 | character. Note that the <tt>@param</tt> tag is kind of special as it
|
---|
146 | has a parameter (parametername) and may occur more than once (with
|
---|
147 | different parameternames).<p>
|
---|
148 |
|
---|
149 | Function headers (methods) have the following tags (keywords):<p>
|
---|
150 |
|
---|
151 | <table border=3>
|
---|
152 | <tr><td><b>Tag</b></td>
|
---|
153 | <td><b>Description</b></td>
|
---|
154 | </tr>
|
---|
155 | <tr><td><tt>@desc</tt></font></td>
|
---|
156 | <td><font size=-1>General description. (default)</td>
|
---|
157 | </tr>
|
---|
158 | <tr><td><tt>@return</tt></td>
|
---|
159 | <td><font size=-1>What the function returns (Alias: @returns)</font></td>
|
---|
160 | </tr>
|
---|
161 | <tr><td><tt>@param <paramname></tt></td>
|
---|
162 | <td><font size=-1>Parameters to the function.</font></td>
|
---|
163 | </tr>
|
---|
164 | <tr><td><tt>@status</tt></td>
|
---|
165 | <td><font size=-1>
|
---|
166 | Function status. See ";
|
---|
167 | AnchNaslov("Function State.", "functionstate", "");
|
---|
168 | echo "
|
---|
169 | </font></td>
|
---|
170 | </tr>
|
---|
171 | <tr><td><tt>@group</tt></td>
|
---|
172 | <td><font size=-1>
|
---|
173 | Name of the API Group the function belongs into.
|
---|
174 | This have to be a valid API Group name.<br>
|
---|
175 | See ";
|
---|
176 | LocLink("Odin32DB.phtml?apigroups=1", "here");
|
---|
177 | echo " for current API groups.
|
---|
178 | </font></td>
|
---|
179 | </tr>
|
---|
180 | <tr><td><tt>@time</tt></td>
|
---|
181 | <td><font size=-1>Time complexity or estimated time use.</font></td>
|
---|
182 | </tr>
|
---|
183 | <tr><td><tt>@sketch</tt></td>
|
---|
184 | <td><font size=-1>A sketch of the method, usually for design.</font></td>
|
---|
185 | </tr>
|
---|
186 | <tr><td><tt>@author</tt></td>
|
---|
187 | <td><font size=-1>
|
---|
188 | This is a list of authors. Authors are separated by ',' or
|
---|
189 | by new-line. Make sure to use exactly the same name/signature
|
---|
190 | each time.
|
---|
191 | </font></td>
|
---|
192 | </tr>
|
---|
193 | <tr><td><tt>@remark</tt></td>
|
---|
194 | <td><font size=-1>Any remarks.</font></td>
|
---|
195 | </tr>
|
---|
196 | </table>
|
---|
197 | <p>";
|
---|
198 |
|
---|
199 | TekstBeg();
|
---|
200 | echo "Since <tt>@desc</tt> is default, this form:";
|
---|
201 | TekstEnd();
|
---|
202 |
|
---|
203 | CodeBeg();
|
---|
204 | echo "
|
---|
205 | /** this is a method-description */
|
---|
206 | int foo();";
|
---|
207 | CodeEnd();
|
---|
208 |
|
---|
209 | TekstBeg();
|
---|
210 | echo "is equivalent with:";
|
---|
211 | TekstEnd();
|
---|
212 |
|
---|
213 | CodeBeg();
|
---|
214 | echo "
|
---|
215 | /** @desc this is a method-description */
|
---|
216 | int foo();";
|
---|
217 | CodeEnd();
|
---|
218 |
|
---|
219 | TekstBeg();
|
---|
220 | echo "
|
---|
221 | <b>Note:</b> that you should only include those tags that you use or
|
---|
222 | intend to use. If you don't use the <tt>@time</tt> tag don't waste a
|
---|
223 | line on it.
|
---|
224 | ";
|
---|
225 | TekstEnd();
|
---|
226 |
|
---|
227 | /*
|
---|
228 | * Function State
|
---|
229 | */
|
---|
230 | Odin32DBPodNaslov("Function State","functionstate");
|
---|
231 | TekstBeg();
|
---|
232 | echo "
|
---|
233 | For API functions we will try monitor the implementation progress. To
|
---|
234 | aid us we will assign a state to the API function which tells us how
|
---|
235 | far the implementation has come. The <tt>@status</tt> tag is intended
|
---|
236 | to hold this information. The <tt>@status</tt> tag is used when
|
---|
237 | automagically updating the Odin32 API Database. So while working on an
|
---|
238 | API function, you'll have to update this field so it reflects the
|
---|
239 | current implementation state of the function. (If you don't update it,
|
---|
240 | the whole point is gone...)<p>
|
---|
241 |
|
---|
242 | The status is a set of keywords which describes the function state.
|
---|
243 | (Additional words in the status field is ignored.)<p>
|
---|
244 | ";
|
---|
245 | TekstEnd();
|
---|
246 |
|
---|
247 | echo "
|
---|
248 | <table border=3>
|
---|
249 | <tr>
|
---|
250 | <td width=5% align=right><font size=-1><b>%</b></font></td>
|
---|
251 | <td><font size=-1><b>Keyword</b></font></td>
|
---|
252 | <td width=70%><font size=-1><b>Description</b></font></td>
|
---|
253 | </tr>
|
---|
254 | ";
|
---|
255 |
|
---|
256 | require "Odin32DBConnect.php3";
|
---|
257 | $sql = "SELECT\n".
|
---|
258 | " name,\n".
|
---|
259 | " description,\n".
|
---|
260 | " weight,\n".
|
---|
261 | " color\n".
|
---|
262 | "FROM\n".
|
---|
263 | " state\n".
|
---|
264 | "ORDER BY refcode";
|
---|
265 | $result = mysql_query($sql, $db);
|
---|
266 | if ($result)
|
---|
267 | {
|
---|
268 | while ($aState = mysql_fetch_array($result))
|
---|
269 | {
|
---|
270 | echo "
|
---|
271 | <tr>
|
---|
272 | <td align=right valign=top><font size=-1>".$aState["weight"]."%</font></td>
|
---|
273 | <td valign=top><font size=-1 color=".$aState["color"].">".$aState["name"]."</font></td>
|
---|
274 | <td valign=top><font size=-1>".$aState["description"]."</font></td>
|
---|
275 | </tr>";
|
---|
276 | }
|
---|
277 | }
|
---|
278 | else
|
---|
279 | Odin32DBSqlError($sql);
|
---|
280 |
|
---|
281 | echo "
|
---|
282 | </table><p>\n";
|
---|
283 |
|
---|
284 | TekstBeg();
|
---|
285 | echo "
|
---|
286 | <b>Note:</b> The Open32 keyword should be used when the implementation
|
---|
287 | of the API calls an Open32 function. Even if you''ve written 1000 lines
|
---|
288 | of code fixing Open32 bugs, as long as it depends on Open32 directly in
|
---|
289 | the implementation.<p>
|
---|
290 |
|
---|
291 | <b>Note2:</b> The <b>%</b> column in the table is the compleatage
|
---|
292 | percent of a function in the given state.
|
---|
293 | ";
|
---|
294 | TekstEnd();
|
---|
295 |
|
---|
296 |
|
---|
297 | /*
|
---|
298 | * Design notes.
|
---|
299 | */
|
---|
300 | Odin32DBNaslov("Design Notes","design");
|
---|
301 | TekstBeg();
|
---|
302 | echo "
|
---|
303 | <i>Experimental - expect addition/changes </i><p>
|
---|
304 |
|
---|
305 | From time to other someone will feel the urge to write a few (or many)
|
---|
306 | lines about the design of a module, subsystem, tool or whatever, which
|
---|
307 | isn't related to a specific function. For that purpose there is a
|
---|
308 | tag, <tt>@design</tt>, which you can place whereever you whan't in the
|
---|
309 | sourcecode, and write about how things work. The design notes are
|
---|
310 | intented to be at a level higher than function or maybe even file
|
---|
311 | level of documentation.<p>
|
---|
312 |
|
---|
313 | The <tt>@design</tt>-tag have a couple of options, which are used to
|
---|
314 | order them and to give a title to the design note.<p>
|
---|
315 |
|
---|
316 | Syntax: <tt>@design <module sequence nbr> <design note title></tt><p>
|
---|
317 |
|
---|
318 | The <tt>module sequence nbr</tt> is a sequence number used to order
|
---|
319 | the notes this for the module (ie. dll) when the designnotes are
|
---|
320 | put together for an entire module.<p>
|
---|
321 |
|
---|
322 | The <tt>design note title</tt> is the title of the design note. This
|
---|
323 | also used when the notes are collected for an entire module.<p>
|
---|
324 |
|
---|
325 |
|
---|
326 | ";
|
---|
327 | TekstEnd();
|
---|
328 |
|
---|
329 |
|
---|
330 | /*
|
---|
331 | * Class Documentation
|
---|
332 | */
|
---|
333 | Odin32DBNaslov("Classes and Methods (SDS)","classesandmethods");
|
---|
334 | TekstBeg();
|
---|
335 | echo "
|
---|
336 | We need a way of describing and document classes and methods (class
|
---|
337 | functions) in the Odin32 API. Though classes and methods are not exported
|
---|
338 | directly in the API, they are used to implemented very much of it. For
|
---|
339 | example the DDRAW and DSOUND DLL exports classes through function tables.<p>
|
---|
340 |
|
---|
341 | The following sub-sections is an excerpt from the SDS documentation adapted
|
---|
342 | for use in Project Odin.
|
---|
343 | ";
|
---|
344 | TekstEnd();
|
---|
345 |
|
---|
346 | /*
|
---|
347 | *
|
---|
348 | */
|
---|
349 | Odin32DBPodNaslov("Briefly About SDS", "aboutsds");
|
---|
350 | TekstBeg();
|
---|
351 | echo "
|
---|
352 | SDS (Software Development Foundation) is designed (by Stig
|
---|
353 | E. Sandøe) to be similar to JavaDoc but operate on C++, C, Java,
|
---|
354 | Lisp, and other languages. It consists of a documentation style
|
---|
355 | and a set of utilities which parses the source- and header-files and
|
---|
356 | generates a set of HTML pages and class diagrams. We don't use the SDS
|
---|
357 | tools yet, rather or homegrown stuff, the documentation style is very
|
---|
358 | useful to attach some describing words to classes and their methods in
|
---|
359 | a structured and uniform way.<p>
|
---|
360 |
|
---|
361 | The SDS documentation style is used by the win32k sources.
|
---|
362 | For more on SDS look ";
|
---|
363 | UrlLink("sds.sourceforge.net/", "here");
|
---|
364 | echo ".\n";
|
---|
365 | TekstEnd();
|
---|
366 |
|
---|
367 | /*
|
---|
368 | * The Class-description Tags
|
---|
369 | */
|
---|
370 | Odin32DBPodNaslov("The Class-Description Tags", "sdsclasstags");
|
---|
371 | TekstBeg();
|
---|
372 | echo "
|
---|
373 | An Example:
|
---|
374 | ";
|
---|
375 | TekstBeg();
|
---|
376 |
|
---|
377 | CodeBeg();
|
---|
378 | echo "
|
---|
379 | /**
|
---|
380 | * @prop Here is the short description of class Foo
|
---|
381 | * @desc Here is the description of class Foo
|
---|
382 | * @purpose I describe the purpose of class Foo here.
|
---|
383 | * @author Stig E. Sandoe.
|
---|
384 | */
|
---|
385 | class Foo
|
---|
386 | {
|
---|
387 | ...
|
---|
388 | };";
|
---|
389 | CodeEnd();
|
---|
390 |
|
---|
391 | /* A More Thorough Description */
|
---|
392 | PodPodNaslov("A More Thorough Description");
|
---|
393 | TekstBeg();
|
---|
394 | echo "
|
---|
395 | Classes has the following keywords:
|
---|
396 | ";
|
---|
397 | TekstEnd();
|
---|
398 | echo "
|
---|
399 | <table border=3>
|
---|
400 | <tr>
|
---|
401 | <td><b>Tag</b></td>
|
---|
402 | <td><b>Description</b></td>
|
---|
403 | </tr>
|
---|
404 | <tr>
|
---|
405 | <td><tt>@desc</tt></td>
|
---|
406 | <td><font size=-1>
|
---|
407 | Starts the general description-field for a class. (default)
|
---|
408 | </font></td>
|
---|
409 | <tr>
|
---|
410 | <td><tt>@shortdesc</tt></td>
|
---|
411 | <td><font size=-1>
|
---|
412 | Short description (Alias: <tt>@memo</tt>)
|
---|
413 | </font></td>
|
---|
414 | <tr>
|
---|
415 | <td><tt>@dstruct</tt></td>
|
---|
416 | <td><font size=-1>
|
---|
417 | Starts the field describing the data-structure of the class,
|
---|
418 | and where it fits into the pig picture.
|
---|
419 | </font></td>
|
---|
420 | <tr>
|
---|
421 | <td><tt>@version</tt></td>
|
---|
422 | <td><font size=-1>
|
---|
423 | Specifies the versionname/number of the class.
|
---|
424 | (Alias: <tt>@vername</tt>)
|
---|
425 | </font></td>
|
---|
426 | <tr>
|
---|
427 | <td><tt>@verdesc</tt></td>
|
---|
428 | <td><font size=-1>
|
---|
429 | Description of diffs in \"this\" version.
|
---|
430 | </font></td>
|
---|
431 | <tr>
|
---|
432 | <td><tt>@author</tt></td>
|
---|
433 | <td><font size=-1>
|
---|
434 | Specifies the author of the class.
|
---|
435 | </font></td>
|
---|
436 | <tr>
|
---|
437 | <td><tt>@approval</tt></td>
|
---|
438 | <td><font size=-1>
|
---|
439 | Specifies who have given final approval of the
|
---|
440 | documentation/implementation of a class.
|
---|
441 | </font></td>
|
---|
442 | </table>
|
---|
443 | ";
|
---|
444 |
|
---|
445 | /*
|
---|
446 | * How to divide into categories
|
---|
447 | */
|
---|
448 | Odin32DBPodNaslov("How to divide into categories", "sdscat");
|
---|
449 |
|
---|
450 | TekstBeg();
|
---|
451 | echo "
|
---|
452 | The <tt>@cat</tt>-tag is really best illustrated with a short example:
|
---|
453 | ";
|
---|
454 | TekstEnd();
|
---|
455 | CodeBeg();
|
---|
456 | echo "
|
---|
457 | class Foo
|
---|
458 | {
|
---|
459 | /** @cat Datamembers */
|
---|
460 | int bar;
|
---|
461 | int xyzzy;
|
---|
462 |
|
---|
463 | /** @cat Methods */
|
---|
464 | int fubar() const;
|
---|
465 | void IRS(long money=ALLMONEY) const;
|
---|
466 | };";
|
---|
467 | CodeEnd();
|
---|
468 |
|
---|
469 |
|
---|
470 | /*
|
---|
471 | * How To Document a Method
|
---|
472 | */
|
---|
473 | Odin32DBPodNaslov("How To Document a Method", "sdsmethod");
|
---|
474 |
|
---|
475 | TekstBeg();
|
---|
476 | echo "
|
---|
477 | <i>(This is similar to the SDS Function Header.)</i>
|
---|
478 | ";
|
---|
479 | TekstEnd();
|
---|
480 |
|
---|
481 | /* */
|
---|
482 | PodPodNaslov("An Example");
|
---|
483 | TekstBeg();
|
---|
484 | echo "
|
---|
485 | There are basically four places where you can put documentation for
|
---|
486 | methods. New documentation found for a method is added/appended to
|
---|
487 | the existing documentation so it is quite possible to describe
|
---|
488 | different aspects fo a method in different places. Please note that
|
---|
489 | documentation is added as it is read.<p>
|
---|
490 | ";
|
---|
491 | TekstEnd();
|
---|
492 | CodeBeg();
|
---|
493 | echo "
|
---|
494 | class Foo
|
---|
495 | {
|
---|
496 | /** Documentation before the method */
|
---|
497 | doFrob();
|
---|
498 |
|
---|
499 | int length() { /** Doc. inside the method */ ... }
|
---|
500 | };
|
---|
501 |
|
---|
502 | /** More doc. before the mothod */
|
---|
503 | Foo::doFrob()
|
---|
504 | {
|
---|
505 | /** Doc. inside the implementation */
|
---|
506 | }";
|
---|
507 | CodeEnd();
|
---|
508 |
|
---|
509 | /* A More Thorough Description */
|
---|
510 | PodPodNaslov("A More Thorough Description");
|
---|
511 | TekstBeg();
|
---|
512 | echo "
|
---|
513 | Methods have the following keywords:<p>
|
---|
514 | ";
|
---|
515 | TekstEnd();
|
---|
516 | echo "
|
---|
517 | <table border=3>
|
---|
518 | <tr><td><b>Tag</b></td>
|
---|
519 | <td><b>Description</b></td>
|
---|
520 | </tr>
|
---|
521 | <tr><td><tt>@desc</tt></font></td>
|
---|
522 | <td><font size=-1>General description. (default)</td>
|
---|
523 | </tr>
|
---|
524 | <tr><td><tt>@return</tt></td>
|
---|
525 | <td><font size=-1>What the function returns (Alias: @returns)</font></td>
|
---|
526 | </tr>
|
---|
527 | <tr><td><tt>@param <paramname></tt></td>
|
---|
528 | <td><font size=-1>Parameters to the function.</font></td>
|
---|
529 | </tr>
|
---|
530 | <tr><td><tt>@status</tt></td>
|
---|
531 | <td><font size=-1>
|
---|
532 | Function status. See ";
|
---|
533 | AnchNaslov("Function State.", "functionstate", "");
|
---|
534 | echo "
|
---|
535 | </font></td>
|
---|
536 | </tr>
|
---|
537 | <tr><td><tt>@time</tt></td>
|
---|
538 | <td><font size=-1>Time complexity or estimated time use.</font></td>
|
---|
539 | </tr>
|
---|
540 | <tr><td><tt>@sketch</tt></td>
|
---|
541 | <td><font size=-1>A sketch of the method, usually for design.</font></td>
|
---|
542 | </tr>
|
---|
543 | <tr><td><tt>@author</tt></td>
|
---|
544 | <td><font size=-1>
|
---|
545 | This is a list of authors. Authors are separated by ',' or
|
---|
546 | by new-line. Make sure to use exactly the same name/signature
|
---|
547 | each time.
|
---|
548 | </font></td>
|
---|
549 | </tr>
|
---|
550 | <tr><td><tt>@remark</tt></td>
|
---|
551 | <td><font size=-1>Any remarks.</font></td>
|
---|
552 | </tr>
|
---|
553 | </table>
|
---|
554 | ";
|
---|
555 |
|
---|
556 | require $sMainDir."07-ColumnTwoFooter.php3";
|
---|
557 | require $sMainDir."08-News.php3";
|
---|
558 | require $sMainDir."09-ContentsTitle.php3";
|
---|
559 |
|
---|
560 | Odin32DBWriteContents();
|
---|
561 |
|
---|
562 | require $sMainDir."10-EndOfContent.php3";
|
---|
563 | require $sMainDir."11-NetlabsContact.php3";
|
---|
564 |
|
---|
565 | $Kada=date ("j M Y", filemtime(__file__));
|
---|
566 | require $sMainDir."12-OdinBanner.php3";
|
---|
567 |
|
---|
568 | require $sMainDir."13-Closing.php3";
|
---|
569 |
|
---|
570 | /* Profiling */
|
---|
571 | Odin32DBTimerStop($sPageTimer);
|
---|
572 | /* Profiling */
|
---|
573 |
|
---|
574 | ?>
|
---|