mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-30 00:31:34 +00:00
* GSWeb.framework/GSWConstants.h/.m:
o added GSWOPT_DisplayExceptionPages o renamed GSWComponentDefinition* into GSWComponentDeclarations* o added GSWOPTValue_DefaultTemplateParser_RawHTML git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18896 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d7727ae400
commit
29961465cf
2 changed files with 12 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
/** GSWConstants.h - <title>constants</title>
|
||||
|
||||
Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
Date: Jan 1999
|
||||
|
@ -64,8 +64,8 @@ extern NSString* GSWPingActionRequestHandlerKey[2];
|
|||
extern NSString* GSWStaticResourceRequestHandlerKey[2];
|
||||
extern NSString* GSWComponentTemplateSuffix;
|
||||
extern NSString* GSWComponentTemplatePSuffix;
|
||||
extern NSString* GSWComponentDefinitionSuffix[2];
|
||||
extern NSString* GSWComponentDefinitionPSuffix[2];
|
||||
extern NSString* GSWComponentDeclarationsSuffix[2];
|
||||
extern NSString* GSWComponentDeclarationsPSuffix[2];
|
||||
extern NSString* GSWLibrarySuffix[2];
|
||||
extern NSString* GSWLibraryPSuffix[2];
|
||||
extern NSString* GSWArchiveSuffix[2];
|
||||
|
@ -231,6 +231,8 @@ extern NSString* GSWOPT_SessionStoreClassName[2];
|
|||
extern NSString* GSWOPT_ResourceManagerClassName[2];
|
||||
extern NSString* GSWOPT_StatisticsStoreClassName[2];
|
||||
extern NSString* GSWOPT_RecordingClassName[2];
|
||||
extern NSString* GSWOPT_DisplayExceptionPages[2];
|
||||
|
||||
|
||||
//====================================================================
|
||||
// Option Values
|
||||
|
@ -239,6 +241,7 @@ extern NSString* GSWOPTValue_DefaultTemplateParser_XMLHTML;
|
|||
extern NSString* GSWOPTValue_DefaultTemplateParser_XMLHTMLNoOmittedTags;
|
||||
extern NSString* GSWOPTValue_DefaultTemplateParser_XML;
|
||||
extern NSString* GSWOPTValue_DefaultTemplateParser_ANTLR;
|
||||
extern NSString* GSWOPTValue_DefaultTemplateParser_RawHTML;
|
||||
extern NSString* GSWOPTValue_ComponentRequestHandlerKey[2];
|
||||
extern NSString* GSWOPTValue_ResourceRequestHandlerKey[2];
|
||||
extern NSString* GSWOPTValue_DirectActionRequestHandlerKey[2];
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/** GSWConstants.m - <title>constants</title>
|
||||
|
||||
Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
Date: Jan 1999
|
||||
|
@ -60,8 +60,8 @@ NSString* GSWResourceRequestHandlerKey[2]={ @"rr", @"wr" };
|
|||
NSString* GSWComponentRequestHandlerKey[2]={ @"cr", @"wo" };
|
||||
NSString* GSWDirectActionRequestHandlerKey[2]={ @"dr", @"wa" };
|
||||
NSString* GSWPingActionRequestHandlerKey[2]={ @"lb", @"wlb" };
|
||||
NSString* GSWComponentDefinitionSuffix[2]={ @"gswd", @"wod" };
|
||||
NSString* GSWComponentDefinitionPSuffix[2]={ @".gswd", @".wod" };
|
||||
NSString* GSWComponentDeclarationsSuffix[2]={ @"gswd", @"wod" };
|
||||
NSString* GSWComponentDeclarationsPSuffix[2]={ @".gswd", @".wod" };
|
||||
NSString* GSWArchiveSuffix[2]={ @"gswi", @"woo" };
|
||||
NSString* GSWArchivePSuffix[2]={ @".gswi", @".woo" };
|
||||
NSString* GSWURLPrefix[2]={ @"GSWeb", @"WebObjects" };
|
||||
|
@ -230,6 +230,8 @@ NSString* GSWOPT_SessionStoreClassName[2]= { @"GSWSessionStoreClassName", @"WOSe
|
|||
NSString* GSWOPT_ResourceManagerClassName[2]= { @"GSWResourceManagerClassName", @"WOResourceManagerClassName" };
|
||||
NSString* GSWOPT_StatisticsStoreClassName[2]= { @"GSWStatisticsStoreClassName", @"WOStatisticsStoreClassName" };
|
||||
NSString* GSWOPT_RecordingClassName[2]= { @"GSWRecordingClassName", @"WORecordingClassName" };
|
||||
NSString* GSWOPT_DisplayExceptionPages[2]= { @"GSWDisplayExceptionPages", @"WODisplayExceptionPages" };
|
||||
|
||||
|
||||
//====================================================================
|
||||
// Option Values
|
||||
|
@ -238,6 +240,7 @@ NSString* GSWOPTValue_DefaultTemplateParser_XMLHTML = @"XMLHTML";
|
|||
NSString* GSWOPTValue_DefaultTemplateParser_XMLHTMLNoOmittedTags = @"XMLHTMLNoOmittedTags";
|
||||
NSString* GSWOPTValue_DefaultTemplateParser_XML = @"XML";
|
||||
NSString* GSWOPTValue_DefaultTemplateParser_ANTLR = @"ANTLR";
|
||||
NSString* GSWOPTValue_DefaultTemplateParser_RawHTML = @"RawHTML";
|
||||
NSString* GSWOPTValue_ComponentRequestHandlerKey[2]={ @"cr", @"wo" };
|
||||
NSString* GSWOPTValue_ResourceRequestHandlerKey[2]={ @"rr", @"wr" };
|
||||
NSString* GSWOPTValue_DirectActionRequestHandlerKey[2]={ @"dr", @"wa" };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue