source: trunk/tools/database/www/Odin32GuidelineMisc.phtml@ 6502

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

Translated some guidelines from Staroffice.

File size: 1.4 KB
Line 
1<?php
2$Naziv="Project Odin Miscellaneous 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 Collections of miscellaneous guidelines recommended
30 used in Project Odin.
31 ";
32TekstEnd();
33
34
35/*
36 * Date And Time
37 */
38Odin32DBNaslov("Date And Time","datetime");
39TekstBeg();
40echo "
41 We will try use the ISO date and time format whenever giving
42 dates and times. This will avoid Y2K problems and misunderstandings
43 due to national date or time formats.
44 <p>
45
46 <dl>
47 <dt><b>YYYY-MM-DD</b>
48 <dd><b>Y</b> = Year, <b>M</b> = Month, <b>D</b> = Day.
49 <dt><b>HH:MM:SS</b>
50 <dd><b>H</b> = Hour, <b>M</b> = Minute, <b>S</b> = Second
51 </dl>
52
53 ";
54TekstEnd();
55
56
57require "07-ColumnTwoFooter.php3";
58require "08-News.php3";
59require "09-ContentsTitle.php3";
60
61Odin32DBWriteContents();
62
63require "10-EndOfContent.php3";
64require "11-NetlabsContact.php3";
65
66$Kada=date ("j M Y", filemtime(__file__));
67require "12-OdinBanner.php3";
68
69require "13-Closing.php3";
70
71/* Profiling */
72Odin32DBTimerStop($sPageTimer);
73/* Profiling */
74
75?>
Note: See TracBrowser for help on using the repository browser.