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

Last change on this file since 5280 was 3908, checked in by bird, 25 years ago

Translated some guidelines from Staroffice.

File size: 2.6 KB
Line 
1<?php
2$Naziv="Project Odin Guidelines";
3
4require "stilovi.php3";
5require "Odin32DBHelpers.php3";
6
7/* Profiling */
8$sPageTimer = Odin32DBTimerStart("page timer");
9/* Profiling */
10
11
12require "01-PreTitle.php3";
13echo $Naziv;
14require "02-PostTitle.php3";
15
16require "03-MainTableBeg.php3";
17require "04-ColumnOne.php3";
18
19require "05-ColumnTwoHeader.php3";
20echo $Naziv;
21require "06-ColumnTwoHeader2.php3";
22
23
24/*
25 * Introduction
26 */
27TekstBeg();
28echo "
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 ";
39TekstEnd();
40
41
42/*
43 * Source Code Documentation Guidelines
44 */
45Odin32DBNaslov("Source Code Documentation Guidelines","SCDG");
46TekstBeg();
47echo "
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 ";
55LocLink("Odin32DB.phtml", "Odin32 API Database");
56echo " pages.<p>
57 ";
58
59LocLink("Odin32GuidelineDocumentation.phtml", "Source Code Documentation Guidelines");
60echo " - <tt>proposal IV</tt>
61 ";
62TekstEnd();
63
64
65/*
66 * Coding Guidelines
67 */
68 /*
69Odin32DBNaslov("Coding Guidelines","codingg");
70TekstBeg();
71echo "
72
73 ";
74
75LocLink("Odin32GuidelineCoding.phtml", "Coding Guidelines");
76echo " - <tt>draft</tt>
77 ";
78TekstEnd();
79 */
80
81/*
82 * Miscellaneous Guidelines.
83 */
84Odin32DBNaslov("Miscellaneous Guidelines","miscg");
85TekstBeg();
86echo "
87 Collections of short guidelines.<p>
88 ";
89
90LocLink("Odin32GuidelineMisc.phtml", "Miscellaneous Guidelines");
91echo " - <tt>draft</tt>
92 ";
93TekstEnd();
94
95
96
97
98require "07-ColumnTwoFooter.php3";
99require "08-News.php3";
100require "09-ContentsTitle.php3";
101
102Odin32DBWriteContents();
103
104require "10-EndOfContent.php3";
105require "11-NetlabsContact.php3";
106
107$Kada=date ("j M Y", filemtime(__file__));
108require "12-OdinBanner.php3";
109
110require "13-Closing.php3";
111
112/* Profiling */
113Odin32DBTimerStop($sPageTimer);
114/* Profiling */
115
116?>
Note: See TracBrowser for help on using the repository browser.