From 0c4677e23a4d3191bab36ec1af2a0da3f0f44e5f Mon Sep 17 00:00:00 2001 From: David Ayers Date: Wed, 3 Nov 2004 09:25:59 +0000 Subject: [PATCH] * Doc/GNUmakefile: New file. * Doc/gsweb.gsdoc: Update DTD reference. Minor reformatting. Add references to subprojects. Add myself as coauthor. * GSWeb.framework/GNUmakefile: Remove duplicate definition of GSWeb_AGSDOC_FLAGS. * GSWeb.framework/GSWDebug.h (LOGDEEPClassFnStart) (LOGDEEPError0, LOGLOCKException0): Insert missing backslash. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20284 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 11 +++++++ Doc/GNUmakefile | 57 +++++++++++++++++++++++++++++++++++++ Doc/gsweb.gsdoc | 27 +++++++++++------- GSWeb.framework/GNUmakefile | 2 -- GSWeb.framework/GSWDebug.h | 6 ++-- 5 files changed, 87 insertions(+), 16 deletions(-) create mode 100644 Doc/GNUmakefile diff --git a/ChangeLog b/ChangeLog index 706ff37..20e5f5a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2004-11-03 David Ayers + + * Doc/GNUmakefile: New file. + * Doc/gsweb.gsdoc: Update DTD reference. Minor reformatting. + Add references to subprojects. Add myself as coauthor. + * GSWeb.framework/GNUmakefile: Remove duplicate definition of + GSWeb_AGSDOC_FLAGS. + + * GSWeb.framework/GSWDebug.h (LOGDEEPClassFnStart) + (LOGDEEPError0, LOGLOCKException0): Insert missing backslash. + 2004-09-02 David Ayers * GSWeb.framework/GSWApplication+Defaults.m diff --git a/Doc/GNUmakefile b/Doc/GNUmakefile new file mode 100644 index 0000000..0dee07c --- /dev/null +++ b/Doc/GNUmakefile @@ -0,0 +1,57 @@ +# GNUmakefile - GSWeb documentation: GNUmakefile +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# +# Written by: David Ayers - + GNUstepWeb Documentation @@ -8,26 +8,31 @@ + + + + + 0.1 24 august, 2000 This documents GNUstepWeb 2000 Free Software Foundation, Inc. - - - - Introduction -

GNUstepWeb is a library which was designed to be compatible with WebObjects 4.x, developed by NeXT (now Apple) Inc.

-

GNUstepWeb web site is here

-

GNUstepWeb is based on GNUstep. GNUstep web site is here

-
+ + Introduction +

GNUstepWeb is a library which was designed to be compatible with WebObjects 4.x, developed by NeXT (now Apple) Inc.

+

GNUstepWeb web site is here

+

GNUstepWeb is based on GNUstep. GNUstep web site is here

+
- ... -

+ Subprojects +

GSWeb

+

GSWExtentions

+

GSExtensionsGSW

diff --git a/GSWeb.framework/GNUmakefile b/GSWeb.framework/GNUmakefile index 1adfeae..5baaeab 100644 --- a/GSWeb.framework/GNUmakefile +++ b/GSWeb.framework/GNUmakefile @@ -378,8 +378,6 @@ GSWeb_AGSDOC_FLAGS = \ GS_ZONE_SCOPE=extern;GS_ZONE_ATTR="";\ }' -Up gsweb -GSWeb_AGSDOC_FLAGS = $(GSWeb_AGSDOC_FLAGS) - -include Makefile.preamble -include GNUmakefile.local diff --git a/GSWeb.framework/GSWDebug.h b/GSWeb.framework/GSWDebug.h index 2709108..f70153d 100644 --- a/GSWeb.framework/GSWDebug.h +++ b/GSWeb.framework/GSWDebug.h @@ -321,7 +321,7 @@ GSWLogAssertGoodFn(CONST char* file,int line,id object); #if defined(DEBUG) && defined(GSWDEBUG_DEEP) #define LOGDEEPClassFnStart() \ do { if (GSDebugSet(@"GSWebFn") == YES) { \ - NSString *fmt = GSDebugFunctionMsg(__PRETTY_FUNCTION__, + NSString *fmt = GSDebugFunctionMsg(__PRETTY_FUNCTION__, \ __FILE__, __LINE__, @"FNSTART"); \ NSLog(fmt); }} while (0) @@ -473,7 +473,7 @@ GSWLogAssertGoodFn(CONST char* file,int line,id object); #define LOGDEEPError0(format) \ do { if (GSDebugSet(@"error") == YES) { \ - NSString *fmt = GSDebugFunctionMsg(__PRETTY_FUNCTION__, + NSString *fmt = GSDebugFunctionMsg(__PRETTY_FUNCTION__, \ __FILE__, __LINE__, format); \ NSString *fmt2 = [NSString stringWithFormat:@"*ERROR*: %@",fmt]; \ NSLog(@"%@",fmt2); }} while (0) @@ -703,7 +703,7 @@ GSWLogAssertGoodFn(CONST char* file,int line,id object); #define LOGLOCKException0(format) \ do { if (GSDebugSet(@"exception") == YES) { \ - NSString *fmt = GSDebugFunctionMsg(__PRETTY_FUNCTION__, + NSString *fmt = GSDebugFunctionMsg(__PRETTY_FUNCTION__, \ __FILE__, __LINE__, format); \ NSString *fmt2 = [NSString stringWithFormat:@"*EXCEPTION*: %@",fmt]; \ NSLog(@"%@",fmt2); }} while (0)