mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-30 08:41:24 +00:00
2000-03-20 Manuel Guesdon <mguesdon@sbuilders.com>
* GSWDebug.h: remove unused functions * GSWApplication.h/.m:Added: GSWDebuggingStatus category +isStatusDebuggingEnabled +setStatusDebuggingEnabled: +debugSetConfigFilePath +setDebugSetConfigFilePath: * GSWApplication.h/.m: replaced GSWDebugStdLog by [GSWApp statusDebug...] replaced executeWithClasses: with executeWithClassArray: corrections for different warnings change in GSWApplicationDebugSetChange() to use GSWDebugSetConfigFi lePath option * GSWConfig.h: added GSWOPTVALUE_StatusDebuggingEnabled * GSWConstants.h/.m: added GSWOPT_StatusDebuggingEnabled added GSWOPT_DebugSetConfigFilePath * INSTALL: reflect changes of adaptors,... * GSWUtil.h/.m: corrections for different warnings removed MD5HexDigest() * GSWCheckBoxListm: replaced LOGAssertGood by GSWLogAssertGood * GSWRadioButtonList.m: replaced LOGAssertGood by GSWLogAssertGood * GSWDefaultAdaptorThread.m: replaced GSWLogCStdOut by +statusLogWithFormat : corrections for different warnings * GSWDefaultAdaptor.m: replaced GSWLogCStdOut by +statusLogWithFormat: * GSWSessionTimeOutManager.m: replaced GSWLogCStdOut by +statusLogWithForma t: * GSWKeyValueAssociation.m: replaced LOGAssertGood by GSWLogAssertGood * GSWHTMLStaticElement.m: corrections for different warnings * GSWConstantValueAssociation.m: replaced LOGAssertGood by GSWLogAssertGood * GSWHTMLDynamicElement.m: corrections for different warnings * GSWStatsPage.m: corrections for different warnings * GSWExceptionPage.m: removed GSWLogCStdOut calls * GSWSession.m: replaced GSWLogCStdOut by +statusLogWithFormat: replaced LOGAssertGood by GSWLogAssertGood * GSWAssociation.m: replaced LOGAssertGood by GSWLogAssertGood * GSWComponent.m: replaced LOGAssertGood by GSWLogAssertGood * GSWContext.m: replaced LOGAssertGood by GSWLogAssertGood * GSWRequest.m: replaced LOGAssertGood by GSWLogAssertGood * GSWResponse.m: replaced LOGAssertGood by GSWLogAssertGood * GSWSessionStore.m: replaced LOGAssertGood by GSWLogAssertGood * Adator GSWAppRequest.c: test on instance in GSWAppRequest_SendAppRequestT oApp * Adator GSWLoadBalancing.c: added debug messages * Adaptor GSWHTTPRequest.c: corrected bug in GSWHTTPRequest_SendRequest * Adaptor: GSWAppConnectSocket.c: added debug messages * GSWeb.framework/Makefile.preamble: removed -lNGReflection git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@6345 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f9ecb43b28
commit
ce2a032367
37 changed files with 557 additions and 707 deletions
|
@ -346,6 +346,7 @@ extern NSString* globalApplicationClassName;
|
|||
-(Class)libraryClassWithPath:(NSString*)path_;//NDFN
|
||||
@end
|
||||
|
||||
//====================================================================
|
||||
@interface GSWApplication (GSWDebugging)
|
||||
-(void)debugWithString:(NSString*)_string;
|
||||
-(void)debugWithFormat:(NSString*)_format
|
||||
|
@ -398,6 +399,26 @@ extern NSString* globalApplicationClassName;
|
|||
enabled:(BOOL)_enabled;
|
||||
@end
|
||||
|
||||
//====================================================================
|
||||
//NDFN
|
||||
//Same as GSWDebugging but it print messages on stdout AND call GSWDebugging methods
|
||||
@interface GSWApplication (GSWDebuggingStatus)
|
||||
|
||||
-(void)statusDebugWithString:(NSString*)string_;
|
||||
-(void)statusDebugWithFormat:(NSString*)format_
|
||||
arguments:(va_list)arguments_;
|
||||
-(void)statusDebugWithFormat:(NSString*)format_,...;
|
||||
+(void)statusDebugWithFormat:(NSString*)format_,...;
|
||||
-(void)statusLogWithFormat:(NSString*)format_,...;
|
||||
+(void)statusLogWithFormat:(NSString*)format_,...;
|
||||
-(void)statusLogWithFormat:(NSString*)format_
|
||||
arguments:(va_list)arguments_;
|
||||
-(void)statusLogErrorWithFormat:(NSString*)format_,...;
|
||||
+(void)statusLogErrorWithFormat:(NSString*)format_,...;
|
||||
-(void)statusLogErrorWithFormat:(NSString*)format_
|
||||
arguments:(va_list)arguments_;
|
||||
@end
|
||||
|
||||
//====================================================================
|
||||
@interface GSWApplication (GSWStatisticsSupport)
|
||||
-(void)setStatisticsStore:(GSWStatisticsStore*)statisticsStore_;
|
||||
|
@ -447,6 +468,8 @@ extern NSString* globalApplicationClassName;
|
|||
+(void)setLoadFrameworks:(NSArray*)frameworks_;
|
||||
+(BOOL)isDebuggingEnabled;
|
||||
+(void)setDebuggingEnabled:(BOOL)flag_;
|
||||
+(BOOL)isStatusDebuggingEnabled;//NDFN
|
||||
+(void)setStatusDebuggingEnabled:(BOOL)flag_;//NDFN
|
||||
+(BOOL)autoOpenInBrowser;
|
||||
+(void)setAutoOpenInBrowser:(BOOL)flag_;
|
||||
+(BOOL)isDirectConnectEnabled;
|
||||
|
@ -491,6 +514,8 @@ extern NSString* globalApplicationClassName;
|
|||
+(void)setResourceRequestHandlerKey:(NSString*)key_;
|
||||
+(void)setSessionTimeOut:(id)timeOut_;
|
||||
+(id)sessionTimeOut;
|
||||
+(NSString*)debugSetConfigFilePath;//NDFN
|
||||
+(void)setDebugSetConfigFilePath:(NSString*)debugSetConfigFilePath_;//NDFN
|
||||
@end
|
||||
|
||||
//====================================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue