mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
2000-02-05 Mirko Viviani <mirko.viviani@rccr.cremona.it>
* Doc/GNUstepWeb-HOWTO: updated git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@5948 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
63f6ccace3
commit
17a08632bb
1 changed files with 7 additions and 21 deletions
|
@ -3,7 +3,7 @@ GNUstepWeb HOWTO
|
||||||
|
|
||||||
GNUstepWeb-HOWTO
|
GNUstepWeb-HOWTO
|
||||||
|
|
||||||
Last Update: 22 January 2000
|
Last Update: 05 February 2000
|
||||||
|
|
||||||
This document explains how to build and manage GNUstepWeb applications.
|
This document explains how to build and manage GNUstepWeb applications.
|
||||||
|
|
||||||
|
@ -143,20 +143,7 @@ Known bugs
|
||||||
|
|
||||||
In order to make your application working you can follow these guidelines:
|
In order to make your application working you can follow these guidelines:
|
||||||
|
|
||||||
1. In main() always create an autorelease pool before invoking
|
1. Always create an Application and Session class also if you don't use them.
|
||||||
GSWApplicationMain(), eg:
|
|
||||||
|
|
||||||
int main(int argc, const char *argv[])
|
|
||||||
{
|
|
||||||
int ret = 0;
|
|
||||||
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
||||||
|
|
||||||
ret = GSWApplicationMain(@"Application", argc, argv);
|
|
||||||
[arp release];
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
2. Always create an Application and Session class also if you don't use them.
|
|
||||||
|
|
||||||
@interface Session:GSWSession
|
@interface Session:GSWSession
|
||||||
{
|
{
|
||||||
|
@ -176,20 +163,19 @@ Known bugs
|
||||||
@implementation Application
|
@implementation Application
|
||||||
@end
|
@end
|
||||||
|
|
||||||
3. Start your application with -GSWHost hostname else it will crash.
|
2. Start your application with -GSWHost hostname else it will crash.
|
||||||
|
|
||||||
4. In your component definition file (gswd or wod) don't use spaces between
|
4. The HTML parser has some problems with percentage fields, eg:
|
||||||
GSWeb NAME and component name, eg:
|
|
||||||
|
|
||||||
<GSWEB NAME = "NAME_FIELD"></GSWEB> This does NOT work
|
<TABLE WIDTH=100% BORDER="0"> This does NOT work
|
||||||
<GSWEB NAME="NAME_FIELD"></GSWEB> This work
|
<TABLE WIDTH="100%" BORDER="0"> This work
|
||||||
|
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
=============
|
=============
|
||||||
|
|
||||||
You can find WebObjects documentation and good tutorials at
|
You can find WebObjects documentation and good tutorials at
|
||||||
http://developer.apple.com/techpubs/enterprise/WebObjects
|
http://developer.apple.com/techpubs/enterprise/WebObjects/
|
||||||
|
|
||||||
|
|
||||||
----------
|
----------
|
||||||
|
|
Loading…
Reference in a new issue