* GSWeb.framework/GSWDefaultAdaptorThread.m

o trace request uri
        * GSWeb.framework/GSWTemplateParserXML.m
                o Changed NSDebugMLog to NSDebugMLLog
                o changes to conform to GSXML modifications
        * GSWeb.framework/GSWTemplateParser.m
                o Changed NSDebugMLog to NSDebugMLLog
        * GSWeb.framework/GSWBundle.m
                o Changed NSDebugMLog to NSDebugMLLog
        * GSWeb.framework/GSWComponent.m
                o Changed NSDebugMLog to NSDebugMLLog
        * GSWeb.framework/GSWElement.m
                o Changed NSDebugMLog to NSDebugMLLog
        * GSWeb.framework/GSWHTMLStaticElement.m
                o Changed NSDebugMLog to NSDebugMLLog
        * GSWeb.framework/GSWAssociations.m
                o fixes in !GDL2 variables names (reported by Piter Punk <piterpk@terra.com.br>)
        * GSWeb.framework/GSWRadioButtonList.m
                o fix _name/name in appendToResponse:inContext:
        * GSWeb.framework/GSWSwitchComponent.m:
                o fix ExceptionRaise call
        * GSWeb.framework/GSWDebug.m/.h:
                o fix ifdef and functions defs
        * GSWeb.framework/GSWSessionTimeOutManager.m/.h:
                o add parentheses around assignment used as truth value
                o ivar names changes to conform to coding standards
        * GSWeb.framework/GSWDeployedBundle.m:
                o cast to avoid compiler warning
        * GSWeb.framework/GSWJavaScript.h/.m:
                o ivar names changes to conform to coding standards
        * GSWeb.framework/GSWEmbeddedObject.h/.m:
                o ivar names changes to conform to coding standards
        * GSWeb.framework/GSWClientSideScript.h/.m:
                o ivar names changes to conform to coding standards
        * GSWeb.framework/GSWApplet.h/.m:
                o ivar names changes to conform to coding standards
        * GSWeb.framework/GSWParam.h/.m:
                o ivar names changes to conform to coding standards


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@14026 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2002-07-04 11:01:56 +00:00
parent 1a474bf60f
commit a58dc81c3d
27 changed files with 826 additions and 714 deletions

View file

@ -144,7 +144,7 @@ static char rcsId[] = "$Id$";
else
{
formattedValue=[formatter stringForObjectValue:valueValue];
NSDebugMLog(@"valueValue=%@ formattedValue=%@",valueValue,formattedValue);
NSDebugMLLog(@"gswdync",@"valueValue=%@ formattedValue=%@",valueValue,formattedValue);
};
if (!WOStrictFlag && _convertHTML)
@ -208,7 +208,7 @@ static char rcsId[] = "$Id$";
LOGObjectFnStartC("GSWString");
if (_dateFormat)
{
NSDebugMLog0(@"DateFormat");
NSDebugMLLog(@"gswdync",@"DateFormat");
formatValue=[_dateFormat valueInComponent:component];
if (formatValue)
formatter=[[[NSDateFormatter alloc]initWithDateFormat:formatValue
@ -216,7 +216,7 @@ static char rcsId[] = "$Id$";
}
else if (_numberFormat)
{
NSDebugMLog0(@"NumberFormat");
NSDebugMLLog(@"gswdync",@"NumberFormat");
formatValue=[_numberFormat valueInComponent:component];
if (formatValue)
{
@ -228,10 +228,10 @@ static char rcsId[] = "$Id$";
}
else
{
NSDebugMLog0(@"Formatter");
NSDebugMLLog(@"gswdync",@"Formatter");
formatter=[_formatter valueInComponent:component];
};
NSDebugMLog(@"formatter=%@",formatter);
NSDebugMLLog(@"gswdync",@"formatter=%@",formatter);
LOGObjectFnStopC("GSWString");
return formatter;
};