| 1 | <?php
|
|---|
| 2 | $Naziv="Project Odin Miscellaneous 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 | Collections of miscellaneous guidelines recommended
|
|---|
| 30 | used in Project Odin.
|
|---|
| 31 | ";
|
|---|
| 32 | TekstEnd();
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 | /*
|
|---|
| 36 | * Date And Time
|
|---|
| 37 | */
|
|---|
| 38 | Odin32DBNaslov("Date And Time","datetime");
|
|---|
| 39 | TekstBeg();
|
|---|
| 40 | echo "
|
|---|
| 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 | ";
|
|---|
| 54 | TekstEnd();
|
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 | require "07-ColumnTwoFooter.php3";
|
|---|
| 58 | require "08-News.php3";
|
|---|
| 59 | require "09-ContentsTitle.php3";
|
|---|
| 60 |
|
|---|
| 61 | Odin32DBWriteContents();
|
|---|
| 62 |
|
|---|
| 63 | require "10-EndOfContent.php3";
|
|---|
| 64 | require "11-NetlabsContact.php3";
|
|---|
| 65 |
|
|---|
| 66 | $Kada=date ("j M Y", filemtime(__file__));
|
|---|
| 67 | require "12-OdinBanner.php3";
|
|---|
| 68 |
|
|---|
| 69 | require "13-Closing.php3";
|
|---|
| 70 |
|
|---|
| 71 | /* Profiling */
|
|---|
| 72 | Odin32DBTimerStop($sPageTimer);
|
|---|
| 73 | /* Profiling */
|
|---|
| 74 |
|
|---|
| 75 | ?>
|
|---|