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