Ignore:
Timestamp:
Oct 29, 2010, 10:44:13 PM (14 years ago)
Author:
george
Message:
  • Přidáno: Neodokončená třída TPageList a TQueryString.
  • Přidáno: Částečná podpora pro přihlašování uživatelů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Pages/UMainPage.pas

    r35 r36  
    1919procedure ServerInfo(App: TCustomApplication; HandlerData: THTTPHandlerData);
    2020procedure WebCam(App: TCustomApplication; HandlerData: THTTPHandlerData);
     21procedure UserControl(App: TCustomApplication; HandlerData: THTTPHandlerData);
    2122
    2223implementation
     
    159160        '<br /><div align="center"><img name="theImage" src="" idth="640" height="480" alt="Webcam image"><br>Poslední aktualizace: ' +
    160161          DateTimeToStr(FileDateToDateTime(FileAge(WebCamImage))) + '<br>Obnovování po ' + IntToStr(RefreshInterval) + ' sekundách</div><br />';
    161       end else Text := '<br />Obrázek nenalezen.<br /><br />';
     162      end else Text := Text + '<br />Obrázek nenalezen.<br /><br />';
    162163      Text := Text + '</td></tr></table>';
    163164    end;
     
    316317    'Provozovatel: Ing. Jiří Hajda<br/>' +
    317318    'Adresa: Zděchov 208, 75607<br/>' +
    318     'Telefón: 737785792<br/>' +
     319    'Telefon: 737785792<br/>' +
    319320    'E-mail: <a href="mailto: robie@centrum.cz">robie@centrum.cz</a><br/>' +
     321    'ICQ: <a href="http://www.icq.com/people/277158770">277158770</a><br/>' +
    320322    'IČ: 75904535<br/>' +
    321323    'DIČ: CZ8303255884<br/>' +
     
    324326end;
    325327
     328procedure UserControl(App: TCustomApplication; HandlerData: THTTPHandlerData);
     329var
     330  PageName: string;
     331begin
     332  App.HtmlDocument.Title := 'Uživatel';
     333
     334  if HandlerData.Request.QueryParts.Count > 1 then PageName := HandlerData.Request.QueryParts[1]
     335    else PageName := '';
     336  with App.HtmlDocument.Body, THtmlString(SubItems[SubItems.Add(THtmlString.Create)]) do begin
     337    if PageName = 'prihlaseni' then begin
     338      Text := 'Login';
     339
     340    end else Text := '';
     341  end;
     342end;
     343
     344
    326345procedure ServerInfo(App: TCustomApplication; HandlerData: THTTPHandlerData);
    327346begin
Note: See TracChangeset for help on using the changeset viewer.