1 | <?php
|
---|
2 | $Naziv="Project Odin 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 |
|
---|
26 | /*
|
---|
27 | * Introduction
|
---|
28 | */
|
---|
29 | TekstBeg();
|
---|
30 | echo "
|
---|
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 | ";
|
---|
41 | TekstEnd();
|
---|
42 |
|
---|
43 |
|
---|
44 | /*
|
---|
45 | * Source Code Documentation Guidelines
|
---|
46 | */
|
---|
47 | Odin32DBNaslov("Source Code Documentation Guidelines","SCDG");
|
---|
48 | TekstBeg();
|
---|
49 | echo "
|
---|
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 ";
|
---|
57 | LocLink("Odin32DB.phtml", "Odin32 API Database");
|
---|
58 | echo " pages.<p>
|
---|
59 | ";
|
---|
60 |
|
---|
61 | LocLink("Odin32GuidelineDocumentation.phtml", "Source Code Documentation Guidelines");
|
---|
62 | echo " - <tt>proposal IV</tt>
|
---|
63 | ";
|
---|
64 | TekstEnd();
|
---|
65 |
|
---|
66 |
|
---|
67 | /*
|
---|
68 | * Coding Guidelines
|
---|
69 | */
|
---|
70 | /*
|
---|
71 | Odin32DBNaslov("Coding Guidelines","codingg");
|
---|
72 | TekstBeg();
|
---|
73 | echo "
|
---|
74 |
|
---|
75 | ";
|
---|
76 |
|
---|
77 | LocLink("Odin32GuidelineCoding.phtml", "Coding Guidelines");
|
---|
78 | echo " - <tt>draft</tt>
|
---|
79 | ";
|
---|
80 | TekstEnd();
|
---|
81 | */
|
---|
82 |
|
---|
83 | /*
|
---|
84 | * Miscellaneous Guidelines.
|
---|
85 | */
|
---|
86 | Odin32DBNaslov("Miscellaneous Guidelines","miscg");
|
---|
87 | TekstBeg();
|
---|
88 | echo "
|
---|
89 | Collections of short guidelines.<p>
|
---|
90 | ";
|
---|
91 |
|
---|
92 | LocLink("Odin32GuidelineMisc.phtml", "Miscellaneous Guidelines");
|
---|
93 | echo " - <tt>draft</tt>
|
---|
94 | ";
|
---|
95 | TekstEnd();
|
---|
96 |
|
---|
97 |
|
---|
98 |
|
---|
99 |
|
---|
100 | require $sMainDir."07-ColumnTwoFooter.php3";
|
---|
101 | require $sMainDir."08-News.php3";
|
---|
102 | require $sMainDir."09-ContentsTitle.php3";
|
---|
103 |
|
---|
104 | Odin32DBWriteContents();
|
---|
105 |
|
---|
106 | require $sMainDir."10-EndOfContent.php3";
|
---|
107 | require $sMainDir."11-NetlabsContact.php3";
|
---|
108 |
|
---|
109 | $Kada=date ("j M Y", filemtime(__file__));
|
---|
110 | require $sMainDir."12-OdinBanner.php3";
|
---|
111 |
|
---|
112 | require $sMainDir."13-Closing.php3";
|
---|
113 |
|
---|
114 | /* Profiling */
|
---|
115 | Odin32DBTimerStop($sPageTimer);
|
---|
116 | /* Profiling */
|
---|
117 |
|
---|
118 | ?>
|
---|