source: Network/CoolWeb/CoolWeb.pas

Last change on this file was 357, checked in by chronos, 12 years ago
  • Modified: WebApp is not TComponent instead of TCustomApplication. TApplication in Forms unit is used as base application class.
  • Added: Experimental HTTPServerTurboPower as HTTPServer type which can be used for web application development without external web browser. If used, form with TurboPowerIPro panel will be displayed. This requeire some LCD widgetset other then nogui.
File size: 1003 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit CoolWeb;
6
7interface
8
9uses
10 UHTTPServer, UHTTPServerCGI, UHTTPServerTCP, UHTTPServerTurboPower,
11 UTurboPowerForm, UHTTPSessionFile, UHTTPSessionMySQL, USqlDatabase,
12 UTCPServer, UPageList, UUser, UHtmlClasses, UMemoryStreamEx, UMIMEType,
13 UXmlClasses, UWebPage, UWebApp, LazIDEReg, LazarusPackageIntf;
14
15implementation
16
17procedure Register;
18begin
19 RegisterUnit('UHTTPServerCGI', @UHTTPServerCGI.Register);
20 RegisterUnit('UHTTPServerTCP', @UHTTPServerTCP.Register);
21 RegisterUnit('UHTTPSessionFile', @UHTTPSessionFile.Register);
22 RegisterUnit('UHTTPSessionMySQL', @UHTTPSessionMySQL.Register);
23 RegisterUnit('USqlDatabase', @USqlDatabase.Register);
24 RegisterUnit('UWebPage', @UWebPage.Register);
25 RegisterUnit('UWebApp', @UWebApp.Register);
26 RegisterUnit('LazIDEReg', @LazIDEReg.Register);
27end;
28
29initialization
30 RegisterPackage('CoolWeb', @Register);
31end.
Note: See TracBrowser for help on using the repository browser.