2002-03-06 23:13:23 +00:00
|
|
|
/** GSWConfig.h - config
|
|
|
|
Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
2000-01-22 12:49:49 +00:00
|
|
|
|
2002-03-06 23:13:23 +00:00
|
|
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
2000-01-22 12:49:49 +00:00
|
|
|
Date: Jan 1999
|
|
|
|
|
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2002-03-06 23:13:23 +00:00
|
|
|
**/
|
2000-01-22 12:49:49 +00:00
|
|
|
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#ifndef _GSWebConfig_h__
|
|
|
|
#define _GSWebConfig_h__
|
|
|
|
|
|
|
|
#define GSLOCK_DELAY_S 360
|
|
|
|
|
|
|
|
#define GSWEB_STRICT 0
|
|
|
|
#define GSWEB_WONAMES 0
|
|
|
|
|
2002-02-01 15:53:04 +00:00
|
|
|
#define GSWEB_DEFAULT_HTML_PARSER_CLASS_NAME @"GSWTemplateParserXMLHTML"
|
|
|
|
#define GSWOPTVALUE_ApplicationBaseURL_WO @"/WebObjects"
|
|
|
|
#define GSWOPTVALUE_ApplicationBaseURL_GSWEB @"/GSWeb"
|
|
|
|
#define GSWOPTVALUE_AutoOpenInBrowser @"NO"
|
|
|
|
#define GSWOPTVALUE_CGIAdaptorURL_WO @"/cgi/WebObjects"
|
|
|
|
#define GSWOPTVALUE_CGIAdaptorURL_GSWEB @"/cgi/GSWeb"
|
2000-01-22 12:49:49 +00:00
|
|
|
//or @"http://host.com/cgi/GSWeb"
|
2002-02-01 15:53:04 +00:00
|
|
|
#define GSWOPTVALUE_CachingEnabled @"YES"
|
|
|
|
#define GSWOPTVALUE_DebuggingEnabled @"YES"
|
|
|
|
#define GSWOPTVALUE_StatusDebuggingEnabled @"YES"
|
|
|
|
#define GSWOPTVALUE_DirectConnectEnabled @"YES"
|
|
|
|
#define GSWOPTVALUE_FrameworksBaseURL @"/GSW/Frameworks"
|
2000-01-22 12:49:49 +00:00
|
|
|
#define GSWOPTVALUE_IncludeCommentsInResponse @"YES"
|
2002-02-01 15:53:04 +00:00
|
|
|
#define GSWOPTVALUE_ListenQueueSize @"16"
|
|
|
|
#define GSWOPTVALUE_MonitorEnabled @"NO"
|
|
|
|
#define GSWOPTVALUE_MonitorHost @"localhost"
|
|
|
|
#define GSWOPTVALUE_Port @"9001"
|
|
|
|
#define GSWOPTVALUE_SMTPHost @"smtp"
|
|
|
|
#define GSWOPTVALUE_SessionTimeOut @"3600"
|
|
|
|
#define GSWOPTVALUE_WorkerThreadCount @"8"
|
|
|
|
#define GSWOPTVALUE_MultiThreadEnabled @"YES"
|
2002-03-06 23:13:23 +00:00
|
|
|
#define GSWOPTVALUE_AdaptorHost @""
|
2002-05-14 11:28:50 +00:00
|
|
|
#define GSWOPTVALUE_SaveResponsesPath nil
|
2000-01-22 12:49:49 +00:00
|
|
|
|
|
|
|
#endif // _GSWebConfig_h__
|