mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-22 23:11:15 +00:00
* 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:
parent
ed10fe1ac7
commit
797b43d9ad
5 changed files with 18 additions and 7 deletions
11
ChangeLog
11
ChangeLog
|
@ -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:
|
||||
|
|
|
@ -38,7 +38,6 @@ RCS_ID("$Id$")
|
|||
|
||||
#include "GSWDeclarationParser.h"
|
||||
#include <GNUstepBase/Unicode.h>
|
||||
#include <GNUstepBase/GSCategories.h>
|
||||
|
||||
static inline BOOL _parserIsIdentifierChar(unichar c)
|
||||
{
|
||||
|
|
|
@ -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,...
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue