From 41d1d1e34266ad9913167fe63cdd34552adbd8cc Mon Sep 17 00:00:00 2001 From: Mirko Viviani Date: Sun, 6 Feb 2000 16:35:58 +0000 Subject: [PATCH] 2000-02-05 Mirko Viviani * Doc/GNUstepWeb-HOWTO: updated git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@5948 72102866-910b-0410-8b05-ffd578937521 --- Doc/GNUstepWeb-HOWTO | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/Doc/GNUstepWeb-HOWTO b/Doc/GNUstepWeb-HOWTO index 7cec9f2..5d1cf78 100644 --- a/Doc/GNUstepWeb-HOWTO +++ b/Doc/GNUstepWeb-HOWTO @@ -3,7 +3,7 @@ GNUstepWeb HOWTO GNUstepWeb-HOWTO - Last Update: 22 January 2000 + Last Update: 05 February 2000 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: -1. In main() always create an autorelease pool before invoking - 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. +1. Always create an Application and Session class also if you don't use them. @interface Session:GSWSession { @@ -176,20 +163,19 @@ Known bugs @implementation Application @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 - GSWeb NAME and component name, eg: +4. The HTML parser has some problems with percentage fields, eg: - This does NOT work - This work + This does NOT work +
This work Documentation ============= You can find WebObjects documentation and good tutorials at -http://developer.apple.com/techpubs/enterprise/WebObjects +http://developer.apple.com/techpubs/enterprise/WebObjects/ ----------