* GSWeb.framework/GSWApplication.m (GSWApplicationMain): use NSLog to

print the exception.
* GSWeb.framework/GSWTransactionRecord.m ([GSWTransactionRecord
-initWithCoder:]), ([GSWTransactionRecord -encodeWithCoder:]): NSObject
does not support NSCoding. Fixed.
* GSWeb.framework/GSWPageDefElement.m ([GSWPageDefElement
-initWithCoder:]), ([GSWPageDefElement -encodeWithCoder:]): likewise.
* GSWeb.framework/GSWComponentDefinition.m ([GSWComponentDefinition
-initWithCoder:]), ([GSWComponentDefinition -encodeWithCoder:]):
likewise.
* GSWeb.framework/GSWTemplateParserXML.h|m: fixed libxml includes.

(patches by Sungjin Chun <ninja@linuxone.co.kr>)
* GSWeb.framework/GSWUtils.m: changed implementation of
NSMutableOrderedArray that now inherits from NSMutableArray.
* GSWeb.framework/GSWUtils.h (NSMutableArray): added ivar.
* GSWeb.framework/GSWMultiKeyDictionary.m: fixes.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@8873 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mirko 2001-01-29 18:15:36 +00:00
parent ad51954d54
commit 29f1952c8a
11 changed files with 132 additions and 56 deletions

View file

@ -28,10 +28,10 @@
#include "GSWTemplateParser.h"
#include <Foundation/GSXML.h>
#include <libxml/parser.h>
#include <libxml/parserInternals.h>
#include <libxml/SAX.h>
#include <libxml/HTMLparser.h>
#include <parser.h>
#include <parserInternals.h>
#include <SAX.h>
#include <HTMLparser.h>
@class GSWTemplateParser;