Changeset 279 for branches/web/index.pas
- Timestamp:
- Mar 5, 2010, 8:52:50 PM (15 years ago)
- Location:
- branches/web
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/web
- Property svn:ignore
-
old new 3 3 *.o 4 4 backup 5 6 5 index.cgi 7 8 6 index.compiled 9 10 7 UConfig.pas 8 bin
-
- Property svn:ignore
-
branches/web/index.pas
r142 r279 4 4 5 5 uses 6 UCore, USqlDatabase, SysUtils, UMainPage, pwinit, pwmain,6 UCore, USqlDatabase, SysUtils, UMainPage, 7 7 UFinancePage, UNewsPage, UUserPage, UBill; 8 8 … … 12 12 PageName: string; 13 13 begin 14 SetHeader('Content-Type', 'text/html; charset=utf-8');15 PageName := GetCgiVar('p');14 // SetHeader('Content-Type', 'text/html; charset=utf-8'); 15 //PageName := GetCgiVar('p'); 16 16 if PageName = '' then PageName := 'index'; 17 17 I := 0; … … 19 19 if I < Length(Pages) then Output := Pages[I].Producer 20 20 else Output := 'Stránka nenalezena'; 21 WebWriteLn(FormatOutput(Output));21 // WebWriteLn(FormatOutput(Output)); 22 22 end.
Note:
See TracChangeset
for help on using the changeset viewer.