source: trunk/tools/database/www/Odin32Guidelines.phtml@ 10366

Last change on this file since 10366 was 6657, checked in by bird, 24 years ago

Made main includes moveable.

File size: 2.7 KB
Line 
1<?php
2$Naziv="Project Odin Guidelines";
3
4$sMainDir = "../";
5
6require $sMainDir."stilovi.php3";
7require "Odin32DBHelpers.php3";
8
9/* Profiling */
10$sPageTimer = Odin32DBTimerStart("page timer");
11/* Profiling */
12
13
14require $sMainDir."01-PreTitle.php3";
15echo $Naziv;
16require $sMainDir."02-PostTitle.php3";
17
18require $sMainDir."03-MainTableBeg.php3";
19require $sMainDir."04-ColumnOne.php3";
20
21require $sMainDir."05-ColumnTwoHeader.php3";
22echo $Naziv;
23require $sMainDir."06-ColumnTwoHeader2.php3";
24
25
26/*
27 * Introduction
28 */
29TekstBeg();
30echo "
31 On this page we list the guidelines currently available for the Odin
32 project. The guidelines addresses different aspects of the development
33 which we should try do in the same way. <p>
34
35 When a guideline is accepted you should read it and follow it.<p>
36
37 Currently none of the guidelines are accepted (but this will
38 change soon). It will probably not cause any harm to reading and use the
39 guidelines before they are accepted, but some changes should be expected.
40 ";
41TekstEnd();
42
43
44/*
45 * Source Code Documentation Guidelines
46 */
47Odin32DBNaslov("Source Code Documentation Guidelines","SCDG");
48TekstBeg();
49echo "
50 The Source Code Documentation Guidelines describes how to document
51 your source code. Documenting the source code is helpful when
52 we're to maintain and extend the code later. We also use the
53 source code documentation to keep track of the progess. This done by
54 keeping a state with each API implementation. The source code
55 documentation is read after each daily build and is made available
56 on the ";
57LocLink("Odin32DB.phtml", "Odin32 API Database");
58echo " pages.<p>
59 ";
60
61LocLink("Odin32GuidelineDocumentation.phtml", "Source Code Documentation Guidelines");
62echo " - <tt>proposal IV</tt>
63 ";
64TekstEnd();
65
66
67/*
68 * Coding Guidelines
69 */
70 /*
71Odin32DBNaslov("Coding Guidelines","codingg");
72TekstBeg();
73echo "
74
75 ";
76
77LocLink("Odin32GuidelineCoding.phtml", "Coding Guidelines");
78echo " - <tt>draft</tt>
79 ";
80TekstEnd();
81 */
82
83/*
84 * Miscellaneous Guidelines.
85 */
86Odin32DBNaslov("Miscellaneous Guidelines","miscg");
87TekstBeg();
88echo "
89 Collections of short guidelines.<p>
90 ";
91
92LocLink("Odin32GuidelineMisc.phtml", "Miscellaneous Guidelines");
93echo " - <tt>draft</tt>
94 ";
95TekstEnd();
96
97
98
99
100require $sMainDir."07-ColumnTwoFooter.php3";
101require $sMainDir."08-News.php3";
102require $sMainDir."09-ContentsTitle.php3";
103
104Odin32DBWriteContents();
105
106require $sMainDir."10-EndOfContent.php3";
107require $sMainDir."11-NetlabsContact.php3";
108
109$Kada=date ("j M Y", filemtime(__file__));
110require $sMainDir."12-OdinBanner.php3";
111
112require $sMainDir."13-Closing.php3";
113
114/* Profiling */
115Odin32DBTimerStop($sPageTimer);
116/* Profiling */
117
118?>
Note: See TracBrowser for help on using the repository browser.