mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 23:48:46 +00:00
make WOSessionCreationError work with WO names
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@26449 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3b0180a3da
commit
f5f8385ad4
3 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-04-15 David Wetzel <dave@turbocat.de>
|
||||
GSWeb.framework/GSWConstants.m
|
||||
GSWExtensions.framework/GSWExtWOCompatibility.h
|
||||
* make WOSessionCreationError work with WO names
|
||||
(maybe we can change the SED script to be 100% compatible?, does that matter?)
|
||||
|
||||
2008-04-09 David Wetzel <dave@turbocat.de>
|
||||
GSWAdaptors/Apache2/mod_gsw.c
|
||||
* small cleanups
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
#ifndef GSWEB_WONAMES
|
||||
#include <GSWeb/GSWeb.h>
|
||||
#else
|
||||
#include <WebObjects/GSWeb.h>
|
||||
#include <WebObjects/WebObjects.h>
|
||||
#endif
|
||||
|
||||
#endif //_GSWExtWOCompatibility_h__
|
||||
|
|
|
@ -272,8 +272,9 @@ NSString* GSASK_Language = @"GSLanguage";
|
|||
//====================================================================
|
||||
// Page names
|
||||
|
||||
NSString* GSWSessionRestorationErrorPageName[2]={ @"GSWSessionRestorationErrorPage", @"WOSessionRestorationErrorPage" };
|
||||
NSString* GSWSessionCreationErrorPageName[2]={ @"GSWSessionCreationErrorPage", @"WOSessionCreationError" };
|
||||
NSString* GSWSessionRestorationErrorPageName[2]={ @"GSWSessionRestorationErrorPage", @"WOSessionRestorationErrorPage" };// WOSessionCreationErrorPage should be WOSessionCreationError but then we would have to hack our sed script in
|
||||
// GSWExtensions -- dw
|
||||
NSString* GSWSessionCreationErrorPageName[2]={ @"GSWSessionCreationErrorPage", @"WOSessionCreationErrorPage" };
|
||||
NSString* GSWExceptionPageName[2]={ @"GSWExceptionPage", @"WOExceptionPage" };
|
||||
NSString* GSWPageRestorationErrorPageName[2]={ @"GSWPageRestorationErrorPage", @"WOPageRestorationErrorPage" };
|
||||
|
||||
|
|
Loading…
Reference in a new issue