mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +00:00
* GSWeb.framework/GSWAdaptor.h/.m: o added -isMultiThreadEnabled o method parameters names changes to conform to coding standards * GSWeb.framework/GSWResponse.h: o method parameters names changes to conform to coding standards o added missing method declarations * GSWeb.framework/GSWTemplateParserXML.m: o remove some 'error' messages from xml parser * GSWExtensions.framework/Makefile.preamble: o various changes (debug flags,...) * GSWExtensionsGSW.framework/Makefile.preamble: o various changes (debug flags,...) * GSWeb.framework/Makefile.preamble: o various changes (debug flags,libwrap,...) * GSWeb.framework/GSWDebug.h: o debug flags changes * GSWExtensions.framework/GSWExceptionPage.gswc/GSWExceptionPage.gswd: o change .gif to .mng * GSWExtensions.framework/GSWPageRestorationErrorPage.gswc/GSWPageRestorationErrorPage.gswd: o change .gif to .mng * GSWExtensions.framework/GSWSessionCreationErrorPage.gswc/GSWSessionCreationErrorPage.gswd: o change .gif to .mng * GSWeb.framework/GSWConfig.h: added GSWOPTVALUE_AdaptorHost * GSWeb.framework/GSWConstants.h/.m: added GSWOPT_AdaptorHost * GSWeb.framework/GSWApplication.m: added GSWOPT_AdaptorHost default value * GSWeb.framework/GSWDefaultAdaptor.h/.m: o adding connection refuse feature o added ivar adaptorHost o added host and port in "Waiting for connections" message o ivar names changes to conform to coding standards * GSWeb.framework/GSWDefaultAdaptorThread.m: o adding connection refuse feature o ivar names changes to conform to coding standards * GSWeb.framework/GSWComponent.m: o logs * GSWeb.framework/GSWDeployedBundle.m: o Search WebServer resources in Resources/WebServer/ instead of WebServerResources * GSWeb.framework/GSWProjectBundle.m o bug fix for wonames * GSWExtensions.framework/GSWDictionaryRepetition.h/m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWCollapsibleComponentContent.h/.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWExceptionPage.h/.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWIFrame.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWMetaRefresh.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWPageRestorationErrorPage.h/.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWRedirect.h/.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWSessionRestorationErrorPage.h/.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWSessionCreationErrorPage.h/.m: o ivar names changes to conform to coding standards * GSWExtensions.framework/GSWStatsPage.h/.m: o ivar names changes to conform to coding standards * GSWExtensionsGSW.framework/GSWFileUploadFormComponent.h/.m: o ivar names changes to conform to coding standards * GSWExtensionsGSW.framework/GSWSimpleFormComponent.h/.m: o ivar names changes to conform to coding standards * GSWExtensionsGSW.framework/GSWTabComponent.m: o ivar names changes to conform to coding standards * GSWExtensionsGSW.framework/GSWValidationFailureComponent.h/.m: o ivar names changes to conform to coding standards git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@13029 72102866-910b-0410-8b05-ffd578937521
75 lines
1.3 KiB
Text
75 lines
1.3 KiB
Text
ExclamationImage: GSWImage
|
|
{
|
|
filename = "exclamation.png";
|
|
framework = "GSWExtensions";
|
|
border = 0;
|
|
}
|
|
|
|
VisibleConditional: GSWCollapsibleComponentContent
|
|
{
|
|
condition = application.class.isDebuggingEnabled;
|
|
closedLabel = "An Exception has Occurred";
|
|
openedLabel = "Exception Description";
|
|
}
|
|
|
|
ApplicationNameString: GSWString
|
|
{
|
|
value = application.name;
|
|
escapeHTML = NO;
|
|
}
|
|
|
|
ExceptionNameString: GSWString
|
|
{
|
|
value = exception.name;
|
|
escapeHTML = NO;
|
|
}
|
|
|
|
ReasonRepetition: GSWRepetition
|
|
{
|
|
list = reasons;
|
|
item = tmpReason;
|
|
}
|
|
|
|
ReasonString: GSWString
|
|
{
|
|
value = tmpReason;
|
|
escapeHTML = YES;
|
|
convertHTMLEntities = YES;
|
|
}
|
|
|
|
ReenterHyperlink: GSWHyperlink
|
|
{
|
|
directActionName = "default";
|
|
target = "_top";
|
|
}
|
|
|
|
HasUserInfoConditional: GSWConditional
|
|
{
|
|
condition = exception.userInfo;
|
|
}
|
|
|
|
NoUserInfoConditional: GSWConditional
|
|
{
|
|
condition = exception.userInfo;
|
|
negate = YES;
|
|
}
|
|
|
|
UserInfoRowRepetition: GSWDictionaryRepetition
|
|
{
|
|
dictionary = exception.userInfo;
|
|
key = tmpUserInfoKey;
|
|
item = tmpUserInfoValue;
|
|
}
|
|
|
|
UserInfoKeyString: GSWString
|
|
{
|
|
value = tmpUserInfoKey;
|
|
escapeHTML = NO;
|
|
}
|
|
|
|
UserInfoValueString: GSWString
|
|
{
|
|
value = tmpUserInfoValue;
|
|
escapeHTML = YES;
|
|
convertHTMLEntities = YES;
|
|
}
|