* config.h.in

changed RCS_ID to avoid warnings

* GSWeb.framework/WebObjects/WebObjects.h
* GSWeb.framework/WebObjects/WebObjects.h
  check if GSWEB_WONAMES was defined before

* GSWeb.framework/GSWResponse.m
  fix typo

* GSWeb.framework/GSWDeclarationParser.m
  remove non-existing header file



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30570 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Dave Wetzel 2010-06-04 06:50:12 +00:00
parent a31cede1f7
commit 0e6ded4a5b
5 changed files with 18 additions and 7 deletions

View file

@ -1,3 +1,14 @@
2010-05-03 David Wetzel <dave@turbocat.de>
* config.h.in
changed RCS_ID to avoid warnings
* GSWeb.framework/WebObjects/WebObjects.h
* GSWeb.framework/WebObjects/WebObjects.h
check if GSWEB_WONAMES was defined before
* GSWeb.framework/GSWResponse.m
fix typo
* GSWeb.framework/GSWDeclarationParser.m
remove non-existing header file
2010-04-24 David Ayers <ayers@fsfe.org>
* GSWeb.framework/GSWMultiKeyDictionary.h/m:

View file

@ -38,7 +38,6 @@ RCS_ID("$Id$")
#include "GSWDeclarationParser.h"
#include <GNUstepBase/Unicode.h>
#include <GNUstepBase/GSCategories.h>
static inline BOOL _parserIsIdentifierChar(unichar c)
{

View file

@ -274,7 +274,7 @@ void GSWResponse_appendTagAttributeValueEscapingHTMLAttributeValue(GSWResponse*
NSString* contentType=[self headerForKey:@"content-type"];
NSString* gzHeader=[self headerForKey:@"gzip"];
if ([contentType isEqualTo:@"text/html"])
if ([contentType isEqual:@"text/html"])
{
NSString* contentEncoding=[self headerForKey:@"content-encoding"];
// we could do better by handling compress,...

View file

@ -33,7 +33,8 @@
#ifndef _WebObjects_h__
#define _WebObjects_h__
#define GSWEB_WONAMES
#include "GSWeb.h"
#ifndef GSWEB_WONAMES
#define GSWEB_WONAMES
#endif
#include "GSWeb.h"
#endif

View file

@ -31,7 +31,7 @@
#undef HAVE_GDL2
#define RCS_ID(name) \
static const char rcsId[] = name; \
static const char *__rcsId_hack() {__rcsId_hack(); return rcsId;}
static const char RCSID[] = name; \
static inline const char *getGswRCSID() { if (0) getGswRCSID(); return RCSID;}
#endif