From macosx@opengroupware.org Sat Apr 1 06:14:07 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sat, 1 Apr 2006 07:14:07 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> Message-ID: <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> On 31. Mrz 2006, at 21:14 Uhr, Philippe Laval wrote: > Yesterday, I have read a lot of code about SOPE XML-RPC > implementation and also about how oGo uses of this part of the > framework. Actually there are two implementations. An old one which is somewhat based on WODirectAction and a new one which is based on SOPE-as-in- ZOPE, aka SoObjectRequestHandler. The ogo-xmlrpcd uses the first/old one and I'm not so fond of the implementation (rather hackish code). I think the new one is quite nice but AFAIK not really used currently (not sure whether ZNeK does some stuff with it). An example can be found in OGo in ZideStore/Protocols/Blogger which implements some BloggerAPI for OGo. Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sat Apr 1 12:01:55 2006 From: macosx@opengroupware.org (Marcus Mueller) Date: Sat, 01 Apr 2006 13:01:55 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> Message-ID: <442E5DA3.6090708@mulle-kybernetik.com> Helge Hess schrieb: > I think the new one is quite nice but AFAIK not really used currently > (not sure whether ZNeK does some stuff with it). An example can be found The new implementation is really nice ... it's very close to the WebObjects idea of doing things (it's using DirectActions and standard accessor methods for mapping the positional arguments in an XML-RPC call to the parameters probably used in the direct action ... very nifty indeed). However, the setup in the product.plist currently has one glitch ... you have to use the RequestHandler as the object for adding categories (XML-RPC methods) to - not the Application object. I think that this is a bug ... however I never understood this particular semantic in the product.plist at all, so I don't really care. Helge can probably elaborate on this (what he intended to do with it). Cheers, Marcus From macosx@opengroupware.org Sat Apr 1 14:58:03 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sat, 1 Apr 2006 15:58:03 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: <442E5DA3.6090708@mulle-kybernetik.com> References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> <442E5DA3.6090708@mulle-kybernetik.com> Message-ID: <4D838CDE-BD4A-4E62-82BC-A8AE3617028C@opengroupware.org> On 1. Apr 2006, at 13:01 Uhr, Marcus Mueller wrote: > The new implementation is really nice ... it's very close to the > WebObjects idea of doing things (it's using DirectActions and > standard accessor methods for mapping the positional arguments in > an XML-RPC call to the parameters probably used in the direct > action ... very nifty indeed). However, the setup in the > product.plist currently has one glitch ... you have to use the > RequestHandler as the object for adding categories (XML-RPC > methods) to - not the Application object. I'm pretty sure this isn't the case. You need to define the methods on the SoObject you address in your XML-RPC calls. If you have /myapp/so/Calendar you need to define your methods on the "Calendar" object. If you need to define the methods on your request handler, you probably use a URL like URL: /myapp/[something] which I think returns a WORequestHandler in the path lookup. Notably another option supported by SOPE (this is also how its done in Zope) is to use the XML-RPC package name for path processing. Say you want to invoke calendar.events.addEvent() you can either directly map the "calendar.events.addEvent" method in product.plist OR you just map the "addEvent" method and use an object hierarchy like: /myapp/so/calendar/events to define the XML-RPC call. SOPE will automatically revert to namespace processing if it can't find fully qualified method on the target object. (see SoObjectXmlRpcDispatcher.m) Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 15:53:57 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 16:53:57 +0200 Subject: [OGo-MacOSX] Bugs found in BasicAuthSession example Message-ID: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> --Apple-Mail-1-326196687 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed On my computer I have set the Apache server to serve BasicAuthSession web application at port 24000 There was two bugs : <===== Bug : selector indexOfString is NOT defined ! (not using libFoundation on Mac OS X) <===== Bug : ClickCount does NOT display itself ! (variable not initialized) To who should I send the big fix ? Philippe ==================== http://localhost/BasicAuthSession/ $ cd /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession $ ./build/Development/BasicAuthSession.app/Contents/MacOS/ BasicAuthSession -WOPort 24000 2006-04-02 15:31:16.501 BasicAuthSession[1165] Unknown class 'MLHierarchyView' in nib file, using `NSControl' instead. 2006-04-02 15:31:16.504 BasicAuthSession[1165] Unknown class 'MLHierarchyView' in nib file, using `NSControl' instead. 2006-04-02 15:31:16.553 BasicAuthSession[1165] Note: WOApplication debugging is enabled. localhost - - [02/Apr/2006:15:31:16 GMT] "GET /BasicAuthSession HTTP/ 1.1" 401 0 0.016 - - - 127.0.0.1 - - [02/Apr/2006:15:31:24 GMT] "GET /BasicAuthSession/ HTTP/ 1.1" 401 0 0.006 - - - 2006-04-02 15:31:33.499 BasicAuthSession[1165] *** -[NSCFString indexOfString:]: selector not recognized [self = 0x5234480] <===== Bug : selector indexOfString is NOT defined ! Modified to add the code from libFoundation. - (unsigned int)indexOfString:(NSString *)substring - (unsigned int)indexOfString:(NSString*)substring fromIndex: (unsigned)index - (unsigned int)indexOfString:(NSString*)substring range:(NSRange)range http://localhost/BasicAuthSession/ http://localhost/BasicAuthSession.sopex/wo/PhilippeXXXXXXXXXX/ 00e442fd6b30285fe00.5 SessionID: PhilippeXXXXXXXXXX ClickCount: click <===== Bug : ClickCount does NOT display itself ! This could have solved the problem but it does not work (I don't know how to set the break points for objC methods) $ gdb ./build/Development/BasicAuthSession.app/Contents/MacOS/ BasicAuthSession (gdb) set args -WOPort 24000 - (id)initWithContext:(WOContext *)_ctx { if ((self = [super initWithContext:_ctx])) { // It could be interresting to initialize variables ;-) clickCount = 0; } return self; } $ cd /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession $ ./build/Development/BasicAuthSession.app/Contents/MacOS/ BasicAuthSession -WOPort 24000 As you will see the SOPEX application can not handle the authentication 16:11:57 |BasicAuthSession| WOHttpAdaptor listening on address *:24000 16:11:57 [ERROR] |BasicAuthSession| could not restore session for context <0x02864400[WOContext]: 001442fdbad02864400 app=BasicAuthSession sn=none eid=(null) rqeid=(null)> So I Changed to include only the session specific code when the flag WITHOUT_SOPEX is defined. This will also change the application from SOPEXMain to WOApplicationMain (see BasicAuthSession_main.m). Can change the Other C Flags to : -DNeXT_RUNTIME=1 -DAPPLE_RUNTIME=1 -DNeXT_Foundation_LIBRARY=1 - DCOCOA_Foundation_LIBRARY=1 -DWITHOUT_SOPEX Compile with DWITHOUT_SOPEX enabled $ cd /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession $ ./build/Development_WITHOUT_SOPEX/BasicAuthSession.app/Contents/ MacOS/BasicAuthSession -WOPort 24000 2006-04-02 16:31:49.112 BasicAuthSession[1850] Note: WOApplication debugging is enabled. If you now launch Safari at http://localhost/BasicAuthSession/ SessionID: PhilippeXXXXXXXXXX ClickCount: 0 click Click sometimes the "click" link, the ClickCount increments SessionID: PhilippeXXXXXXXXXX ClickCount: 1 click Compile without DWITHOUT_SOPEX enabled $ cd /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession $ ./build/Development/BasicAuthSession.app/Contents/MacOS/ BasicAuthSession -WOPort 24000 2006-04-02 16:32:58.458 BasicAuthSession[1851] Unknown class 'MLHierarchyView' in nib file, using `NSControl' instead. 2006-04-02 16:32:58.458 BasicAuthSession[1851] Unknown class 'MLHierarchyView' in nib file, using `NSControl' instead. 2006-04-02 16:32:58.502 BasicAuthSession[1851] Note: WOApplication debugging is enabled. localhost - - [02/Apr/2006:16:32:58 GMT] "GET /BasicAuthSession HTTP/ 1.1" 200 252 0.027 - - - localhost - - [02/Apr/2006:16:33:03 GMT] "GET /BasicAuthSession.sopex/ wo/073B073B01442FE09A/001442fe09a02851400.5 HTTP/1.1" 200 206 0.004 - - - localhost - - [02/Apr/2006:16:33:03 GMT] "GET /BasicAuthSession.sopex/ wo/073B073B01442FE09A/002442fe09f02864600.5 HTTP/1.1" 200 206 0.003 - - - --Apple-Mail-1-326196687 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
On my computer I have set = the Apache server to serve BasicAuthSession web application=A0at = port=A024000

There was two bugs = :
<=3D=3D=3D=3D=3D Bug : selector indexOfString is NOT = defined ! (not using=A0libFoundation on Mac OS X)
<=3D=3D=3D=3D= =3D Bug : ClickCount does NOT display itself ! (variable not = initialized)


To who should I send the = big fix ?

Philippe


=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D


http://localhost/BasicAuthSess= ion/

$ cd = /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession
$ = ./build/Development/BasicAuthSession.app/Contents/MacOS/BasicAuthSession = -WOPort 24000
2006-04-02 15:31:16.501 BasicAuthSession[1165] = Unknown class 'MLHierarchyView' in nib file, using `NSControl' = instead.
2006-04-02 15:31:16.504 BasicAuthSession[1165] = Unknown class 'MLHierarchyView' in nib file, using `NSControl' = instead.
2006-04-02 15:31:16.553 BasicAuthSession[1165] Note: = WOApplication debugging is enabled.
localhost - - = [02/Apr/2006:15:31:16 GMT] "GET /BasicAuthSession HTTP/1.1" 401 0 0.016 = - - -
127.0.0.1 - - [02/Apr/2006:15:31:24 GMT] "GET = /BasicAuthSession/ HTTP/1.1" 401 0 0.006 - - -
2006-04-02 = 15:31:33.499 BasicAuthSession[1165] *** -[NSCFString indexOfString:]: = selector not recognized [self =3D 0x5234480]

<=3D=3D=3D=3D=3D Bug : = selector indexOfString is NOT defined !

Modified to add the code = from libFoundation.
- (unsigned int)indexOfString:(NSString = *)substring
- (unsigned int)indexOfString:(NSString*)substring = fromIndex:(unsigned)index
- (unsigned = int)indexOfString:(NSString*)substring = range:(NSRange)range


http://localhost/BasicAuthSess= ion/
http://localhost/BasicAuthSession.sopex/wo/PhilippeXXXX= XXXXXX/00e442fd6b30285fe00.5


SessionID: = PhilippeXXXXXXXXXX
ClickCount:
click


<=3D=3D=3D=3D=3D Bug : = ClickCount does NOT display itself !



This could have solved the = problem but it does not work (I don't know how to set=A0 the break = points for objC methods)

$ gdb = ./build/Development/BasicAuthSession.app/Contents/MacOS/BasicAuthSession
(gdb) set args -WOPort 24000


- = (id)initWithContext:(WOContext *)_ctx {
if = ((self =3D = [super = initWithContext:_ctx])) {
// It could be interresting to initialize variables = ;-)
clickCount =3D 0;
}
return self;
}



$ cd = /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession
$ = ./build/Development/BasicAuthSession.app/Contents/MacOS/BasicAuthSession = -WOPort 24000

As you will see the SOPEX = application can not handle the authentication
16:11:57 = |BasicAuthSession| WOHttpAdaptor listening on address = *:24000
16:11:57 [ERROR] |BasicAuthSession| could not restore = session for context <0x02864400[WOContext]: 001442fdbad02864400 = app=3DBasicAuthSession sn=3Dnone eid=3D(null) = rqeid=3D(null)>

So I Changed to include = only the session specific code when the flag WITHOUT_SOPEX is = defined.
This will also change the application from SOPEXMain = to WOApplicationMain (see BasicAuthSession_main.m).

Can change the Other C = Flags to :
-DNeXT_RUNTIME=3D1 -DAPPLE_RUNTIME=3D1 = -DNeXT_Foundation_LIBRARY=3D1 -DCOCOA_Foundation_LIBRARY=3D1 = -DWITHOUT_SOPEX


Compile with DWITHOUT_SOPEX = enabled

$ cd = /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession
$ = ./build/Development_WITHOUT_SOPEX/BasicAuthSession.app/Contents/MacOS/Basi= cAuthSession -WOPort 24000
2006-04-02 16:31:49.112 = BasicAuthSession[1850] Note: WOApplication debugging is = enabled.

If = you now launch Safari at http://localhost/BasicAuthSess= ion/

SessionID: = PhilippeXXXXXXXXXX
ClickCount: 0
click

Click sometimes the "click" = link, the ClickCount increments

SessionID: = PhilippeXXXXXXXXXX
ClickCount: 1
click


Compile without = DWITHOUT_SOPEX enabled

$ cd = /Users/philippe/SOPE-4.5/sopex/Samples/BasicAuthSession
$ = ./build/Development/BasicAuthSession.app/Contents/MacOS/BasicAuthSession = -WOPort 24000
2006-04-02 16:32:58.458 BasicAuthSession[1851] = Unknown class 'MLHierarchyView' in nib file, using `NSControl' = instead.
2006-04-02 16:32:58.458 BasicAuthSession[1851] = Unknown class 'MLHierarchyView' in nib file, using `NSControl' = instead.
2006-04-02 16:32:58.502 BasicAuthSession[1851] Note: = WOApplication debugging is enabled.
localhost - - = [02/Apr/2006:16:32:58 GMT] "GET /BasicAuthSession HTTP/1.1" 200 252 = 0.027 - - -
localhost - - [02/Apr/2006:16:33:03 GMT] "GET = /BasicAuthSession.sopex/wo/073B073B01442FE09A/001442fe09a02851400.5 = HTTP/1.1" 200 206 0.004 - - -
localhost - - = [02/Apr/2006:16:33:03 GMT] "GET = /BasicAuthSession.sopex/wo/073B073B01442FE09A/002442fe09f02864600.5 = HTTP/1.1" 200 206 0.003 - - -
= --Apple-Mail-1-326196687-- From macosx@opengroupware.org Sun Apr 2 15:56:26 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 16:56:26 +0200 Subject: [OGo-MacOSX] TestSite example Message-ID: --Apple-Mail-2-326345354 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed How should I setup Apache for the TestSite example ? Philippe --Apple-Mail-2-326345354 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1 How should I setup Apache for = the=A0TestSite = example ?

Philippe
= --Apple-Mail-2-326345354-- From macosx@opengroupware.org Sun Apr 2 16:15:32 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 17:15:32 +0200 Subject: [OGo-MacOSX] problem with meerkat_xml_channels.m Message-ID: <90034B69-B50D-40BA-A2AC-1F0D87AE9D34@free.fr> --Apple-Mail-3-327492171 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed I have setup a SopeX example using meerkat_xml_channels.m When runned I got this : 2006-04-02 17:12:51.947 xmlrpc[2113] -[NGInternetSocketAddress _fillHost]: host not found .. 2006-04-02 17:12:51.948 xmlrpc[2113] could not get DNS name of address 10.0.1.2 in domain : 1 2006-04-02 17:12:51.950 xmlrpc[2113] result: call failed with HTTP status code 301 10.0.1.2 is my IP address (given by my NAT router). --Apple-Mail-3-327492171 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
I have setup a SopeX = example using=A0meerkat_xml_channels.m

When runned I got this = :

2006-04-02 17:12:51.947 = xmlrpc[2113] -[NGInternetSocketAddress _fillHost]: host not found = ..
2006-04-02 17:12:51.948 xmlrpc[2113] could not get DNS name = of address 10.0.1.2 in domain <InternetDomain[0x0031D9C0]>: = 1
2006-04-02 17:12:51.950 xmlrpc[2113] result: call failed = with HTTP status code 301

10.0.1.2 is my IP address = (given by my NAT router).

= --Apple-Mail-3-327492171-- From macosx@opengroupware.org Sun Apr 2 16:32:03 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 17:32:03 +0200 Subject: [OGo-MacOSX] TestPrototype example problem... Message-ID: When I try to use the TestPrototype example, I got this display: [missing component: Prototype] Test WEPrototype I don't have the time, but [missing component: TimeLink] and I will look it up. So were are these components defined ? I the Main.wod, i can see these things: WEPrototypeScript and WELiveLink Prototype: WEPrototypeScript {} TimeLink: WELiveLink { updateID = "time_div"; position = "top"; actionClass = "Main"; directActionName = "sayWhen"; confirmText = "Really update time?"; } From macosx@opengroupware.org Sun Apr 2 16:33:09 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:33:09 +0200 Subject: [OGo-MacOSX] Bugs found in BasicAuthSession example In-Reply-To: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> References: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> Message-ID: On 2. Apr 2006, at 16:53 Uhr, Philippe Laval wrote: > On my computer I have set the Apache server to serve > BasicAuthSession web application at port 24000 > > There was two bugs : > <===== Bug : selector indexOfString is NOT defined ! (not using > libFoundation on Mac OS X) Thanks, I've fixed that (use -rangeOfString: instead) > <===== Bug : ClickCount does NOT display itself ! (variable not > initialized) Most instance variable types are automatically initialized to 0 by Objective-C (the object's memory is zeroed). > To who should I send the big fix ? Usually you would create a bugreport and attach a proper patch file (eg generated using svn diff). > ClickCount: > click This works for me (displays 0 and properly increases on clicks). Do you use a special default configuration or keypath association? But I'm using a gstep-make build, not Xcode. Maybe Marcus can look into the thing and check whether he can reproduce your issue in Xcode. Thanks, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 16:37:18 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:37:18 +0200 Subject: [OGo-MacOSX] TestSite example In-Reply-To: References: Message-ID: <6B3ACD55-B8E6-473D-BEB7-8BFAA2A7ACE0@opengroupware.org> On 2. Apr 2006, at 16:56 Uhr, Philippe Laval wrote: > How should I setup Apache for the TestSite example ? Just like any other SOPE app. Eg map /TestSite to the port its running on. Inside the sample directory start sope-4.5 Eg: ---snip--- helge@groove$ `which sope-4.5 ` Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| starting SOPE on OFS root: /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/samples/ TestSite Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| registered site defaults: / Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/samples/ TestSite/.sope.plist Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| WOHttpAdaptor listening on address *:23032 2006-04-02 17:34:24.037 sope-4.5[24786] Note(SoObject): SoDebugKeyLookup is enabled! 2006-04-02 17:34:24.037 sope-4.5[24786] Note(SoObject): SoDebugBaseURL is enabled! localhost - - [02/Apr/2006:17:34:24 GMT] "GET / HTTP/1.1" 302 0 0.041 - - - localhost - - [02/Apr/2006:17:34:24 GMT] "GET /index HTTP/1.1" 200 881 0.054 - - - ---snap--- BTW: this kind of SOPE-usage is considered experimental. Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 16:40:32 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:40:32 +0200 Subject: [OGo-MacOSX] problem with meerkat_xml_channels.m In-Reply-To: <90034B69-B50D-40BA-A2AC-1F0D87AE9D34@free.fr> References: <90034B69-B50D-40BA-A2AC-1F0D87AE9D34@free.fr> Message-ID: <72524AE5-DAE2-48A3-9172-A575FAF1BBD8@opengroupware.org> On 2. Apr 2006, at 17:15 Uhr, Philippe Laval wrote: > I have setup a SopeX example using meerkat_xml_channels.m > > When runned I got this : > > 2006-04-02 17:12:51.947 xmlrpc[2113] -[NGInternetSocketAddress > _fillHost]: host not found .. > 2006-04-02 17:12:51.948 xmlrpc[2113] could not get DNS name of > address 10.0.1.2 in domain : 1 I think you can ignore that though it may slow down processing a bit (due to the DNS lookup which is not strictly required). > 2006-04-02 17:12:51.950 xmlrpc[2113] result: call failed with HTTP > status code 301 The HTTP 301 status code is a redirect, probably coming from the Meerkat server. So its not an error. Apparently the XML-RPC client has no support for redirects. BTW: if the questions get non-MacOSX specifc it would be better to post them on developer@opengroupware.org. This will reach a much larger audience :-) Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 16:40:49 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 17:40:49 +0200 Subject: [OGo-MacOSX] Bugs found in BasicAuthSession example In-Reply-To: References: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> Message-ID: <467F8696-A283-47DE-9398-072F755B5816@free.fr> >> <===== Bug : ClickCount does NOT display itself ! (variable not >> initialized) > > Most instance variable types are automatically initialized to 0 by > Objective-C (the object's memory is zeroed). > > This works for me (displays 0 and properly increases on clicks). Do > you use a special default configuration or keypath association? > > But I'm using a gstep-make build, not Xcode. > > Maybe Marcus can look into the thing and check whether he can > reproduce your issue in Xcode. Yes I was using Marcus templates in XCode. I do not use a special default configuration or keypath association. G5:/etc/httpd philippe$ more BasicAuthSession.conf # # BasicAuthSession configurations # Alias /BasicAuthSession.sopex/WebServerResources/ /Users/philippe/ SOPE-4.5/sopex/Samples/BasicAuthSession/WebServerResources/ SetHandler ngobjweb-adaptor SetAppPort 24000 ================================ When I try to use gstep-make, I got most things failing. So I have to use XCode for now... How shoud I configure my computer to use gstep-make correctly ? Should I source someting ? What are your environment variables ? From macosx@opengroupware.org Sun Apr 2 16:47:46 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 17:47:46 +0200 Subject: [OGo-MacOSX] TestSite example In-Reply-To: <6B3ACD55-B8E6-473D-BEB7-8BFAA2A7ACE0@opengroupware.org> References: <6B3ACD55-B8E6-473D-BEB7-8BFAA2A7ACE0@opengroupware.org> Message-ID: <053D3989-313A-4D50-A3DC-D3CBCA46F428@free.fr> Were did you get sope-4.5 ? $ which sope-4.5 no sope-4.5 in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/=20 local/teTeX/bin/powerpc-apple-darwin-current /usr/local/pgsql/bin /=20 usr/local/teTeX/bin/powerpc-apple-darwin-current I have also build SOPE-4.5 with gnu-make (from the root folder - this =20= make works also for me). Le 2 avr. 06 =E0 17:37, Helge Hess a =E9crit : > On 2. Apr 2006, at 16:56 Uhr, Philippe Laval wrote: >> How should I setup Apache for the TestSite example ? > > Just like any other SOPE app. Eg map /TestSite to the port its =20 > running on. Inside the sample directory start > sope-4.5 > > Eg: > ---snip--- > helge@groove$ `which sope-4.5 ` > Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| starting SOPE on OFS =20 > root: /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/=20 > samples/TestSite > Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| registered site =20 > defaults: /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/=20 > samples/TestSite/.sope.plist > Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| WOHttpAdaptor listening =20 > on address *:23032 > 2006-04-02 17:34:24.037 sope-4.5[24786] Note(SoObject): =20 > SoDebugKeyLookup is enabled! > 2006-04-02 17:34:24.037 sope-4.5[24786] Note(SoObject): =20 > SoDebugBaseURL is enabled! > localhost - - [02/Apr/2006:17:34:24 GMT] "GET / HTTP/1.1" 302 0 =20 > 0.041 - - - > localhost - - [02/Apr/2006:17:34:24 GMT] "GET /index HTTP/1.1" 200 =20 > 881 0.054 - - - > ---snap--- > > BTW: this kind of SOPE-usage is considered experimental. > > Greets, > Helge > --=20 > http://docs.opengroupware.org/Members/helge/ > OpenGroupware.org > --=20 > OpenGroupware.org MacOS X > macosx@opengroupware.org > http://mail.opengroupware.org/mailman/listinfo/macosx > From macosx@opengroupware.org Sun Apr 2 16:51:27 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:51:27 +0200 Subject: [OGo-MacOSX] Bugs found in BasicAuthSession example In-Reply-To: <467F8696-A283-47DE-9398-072F755B5816@free.fr> References: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> <467F8696-A283-47DE-9398-072F755B5816@free.fr> Message-ID: <17B98F99-8C36-4361-9851-FD3E620B75AC@opengroupware.org> On 2. Apr 2006, at 17:40 Uhr, Philippe Laval wrote: > How shoud I configure my computer to use gstep-make correctly ? There are multiple modes to use gnustep-make with SOPE, the easiest (on OSX) is to use a GNUstep deployment root. Take a clean checkout of SOPE 4.5. First build gnustep-make, its contained inside SOPE-4.5, like: --- cd gnustep-make ./configure --prefix=$HOME/GNUstep \ --without-system-root \ --with-network-root=$HOME/GNUstep \ --with-local-root=$HOME/GNUstep \ --with-user-root=$HOME/GNUstep \ --with-library-combo=apple-apple-appl \ --disable-pch make -s install source $HOME/GNUstep/Library/Makefiles/GNUstep.sh ---snap--- Then go to the SOPE-4.5 source dir and call configure like ---snip--- ./configure --enable-debug --disable-strip \ --with-gnustep --gsmake=$GNUSTEP_SYSTEM_ROOT ---snap--- > Should I source someting ? There are ways to remove the need for sourcing GNUstep.sh, either compiling as frameworks or installing to FHS locations. The former could be incomplete and not well tested and the latter is not very Mac like :-) (but the default way to use SOPE on Linux) So: in the setup explained above, yes, you need to source GNUstep.sh prior running a SOPE application. You do NOT need to source GNUstep.sh for compilation (the required variables are hardwired in the config.make created by configure). > What are your environment variables ? ---snip--- helge@groove$ env|grep GNU GNUSTEP_LOCAL_ROOT=/Users/helge/GNUstep GNUSTEP_HOST=powerpc-apple-darwin8.2.0 GUILE_LOAD_PATH=/Users/helge/GNUstep/Library/Libraries/Guile GNUSTEP_NETWORK_ROOT=/Users/helge/GNUstep GNUSTEP_MAKEFILES=/Users/helge/GNUstep/Library/Makefiles GNUSTEP_ROOT=/Users/helge/GNUstep GNUSTEP_FLATTENED=yes GNUSTEP_HOST_OS=darwin8.2.0 GNUSTEP_HOST_VENDOR=apple PATH=/Users/helge/GNUstep/Tools:~/bin:/usr/local/bin:/usr/X11R6/bin:/ Volumes/Store/fink-tiger/bin:/Volumes/Store/fink-tiger/sbin:/bin:/ sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin GNUSTEP_HOST_CPU=powerpc DYLD_FRAMEWORK_PATH=/Users/helge/GNUstep/Library/Frameworks GNUSTEP_USER_ROOT=/Users/helge/GNUstep DYLD_LIBRARY_PATH=/Users/helge/GNUstep/Library/Libraries GNUSTEP_SYSTEM_ROOT=/Users/helge/GNUstep GNUSTEP_PATHLIST=/Users/helge/GNUstep CLASSPATH=/Users/helge/GNUstep/Library/Libraries/Java ---snap--- Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 16:53:27 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:53:27 +0200 Subject: [OGo-MacOSX] TestSite example In-Reply-To: <053D3989-313A-4D50-A3DC-D3CBCA46F428@free.fr> References: <6B3ACD55-B8E6-473D-BEB7-8BFAA2A7ACE0@opengroupware.org> <053D3989-313A-4D50-A3DC-D3CBCA46F428@free.fr> Message-ID: <26FDED13-3CFD-491F-BD14-01D1E1EA1CF7@opengroupware.org> On 2. Apr 2006, at 17:47 Uhr, Philippe Laval wrote: > Were did you get sope-4.5 ? This is a subtarget of sope-appserver/SoOFS. Don't know whether the Xcode project builds it. ---snip--- helge@groove$ which sope-4.5 /Users/helge/GNUstep/Tools/sope-4.5 ---snap--- Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 16:54:49 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 17:54:49 +0200 Subject: [OGo-MacOSX] TestSite example In-Reply-To: <053D3989-313A-4D50-A3DC-D3CBCA46F428@free.fr> References: <6B3ACD55-B8E6-473D-BEB7-8BFAA2A7ACE0@opengroupware.org> <053D3989-313A-4D50-A3DC-D3CBCA46F428@free.fr> Message-ID: <990D581D-503C-4450-97E4-2B006C68F799@free.fr> --Apple-Mail-4-329848940 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed OK ! I found the SoOFS.xcodeproj project. It has two targets : SoOFS framework and sope-4.5 tool. I will have yet another directory to discover ;-) Philippe Le 2 avr. 06 =E0 17:47, Philippe Laval a =E9crit : > Were did you get sope-4.5 ? > > $ which sope-4.5 > no sope-4.5 in /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/=20 > local/teTeX/bin/powerpc-apple-darwin-current /usr/local/pgsql/bin /=20 > usr/local/teTeX/bin/powerpc-apple-darwin-current > > I have also build SOPE-4.5 with gnu-make (from the root folder - =20 > this make works also for me). > > > > Le 2 avr. 06 =E0 17:37, Helge Hess a =E9crit : > >> On 2. Apr 2006, at 16:56 Uhr, Philippe Laval wrote: >>> How should I setup Apache for the TestSite example ? >> >> Just like any other SOPE app. Eg map /TestSite to the port its =20 >> running on. Inside the sample directory start >> sope-4.5 >> >> Eg: >> ---snip--- >> helge@groove$ `which sope-4.5 ` >> Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| starting SOPE on OFS =20 >> root: /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/=20 >> samples/TestSite >> Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| registered site =20 >> defaults: /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/=20 >> samples/TestSite/.sope.plist >> Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| WOHttpAdaptor listening =20= >> on address *:23032 >> 2006-04-02 17:34:24.037 sope-4.5[24786] Note(SoObject): =20 >> SoDebugKeyLookup is enabled! >> 2006-04-02 17:34:24.037 sope-4.5[24786] Note(SoObject): =20 >> SoDebugBaseURL is enabled! >> localhost - - [02/Apr/2006:17:34:24 GMT] "GET / HTTP/1.1" 302 0 =20 >> 0.041 - - - >> localhost - - [02/Apr/2006:17:34:24 GMT] "GET /index HTTP/1.1" 200 =20= >> 881 0.054 - - - >> ---snap--- >> >> BTW: this kind of SOPE-usage is considered experimental. >> >> Greets, >> Helge >> --=20 >> http://docs.opengroupware.org/Members/helge/ >> OpenGroupware.org >> --=20 >> OpenGroupware.org MacOS X >> macosx@opengroupware.org >> http://mail.opengroupware.org/mailman/listinfo/macosx >> > > -- > OpenGroupware.org MacOS X > macosx@opengroupware.org > http://mail.opengroupware.org/mailman/listinfo/macosx > --Apple-Mail-4-329848940 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1 OK !=A0

I found the=A0SoOFS.xcodeproj = project.
It has two targets : SoOFS framework and sope-4.5 = tool.

I will have yet = another directory to discover ;-)

Philippe


Le 2 avr. 06 = =E0 17:47, Philippe Laval a =E9crit :

Were did you get sope-4.5 ?

$ which = sope-4.5
no sope-4.5 in /bin /sbin = /usr/bin /usr/sbin /usr/local/bin = /usr/local/teTeX/bin/powerpc-apple-darwin-current /usr/local/pgsql/bin = /usr/local/teTeX/bin/powerpc-apple-darwin-current

I have = also build SOPE-4.5 with gnu-make (from the root folder - this make = works also for me).


Le 2 = avr. 06 =E0 17:37, Helge Hess a =E9crit :

On 2. Apr 2006, at 16:56 Uhr, Philippe Laval = wrote:
How should I = setup Apache for the TestSite example ?

Just = like any other SOPE app. Eg map /TestSite to the port its running on. = Inside the sample directory start
=A0 sope-4.5

---snip---
helge@groove$ `which sope-4.5 `
Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| starting = SOPE on OFS root: = /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/samples/TestSite
Apr 02 17:33:52 sope-4.5 [24786]: |sope-4| = registered site defaults: = /Volumes/Store/helge/tiger/dev/SOPE-4.5/sope-appserver/samples/TestSite/.s= ope.plist
Apr 02 17:33:52 sope-4.5 = [24786]: |sope-4| WOHttpAdaptor listening on address *:23032
2006-04-02 17:34:24.037 sope-4.5[24786] = Note(SoObject): SoDebugKeyLookup is enabled!
2006-04-02 17:34:24.037 sope-4.5[24786] = Note(SoObject): SoDebugBaseURL is enabled!
localhost - - = [02/Apr/2006:17:34:24 GMT] "GET /index HTTP/1.1" 200 881 0.054 - - = -
---snap---

BTW: this kind of SOPE-usage is = considered experimental.

Greets,
=A0 = Helge
--=A0
--=A0

OpenGroupware.org MacOS = X

= --Apple-Mail-4-329848940-- From macosx@opengroupware.org Sun Apr 2 16:55:11 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:55:11 +0200 Subject: [OGo-MacOSX] TestPrototype example problem... In-Reply-To: References: Message-ID: On 2. Apr 2006, at 17:32 Uhr, Philippe Laval wrote: > So were are these components defined ? > I the Main.wod, i can see these things: WEPrototypeScript and > WELiveLink Those are part of the sope-appserver/WEPrototype library/framework. Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 16:57:20 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 17:57:20 +0200 Subject: [OGo-MacOSX] TestSite example In-Reply-To: <990D581D-503C-4450-97E4-2B006C68F799@free.fr> References: <6B3ACD55-B8E6-473D-BEB7-8BFAA2A7ACE0@opengroupware.org> <053D3989-313A-4D50-A3DC-D3CBCA46F428@free.fr> <990D581D-503C-4450-97E4-2B006C68F799@free.fr> Message-ID: On 2. Apr 2006, at 17:54 Uhr, Philippe Laval wrote: > I found the SoOFS.xcodeproj project. > It has two targets : SoOFS framework and sope-4.5 tool. > > I will have yet another directory to discover ;-) Be aware that SoOFS and the sope-x.y tool are also considered experimental and highly API-unstable (not too unlikely that I drop them in favor of something new, unless someone really likes [to keep] it :-). Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Sun Apr 2 18:31:28 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 19:31:28 +0200 Subject: [OGo-MacOSX] TestPrototype example problem... In-Reply-To: References: Message-ID: <1A52EC19-9062-4244-9316-CBCA23B4C812@free.fr> I have verify that SOPE.xcodeproj builds sope-appserver.xcodeproj =20 which in turn builds WEPrototype.xcodeproj But Marcus XCode templates are not including WOExtensions.framework, =20 WEPrototype.framework, WEExtensions.framework for example. When I added these frameworks to my TestPrototype XCode example, I =20 got this results window : Test WEPrototype I don't have the time, but click here and I will look it up. localhost - - [02/Apr/2006:18:52:18 GMT] "GET /TestPrototype HTTP/=20 1.1" 200 562 0.021 - - - localhost - - [02/Apr/2006:18:52:18 GMT] "GET /TestPrototype.sopex/x/=20 WEPrototypeScriptAction/default.js HTTP/1.1" 200 27803 0.005 - - - I suppose that "Prototype: WEPrototypeScript {}" in Main.wod is =20 asking for "GET /TestPrototype.sopex/x/WEPrototypeScriptAction/=20 default.js HTTP/1.1" When I click on the "Click here" link, nothing happens (I means in =20 Sopex window). I have checked with the use of Safari : $ cd /Users/philippe/SOPE-4.5/sopex/Samples/TestPrototype/ $ ./build/Development/TestPrototype.app/Contents/MacOS/TestPrototype -=20= WOPort 25000 I oppened Safari at the URL : http://localhost/TestPrototype and got =20 the example working fine. When I click on the "Click here" link, I have a javascript (?) window =20= asking for confirmation, then the window updates to : Test WEPrototype The time is 2006-04-02 19:03:14 +0200 The time is 2006-04-02 19:03:12 +0200 The time is 2006-04-02 19:03:06 +0200 I don't have the time, but click here and I will look it up. Seems good to see a javascript windo here ;-) Philippe Le 2 avr. 06 =E0 17:55, Helge Hess a =E9crit : > On 2. Apr 2006, at 17:32 Uhr, Philippe Laval wrote: >> So were are these components defined ? >> I the Main.wod, i can see these things: WEPrototypeScript and =20 >> WELiveLink > > Those are part of the sope-appserver/WEPrototype library/framework. > > Greets, > Helge > --=20 > http://docs.opengroupware.org/Members/helge/ > OpenGroupware.org > --=20 > OpenGroupware.org MacOS X > macosx@opengroupware.org > http://mail.opengroupware.org/mailman/listinfo/macosx > From macosx@opengroupware.org Sun Apr 2 19:24:00 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 20:24:00 +0200 Subject: [OGo-MacOSX] Bugs found in BasicAuthSession example In-Reply-To: <17B98F99-8C36-4361-9851-FD3E620B75AC@opengroupware.org> References: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> <467F8696-A283-47DE-9398-072F755B5816@free.fr> <17B98F99-8C36-4361-9851-FD3E620B75AC@opengroupware.org> Message-ID: <5FC3238F-4533-49ED-8F2A-B280953EC511@free.fr> --Apple-Mail-6-338800028 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed I have done what you have described and I got my folder GNUstep full =20 of librairies and tools ;-). Cool. So I have remember that I could not build mod_ngobjweb without =20 modifiing the make file. I tried the make command again and got the same result. Some hints ? Thanks Philippe G5:~/SOPE-4.5/sope-appserver/mod_ngobjweb philippe$ make make: no: Command not found gcc -Wall -I. -fPIC -DSHARED_MODULE -DDARWIN -DUSE_HSREGEX -=20 DUSE_EXPAT -I../lib/expat-lite -I/usr/include/httpd -I -c -o =20 globals.o globals.c /usr/bin/ld: Undefined symbols: _main collect2: ld returned 1 exit status make: *** [globals.o] Error 1 G5:~/SOPE-4.5/sope-appserver/mod_ngobjweb philippe$ env MANPATH=3D:/usr/local/man TERM_PROGRAM=3DApple_Terminal TERM=3Dxterm-color SHELL=3D/bin/bash GNUSTEP_LOCAL_ROOT=3D/Users/philippe/GNUstep TERM_PROGRAM_VERSION=3D133 OLDPWD=3D/Users/philippe/SOPE-4.5/sope-appserver GNUSTEP_HOST=3Dpowerpc-apple-darwin8.5.0 USER=3Dphilippe GUILE_LOAD_PATH=3D/Users/philippe/GNUstep/Library/Libraries/Guile GNUSTEP_NETWORK_ROOT=3D/Users/philippe/GNUstep GNUSTEP_MAKEFILES=3D/Users/philippe/GNUstep/Library/Makefiles GNUSTEP_ROOT=3D/Users/philippe/GNUstep GNUSTEP_FLATTENED=3Dyes __CF_USER_TEXT_ENCODING=3D0x1F5:0:91 GNUSTEP_HOST_OS=3Ddarwin8.5.0 GNUSTEP_HOST_VENDOR=3Dapple PATH=3D/Users/philippe/GNUstep/Tools:/bin:/sbin:/usr/bin:/usr/sbin:/usr/=20= local/bin:/usr/local/teTeX/bin/powerpc-apple-darwin-current:/usr/=20 local/pgsql/bin:/usr/local/teTeX/bin/powerpc-apple-darwin-current PWD=3D/Users/philippe/SOPE-4.5/sope-appserver/mod_ngobjweb GNUSTEP_HOST_CPU=3Dpowerpc DYLD_FRAMEWORK_PATH=3D/Users/philippe/GNUstep/Library/Frameworks SHLVL=3D1 HOME=3D/Users/philippe GNUSTEP_USER_ROOT=3D/Users/philippe/GNUstep DYLD_LIBRARY_PATH=3D/Users/philippe/GNUstep/Library/Libraries GNUSTEP_SYSTEM_ROOT=3D/Users/philippe/GNUstep LOGNAME=3Dphilippe GNUSTEP_PATHLIST=3D/Users/philippe/GNUstep CLASSPATH=3D/Users/philippe/GNUstep/Library/Libraries/Java LIBRARY_COMBO=3Dapple-apple-appl SECURITYSESSIONID=3Da064f0 _=3D/usr/bin/env Le 2 avr. 06 =E0 17:51, Helge Hess a =E9crit : > On 2. Apr 2006, at 17:40 Uhr, Philippe Laval wrote: >> How shoud I configure my computer to use gstep-make correctly ? > > There are multiple modes to use gnustep-make with SOPE, the easiest =20= > (on OSX) is to use a GNUstep deployment root. > > Take a clean checkout of SOPE 4.5. First build gnustep-make, its =20 > contained inside SOPE-4.5, like: > --- > cd gnustep-make > ./configure --prefix=3D$HOME/GNUstep \ > --without-system-root \ > --with-network-root=3D$HOME/GNUstep \ > --with-local-root=3D$HOME/GNUstep \ > --with-user-root=3D$HOME/GNUstep \ > --with-library-combo=3Dapple-apple-appl \ > --disable-pch > make -s install > source $HOME/GNUstep/Library/Makefiles/GNUstep.sh > ---snap--- > > Then go to the SOPE-4.5 source dir and call configure like > ---snip--- > ./configure --enable-debug --disable-strip \ > --with-gnustep --gsmake=3D$GNUSTEP_SYSTEM_ROOT > ---snap--- > >> Should I source someting ? > > There are ways to remove the need for sourcing GNUstep.sh, either =20 > compiling as frameworks or installing to FHS locations. The former =20 > could be incomplete and not well tested and the latter is not very =20 > Mac like :-) (but the default way to use SOPE on Linux) > > So: in the setup explained above, yes, you need to source =20 > GNUstep.sh prior running a SOPE application. You do NOT need to =20 > source GNUstep.sh for compilation (the required variables are =20 > hardwired in the config.make created by configure). > >> What are your environment variables ? > > ---snip--- > helge@groove$ env|grep GNU > GNUSTEP_LOCAL_ROOT=3D/Users/helge/GNUstep > GNUSTEP_HOST=3Dpowerpc-apple-darwin8.2.0 > GUILE_LOAD_PATH=3D/Users/helge/GNUstep/Library/Libraries/Guile > GNUSTEP_NETWORK_ROOT=3D/Users/helge/GNUstep > GNUSTEP_MAKEFILES=3D/Users/helge/GNUstep/Library/Makefiles > GNUSTEP_ROOT=3D/Users/helge/GNUstep > GNUSTEP_FLATTENED=3Dyes > GNUSTEP_HOST_OS=3Ddarwin8.2.0 > GNUSTEP_HOST_VENDOR=3Dapple > PATH=3D/Users/helge/GNUstep/Tools:~/bin:/usr/local/bin:/usr/X11R6/=20 > bin:/Volumes/Store/fink-tiger/bin:/Volumes/Store/fink-tiger/sbin:/=20 > bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin > GNUSTEP_HOST_CPU=3Dpowerpc > DYLD_FRAMEWORK_PATH=3D/Users/helge/GNUstep/Library/Frameworks > GNUSTEP_USER_ROOT=3D/Users/helge/GNUstep > DYLD_LIBRARY_PATH=3D/Users/helge/GNUstep/Library/Libraries > GNUSTEP_SYSTEM_ROOT=3D/Users/helge/GNUstep > GNUSTEP_PATHLIST=3D/Users/helge/GNUstep > CLASSPATH=3D/Users/helge/GNUstep/Library/Libraries/Java > ---snap--- > > Greets, > Helge > --=20 > http://docs.opengroupware.org/Members/helge/ > OpenGroupware.org > > --=20 > OpenGroupware.org MacOS X > macosx@opengroupware.org > http://mail.opengroupware.org/mailman/listinfo/macosx > --Apple-Mail-6-338800028 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
I have done what you have = described and I got my folder=A0GNUstep full of librairies and tools ;-). = Cool.
=A0
So I have remember that I could not = build=A0mod_ngobjweb without modifiing the make file.
I tried = the make command again and got the same result. Some hints = ?

Thanks
Philippe



G5:~/SOPE-4.5/sope-appserver/= mod_ngobjweb philippe$ make
make: no: Command not = found
gcc -Wall -I. -fPIC -DSHARED_MODULE -DDARWIN = -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -I/usr/include/httpd -I=A0=A0= -c -o globals.o globals.c
/usr/bin/ld: Undefined = symbols:
_main
collect2: ld returned 1 exit = status
make: *** [globals.o] Error 1

G5:~/SOPE-4.5/sope-appserver/= mod_ngobjweb philippe$ = env
MANPATH=3D:/usr/local/man
TERM_PROGRAM=3DApple_Ter= minal
TERM=3Dxterm-color
SHELL=3D/bin/bash
G= NUSTEP_LOCAL_ROOT=3D/Users/philippe/GNUstep
TERM_PROGRAM_VERSION= =3D133
OLDPWD=3D/Users/philippe/SOPE-4.5/sope-appserver
GNUSTEP_HOST=3Dpowerpc-apple-darwin8.5.0
USER=3Dphilippe
=
GUILE_LOAD_PATH=3D/Users/philippe/GNUstep/Library/Libraries/Guile
GNUSTEP_NETWORK_ROOT=3D/Users/philippe/GNUstep
GNUSTEP_MA= KEFILES=3D/Users/philippe/GNUstep/Library/Makefiles
GNUSTEP_ROOT= =3D/Users/philippe/GNUstep
GNUSTEP_FLATTENED=3Dyes
__C= F_USER_TEXT_ENCODING=3D0x1F5:0:91
GNUSTEP_HOST_OS=3Ddarwin8.5.0<= /DIV>
GNUSTEP_HOST_VENDOR=3Dapple
PATH=3D/Users/philippe/GNU= step/Tools:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/teTeX/b= in/powerpc-apple-darwin-current:/usr/local/pgsql/bin:/usr/local/teTeX/bin/= powerpc-apple-darwin-current
PWD=3D/Users/philippe/SOPE-4.5/sope= -appserver/mod_ngobjweb
GNUSTEP_HOST_CPU=3Dpowerpc
DYL= D_FRAMEWORK_PATH=3D/Users/philippe/GNUstep/Library/Frameworks
SH= LVL=3D1
HOME=3D/Users/philippe
GNUSTEP_USER_ROOT=3D/Us= ers/philippe/GNUstep
DYLD_LIBRARY_PATH=3D/Users/philippe/GNUstep= /Library/Libraries
GNUSTEP_SYSTEM_ROOT=3D/Users/philippe/GNUstep=
LOGNAME=3Dphilippe
GNUSTEP_PATHLIST=3D/Users/philippe= /GNUstep
CLASSPATH=3D/Users/philippe/GNUstep/Library/Libraries/J= ava
LIBRARY_COMBO=3Dapple-apple-appl
SECURITYSESSIONID= =3Da064f0
_=3D/usr/bin/env



Le 2 avr. 06 =E0 = 17:51, Helge Hess a =E9crit :

On 2. Apr 2006, at 17:40 Uhr, Philippe Laval = wrote:
How shoud I = configure my computer to use gstep-make correctly ?
=

There are multiple modes to use gnustep-make with = SOPE, the easiest (on OSX) is to use a GNUstep deployment = root.

Take a clean checkout of SOPE 4.5. First build = gnustep-make, its contained inside SOPE-4.5, like:
---
cd = gnustep-make
./configure = --prefix=3D$HOME/GNUstep=A0 =A0 =A0 = =A0 =A0 =A0 \
=A0 =A0 =A0 =A0 =A0 =A0 = --without-system-root =A0 =A0= =A0 =A0 =A0 =A0 \
=A0 =A0 =A0 =A0 =A0 =A0 = --with-network-root=3D$HOME/GNUstep \
=A0 =A0 =A0 =A0 = =A0 =A0 --with-local-root=3D$HOME/GNUstep =A0 \
=A0 =A0 =A0 =A0 = =A0 =A0 --with-user-root=3D$HOME/GNUstep=A0 =A0 \
=A0 =A0 =A0 =A0 = =A0 =A0 --with-library-combo=3Dapple-apple-appl \
=A0 =A0 --disable-pch
make -s install
source = $HOME/GNUstep/Library/Makefiles/GNUstep.sh

Then go to the SOPE-4.5 source dir and call = configure like
---snip---
./configure --enable-debug --disable-strip = \
=A0 = --with-gnustep --gsmake=3D$GNUSTEP_SYSTEM_ROOT
---snap---

Should I = source someting ?

There are ways to remove the = need for sourcing GNUstep.sh, either compiling as frameworks or = installing to FHS locations. The former could be incomplete and not well = tested and the latter is not very Mac like :-) (but the default way to = use SOPE on Linux)
So: in the setup explained = above, yes, you need to source GNUstep.sh prior running a SOPE = application. You do NOT need to source GNUstep.sh for compilation (the = required variables are hardwired in the config.make created by = configure).

=
What are your environment = variables ?

---snip---
helge@groove$ env|grep GNU
GNUSTEP_LOCAL_ROOT=3D/Users/helge/GNUstep
GNUSTEP_HOST=3Dpowerpc-apple-darwin8.2.0
GNUSTEP_NETWORK_ROOT=3D/Users/helge/GNUstep
GNUSTEP_ROOT=3D/Users/helge/GNUstep
GNUSTEP_FLATTENED=3Dyes
GNUSTEP_USER_ROOT=3D/Users/helge/GNUstep
GNUSTEP_SYSTEM_ROOT=3D/Users/helge/GNUstep
GNUSTEP_PATHLIST=3D/Users/helge/GNUstep
---snap---

Greets,
=A0 = Helge
--=A0
--=A0

= --Apple-Mail-6-338800028-- From macosx@opengroupware.org Sun Apr 2 19:32:17 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 20:32:17 +0200 Subject: [OGo-MacOSX] Bugs found in BasicAuthSession example In-Reply-To: <5FC3238F-4533-49ED-8F2A-B280953EC511@free.fr> References: <70BB1346-A266-4A95-B518-7728E03BE3BD@free.fr> <467F8696-A283-47DE-9398-072F755B5816@free.fr> <17B98F99-8C36-4361-9851-FD3E620B75AC@opengroupware.org> <5FC3238F-4533-49ED-8F2A-B280953EC511@free.fr> Message-ID: --Apple-Mail-7-339296281 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed For the samples, this time, the make propcess works fine. This will help me verify the samples build with and without XCode. Philippe Le 2 avr. 06 =E0 20:24, Philippe Laval a =E9crit : > I have done what you have described and I got my folder GNUstep =20 > full of librairies and tools ;-). Cool. > > So I have remember that I could not build mod_ngobjweb without =20 > modifiing the make file. > I tried the make command again and got the same result. Some hints ? > > Thanks > Philippe > > > > G5:~/SOPE-4.5/sope-appserver/mod_ngobjweb philippe$ make > make: no: Command not found > gcc -Wall -I. -fPIC -DSHARED_MODULE -DDARWIN -DUSE_HSREGEX -=20 > DUSE_EXPAT -I../lib/expat-lite -I/usr/include/httpd -I -c -o =20 > globals.o globals.c > /usr/bin/ld: Undefined symbols: > _main > collect2: ld returned 1 exit status > make: *** [globals.o] Error 1 > > G5:~/SOPE-4.5/sope-appserver/mod_ngobjweb philippe$ env > MANPATH=3D:/usr/local/man > TERM_PROGRAM=3DApple_Terminal > TERM=3Dxterm-color > SHELL=3D/bin/bash > GNUSTEP_LOCAL_ROOT=3D/Users/philippe/GNUstep > TERM_PROGRAM_VERSION=3D133 > OLDPWD=3D/Users/philippe/SOPE-4.5/sope-appserver > GNUSTEP_HOST=3Dpowerpc-apple-darwin8.5.0 > USER=3Dphilippe > GUILE_LOAD_PATH=3D/Users/philippe/GNUstep/Library/Libraries/Guile > GNUSTEP_NETWORK_ROOT=3D/Users/philippe/GNUstep > GNUSTEP_MAKEFILES=3D/Users/philippe/GNUstep/Library/Makefiles > GNUSTEP_ROOT=3D/Users/philippe/GNUstep > GNUSTEP_FLATTENED=3Dyes > __CF_USER_TEXT_ENCODING=3D0x1F5:0:91 > GNUSTEP_HOST_OS=3Ddarwin8.5.0 > GNUSTEP_HOST_VENDOR=3Dapple > PATH=3D/Users/philippe/GNUstep/Tools:/bin:/sbin:/usr/bin:/usr/sbin:/=20= > usr/local/bin:/usr/local/teTeX/bin/powerpc-apple-darwin-current:/=20 > usr/local/pgsql/bin:/usr/local/teTeX/bin/powerpc-apple-darwin-current > PWD=3D/Users/philippe/SOPE-4.5/sope-appserver/mod_ngobjweb > GNUSTEP_HOST_CPU=3Dpowerpc > DYLD_FRAMEWORK_PATH=3D/Users/philippe/GNUstep/Library/Frameworks > SHLVL=3D1 > HOME=3D/Users/philippe > GNUSTEP_USER_ROOT=3D/Users/philippe/GNUstep > DYLD_LIBRARY_PATH=3D/Users/philippe/GNUstep/Library/Libraries > GNUSTEP_SYSTEM_ROOT=3D/Users/philippe/GNUstep > LOGNAME=3Dphilippe > GNUSTEP_PATHLIST=3D/Users/philippe/GNUstep > CLASSPATH=3D/Users/philippe/GNUstep/Library/Libraries/Java > LIBRARY_COMBO=3Dapple-apple-appl > SECURITYSESSIONID=3Da064f0 > _=3D/usr/bin/env > > > > Le 2 avr. 06 =E0 17:51, Helge Hess a =E9crit : > >> On 2. Apr 2006, at 17:40 Uhr, Philippe Laval wrote: >>> How shoud I configure my computer to use gstep-make correctly ? >> >> There are multiple modes to use gnustep-make with SOPE, the =20 >> easiest (on OSX) is to use a GNUstep deployment root. >> >> Take a clean checkout of SOPE 4.5. First build gnustep-make, its =20 >> contained inside SOPE-4.5, like: >> --- >> cd gnustep-make >> ./configure --prefix=3D$HOME/GNUstep \ >> --without-system-root \ >> --with-network-root=3D$HOME/GNUstep \ >> --with-local-root=3D$HOME/GNUstep \ >> --with-user-root=3D$HOME/GNUstep \ >> --with-library-combo=3Dapple-apple-appl \ >> --disable-pch >> make -s install >> source $HOME/GNUstep/Library/Makefiles/GNUstep.sh >> ---snap--- >> >> Then go to the SOPE-4.5 source dir and call configure like >> ---snip--- >> ./configure --enable-debug --disable-strip \ >> --with-gnustep --gsmake=3D$GNUSTEP_SYSTEM_ROOT >> ---snap--- >> >>> Should I source someting ? >> >> There are ways to remove the need for sourcing GNUstep.sh, either =20 >> compiling as frameworks or installing to FHS locations. The former =20= >> could be incomplete and not well tested and the latter is not very =20= >> Mac like :-) (but the default way to use SOPE on Linux) >> >> So: in the setup explained above, yes, you need to source =20 >> GNUstep.sh prior running a SOPE application. You do NOT need to =20 >> source GNUstep.sh for compilation (the required variables are =20 >> hardwired in the config.make created by configure). >> >>> What are your environment variables ? >> >> ---snip--- >> helge@groove$ env|grep GNU >> GNUSTEP_LOCAL_ROOT=3D/Users/helge/GNUstep >> GNUSTEP_HOST=3Dpowerpc-apple-darwin8.2.0 >> GUILE_LOAD_PATH=3D/Users/helge/GNUstep/Library/Libraries/Guile >> GNUSTEP_NETWORK_ROOT=3D/Users/helge/GNUstep >> GNUSTEP_MAKEFILES=3D/Users/helge/GNUstep/Library/Makefiles >> GNUSTEP_ROOT=3D/Users/helge/GNUstep >> GNUSTEP_FLATTENED=3Dyes >> GNUSTEP_HOST_OS=3Ddarwin8.2.0 >> GNUSTEP_HOST_VENDOR=3Dapple >> PATH=3D/Users/helge/GNUstep/Tools:~/bin:/usr/local/bin:/usr/X11R6/=20 >> bin:/Volumes/Store/fink-tiger/bin:/Volumes/Store/fink-tiger/sbin:/=20 >> bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin >> GNUSTEP_HOST_CPU=3Dpowerpc >> DYLD_FRAMEWORK_PATH=3D/Users/helge/GNUstep/Library/Frameworks >> GNUSTEP_USER_ROOT=3D/Users/helge/GNUstep >> DYLD_LIBRARY_PATH=3D/Users/helge/GNUstep/Library/Libraries >> GNUSTEP_SYSTEM_ROOT=3D/Users/helge/GNUstep >> GNUSTEP_PATHLIST=3D/Users/helge/GNUstep >> CLASSPATH=3D/Users/helge/GNUstep/Library/Libraries/Java >> ---snap--- >> >> Greets, >> Helge >> --=20 >> http://docs.opengroupware.org/Members/helge/ >> OpenGroupware.org >> >> --=20 >> OpenGroupware.org MacOS X >> macosx@opengroupware.org >> http://mail.opengroupware.org/mailman/listinfo/macosx >> > --Apple-Mail-7-339296281 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
For the samples, this time, = the make propcess works fine.
This will help me verify the = samples build with and without XCode.

Philippe


Le 2 avr. 06 =E0 = 20:24, Philippe Laval a =E9crit :

I = have done what you have described and I got my folder=A0GNUstep full of = librairies and tools ;-). Cool.
=A0
So I have = remember that I could not build=A0mod_ngobjweb without modifiing the = make file.
I tried the make command again and got the same = result. Some hints ?

Thanks
Philippe



G5:~/SOPE-4.5/sope-appserver/= mod_ngobjweb philippe$ make
make: no: Command not = found
gcc -Wall -I. -fPIC -DSHARED_MODULE -DDARWIN = -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -I/usr/include/httpd -I=A0=A0= -c -o globals.o globals.c
/usr/bin/ld: Undefined = symbols:
_main
collect2: ld returned 1 exit = status
make: *** [globals.o] Error 1

G5:~/SOPE-4.5/sope-appserver/= mod_ngobjweb philippe$ = env
MANPATH=3D:/usr/local/man
TERM_PROGRAM=3DApple_Ter= minal
TERM=3Dxterm-color
SHELL=3D/bin/bash
G= NUSTEP_LOCAL_ROOT=3D/Users/philippe/GNUstep
TERM_PROGRAM_VERSION= =3D133
OLDPWD=3D/Users/philippe/SOPE-4.5/sope-appserver
GNUSTEP_HOST=3Dpowerpc-apple-darwin8.5.0
USER=3Dphilippe
=
GUILE_LOAD_PATH=3D/Users/philippe/GNUstep/Library/Libraries/Guile
GNUSTEP_NETWORK_ROOT=3D/Users/philippe/GNUstep
GNUSTEP_MA= KEFILES=3D/Users/philippe/GNUstep/Library/Makefiles
GNUSTEP_ROOT= =3D/Users/philippe/GNUstep
GNUSTEP_FLATTENED=3Dyes
__C= F_USER_TEXT_ENCODING=3D0x1F5:0:91
GNUSTEP_HOST_OS=3Ddarwin8.5.0<= /DIV>
GNUSTEP_HOST_VENDOR=3Dapple
PATH=3D/Users/philippe/GNU= step/Tools:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/teTeX/b= in/powerpc-apple-darwin-current:/usr/local/pgsql/bin:/usr/local/teTeX/bin/= powerpc-apple-darwin-current
PWD=3D/Users/philippe/SOPE-4.5/sope= -appserver/mod_ngobjweb
GNUSTEP_HOST_CPU=3Dpowerpc
DYL= D_FRAMEWORK_PATH=3D/Users/philippe/GNUstep/Library/Frameworks
SH= LVL=3D1
HOME=3D/Users/philippe
GNUSTEP_USER_ROOT=3D/Us= ers/philippe/GNUstep
DYLD_LIBRARY_PATH=3D/Users/philippe/GNUstep= /Library/Libraries
GNUSTEP_SYSTEM_ROOT=3D/Users/philippe/GNUstep=
LOGNAME=3Dphilippe
GNUSTEP_PATHLIST=3D/Users/philippe= /GNUstep
CLASSPATH=3D/Users/philippe/GNUstep/Library/Libraries/J= ava
LIBRARY_COMBO=3Dapple-apple-appl
SECURITYSESSIONID= =3Da064f0
_=3D/usr/bin/env



Le 2 avr. 06 =E0 = 17:51, Helge Hess a =E9crit :

On 2. Apr 2006, at 17:40 Uhr, Philippe Laval = wrote:
How shoud I = configure my computer to use gstep-make correctly ?
=

There are multiple modes to use gnustep-make with = SOPE, the easiest (on OSX) is to use a GNUstep deployment = root.

Take a clean checkout of SOPE 4.5. First build = gnustep-make, its contained inside SOPE-4.5, like:
---
cd = gnustep-make
./configure = --prefix=3D$HOME/GNUstep=A0 =A0 =A0 = =A0 =A0 =A0 \
=A0 =A0 =A0 =A0 =A0 =A0 = --without-system-root =A0 =A0= =A0 =A0 =A0 =A0 \
=A0 =A0 =A0 =A0 =A0 =A0 = --with-network-root=3D$HOME/GNUstep \
=A0 =A0 =A0 =A0 = =A0 =A0 --with-local-root=3D$HOME/GNUstep =A0 \
=A0 =A0 =A0 =A0 = =A0 =A0 --with-user-root=3D$HOME/GNUstep=A0 =A0 \
=A0 =A0 =A0 =A0 = =A0 =A0 --with-library-combo=3Dapple-apple-appl \
=A0 =A0 --disable-pch
make -s install
source = $HOME/GNUstep/Library/Makefiles/GNUstep.sh

Then go to the SOPE-4.5 source dir and call = configure like
---snip---
./configure --enable-debug --disable-strip = \
=A0 = --with-gnustep --gsmake=3D$GNUSTEP_SYSTEM_ROOT
---snap---

Should I = source someting ?

There are ways to remove the = need for sourcing GNUstep.sh, either compiling as frameworks or = installing to FHS locations. The former could be incomplete and not well = tested and the latter is not very Mac like :-) (but the default way to = use SOPE on Linux)
So: in the setup explained = above, yes, you need to source GNUstep.sh prior running a SOPE = application. You do NOT need to source GNUstep.sh for compilation (the = required variables are hardwired in the config.make created by = configure).

=
What are your environment = variables ?

---snip---
helge@groove$ env|grep GNU
GNUSTEP_LOCAL_ROOT=3D/Users/helge/GNUstep
GNUSTEP_HOST=3Dpowerpc-apple-darwin8.2.0
GNUSTEP_NETWORK_ROOT=3D/Users/helge/GNUstep
GNUSTEP_ROOT=3D/Users/helge/GNUstep
GNUSTEP_FLATTENED=3Dyes
GNUSTEP_USER_ROOT=3D/Users/helge/GNUstep
GNUSTEP_SYSTEM_ROOT=3D/Users/helge/GNUstep
GNUSTEP_PATHLIST=3D/Users/helge/GNUstep
---snap---

Greets,
=A0 = Helge
--=A0
--=A0


= --Apple-Mail-7-339296281-- From macosx@opengroupware.org Sun Apr 2 19:36:59 2006 From: macosx@opengroupware.org (Philippe Laval) Date: Sun, 2 Apr 2006 20:36:59 +0200 Subject: [OGo-MacOSX] Problem building iCalPortal sample with gnustep make on Mac OS 10.4.5 Message-ID: <2D52C519-6CA9-4601-BB77-26F31A8B26C8@free.fr> $ cd iCalPortal $ make ... Compiling file iCalView.m ... Compiling file iCalDayView.m ... Compiling file iCalWeekView.m ... make[1]: *** No rule to make target `WebDAV/shared_debug_obj/ subproject.o', needed by `iCalPortal.woa/./iCalPortal'. Stop. make: *** [iCalPortal.all.woapp.variables] Error 2 From macosx@opengroupware.org Sun Apr 2 21:07:34 2006 From: macosx@opengroupware.org (Helge Hess) Date: Sun, 2 Apr 2006 22:07:34 +0200 Subject: [OGo-MacOSX] Problem building iCalPortal sample with gnustep make on Mac OS 10.4.5 In-Reply-To: <2D52C519-6CA9-4601-BB77-26F31A8B26C8@free.fr> References: <2D52C519-6CA9-4601-BB77-26F31A8B26C8@free.fr> Message-ID: <0843A83C-D07A-47F9-9FC1-2D2A1AA67DE8@opengroupware.org> On 2. Apr 2006, at 20:36 Uhr, Philippe Laval wrote: > $ cd iCalPortal > $ make > ... > Compiling file iCalView.m ... > Compiling file iCalDayView.m ... > Compiling file iCalWeekView.m ... > make[1]: *** No rule to make target `WebDAV/shared_debug_obj/ > subproject.o', needed by `iCalPortal.woa/./iCalPortal'. Stop. > make: *** [iCalPortal.all.woapp.variables] Error 2 I've committed some small changes which may fix the issue, but probably not. However, it does work for me :-) Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Mon Apr 3 10:20:14 2006 From: macosx@opengroupware.org (=?ISO-8859-1?Q?Marcus_M=FCller?=) Date: Mon, 3 Apr 2006 11:20:14 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: <4D838CDE-BD4A-4E62-82BC-A8AE3617028C@opengroupware.org> References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> <442E5DA3.6090708@mulle-kybernetik.com> <4D838CDE-BD4A-4E62-82BC-A8AE3617028C@opengroupware.org> Message-ID: --Apple-Mail-1-392574081 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed On 01.04.2006, at 15:58, Helge Hess wrote: > On 1. Apr 2006, at 13:01 Uhr, Marcus Mueller wrote: >> The new implementation is really nice ... it's very close to the >> WebObjects idea of doing things (it's using DirectActions and >> standard accessor methods for mapping the positional arguments in >> an XML-RPC call to the parameters probably used in the direct >> action ... very nifty indeed). However, the setup in the >> product.plist currently has one glitch ... you have to use the >> RequestHandler as the object for adding categories (XML-RPC >> methods) to - not the Application object. > > I'm pretty sure this isn't the case. You need to define the methods > on the SoObject you address in your XML-RPC calls. If you have > > /myapp/so/Calendar > > you need to define your methods on the "Calendar" object. > > If you need to define the methods on your request handler, you > probably use a URL like URL: > /myapp/[something] > which I think returns a WORequestHandler in the path lookup. Correct. I'm posting to /RPC2 ... thanks for your detailed explanation. Just for clarity's sake, I then need to add the "categories" to the SoObjectRequestHandler object, i.e.: --- snip --- categories = { SoObjectRequestHandler = { methods = { "system.listMethods" = { protectedBy = "View"; actionClass = "BMSOPEAction"; actionName = "listSystemMethods"; arguments = { positionalKeys = ( ); }; }; }; }; }; --- snap --- > Notably another option supported by SOPE (this is also how its done > in Zope) is to use the XML-RPC package name for path processing. > Say you want to invoke > > calendar.events.addEvent() > > you can either directly map the "calendar.events.addEvent" method > in product.plist OR you just map the "addEvent" method and use an > object hierarchy like: > > /myapp/so/calendar/events > > to define the XML-RPC call. SOPE will automatically revert to > namespace processing if it can't find fully qualified method on the > target object. (see SoObjectXmlRpcDispatcher.m) I see. This really offers quite some flexibility, although I can't think of a situation where this might be very useful. It's nice to have it, though. Cheers, Marcus -- Marcus Mueller . . . crack-admin/coder ;-) Mulle kybernetiK . http://www.mulle-kybernetik.com Current projects: http://www.mulle-kybernetik.com/znek/ --Apple-Mail-1-392574081 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
On 01.04.2006, at = 15:58, Helge Hess wrote:

On 1. Apr 2006, at 13:01 Uhr, Marcus Mueller = wrote:
The new = implementation is really nice ... it's very close to the WebObjects idea = of doing things (it's using DirectActions and standard accessor methods = for mapping the positional arguments in an XML-RPC call to the = parameters probably used in the direct action ... very nifty indeed). = However, the setup in the product.plist currently has one glitch ... you = have to use the RequestHandler as the object for adding categories = (XML-RPC methods) to - not the Application object.
=

I'm pretty sure this isn't the case. You need to = define the methods on the SoObject you address in your XML-RPC calls. If = you have

=A0 = /myapp/so/Calendar

you need to define your methods = on the "Calendar" object.

If you need to define the = methods on your request handler, you probably use a URL like = URL:
=A0 /myapp/[something]
which I think returns a WORequestHandler in the path = lookup.

Correct. I'm posting to = /RPC2 ... thanks for your detailed explanation. Just for clarity's sake, = I then need to add the "categories" to the=A0SoObjectRequestHandler = object, i.e.:

--- snip ---
=A0 = categories =3D {
=A0 =A0 SoObjectRequestHandler =3D = {
=A0 =A0 =A0 methods =3D {
=A0 =A0 =A0=A0 = =A0"system.listMethods" =3D {
=A0 =A0 =A0 =A0 =A0 protectedBy = =3D "View";
=A0 =A0 =A0 =A0 =A0 actionClass =3D = "BMSOPEAction";
=A0 =A0 =A0 =A0 =A0 actionName=A0 =3D = "listSystemMethods";
=A0 =A0 =A0 =A0 =A0 arguments=A0=A0 =3D { = positionalKeys =3D ( ); };
=A0 =A0 =A0 =A0 };
=A0 =A0 = =A0 };
=A0 =A0 };
=A0 };
--- snap = ---

Notably = another option supported by SOPE (this is also how its done in Zope) is = to use the XML-RPC package name for path processing. Say you want to = invoke

=A0 = calendar.events.addEvent()

you can either directly map the = "calendar.events.addEvent" method in product.plist OR you just map the = "addEvent" method and use an object hierarchy like:

=A0 = /myapp/so/calendar/events

to define the XML-RPC call. SOPE = will automatically revert to namespace processing if it can't find fully = qualified method on the target object. (see = SoObjectXmlRpcDispatcher.m)

I see. This really offers quite = some flexibility, although I can't think of a situation where this might = be very useful. It's nice to have it, though.

Cheers,


=A0=A0Marcus


--=A0

Marcus Mueller=A0=A0.=A0=A0.=A0=A0.=A0=A0crack-admin/coder = ;-)

Mulle = kybernetiK=A0=A0.=A0=A0http://www.mulle-kybernetik.com

Current = projects:=A0http://www.mulle-kybernetik= .com/znek/


=

= --Apple-Mail-1-392574081-- From macosx@opengroupware.org Mon Apr 3 18:55:17 2006 From: macosx@opengroupware.org (Helge Hess) Date: Mon, 3 Apr 2006 19:55:17 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> <442E5DA3.6090708@mulle-kybernetik.com> <4D838CDE-BD4A-4E62-82BC-A8AE3617028C@opengroupware.org> Message-ID: <77D19F1F-D103-41DD-BF5A-606A2B64F0EC@opengroupware.org> On 3. Apr 2006, at 11:20 Uhr, Marcus M=FCller wrote: > Correct. I'm posting to /RPC2 ... thanks for your detailed =20 > explanation. Maybe we should make the /RPC2 URL a special case which returns the =20 application object. But then maybe not ;-) > Just for clarity's sake, I then need to add the "categories" to the =20= > SoObjectRequestHandler object, i.e.: Yes, RPC2 is a registered request handler (the SoApplication -=20 lookupName:inContext: will try to resolve names by calling -=20 handlerForKey:). > --- snip --- > categories =3D { > SoObjectRequestHandler =3D { Yup, this is messy. Just define a proper object which is your XML-RPC =20= API and attach that to the application object. Actually it might even =20= be possible to use "RPC2" as a key for that object, like: categories =3D { SoApplication =3D { slots =3D { RPC2 =3D { defaultAccess =3D allow; protectedBy =3D ""; valueClass =3D ZNeKAPI; }; }; }; }; classes =3D { ZNeKAPI =3D { methods =3D { > "system.listMethods" =3D { > protectedBy =3D "View"; > actionClass =3D "BMSOPEAction"; > actionName =3D "listSystemMethods"; > arguments =3D { positionalKeys =3D ( ); }; > }; > }; }; }; Might work, didn't try. > I see. This really offers quite some flexibility, although I can't =20 > think of a situation where this might be very useful. Hu? This allows you to properly package your API. Like events addEvent deleteEvent tasks addTask deleteTask Obviously you don't want to put your whole XML-RPC API in just a =20 single object/class. A bit more obscure is the ability to address individual objects with =20 XML-RPC. But still quite cool IMHO. Greets, Helge --=20 http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Tue Apr 4 00:19:17 2006 From: macosx@opengroupware.org (=?ISO-8859-1?Q?Marcus_M=FCller?=) Date: Tue, 4 Apr 2006 01:19:17 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: <77D19F1F-D103-41DD-BF5A-606A2B64F0EC@opengroupware.org> References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> <442E5DA3.6090708@mulle-kybernetik.com> <4D838CDE-BD4A-4E62-82BC-A8AE3617028C@opengroupware.org> <77D19F1F-D103-41DD-BF5A-606A2B64F0EC@opengroupware.org> Message-ID: --Apple-Mail-13-442916834 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed On 03.04.2006, at 19:55, Helge Hess wrote: > Yup, this is messy. Just define a proper object which is your XML- > RPC API and attach that to the application object. Actually it > might even be possible to use "RPC2" as a key for that object, like: > > categories = { > SoApplication = { > slots = { > RPC2 = { > defaultAccess = allow; > protectedBy = ""; > valueClass = ZNeKAPI; Is this some future extension - or is this already possible? This is some very cool idea for providing "aliases" ... > classes = { > ZNeKAPI = { > methods = { >> "system.listMethods" = { >> protectedBy = "View"; >> actionClass = "BMSOPEAction"; >> actionName = "listSystemMethods"; >> arguments = { positionalKeys = ( ); }; Is this correct? You provide some value class which itself doesn't implement anything as it's defining methods which get redirected to the BMSOPEAction class. Or did you skip (overlook) that part of the definition and meant something different? > Might work, didn't try. > >> I see. This really offers quite some flexibility, although I can't >> think of a situation where this might be very useful. > > Hu? This allows you to properly package your API. Like > > events > addEvent > deleteEvent > tasks > addTask > deleteTask > > Obviously you don't want to put your whole XML-RPC API in just a > single object/class. Sure, of course not. It already works by mapping methods to action classes, just as in the example given above. Packaging everything depending on URLs is cool, but not very intuitive to use in other client side implementations. In python's xmlrpclib module, you need different server objects for different URLs. It's thus not very "handy" to access such an API ... like it or not, but XML-RPC works with these crude package-prefixed method names. But don't get me wrong - I like both ideas, it's just that I - personally - wouldn't use the URL approach for XML-RPC, nor would I endorse it. > A bit more obscure is the ability to address individual objects > with XML-RPC. But still quite cool IMHO. What do you mean? Cheers, Marcus -- Marcus Mueller . . . crack-admin/coder ;-) Mulle kybernetiK . http://www.mulle-kybernetik.com Current projects: http://www.mulle-kybernetik.com/znek/ --Apple-Mail-13-442916834 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
On 03.04.2006, at = 19:55, Helge Hess wrote:

Yup, this is messy. Just define a proper object = which is your XML-RPC API and attach that to the application object. = Actually it might even be possible to use "RPC2" as a key for that = object, like:

=A0 = categories =3D {
=A0 =A0 SoApplication =3D = {
=A0 =A0 =A0= slots =3D {
=A0 =A0 =A0 =A0 RPC2 =3D = {
=A0 =A0 =A0= =A0 =A0 defaultAccess =3D allow;
=A0 =A0 =A0 =A0 =A0 protectedBy = =A0 =3D = "<public>";
=A0 =A0 =A0 =A0 =A0 = valueClass=A0 =A0 =3D = ZNeKAPI;

Is this some future extension - = or is this already possible? This is some very cool idea for providing = "aliases" ...

=A0=A0cla= sses =3D {
=A0 =A0 ZNeKAPI =3D {
=A0 =A0 =A0 = methods =3D {
=A0 =A0 =A0 =A0 = "system.listMethods" =3D {
=A0 =A0 =A0 =A0 =A0 protectedBy =3D= "View";
=A0 =A0 =A0 =A0 =A0 actionClass =3D= "BMSOPEAction";
=A0 =A0 =A0 =A0 =A0 = actionName=A0 =3D = "listSystemMethods";
=A0 =A0 =A0 =A0 =A0 arguments = =A0 =3D { positionalKeys =3D = ( ); };

Is this correct? You provide = some value class which itself doesn't implement anything as it's = defining methods which get redirected to the BMSOPEAction class. Or did = you skip (overlook) that part of the definition and meant something = different?

Might work, didn't try.

I see. This really offers quite some flexibility, = although I can't think of a situation where this might be very = useful.
Hu? This allows you to properly = package your API. Like
=A0 events
=A0 =A0 = addEvent
=A0 =A0 deleteEvent
=A0 = tasks
=A0 =A0 addTask
=A0 =A0 = deleteTask

Obviously you don't want to put your whole XML-RPC = API in just a single object/class.

Sure, of course not. It already = works by mapping methods to action classes, just as in the example given = above.

Packaging everything = depending on URLs is cool, but not very intuitive to use in other client = side implementations. In python's xmlrpclib module, you need different = server objects for different URLs. It's thus not very "handy" to access = such an API ... like it or not, but XML-RPC works with these crude = package-prefixed method names.

But don't get me wrong - I = like both ideas, it's just that I - personally - wouldn't use the URL = approach for XML-RPC, nor would I endorse it.


A bit more obscure is the = ability to address individual objects with XML-RPC. But still quite cool = IMHO.

What do you mean?

=

Cheers,


=A0=A0Marcus


--=A0

Marcus Mueller=A0=A0.=A0=A0.=A0=A0.=A0=A0crack-admin/coder = ;-)

Mulle = kybernetiK=A0=A0.=A0=A0http://www.mulle-kybernetik.com

Current = projects:=A0http://www.mulle-kybernetik= .com/znek/


=

= --Apple-Mail-13-442916834-- From macosx@opengroupware.org Tue Apr 4 00:37:48 2006 From: macosx@opengroupware.org (Helge Hess) Date: Tue, 4 Apr 2006 01:37:48 +0200 Subject: [OGo-MacOSX] How can I have the application running in the background without using the windows server In-Reply-To: References: <25592043-C85B-4DD0-8F78-C3A2458DAFD5@free.fr> <2915E366-82CB-424F-A6AD-C851D3AE6E8F@opengroupware.org> <442E5DA3.6090708@mulle-kybernetik.com> <4D838CDE-BD4A-4E62-82BC-A8AE3617028C@opengroupware.org> <77D19F1F-D103-41DD-BF5A-606A2B64F0EC@opengroupware.org> Message-ID: On 4. Apr 2006, at 01:19 Uhr, Marcus M=FCller wrote: > Is this some future extension - or is this already possible? Not sure what you mean, but everything outlined should be "already =20 possible". > Is this correct? You provide some value class which itself doesn't =20 > implement anything as it's defining methods which get redirected to =20= > the BMSOPEAction class. Or did you skip (overlook) that part of the =20= > definition and meant something different? Get the Zope/SOPE concept ;-) The given class (SoClass) *does* have a =20= method. That the method in turn is implemented as a direct action and =20= not a regular ObjC method is just a minor difference. (a SoMethod is =20 anything "callable"). Thats Python/Zope style. Implementation doesn't matter. Everything =20 which is 'callable' can be a method, be it a WOComponent, a =20 WODirectAction or a plain ObjC selector (or a SQLMethod which =20 executes SQL or a PythonMethod etc etc). > Packaging everything depending on URLs is cool, but not very =20 > intuitive to use in other client side implementations. Reread my initial response. You don't need to use URLs, you can also =20 use XML-RPC namespaces. Processing is exactly the same. Either use server =3D Server("http://host/MyApp") server.events.deleteEvent(12345) or use server =3D Server("http://host/MyApp/so/events") server.deleteEvent(12345) Its your choice. For the app developer it doesn't matter. > In python's xmlrpclib module, you need different server objects for =20= > different URLs. No, you don't. >> A bit more obscure is the ability to address individual objects =20 >> with XML-RPC. But still quite cool IMHO. > What do you mean? Well, object oriented programming ;-) Say you have an event object =20 living at (mapped to): http://host/zidestore/so/helge/Calendars/12634 you can run XML-RPC "methods" on it. (XML-RPC "methods" are not =20 really methods but just functions, unless you map "self" to the URL ...) Greets, Helge --=20 http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Wed Apr 5 13:51:42 2006 From: macosx@opengroupware.org (william) Date: Wed, 5 Apr 2006 13:51:42 +0100 Subject: [OGo-MacOSX] Sorry to bother but cannot get past the start line Message-ID: running tiger server installed xcode darwin ports tried installing gnumake step as per various instructions but when i try sourcing it file not found I know this might seem basic but my company have sold the idea of this product now they want me to impliment it despite never trying first. Any help would be greatfully recieved From macosx@opengroupware.org Wed Apr 5 14:30:21 2006 From: macosx@opengroupware.org (Helge Hess) Date: Wed, 5 Apr 2006 15:30:21 +0200 Subject: [OGo-MacOSX] Sorry to bother but cannot get past the start line In-Reply-To: References: Message-ID: On 5. Apr 2006, at 14:51 Uhr, william wrote: > tried installing gnumake step as per various instructions but when > i try sourcing it file not found Well, you need to post more a exact description of what you have done and what error messages you get (eg the exact commands you use to source what file). Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Wed Apr 5 23:16:59 2006 From: macosx@opengroupware.org (=?ISO-8859-1?Q?Marcus_M=FCller?=) Date: Thu, 6 Apr 2006 00:16:59 +0200 Subject: [OGo-MacOSX] Xcode changes in r1244 Message-ID: <61D15229-F2C7-4B58-ADE5-E9A864318CF4@mulle-kybernetik.com> --Apple-Mail-1-611978426 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Hi all, the "Wrapper" buildstyle is now producing universal (fat) binaries by default. In order to do so, its SDKROOT has been fixed to 10.4u. It's possible that not everything will compile now, as you usually don't have i386 versions of PostgreSQL and SQLite3 installed. However, the Wrapper buildstyle is definitely aimed at deployments ... and universal is now the way to go. :-) I didn't touch the "Development" buildstyle - everything here should stay as it was before. Cheers, Marcus -- Marcus Mueller . . . crack-admin/coder ;-) Mulle kybernetiK . http://www.mulle-kybernetik.com Current projects: http://www.mulle-kybernetik.com/znek/ --Apple-Mail-1-611978426 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1 Hi all,

the "Wrapper" buildstyle is = now producing universal (fat) binaries by default. In order to do so, = its SDKROOT has been fixed to 10.4u. It's possible that not everything = will compile now, as you usually don't have i386 versions of PostgreSQL = and SQLite3 installed.

However, the Wrapper = buildstyle is definitely aimed at deployments ... and universal is now = the way to go. :-)


I didn't touch the = "Development" buildstyle - everything here should stay as it was = before.


Cheers,


=A0=A0Marcus


--=A0

Marcus Mueller=A0=A0.=A0=A0.=A0=A0.=A0=A0crack-admin/coder = ;-)

Mulle = kybernetiK=A0=A0.=A0=A0http://www.mulle-kybernetik.com

Current = projects:=A0http://www.mulle-kybernetik= .com/znek/


=

= --Apple-Mail-1-611978426-- From macosx@opengroupware.org Wed Apr 5 23:22:47 2006 From: macosx@opengroupware.org (=?ISO-8859-1?Q?Marcus_M=FCller?=) Date: Thu, 6 Apr 2006 00:22:47 +0200 Subject: [OGo-MacOSX] Re: OGo for Mac OS X In-Reply-To: References: Message-ID: --Apple-Mail-2-612326772 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed On 05.04.2006, at 15:21, Peter Schraufstetter wrote: > Hi, > i tried to install OGo on OS X 10.4.4 but i am stuck in the middle. > I am not a developer and have no idea what goes wrong. > Attached i send the complete terminal output from the whole > installation, configure and make. > > Maybe this is any help for your porting project.......and also > hopefully you can tell me what is the problem with my installation. I'm not sure what happens there either ... try compiling everything with: make messages=yes That should print some additional info. It's not necessary to restart from the beginning ... everything except the last step looks ok. > Thank you > Peter In the future please direct all inquiries to: macosx@opengroupware.org Others may have already experienced the problems you're currently facing. Also, others might be interested in fixes to these problems as well. :-) Cheers, Marcus -- Marcus Mueller . . . crack-admin/coder ;-) Mulle kybernetiK . http://www.mulle-kybernetik.com Current projects: http://www.mulle-kybernetik.com/znek/ --Apple-Mail-2-612326772 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=ISO-8859-1
On 05.04.2006, at = 15:21, Peter Schraufstetter wrote:

Hi,
i tried to = install OGo on OS X 10.4.4 but i am stuck in the middle.
I am not a developer and have no idea what goes = wrong.
Attached i send the complete = terminal output from the whole installation, configure and = make.

Maybe this is any help for your porting = project.......and also hopefully you can tell me what is the problem = with my installation.

I'm not sure what happens there = either ... try compiling everything with:

make=A0messages=3Dyes

That should print = some additional info. It's not necessary to restart from the beginning = ... everything except the last step looks ok.

Thank you
In the future please direct = all inquiries to:

Others may have = already experienced the problems you're currently facing. Also, others = might be interested in fixes to these problems as well. = :-)

Cheers,


=A0=A0Marcus


--=A0

Marcus Mueller=A0=A0.=A0=A0.=A0=A0.=A0=A0crack-admin/coder = ;-)

Mulle = kybernetiK=A0=A0.=A0=A0http://www.mulle-kybernetik.com

Current = projects:=A0http://www.mulle-kybernetik= .com/znek/


=

= --Apple-Mail-2-612326772-- From macosx@opengroupware.org Wed Apr 5 14:23:27 2006 From: macosx@opengroupware.org (Peter Schraufstetter) Date: Wed, 5 Apr 2006 15:23:27 +0200 Subject: [OGo-MacOSX] OGo Installation on OS X Message-ID: --Apple-Mail-6-579966616 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Hi, i tried to install OGo on OS X 10.4.4 but i am stuck in the middle. I am not a developer and have no idea what goes wrong. Attached i send the complete terminal output from the whole installation, configure and make. Maybe this is any help for your porting project.......and also hopefully you can tell me what is the problem with my installation. Thank you Peter --Apple-Mail-6-579966616 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-mac-type=54455854; x-unix-mode=0644; x-mac-creator=21526368; name="GNUStep und SOPE compiling" Content-Disposition: attachment; filename="GNUStep und SOPE compiling" Last login: Thu Mar 16 17:54:39 on ttyp1 Welcome to Darwin! ps:/usr/local sysadmin$ sudo tar -xvf gnustep-make-1.10.0.tar Password: gnustep-make-1.10.0/ gnustep-make-1.10.0/Documentation/ gnustep-make-1.10.0/Documentation/.cvsignore gnustep-make-1.10.0/Documentation/.latex2html-init gnustep-make-1.10.0/Documentation/DESIGN gnustep-make-1.10.0/Documentation/GNUmakefile gnustep-make-1.10.0/Documentation/GNUstep.7 gnustep-make-1.10.0/Documentation/README.Cygwin gnustep-make-1.10.0/Documentation/README.Darwin gnustep-make-1.10.0/Documentation/README.MinGW gnustep-make-1.10.0/Documentation/README.MinGWOnCygwin gnustep-make-1.10.0/Documentation/README.NetBSD gnustep-make-1.10.0/Documentation/announce.texi gnustep-make-1.10.0/Documentation/end.texi gnustep-make-1.10.0/Documentation/faq.texi gnustep-make-1.10.0/Documentation/filesystem.texi gnustep-make-1.10.0/Documentation/gnustep-howto.texi gnustep-make-1.10.0/Documentation/gnustep.init gnustep-make-1.10.0/Documentation/install.texi gnustep-make-1.10.0/Documentation/internals.tex gnustep-make-1.10.0/Documentation/machines.texi gnustep-make-1.10.0/Documentation/make.texi gnustep-make-1.10.0/Documentation/news.texi gnustep-make-1.10.0/Documentation/openapp.1 gnustep-make-1.10.0/Documentation/readme.texi gnustep-make-1.10.0/Documentation/userfaq.texi gnustep-make-1.10.0/.cvsignore gnustep-make-1.10.0/ANNOUNCE gnustep-make-1.10.0/COPYING gnustep-make-1.10.0/ChangeLog gnustep-make-1.10.0/ChangeLog.1 gnustep-make-1.10.0/FAQ gnustep-make-1.10.0/GNUmakefile.in gnustep-make-1.10.0/GNUmakefile.postamble gnustep-make-1.10.0/GNUmakefile.preamble gnustep-make-1.10.0/GNUstep-HOWTO gnustep-make-1.10.0/GNUstep-reset.sh gnustep-make-1.10.0/GNUstep.csh.in gnustep-make-1.10.0/GNUstep.sh.in gnustep-make-1.10.0/GNUsteprc.in gnustep-make-1.10.0/INSTALL gnustep-make-1.10.0/NEWS gnustep-make-1.10.0/README gnustep-make-1.10.0/Version gnustep-make-1.10.0/aggregate.make gnustep-make-1.10.0/application.make gnustep-make-1.10.0/bundle.make gnustep-make-1.10.0/clean_cpu.sh gnustep-make-1.10.0/clean_os.sh gnustep-make-1.10.0/clean_vendor.sh gnustep-make-1.10.0/clibrary.make gnustep-make-1.10.0/common.make gnustep-make-1.10.0/config.guess gnustep-make-1.10.0/config.h.in gnustep-make-1.10.0/config.make.in gnustep-make-1.10.0/config.site gnustep-make-1.10.0/config.sub gnustep-make-1.10.0/config_thread.m gnustep-make-1.10.0/configure gnustep-make-1.10.0/configure.ac gnustep-make-1.10.0/cpu.sh gnustep-make-1.10.0/create_domain_dir_tree.sh gnustep-make-1.10.0/ctool.make gnustep-make-1.10.0/debugapp.in gnustep-make-1.10.0/documentation.make gnustep-make-1.10.0/executable.template.in gnustep-make-1.10.0/fixpath.sh.in gnustep-make-1.10.0/framework.make gnustep-make-1.10.0/gnustep-make.spec.in gnustep-make-1.10.0/gswapp.make gnustep-make-1.10.0/gswbundle.make gnustep-make-1.10.0/install-sh gnustep-make-1.10.0/java-executable.template gnustep-make-1.10.0/java-tool.make gnustep-make-1.10.0/java.make gnustep-make-1.10.0/jni.make gnustep-make-1.10.0/ld_lib_path.csh gnustep-make-1.10.0/ld_lib_path.sh gnustep-make-1.10.0/library-combo.make gnustep-make-1.10.0/library.make gnustep-make-1.10.0/messages.make gnustep-make-1.10.0/mkinstalldirs gnustep-make-1.10.0/move_obsolete_paths.sh gnustep-make-1.10.0/names.make gnustep-make-1.10.0/native-library.make gnustep-make-1.10.0/objc.make gnustep-make-1.10.0/openapp.in gnustep-make-1.10.0/opentool.in gnustep-make-1.10.0/os.sh gnustep-make-1.10.0/palette.make gnustep-make-1.10.0/relative_path.sh gnustep-make-1.10.0/resource-set.make gnustep-make-1.10.0/rules.make gnustep-make-1.10.0/service.make gnustep-make-1.10.0/setlocaltz.sh gnustep-make-1.10.0/spec-debug-alone-rules.template gnustep-make-1.10.0/spec-debug-rules.template gnustep-make-1.10.0/spec-rules.template gnustep-make-1.10.0/strip_makefiles.sh gnustep-make-1.10.0/subproject.make gnustep-make-1.10.0/tar-exclude-list gnustep-make-1.10.0/target.make gnustep-make-1.10.0/test-application.make gnustep-make-1.10.0/test-library.make gnustep-make-1.10.0/test-tool.make gnustep-make-1.10.0/tool.make gnustep-make-1.10.0/transform_paths.sh gnustep-make-1.10.0/user_home.c gnustep-make-1.10.0/vendor.sh gnustep-make-1.10.0/which_lib.c gnustep-make-1.10.0/Instance/ gnustep-make-1.10.0/Instance/bundle.make gnustep-make-1.10.0/Instance/README gnustep-make-1.10.0/Instance/Documentation/ gnustep-make-1.10.0/Instance/Documentation/autogsdoc.make gnustep-make-1.10.0/Instance/Documentation/gsdoc.make gnustep-make-1.10.0/Instance/Documentation/install_files.make gnustep-make-1.10.0/Instance/Documentation/javadoc.make gnustep-make-1.10.0/Instance/Documentation/latex.make gnustep-make-1.10.0/Instance/Documentation/texi.make gnustep-make-1.10.0/Instance/application.make gnustep-make-1.10.0/Instance/clibrary.make gnustep-make-1.10.0/Instance/ctool.make gnustep-make-1.10.0/Instance/documentation.make gnustep-make-1.10.0/Instance/framework.make gnustep-make-1.10.0/Instance/gswapp.make gnustep-make-1.10.0/Instance/gswbundle.make gnustep-make-1.10.0/Instance/java-tool.make gnustep-make-1.10.0/Instance/java.make gnustep-make-1.10.0/Instance/library.make gnustep-make-1.10.0/Instance/objc.make gnustep-make-1.10.0/Instance/palette.make gnustep-make-1.10.0/Instance/resource-set.make gnustep-make-1.10.0/Instance/rules.make gnustep-make-1.10.0/Instance/service.make gnustep-make-1.10.0/Instance/subproject.make gnustep-make-1.10.0/Instance/test-application.make gnustep-make-1.10.0/Instance/test-library.make gnustep-make-1.10.0/Instance/test-tool.make gnustep-make-1.10.0/Instance/tool.make gnustep-make-1.10.0/Instance/Shared/ gnustep-make-1.10.0/Instance/Shared/bundle.make gnustep-make-1.10.0/Instance/Shared/README gnustep-make-1.10.0/Instance/Shared/headers.make gnustep-make-1.10.0/Instance/Shared/java.make gnustep-make-1.10.0/Instance/Shared/stamp-string.make gnustep-make-1.10.0/Instance/Shared/strings.make gnustep-make-1.10.0/Master/ gnustep-make-1.10.0/Master/bundle.make gnustep-make-1.10.0/Master/README gnustep-make-1.10.0/Master/aggregate.make gnustep-make-1.10.0/Master/application.make gnustep-make-1.10.0/Master/clibrary.make gnustep-make-1.10.0/Master/ctool.make gnustep-make-1.10.0/Master/documentation.make gnustep-make-1.10.0/Master/framework.make gnustep-make-1.10.0/Master/gswapp.make gnustep-make-1.10.0/Master/gswbundle.make gnustep-make-1.10.0/Master/java-tool.make gnustep-make-1.10.0/Master/java.make gnustep-make-1.10.0/Master/library.make gnustep-make-1.10.0/Master/objc.make gnustep-make-1.10.0/Master/palette.make gnustep-make-1.10.0/Master/resource-set.make gnustep-make-1.10.0/Master/rpm.make gnustep-make-1.10.0/Master/rules.make gnustep-make-1.10.0/Master/service.make gnustep-make-1.10.0/Master/source-distribution.make gnustep-make-1.10.0/Master/subproject.make gnustep-make-1.10.0/Master/test-application.make gnustep-make-1.10.0/Master/test-library.make gnustep-make-1.10.0/Master/test-tool.make gnustep-make-1.10.0/Master/tool.make ps:/usr/local sysadmin$ cd gnustep-make-1.10.0 ###################################### ps:/usr/local/gnustep-make-1.10.0 sysadmin$ OGoROOT="$HOME/OGoRoot" ###################################### ps:/usr/local/gnustep-make-1.10.0 sysadmin$ ./configure --prefix=$OGoROOT --without-system-root --with-user-root=$OGoROOT --with-local-root=$OGoROOT --with-network-root=$OGoROOT --with-library-combo=apple-apple-nil checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking how to run the C preprocessor... gcc -E checking build system type... powerpc-apple-darwin8.5.0 checking host system type... powerpc-apple-darwin8.5.0 checking target system type... powerpc-apple-darwin8.5.0 checking for library combo... apple-apple-nil checking for apple compiler flags... yes checking for ar... ar checking for dlltool... no checking for ranlib... ranlib checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking for gnutar... gnutar checking for chown... chown checking for GNUSTEP_SYSTEM_ROOT to use... /Users/sysadmin/OGoRoot checking for GNUSTEP_LOCAL_ROOT to use... /Users/sysadmin/OGoRoot checking for GNUSTEP_NETWORK_ROOT to use... /Users/sysadmin/OGoRoot checking for GNUSTEP_USER_ROOT to use... /Users/sysadmin/OGoRoot checking for flattened directory structure... yes checking for custom shared objc library... NONE checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking dir.h usability... no checking dir.h presence... no checking for dir.h... no checking for string.h... (cached) yes checking for stdlib.h... (cached) yes checking for sys/types.h... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking for sys/stat.h... (cached) yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking for unistd.h... (cached) yes checking for getpwnam... yes checking for getpwuid... yes checking for geteuid... yes checking for getlogin... yes checking for strchr... yes checking whether objc has thread support... no checking whether we should use native ObjC exceptions... not requested by user checking if the compiler supports autodependencies... yes: gcc major version is 4 checking if we should strip makefiles after installation... no checking for the version of gnustep-make we are compiling... 1.10.0 configure: creating ./config.status config.status: creating config.make config.status: creating openapp config.status: creating debugapp config.status: creating opentool config.status: creating executable.template config.status: creating GNUmakefile config.status: creating GNUstep.sh config.status: creating GNUstep.csh config.status: creating fixpath.sh config.status: creating gnustep-make.spec config.status: creating GNUsteprc config.status: creating config.h config.status: executing default commands ps:/usr/local/gnustep-make-1.10.0 sysadmin$ make -s install which_lib.c: In function 'stripstr': which_lib.c:176: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness which_lib.c: In function 'normalize_and_check_dir': which_lib.c:249: warning: pointer targets in passing argument 1 of 'stripstr' differ in signedness which_lib.c: In function 'main': which_lib.c:715: warning: pointer targets in passing argument 1 of 'stripstr' differ in signedness Moving paths from old heirarchy: Creating system domain: /Users/sysadmin/OGoRoot Creating local and network dirs: /Users/sysadmin/OGoRoot, /Users/sysadmin/OGoRoot Creating makefile directories in: /Users/sysadmin/OGoRoot/Library/Makefiles Installing gnustep-make support software Installing makefiles Installing system GNUsteprc ###################################### ps:/usr/local/gnustep-make-1.10.0 sysadmin$ source ~/OGoRoot/Library/Makefiles/GNUstep.sh ps:/usr/local/gnustep-make-1.10.0 sysadmin$ env | grep GNUSTEP_USER GNUSTEP_USER_ROOT=/Users/sysadmin/OGoRoot ps:/usr/local/gnustep-make-1.10.0 sysadmin$ cd .. ###################################### ps:/usr/local sysadmin$ sudo tar -xvf sope-4.4.0-cell-r1160.tar Password: sope/ sope/debian/ sope/debian/patches/ sope/debian/patches/00list sope/debian/control.in sope/debian/control sope/debian/compat sope/debian/sope_SOPEVER_-versitsaxdriver.install sope/debian/libsope-appserver_SOPEVER_-dev.install sope/debian/libsope-gdl1-_SOPEVER_-dev.install sope/debian/sope_SOPEVER_-appserver.install sope/debian/libsope-ldap_SOPEVER_.install sope/debian/sope-tools.links sope/debian/libapache-mod-ngobjweb.install sope/debian/sope_SOPEVER_-libxmlsaxdriver.install sope/debian/libsope-ical_SOPEVER_-dev.install sope/debian/libapache2-mod-ngobjweb.prerm sope/debian/libsope-mime_SOPEVER_.install sope/debian/libsope-appserver_SOPEVER_.install sope/debian/libsope-core_SOPEVER_.install sope/debian/libsope-xml_SOPEVER_.install sope/debian/libapache-mod-ngobjweb.postinst sope/debian/libsope-gdl1-_SOPEVER_.install sope/debian/libapache2-mod-ngobjweb.install sope/debian/sope-tools.install sope/debian/sope_SOPEVER_-stxsaxdriver.install sope/debian/libsope-ical_SOPEVER_.install sope/debian/500mod_ngobjweb.info sope/debian/libapache-mod-ngobjweb.dirs sope/debian/ngobjweb.load sope/debian/changelog sope/debian/libapache2-mod-ngobjweb.postinst sope/debian/rules sope/debian/libsope-ldap_SOPEVER_-dev.install sope/debian/sope_SOPEVER_-appserver.links sope/debian/libapache-mod-ngobjweb.postrm sope/debian/libapache2-mod-ngobjweb.dirs sope/debian/copyright sope/debian/sope_SOPEVER_-gdl1-postgresql.install sope/debian/libapache-mod-ngobjweb.prerm sope/debian/libsope-mime_SOPEVER_-dev.install sope/debian/libsope-core_SOPEVER_-dev.install sope/debian/libsope-xml_SOPEVER_-dev.install sope/maintenance/ sope/maintenance/mod_ngobjweb_conectiva10.spec sope/maintenance/changes-4.4b.1-to-4.4b.2.txt sope/maintenance/changes-4.4rc.1-to-4.4rc.2.txt sope/maintenance/changes-4.4b.2-to-4.4b.3.txt sope/maintenance/mod_ngobjweb_rhel3.spec sope/maintenance/changes-4.4b.3-to-4.4b.4.txt sope/maintenance/changes-4.4b.6-to-4.4rc.1.txt sope/maintenance/changes-4.4b.4-to-4.4b.5.txt sope/maintenance/changes-4.3.8-to-4.3.9.txt sope/maintenance/changes-4.4b.5-to-4.4b.6.txt sope/maintenance/sope-fixcopyright.sh sope/maintenance/mod_ngobjweb_suse82.spec sope/maintenance/mod_ngobjweb_suse92.spec sope/maintenance/sope.spec sope/maintenance/changes-4.4rc.2-to-4.4.0.txt sope/maintenance/mod_ngobjweb_mdk100.spec sope/maintenance/mod_ngobjweb_redhat9.spec sope/maintenance/changes-4.3.9-to-4.4b.1.txt sope/maintenance/changes-to-4.2pre.txt sope/maintenance/mod_ngobjweb_slss8.spec sope/maintenance/mod_ngobjweb_rhel4.spec sope/maintenance/howto-merge.txt sope/maintenance/dummytool.m sope/maintenance/ChangeLog sope/maintenance/changes-4.3.7-to-4.3.8.txt sope/maintenance/changes-4.3.9-to-4.3.10.txt sope/maintenance/mod_ngobjweb_suse91.spec sope/maintenance/mod_ngobjweb_suse93.spec sope/maintenance/mod_ngobjweb_mdk101.spec sope/maintenance/mod_ngobjweb_sles9.spec sope/maintenance/mod_ngobjweb_fedora.spec sope/maintenance/changes-to-4.3.1.txt sope/maintenance/changes-to-4.3.6.txt sope/sope-ldap/ sope/sope-ldap/samples/ sope/sope-ldap/samples/pwd-check.m sope/sope-ldap/samples/GNUmakefile sope/sope-ldap/samples/ChangeLog sope/sope-ldap/samples/COPYING sope/sope-ldap/samples/ldapls.m sope/sope-ldap/samples/ldapchkpwd.m sope/sope-ldap/samples/fhs.make sope/sope-ldap/samples/ldap2dsml.m sope/sope-ldap/samples/README sope/sope-ldap/samples/common.h sope/sope-ldap/samples/GNUmakefile.preamble sope/sope-ldap/sope-ldap.xcode/ sope/sope-ldap/sope-ldap.xcode/project.pbxproj sope/sope-ldap/NGLdap/ sope/sope-ldap/NGLdap/NGLdap.xcode/ sope/sope-ldap/NGLdap/NGLdap.xcode/project.pbxproj sope/sope-ldap/NGLdap/GNUmakefile.postamble sope/sope-ldap/NGLdap/NGLdapAttribute.h sope/sope-ldap/NGLdap/NGLdapConnection.m sope/sope-ldap/NGLdap/NGLdapModification.h sope/sope-ldap/NGLdap/NGLdapURL.m sope/sope-ldap/NGLdap/NGLdapAttribute.m sope/sope-ldap/NGLdap/Version sope/sope-ldap/NGLdap/NGLdapModification.m sope/sope-ldap/NGLdap/NGLdap-Info.plist sope/sope-ldap/NGLdap/NSString+DN.h sope/sope-ldap/NGLdap/NGLdap.h sope/sope-ldap/NGLdap/NSString+DN.m sope/sope-ldap/NGLdap/NGLdapDataSource.h sope/sope-ldap/NGLdap/EOQualifier+LDAP.h sope/sope-ldap/NGLdap/COPYING sope/sope-ldap/NGLdap/COPYRIGHT sope/sope-ldap/NGLdap/NGLdapDataSource.m sope/sope-ldap/NGLdap/EOQualifier+LDAP.m sope/sope-ldap/NGLdap/GNUmakefile.preamble sope/sope-ldap/NGLdap/NGLdapEntry.h sope/sope-ldap/NGLdap/NGLdapEntry.m sope/sope-ldap/NGLdap/fhs.make sope/sope-ldap/NGLdap/NGLdapConnection+Private.h sope/sope-ldap/NGLdap/NGLdapFileManager.h sope/sope-ldap/NGLdap/README sope/sope-ldap/NGLdap/NGLdapSearchResultEnumerator.h sope/sope-ldap/NGLdap/ChangeLog sope/sope-ldap/NGLdap/GNUmakefile sope/sope-ldap/NGLdap/NGLdapGlobalID.h sope/sope-ldap/NGLdap/NGLdapURL.h sope/sope-ldap/NGLdap/NGLdapSearchResultEnumerator.m sope/sope-ldap/NGLdap/NGLdapFileManager.m sope/sope-ldap/NGLdap/NGLdapGlobalID.m sope/sope-ldap/NGLdap/NGLdapConnection.h sope/sope-ldap/NGLdap/common.h sope/sope-ldap/README-OSX.txt sope/sope-ldap/GNUmakefile sope/sope-mime/ sope/sope-mime/NGImap4/ sope/sope-mime/NGImap4/NGImap4.xcode/ sope/sope-mime/NGImap4/NGImap4.xcode/project.pbxproj sope/sope-mime/NGImap4/NGImap4FileManager.h sope/sope-mime/NGImap4/imTimeMacros.h sope/sope-mime/NGImap4/NGImap4FolderMailRegistry.m sope/sope-mime/NGImap4/NGImap4FolderGlobalID.h sope/sope-mime/NGImap4/NGImap4ServerGlobalID.m sope/sope-mime/NGImap4/NGImap4Envelope.h sope/sope-mime/NGImap4/NGImap4Support.h sope/sope-mime/NGImap4/NGImap4FolderGlobalID.m sope/sope-mime/NGImap4/NGImap4Functions.m sope/sope-mime/NGImap4/NGImap4FileManager.m sope/sope-mime/NGImap4/NGImap4Client.h sope/sope-mime/NGImap4/NGImap4Envelope.m sope/sope-mime/NGImap4/NGSieveClient.h sope/sope-mime/NGImap4/NGImap4Support.m sope/sope-mime/NGImap4/GNUmakefile.preamble sope/sope-mime/NGImap4/NGImap4Client.m sope/sope-mime/NGImap4/NGImap4Message.h sope/sope-mime/NGImap4/NGSieveClient.m sope/sope-mime/NGImap4/NGImap4Message.m sope/sope-mime/NGImap4/imCommon.h sope/sope-mime/NGImap4/COPYING sope/sope-mime/NGImap4/NGImap4Message+BodyStructure.h sope/sope-mime/NGImap4/README sope/sope-mime/NGImap4/NGImap4ResponseNormalizer.h sope/sope-mime/NGImap4/NGImap4ResponseNormalizer.m sope/sope-mime/NGImap4/NGImap4ServerRoot.h sope/sope-mime/NGImap4/NGImap4Folder.h sope/sope-mime/NGImap4/EOQualifier+IMAPAdditions.m sope/sope-mime/NGImap4/NGImap4ResponseParser.h sope/sope-mime/NGImap4/NGImap4-Info.plist sope/sope-mime/NGImap4/NGImap4.h sope/sope-mime/NGImap4/NGImap4ServerRoot.m sope/sope-mime/NGImap4/NGImap4ResponseParser.m sope/sope-mime/NGImap4/NGImap4Folder.m sope/sope-mime/NGImap4/GNUmakefile sope/sope-mime/NGImap4/ChangeLog sope/sope-mime/NGImap4/NGImap4MessageGlobalID.h sope/sope-mime/NGImap4/NGImap4EnvelopeAddress.h sope/sope-mime/NGImap4/NGImap4Context.h sope/sope-mime/NGImap4/NGImap4.m sope/sope-mime/NGImap4/SxCore-NGImap4Flow.graffle sope/sope-mime/NGImap4/NGImap4MessageGlobalID.m sope/sope-mime/NGImap4/NGImap4EnvelopeAddress.m sope/sope-mime/NGImap4/NGImap4FolderFlags.h sope/sope-mime/NGImap4/NGImap4DataSource.h sope/sope-mime/NGImap4/NGImap4Context.m sope/sope-mime/NGImap4/TODO sope/sope-mime/NGImap4/NGImap4FolderFlags.m sope/sope-mime/NGImap4/NSString+Imap4.h sope/sope-mime/NGImap4/NGImap4DataSource.m sope/sope-mime/NGImap4/NGImap4Functions.h sope/sope-mime/NGImap4/NSString+Imap4.m sope/sope-mime/NGImap4/NGImap4FolderMailRegistry.h sope/sope-mime/NGImap4/NGImap4ServerGlobalID.h sope/sope-mime/samples/ sope/sope-mime/samples/data/ sope/sope-mime/samples/data/bug883_at205.mail sope/sope-mime/samples/Mime2XmlTool.m sope/sope-mime/samples/ImapTool.m sope/sope-mime/samples/imapls.m sope/sope-mime/samples/GNUmakefile.preamble sope/sope-mime/samples/ImapQuotaTool.h sope/sope-mime/samples/mime2xml.m sope/sope-mime/samples/GNUmakefile sope/sope-mime/samples/ChangeLog sope/sope-mime/samples/ImapQuotaTool.m sope/sope-mime/samples/imapquota.m sope/sope-mime/samples/fhs.make sope/sope-mime/samples/README sope/sope-mime/samples/ImapListTool.h sope/sope-mime/samples/COPYING sope/sope-mime/samples/ImapTool.h sope/sope-mime/samples/ImapListTool.m sope/sope-mime/samples/Mime2XmlTool.h sope/sope-mime/samples/imap_tool.m sope/sope-mime/samples/test_qpdecode.m sope/sope-mime/NGMail/ sope/sope-mime/NGMail/NGMail.xcode/ sope/sope-mime/NGMail/NGMail.xcode/project.pbxproj sope/sope-mime/NGMail/NGSendMail.m sope/sope-mime/NGMail/COPYING sope/sope-mime/NGMail/NGMimeMessageParser.h sope/sope-mime/NGMail/NGSmtpReplyCodes.h sope/sope-mime/NGMail/NGPop3Support.h sope/sope-mime/NGMail/NGMimeMessageParser.m sope/sope-mime/NGMail/NGSmtpClient.h sope/sope-mime/NGMail/NGPop3Support.m sope/sope-mime/NGMail/NGMailAddressList.h sope/sope-mime/NGMail/NGSmtpClient.m sope/sope-mime/NGMail/NGMailAddress.h sope/sope-mime/NGMail/NGMailAddressList.m sope/sope-mime/NGMail/NGSendMail.h sope/sope-mime/NGMail/NGMimeMessageMultipartBodyGenerator.m sope/sope-mime/NGMail/NGMailAddress.m sope/sope-mime/NGMail/NGMimeMessageGenerator.h sope/sope-mime/NGMail/GNUmakefile.preamble sope/sope-mime/NGMail/NGMail.h sope/sope-mime/NGMail/NGMailAddressParser.h sope/sope-mime/NGMail/NGMimeMessageGenerator.m sope/sope-mime/NGMail/NGMailAddressParser.m sope/sope-mime/NGMail/ChangeLog sope/sope-mime/NGMail/GNUmakefile sope/sope-mime/NGMail/NGMail-Info.plist sope/sope-mime/NGMail/README sope/sope-mime/NGMail/NGMimeMessageRfc822BodyGenerator.m sope/sope-mime/NGMail/NGPop3Client.h sope/sope-mime/NGMail/libNGMail.def sope/sope-mime/NGMail/NGSmtpSupport.h sope/sope-mime/NGMail/NGMail.m sope/sope-mime/NGMail/NGPop3Client.m sope/sope-mime/NGMail/NGSmtpSupport.m sope/sope-mime/NGMail/NGMimeMessageTextBodyGenerator.m sope/sope-mime/NGMail/NGMimeMessageBodyGenerator.m sope/sope-mime/NGMail/NGMBoxReader.h sope/sope-mime/NGMail/common.h sope/sope-mime/NGMail/NGMimeMessage.h sope/sope-mime/NGMail/NGMBoxReader.m sope/sope-mime/NGMail/NGMailDecls.h sope/sope-mime/NGMail/NGMimeMessage.m sope/sope-mime/sope-mime.xcode/ sope/sope-mime/sope-mime.xcode/project.pbxproj sope/sope-mime/NGMime/ sope/sope-mime/NGMime/NGMime.xcode/ sope/sope-mime/NGMime/NGMime.xcode/project.pbxproj sope/sope-mime/NGMime/NGMimeBodyPart.h sope/sope-mime/NGMime/NGMimeType.h sope/sope-mime/NGMime/NGMimeRFC822DateHeaderFieldGenerator.m sope/sope-mime/NGMime/NGMimeMultipartBody.h sope/sope-mime/NGMime/NGMimeJoinedData.h sope/sope-mime/NGMime/NGMimeRFC822DateHeaderFieldParser.m sope/sope-mime/NGMime/NGMimeMultipartBody.m sope/sope-mime/NGMime/NGMimeStringHeaderFieldParser.m sope/sope-mime/NGMime/NGMimeJoinedData.m sope/sope-mime/NGMime/NGMimeHeaderFieldParser.h sope/sope-mime/NGMime/NGMimeHeaderFieldParser.m sope/sope-mime/NGMime/NGMimeMultipartBodyParser.m sope/sope-mime/NGMime/NGMimeBodyPart.m sope/sope-mime/NGMime/COPYRIGHT sope/sope-mime/NGMime/NGMimeHeaderFieldGeneratorSet.m sope/sope-mime/NGMime/COPYING sope/sope-mime/NGMime/NGMimeType.m sope/sope-mime/NGMime/NGMimePartGenerator.h sope/sope-mime/NGMime/GNUmakefile.preamble sope/sope-mime/NGMime/NGMimeDecls.h sope/sope-mime/NGMime/NGConcreteMimeType.h sope/sope-mime/NGMime/TODO sope/sope-mime/NGMime/NGMimeHeaderFieldGenerator.h sope/sope-mime/NGMime/ChangeLog sope/sope-mime/NGMime/GNUmakefile sope/sope-mime/NGMime/NGMimeContentLengthHeaderFieldGenerator.m sope/sope-mime/NGMime/NGMimeContentTypeHeaderFieldGenerator.m sope/sope-mime/NGMime/timeMacros.h sope/sope-mime/NGMime/NGConcreteMimeType.m sope/sope-mime/NGMime/NGMimeHeaderFieldGenerator.m sope/sope-mime/NGMime/NGMimeUtilities.h sope/sope-mime/NGMime/NGMime.h sope/sope-mime/NGMime/NGMime.m sope/sope-mime/NGMime/NGMimeContentLengthHeaderFieldParser.m sope/sope-mime/NGMime/NGMimeContentTypeHeaderFieldParser.m sope/sope-mime/NGMime/NGMimePartGenerator.m sope/sope-mime/NGMime/NGMimeHeaderFields.h sope/sope-mime/NGMime/NGMimeUtilities.m sope/sope-mime/NGMime/NGPart.h sope/sope-mime/NGMime/NGPart.m sope/sope-mime/NGMime/NGMimeHeaderFields.m sope/sope-mime/NGMime/README sope/sope-mime/NGMime/libNGMime.def sope/sope-mime/NGMime/NGMimeHeaderFieldParserSet.m sope/sope-mime/NGMime/NGMimeBodyGenerator.h sope/sope-mime/NGMime/common.h sope/sope-mime/NGMime/NGMimeStringHeaderFieldGenerator.m sope/sope-mime/NGMime/NGMimeBodyGenerator.m sope/sope-mime/NGMime/NGMimeBodyParser.h sope/sope-mime/NGMime/NGMime-Info.plist sope/sope-mime/NGMime/NGMimeBodyParser.m sope/sope-mime/NGMime/NGMimePartParser.h sope/sope-mime/NGMime/NGMimePartParser.m sope/sope-mime/NGMime/NGMimeGeneratorProtocols.h sope/sope-mime/NGMime/SxCore-NGMime.graffle sope/sope-mime/NGMime/NGMimeFileData.h sope/sope-mime/NGMime/NGMimeContentDispositionHeaderFieldParser.m sope/sope-mime/NGMime/NGMimeBodyPartParser.h sope/sope-mime/NGMime/NGMimeBodyPartParser.m sope/sope-mime/NGMime/NGMimeExceptions.h sope/sope-mime/NGMime/NGMimeFileData.m sope/sope-mime/NGMime/NGMimeAddressHeaderFieldGenerator.m sope/sope-mime/NGMime/NSCalendarDate+RFC822.m sope/sope-mime/NGMime/NGMimeExceptions.m sope/sope-mime/NGMime/NGMimeContentDispositionHeaderFieldGenerator.m sope/sope-mime/GNUmakefile.preamble sope/sope-mime/README-OSX.txt sope/sope-mime/Version sope/sope-mime/GNUmakefile sope/sope-mime/ChangeLog sope/sope-mime/fhs.make sope/sope-gdl1/ sope/sope-gdl1/PostgreSQL/ sope/sope-gdl1/PostgreSQL/PostgreSQL.xcode/ sope/sope-gdl1/PostgreSQL/PostgreSQL.xcode/project.pbxproj sope/sope-gdl1/PostgreSQL/EOAttribute+PostgreSQL72.h sope/sope-gdl1/PostgreSQL/PostgreSQL72Exception.h sope/sope-gdl1/PostgreSQL/PostgreSQL72Values.h sope/sope-gdl1/PostgreSQL/PostgreSQL72Adaptor.m sope/sope-gdl1/PostgreSQL/test.eomodel sope/sope-gdl1/PostgreSQL/Version sope/sope-gdl1/PostgreSQL/EOAttribute+PostgreSQL72.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Exception.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Values.m sope/sope-gdl1/PostgreSQL/types.psql sope/sope-gdl1/PostgreSQL/COPYING sope/sope-gdl1/PostgreSQL/NSString+PostgreSQL72.h sope/sope-gdl1/PostgreSQL/NSString+PGVal.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Context.h sope/sope-gdl1/PostgreSQL/PostgreSQL72Channel+Model.h sope/sope-gdl1/PostgreSQL/NSCalendarDate+PGVal.m sope/sope-gdl1/PostgreSQL/NSString+PostgreSQL72.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Context.m sope/sope-gdl1/PostgreSQL/PGConnection.h sope/sope-gdl1/PostgreSQL/condict.plist sope/sope-gdl1/PostgreSQL/GNUmakefile.preamble sope/sope-gdl1/PostgreSQL/postgres_types.h sope/sope-gdl1/PostgreSQL/PGConnection.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Expression.h sope/sope-gdl1/PostgreSQL/PostgreSQL-Info.plist sope/sope-gdl1/PostgreSQL/ChangeLog sope/sope-gdl1/PostgreSQL/GNUmakefile sope/sope-gdl1/PostgreSQL/gdltest.m sope/sope-gdl1/PostgreSQL/fhs.make sope/sope-gdl1/PostgreSQL/PostgreSQL72Expression.m sope/sope-gdl1/PostgreSQL/NSNumber+PGVal.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Channel.h sope/sope-gdl1/PostgreSQL/README sope/sope-gdl1/PostgreSQL/NSData+PGVal.m sope/sope-gdl1/PostgreSQL/PostgreSQL72Channel+Model.m sope/sope-gdl1/PostgreSQL/TODO sope/sope-gdl1/PostgreSQL/PostgreSQL72Channel.m sope/sope-gdl1/PostgreSQL/COPYING.LIB sope/sope-gdl1/PostgreSQL/common.h sope/sope-gdl1/PostgreSQL/PostgreSQL72Adaptor.h sope/sope-gdl1/MySQL/ sope/sope-gdl1/MySQL/NSString+MySQL4Val.m sope/sope-gdl1/MySQL/MySQL4Context.h sope/sope-gdl1/MySQL/Version sope/sope-gdl1/MySQL/MySQL4Context.m sope/sope-gdl1/MySQL/gdltest.m sope/sope-gdl1/MySQL/fhs.make sope/sope-gdl1/MySQL/NSCalendarDate+MySQL4Val.m sope/sope-gdl1/MySQL/MySQL4Values.h sope/sope-gdl1/MySQL/test.eomodel sope/sope-gdl1/MySQL/EOAttribute+MySQL4.h sope/sope-gdl1/MySQL/MySQL4Values.m sope/sope-gdl1/MySQL/MySQL4Channel+Model.h sope/sope-gdl1/MySQL/EOAttribute+MySQL4.m sope/sope-gdl1/MySQL/MySQL4Channel.h sope/sope-gdl1/MySQL/MySQL4Channel+Model.m sope/sope-gdl1/MySQL/NSNumber+MySQL4Val.m sope/sope-gdl1/MySQL/GNUmakefile.preamble sope/sope-gdl1/MySQL/condict.plist sope/sope-gdl1/MySQL/MySQL4Channel.m sope/sope-gdl1/MySQL/NSString+MySQL4.h sope/sope-gdl1/MySQL/NSString+MySQL4.m sope/sope-gdl1/MySQL/ChangeLog sope/sope-gdl1/MySQL/GNUmakefile sope/sope-gdl1/MySQL/MySQL4Adaptor.h sope/sope-gdl1/MySQL/README sope/sope-gdl1/MySQL/NSData+MySQL4Val.m sope/sope-gdl1/MySQL/MySQL4Exception.h sope/sope-gdl1/MySQL/MySQL4Expression.h sope/sope-gdl1/MySQL/MySQL4Adaptor.m sope/sope-gdl1/MySQL/MySQL4Exception.m sope/sope-gdl1/MySQL/MySQL4Expression.m sope/sope-gdl1/MySQL/COPYING.LIB sope/sope-gdl1/MySQL/common.h sope/sope-gdl1/FrontBase2/ sope/sope-gdl1/FrontBase2/English.lproj/ sope/sope-gdl1/FrontBase2/English.lproj/InfoPlist.strings sope/sope-gdl1/FrontBase2/FrontBase2Adaptor.h sope/sope-gdl1/FrontBase2/NSString+FB.h sope/sope-gdl1/FrontBase2/fbtest.m sope/sope-gdl1/FrontBase2/Version sope/sope-gdl1/FrontBase2/NSString+FB.m sope/sope-gdl1/FrontBase2/FBBlobHandle.h sope/sope-gdl1/FrontBase2/FBException.h sope/sope-gdl1/FrontBase2/FBBlobHandle.m sope/sope-gdl1/FrontBase2/FBException.m sope/sope-gdl1/FrontBase2/test.eomodel sope/sope-gdl1/FrontBase2/FrontBase2Adaptor.m sope/sope-gdl1/FrontBase2/FBSQLExpression.h sope/sope-gdl1/FrontBase2/GNUmakefile.preamble sope/sope-gdl1/FrontBase2/condict.plist sope/sope-gdl1/FrontBase2/FBSQLExpression.m sope/sope-gdl1/FrontBase2/FBContext.h sope/sope-gdl1/FrontBase2/cancompile.sh sope/sope-gdl1/FrontBase2/Info.plist sope/sope-gdl1/FrontBase2/GNUmakefile sope/sope-gdl1/FrontBase2/FBContext.m sope/sope-gdl1/FrontBase2/ChangeLog sope/sope-gdl1/FrontBase2/FBAdaptor+Types.m sope/sope-gdl1/FrontBase2/README sope/sope-gdl1/FrontBase2/FBValues.h sope/sope-gdl1/FrontBase2/EOAttribute+FB.h sope/sope-gdl1/FrontBase2/FBValues.m sope/sope-gdl1/FrontBase2/FBChannel+Model.h sope/sope-gdl1/FrontBase2/EOAttribute+FB.m sope/sope-gdl1/FrontBase2/FBChannel.h sope/sope-gdl1/FrontBase2/FBChannel+Model.m sope/sope-gdl1/FrontBase2/FBHeaders.h sope/sope-gdl1/FrontBase2/FBChannel.m sope/sope-gdl1/FrontBase2/COPYING.LIB sope/sope-gdl1/FrontBase2/common.h sope/sope-gdl1/FrontBase2/fbtest.py sope/sope-gdl1/GDLAccess/ sope/sope-gdl1/GDLAccess/GDLAccess.xcode/ sope/sope-gdl1/GDLAccess/GDLAccess.xcode/project.pbxproj sope/sope-gdl1/GDLAccess/English.lproj/ sope/sope-gdl1/GDLAccess/English.lproj/InfoPlist.strings sope/sope-gdl1/GDLAccess/FoundationExt/ sope/sope-gdl1/GDLAccess/FoundationExt/GNUmakefile sope/sope-gdl1/GDLAccess/FoundationExt/LICENSE sope/sope-gdl1/GDLAccess/FoundationExt/PrintfFormatScanner.m sope/sope-gdl1/GDLAccess/FoundationExt/COPYING sope/sope-gdl1/GDLAccess/FoundationExt/DefaultScannerHandler.h sope/sope-gdl1/GDLAccess/FoundationExt/DefaultScannerHandler.m sope/sope-gdl1/GDLAccess/FoundationExt/FormatScanner.h sope/sope-gdl1/GDLAccess/FoundationExt/COPYRIGHT sope/sope-gdl1/GDLAccess/FoundationExt/PrintfFormatScanner.h sope/sope-gdl1/GDLAccess/FoundationExt/FormatScanner.m sope/sope-gdl1/GDLAccess/EOAttribute.m sope/sope-gdl1/GDLAccess/EOModel.m sope/sope-gdl1/GDLAccess/EOEntityClassDescription.m sope/sope-gdl1/GDLAccess/EOAdaptorDataSource.h sope/sope-gdl1/GDLAccess/EODatabase.m sope/sope-gdl1/GDLAccess/EOAdaptorDataSource.m sope/sope-gdl1/GDLAccess/EOSQLExpression.h sope/sope-gdl1/GDLAccess/EOModelGroup.h sope/sope-gdl1/GDLAccess/EOAttributeOrdering.h sope/sope-gdl1/GDLAccess/EOQuotedExpression.h sope/sope-gdl1/GDLAccess/EOModelGroup.m sope/sope-gdl1/GDLAccess/fhs.make sope/sope-gdl1/GDLAccess/EODatabaseFaultResolver.h sope/sope-gdl1/GDLAccess/EOSQLExpression.m sope/sope-gdl1/GDLAccess/EOJoinTypes.h sope/sope-gdl1/GDLAccess/EOQuotedExpression.m sope/sope-gdl1/GDLAccess/Version sope/sope-gdl1/GDLAccess/EOKeyComparisonQualifier+SQL.m sope/sope-gdl1/GDLAccess/EOAdaptorGlobalID.h sope/sope-gdl1/GDLAccess/TODO sope/sope-gdl1/GDLAccess/EODatabaseFaultResolver.m sope/sope-gdl1/GDLAccess/EOAttributeOrdering.m sope/sope-gdl1/GDLAccess/EOAdaptorGlobalID.m sope/sope-gdl1/GDLAccess/EOPrimaryKeyDictionary.h sope/sope-gdl1/GDLAccess/GNUmakefile.preamble sope/sope-gdl1/GDLAccess/GDLAccess.h sope/sope-gdl1/GDLAccess/eoaccess.m sope/sope-gdl1/GDLAccess/EOFaultHandler.h sope/sope-gdl1/GDLAccess/EOGenericRecord.h sope/sope-gdl1/GDLAccess/EOAdaptorOperation.h sope/sope-gdl1/GDLAccess/EOFault.h sope/sope-gdl1/GDLAccess/EOEntity.h sope/sope-gdl1/GDLAccess/ChangeLog sope/sope-gdl1/GDLAccess/GNUmakefile sope/sope-gdl1/GDLAccess/EOFaultHandler.m sope/sope-gdl1/GDLAccess/EOEntity+Factory.h sope/sope-gdl1/GDLAccess/EOArrayProxy.h sope/sope-gdl1/GDLAccess/EOGenericRecord.m sope/sope-gdl1/GDLAccess/EOFault.m sope/sope-gdl1/GDLAccess/EOAdaptorOperation.m sope/sope-gdl1/GDLAccess/EOEntity.m sope/sope-gdl1/GDLAccess/EOPrimaryKeyDictionary.m sope/sope-gdl1/GDLAccess/EOEntity+Factory.m sope/sope-gdl1/GDLAccess/EOArrayProxy.m sope/sope-gdl1/GDLAccess/connect-EOAdaptor.m sope/sope-gdl1/GDLAccess/EOAdaptorChannel+Attributes.h sope/sope-gdl1/GDLAccess/EOKeyValueQualifier+SQL.m sope/sope-gdl1/GDLAccess/EOKeySortOrdering.h sope/sope-gdl1/GDLAccess/EOAdaptor.h sope/sope-gdl1/GDLAccess/EOAdaptor.m sope/sope-gdl1/GDLAccess/EOKeySortOrdering.m sope/sope-gdl1/GDLAccess/EODatabaseFault.h sope/sope-gdl1/GDLAccess/EOSQLQualifier.h sope/sope-gdl1/GDLAccess/GDLAccess-Info.plist sope/sope-gdl1/GDLAccess/EONotQualifier+SQL.m sope/sope-gdl1/GDLAccess/NSObject+EONullInit.h sope/sope-gdl1/GDLAccess/EODatabaseFault.m sope/sope-gdl1/GDLAccess/EOSQLQualifier.m sope/sope-gdl1/GDLAccess/load-EOAdaptor.m sope/sope-gdl1/GDLAccess/EOModel.h sope/sope-gdl1/GDLAccess/EOAdaptorChannel+Attributes.m sope/sope-gdl1/GDLAccess/EOQualifier+SQL.m sope/sope-gdl1/GDLAccess/EOOrQualifier+SQL.m sope/sope-gdl1/GDLAccess/EOFExceptions.h sope/sope-gdl1/GDLAccess/EOFExceptions.m sope/sope-gdl1/GDLAccess/EOExpressionArray.h sope/sope-gdl1/GDLAccess/EOAdaptorContext.h sope/sope-gdl1/GDLAccess/EORelationship.h sope/sope-gdl1/GDLAccess/NSObject+EONullInit.m sope/sope-gdl1/GDLAccess/EOExpressionArray.m sope/sope-gdl1/GDLAccess/EOAdaptorContext.m sope/sope-gdl1/GDLAccess/EORecordDictionary.h sope/sope-gdl1/GDLAccess/EORelationship.m sope/sope-gdl1/GDLAccess/EONull.h sope/sope-gdl1/GDLAccess/README sope/sope-gdl1/GDLAccess/EORecordDictionary.m sope/sope-gdl1/GDLAccess/EODatabaseContext.h sope/sope-gdl1/GDLAccess/EOSelectSQLExpression.m sope/sope-gdl1/GDLAccess/EODatabaseContext.m sope/sope-gdl1/GDLAccess/EOObjectUniquer.h sope/sope-gdl1/GDLAccess/EOAdaptorChannel.h sope/sope-gdl1/GDLAccess/test.py sope/sope-gdl1/GDLAccess/common.h sope/sope-gdl1/GDLAccess/EOObjectUniquer.m sope/sope-gdl1/GDLAccess/EOAdaptorChannel.m sope/sope-gdl1/GDLAccess/EODelegateResponse.h sope/sope-gdl1/GDLAccess/EOCustomValues.h sope/sope-gdl1/GDLAccess/EOQualifierScanner.h sope/sope-gdl1/GDLAccess/EODatabaseChannel.h sope/sope-gdl1/GDLAccess/EOCustomValues.m sope/sope-gdl1/GDLAccess/EOQualifierScanner.m sope/sope-gdl1/GDLAccess/EODatabaseChannel.m sope/sope-gdl1/GDLAccess/libGDLAccess.def sope/sope-gdl1/GDLAccess/COPYING.LIB sope/sope-gdl1/GDLAccess/EOAttribute.h sope/sope-gdl1/GDLAccess/EOAndQualifier+SQL.m sope/sope-gdl1/GDLAccess/EODatabase.h sope/sope-gdl1/sope-gdl1.xcode/ sope/sope-gdl1/sope-gdl1.xcode/project.pbxproj sope/sope-gdl1/README-OSX.txt sope/sope-gdl1/common.make sope/sope-gdl1/Version sope/sope-gdl1/GNUmakefile sope/sope-gdl1/COPYING.LIB sope/sope-core/ sope/sope-core/NGStreams/ sope/sope-core/NGStreams/NGStreams/ sope/sope-core/NGStreams/NGStreams/NGInternetSocketAddress.h sope/sope-core/NGStreams/NGStreams/NGStream+serialization.h sope/sope-core/NGStreams/NGStreams/NGFilterTextStream.h sope/sope-core/NGStreams/NGStreams/NGStream.h sope/sope-core/NGStreams/NGStreams/NGNet.h sope/sope-core/NGStreams/NGStreams/NGLocalSocketAddress.h sope/sope-core/NGStreams/NGStreams/NGTaskStream.h sope/sope-core/NGStreams/NGStreams/NGDataStream.h sope/sope-core/NGStreams/NGStreams/NGGZipStream.h sope/sope-core/NGStreams/NGStreams/NGInternetSocketDomain.h sope/sope-core/NGStreams/NGStreams/NGStringTextStream.h sope/sope-core/NGStreams/NGStreams/NGDatagramSocket.h sope/sope-core/NGStreams/NGStreams/NGStreamExceptions.h sope/sope-core/NGStreams/NGStreams/NGFileStream.h sope/sope-core/NGStreams/NGStreams/NGConcreteStreamFileHandle.h sope/sope-core/NGStreams/NGStreams/NGLocalSocketDomain.h sope/sope-core/NGStreams/NGStreams/NGSocketProtocols.h sope/sope-core/NGStreams/NGStreams/NGActiveSocket+serialization.h sope/sope-core/NGStreams/NGStreams/NGBase64Stream.h sope/sope-core/NGStreams/NGStreams/NGStreamProtocols.h sope/sope-core/NGStreams/NGStreams/NGNetDecls.h sope/sope-core/NGStreams/NGStreams/NGFilterStream.h sope/sope-core/NGStreams/NGStreams/NGCTextStream.h sope/sope-core/NGStreams/NGStreams/NGTextStreamProtocols.h sope/sope-core/NGStreams/NGStreams/NGActiveSSLSocket.h sope/sope-core/NGStreams/NGStreams/NGDescriptorFunctions.h sope/sope-core/NGStreams/NGStreams/NGCharBuffer.h sope/sope-core/NGStreams/NGStreams/NGDatagramPacket.h sope/sope-core/NGStreams/NGStreams/NGStreamCoder.h sope/sope-core/NGStreams/NGStreams/NGTerminalSupport.h sope/sope-core/NGStreams/NGStreams/NGStreamPipe.h sope/sope-core/NGStreams/NGStreams/NGStreams.h sope/sope-core/NGStreams/NGStreams/NGNetUtilities.h sope/sope-core/NGStreams/NGStreams/NGPassiveSocket.h sope/sope-core/NGStreams/NGStreams/NGUrlChars.h sope/sope-core/NGStreams/NGStreams/NGActiveSocket.h sope/sope-core/NGStreams/NGStreams/NGByteCountStream.h sope/sope-core/NGStreams/NGStreams/NGSocket.h sope/sope-core/NGStreams/NGStreams/NGStreamsDecls.h sope/sope-core/NGStreams/NGStreams/NGSocketExceptions.h sope/sope-core/NGStreams/NGStreams/NGBufferedStream.h sope/sope-core/NGStreams/NGStreams/NGByteBuffer.h sope/sope-core/NGStreams/NGStreams/NGLockingStream.h sope/sope-core/NGStreams/NGStreams/NGTextStream.h sope/sope-core/NGStreams/macosx/ sope/sope-core/NGStreams/macosx/config.h sope/sope-core/NGStreams/NGStreams.xcode/ sope/sope-core/NGStreams/NGStreams.xcode/project.pbxproj sope/sope-core/NGStreams/NGLockingStream.m sope/sope-core/NGStreams/NGTextStream.m sope/sope-core/NGStreams/configure sope/sope-core/NGStreams/config.guess sope/sope-core/NGStreams/Version sope/sope-core/NGStreams/NGStream+serialization.m sope/sope-core/NGStreams/NGLocalSocketAddress.m sope/sope-core/NGStreams/NGFilterTextStream.m sope/sope-core/NGStreams/libNGStreams.def sope/sope-core/NGStreams/COPYING sope/sope-core/NGStreams/NGInternetSocketAddress.m sope/sope-core/NGStreams/NGTaskStream.m sope/sope-core/NGStreams/config.sub sope/sope-core/NGStreams/NGStringTextStream.m sope/sope-core/NGStreams/NGDataStream.m sope/sope-core/NGStreams/NGGZipStream.m sope/sope-core/NGStreams/NGFileStream.m sope/sope-core/NGStreams/COPYRIGHT sope/sope-core/NGStreams/NGStreams.m sope/sope-core/NGStreams/fhs.make sope/sope-core/NGStreams/NGInternetSocketDomain.m sope/sope-core/NGStreams/NGDatagramSocket.m sope/sope-core/NGStreams/NGLocalSocketDomain.m sope/sope-core/NGStreams/NGStream.m sope/sope-core/NGStreams/GNUmakefile.postamble sope/sope-core/NGStreams/GNUmakefile.preamble sope/sope-core/NGStreams/README sope/sope-core/NGStreams/NGActiveSocket+serialization.m sope/sope-core/NGStreams/NGStreamExceptions.m sope/sope-core/NGStreams/NGBase64Stream.m sope/sope-core/NGStreams/NGFilterStream.m sope/sope-core/NGStreams/NGCTextStream.m sope/sope-core/NGStreams/configure.in sope/sope-core/NGStreams/NGStreams-Info.plist sope/sope-core/NGStreams/NGActiveSSLSocket.m sope/sope-core/NGStreams/GNUmakefile sope/sope-core/NGStreams/ChangeLog sope/sope-core/NGStreams/NGCharBuffer.m sope/sope-core/NGStreams/NGDescriptorFunctions.m sope/sope-core/NGStreams/NGStreamCoder.m sope/sope-core/NGStreams/NGTerminalSupport.m sope/sope-core/NGStreams/NGDatagramPacket.m sope/sope-core/NGStreams/NGStreamPipe.m sope/sope-core/NGStreams/NGNetUtilities.m sope/sope-core/NGStreams/config.h.in sope/sope-core/NGStreams/DESIGN sope/sope-core/NGStreams/TODO sope/sope-core/NGStreams/NGPassiveSocket.m sope/sope-core/NGStreams/NGActiveSocket.m sope/sope-core/NGStreams/SxCore-NGStreams.graffle sope/sope-core/NGStreams/NGByteCountStream.m sope/sope-core/NGStreams/NGSocket.m sope/sope-core/NGStreams/NGSocket+private.h sope/sope-core/NGStreams/NGSocketExceptions.m sope/sope-core/NGStreams/NGByteBuffer.m sope/sope-core/NGStreams/common.h sope/sope-core/NGStreams/NGConcreteStreamFileHandle.m sope/sope-core/NGStreams/install-sh sope/sope-core/NGStreams/NGBufferedStream.m sope/sope-core/NGExtensions/ sope/sope-core/NGExtensions/NGExtensions/ sope/sope-core/NGExtensions/NGExtensions/EOGrouping.h sope/sope-core/NGExtensions/NGExtensions/NGRule.h sope/sope-core/NGExtensions/NGExtensions/EOSortOrdering+plist.h sope/sope-core/NGExtensions/NGExtensions/EOQualifier+plist.h sope/sope-core/NGExtensions/NGExtensions/EOCacheDataSource.h sope/sope-core/NGExtensions/NGExtensions/NSBundle+misc.h sope/sope-core/NGExtensions/NGExtensions/NSString+German.h sope/sope-core/NGExtensions/NGExtensions/AutoDefines.h sope/sope-core/NGExtensions/NGExtensions/NGQuotedPrintableCoding.h sope/sope-core/NGExtensions/NGExtensions/NGCalendarDateRange.h sope/sope-core/NGExtensions/NGExtensions/NGFileManagerURL.h sope/sope-core/NGExtensions/NGExtensions/NGRuleModel.h sope/sope-core/NGExtensions/NGExtensions/NSFileManager+Extensions.h sope/sope-core/NGExtensions/NGExtensions/NSRunLoop+FileObjects.h sope/sope-core/NGExtensions/NGExtensions/NSException+misc.h sope/sope-core/NGExtensions/NGExtensions/NSString+Encoding.h sope/sope-core/NGExtensions/NGExtensions/NSURL+misc.h sope/sope-core/NGExtensions/NGExtensions/NGStack.h sope/sope-core/NGExtensions/NGExtensions/NSString+Escaping.h sope/sope-core/NGExtensions/NGExtensions/NSString+misc.h sope/sope-core/NGExtensions/NGExtensions/NGResourceLocator.h sope/sope-core/NGExtensions/NGExtensions/NSData+misc.h sope/sope-core/NGExtensions/NGExtensions/EOTrueQualifier.h sope/sope-core/NGExtensions/NGExtensions/NGObjCRuntime.h sope/sope-core/NGExtensions/NGExtensions/EOQualifier+CtxEval.h sope/sope-core/NGExtensions/NGExtensions/NGCharBuffers.h sope/sope-core/NGExtensions/NGExtensions/NSProcessInfo+misc.h sope/sope-core/NGExtensions/NGExtensions/DOMNode+EOQualifier.h sope/sope-core/NGExtensions/NGExtensions/NGBundleManager.h sope/sope-core/NGExtensions/NGExtensions/EOGroupingSet.h sope/sope-core/NGExtensions/NGExtensions/NSMethodSignature+misc.h sope/sope-core/NGExtensions/NGExtensions/NGDirectoryEnumerator.h sope/sope-core/NGExtensions/NGExtensions/NSArray+enumerator.h sope/sope-core/NGExtensions/NGExtensions/NSDictionary+misc.h sope/sope-core/NGExtensions/NGExtensions/NGExtensionsDecls.h sope/sope-core/NGExtensions/NGExtensions/NSCalendarDate+misc.h sope/sope-core/NGExtensions/NGExtensions/NGObjectMacros.h sope/sope-core/NGExtensions/NGExtensions/NSObject+Values.h sope/sope-core/NGExtensions/NGExtensions/NGStringScanEnumerator.h sope/sope-core/NGExtensions/NGExtensions/NSString+Ext.h sope/sope-core/NGExtensions/NGExtensions/NGMemoryAllocation.h sope/sope-core/NGExtensions/NGExtensions/NGPropertyListParser.h sope/sope-core/NGExtensions/NGExtensions/NSSet+enumerator.h sope/sope-core/NGExtensions/NGExtensions/NGMerging.h sope/sope-core/NGExtensions/NGExtensions/NGBitSet.h sope/sope-core/NGExtensions/NGExtensions/NGRuleEngine.h sope/sope-core/NGExtensions/NGExtensions/EOFilterDataSource.h sope/sope-core/NGExtensions/NGExtensions/NGExtensions.h sope/sope-core/NGExtensions/NGExtensions/NGRuleAssignment.h sope/sope-core/NGExtensions/NGExtensions/NGBaseTypes.h sope/sope-core/NGExtensions/NGExtensions/NGFileFolderInfoDataSource.h sope/sope-core/NGExtensions/NGExtensions/EOKeyGrouping.h sope/sope-core/NGExtensions/NGExtensions/NGCustomFileManager.h sope/sope-core/NGExtensions/NGExtensions/NSAutoreleasePool+misc.h sope/sope-core/NGExtensions/NGExtensions/NGBase64Coding.h sope/sope-core/NGExtensions/NGExtensions/EODataSource+NGExtensions.h sope/sope-core/NGExtensions/NGExtensions/NGFileManager.h sope/sope-core/NGExtensions/NGExtensions/NGRuleContext.h sope/sope-core/NGExtensions/NGExtensions/NSNull+misc.h sope/sope-core/NGExtensions/NGExtensions/FileObjectHolder.h sope/sope-core/NGExtensions/NGExtensions/EOFetchSpecification+plist.h sope/sope-core/NGExtensions/NGExtensions/NGHashMap.h sope/sope-core/NGExtensions/NGExtensions/NSObject+Logs.h sope/sope-core/NGExtensions/NGExtensions/NSEnumerator+misc.h sope/sope-core/NGExtensions/NGExtensions/NSString+Formatting.h sope/sope-core/NGExtensions/NGExtensions/NSData+gzip.h sope/sope-core/NGExtensions/NGExtensions/EOQualifierGrouping.h sope/sope-core/NGExtensions/NGExtensions/EOCompoundDataSource.h sope/sope-core/NGExtensions/NGExtensions/IndexFunc.h sope/sope-core/NGExtensions/NGExtensions/EOKeyMapDataSource.h sope/sope-core/NGExtensions/FdExt.subproj/ sope/sope-core/NGExtensions/FdExt.subproj/NSFileManager+Extensions.m sope/sope-core/NGExtensions/FdExt.subproj/NSRunLoop+FileObjects.m sope/sope-core/NGExtensions/FdExt.subproj/NSException+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+Encoding.m sope/sope-core/NGExtensions/FdExt.subproj/NSMethodSignature+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSURL+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSAutoreleasePool+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSArray+enumerator.m sope/sope-core/NGExtensions/FdExt.subproj/GNUmakefile sope/sope-core/NGExtensions/FdExt.subproj/NSString+Escaping.m sope/sope-core/NGExtensions/FdExt.subproj/NSDictionary+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSCalendarDate+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSBundle+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSData+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSObject+Values.m sope/sope-core/NGExtensions/FdExt.subproj/NSNull+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+Ext.m sope/sope-core/NGExtensions/FdExt.subproj/NSEnumerator+misc.m sope/sope-core/NGExtensions/FdExt.subproj/NSObject+Logs.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+Formatting.m sope/sope-core/NGExtensions/FdExt.subproj/NSSet+enumerator.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+German.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+XMLEscaping.m sope/sope-core/NGExtensions/FdExt.subproj/NSData+gzip.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+URLEscaping.m sope/sope-core/NGExtensions/FdExt.subproj/NSString+HTMLEscaping.m sope/sope-core/NGExtensions/FdExt.subproj/NGPropertyListParser.m sope/sope-core/NGExtensions/FdExt.subproj/NSProcessInfo+misc.m sope/sope-core/NGExtensions/XmlExt.subproj/ sope/sope-core/NGExtensions/XmlExt.subproj/DOMNode+EOQualifier.m sope/sope-core/NGExtensions/XmlExt.subproj/GNUmakefile sope/sope-core/NGExtensions/EOExt.subproj/ sope/sope-core/NGExtensions/EOExt.subproj/EOSortOrdering+plist.m sope/sope-core/NGExtensions/EOExt.subproj/EOFilterDataSource.m sope/sope-core/NGExtensions/EOExt.subproj/EOKeyMapDataSource.m sope/sope-core/NGExtensions/EOExt.subproj/EOKeyGrouping.m sope/sope-core/NGExtensions/EOExt.subproj/NSArray+EOGrouping.m sope/sope-core/NGExtensions/EOExt.subproj/EOGroupingSet.m sope/sope-core/NGExtensions/EOExt.subproj/GNUmakefile sope/sope-core/NGExtensions/EOExt.subproj/EOQualifier+CtxEval.m sope/sope-core/NGExtensions/EOExt.subproj/EOQualifier+plist.m sope/sope-core/NGExtensions/EOExt.subproj/EOCacheDataSource.m sope/sope-core/NGExtensions/EOExt.subproj/EODataSource+NGExtensions.m sope/sope-core/NGExtensions/EOExt.subproj/EOTrueQualifier.m sope/sope-core/NGExtensions/EOExt.subproj/EOGrouping.m sope/sope-core/NGExtensions/EOExt.subproj/EOFetchSpecification+plist.m sope/sope-core/NGExtensions/EOExt.subproj/EOQualifierGrouping.m sope/sope-core/NGExtensions/EOExt.subproj/EOCompoundDataSource.m sope/sope-core/NGExtensions/NGExtensions.xcode/ sope/sope-core/NGExtensions/NGExtensions.xcode/project.pbxproj sope/sope-core/NGExtensions/NGRuleEngine.subproj/ sope/sope-core/NGExtensions/NGRuleEngine.subproj/NGRuleAssignment.m sope/sope-core/NGExtensions/NGRuleEngine.subproj/NGRuleParser.h sope/sope-core/NGExtensions/NGRuleEngine.subproj/NGRuleParser.m sope/sope-core/NGExtensions/NGRuleEngine.subproj/GNUmakefile sope/sope-core/NGExtensions/NGRuleEngine.subproj/NGRule.m sope/sope-core/NGExtensions/NGRuleEngine.subproj/NGRuleModel.m sope/sope-core/NGExtensions/NGRuleEngine.subproj/NGRuleContext.m sope/sope-core/NGExtensions/NGRuleEngine.subproj/README sope/sope-core/NGExtensions/NGDirectoryEnumerator.m sope/sope-core/NGExtensions/NGBundleManager.m sope/sope-core/NGExtensions/Version sope/sope-core/NGExtensions/NGBitSet.m sope/sope-core/NGExtensions/COPYING sope/sope-core/NGExtensions/SxCore-NGExtensions.graffle sope/sope-core/NGExtensions/NGStringScanEnumerator.m sope/sope-core/NGExtensions/NGCalendarDateRange.m sope/sope-core/NGExtensions/NGQuotedPrintableCoding.m sope/sope-core/NGExtensions/COPYRIGHT sope/sope-core/NGExtensions/NGMerging.m sope/sope-core/NGExtensions/libNGExtensions.def sope/sope-core/NGExtensions/NGCustomFileManager.m sope/sope-core/NGExtensions/GNUmakefile.preamble sope/sope-core/NGExtensions/NGFileManagerURL.m sope/sope-core/NGExtensions/NGExtensions.m sope/sope-core/NGExtensions/NGStack.m sope/sope-core/NGExtensions/GNUmakefile sope/sope-core/NGExtensions/NGFileFolderInfoDataSource.m sope/sope-core/NGExtensions/NGBase64Coding.m sope/sope-core/NGExtensions/ChangeLog sope/sope-core/NGExtensions/NGResourceLocator.m sope/sope-core/NGExtensions/NGFileManager.m sope/sope-core/NGExtensions/NGHashMap.m sope/sope-core/NGExtensions/fhs.make sope/sope-core/NGExtensions/common.h sope/sope-core/NGExtensions/TODO sope/sope-core/NGExtensions/FileObjectHolder.m sope/sope-core/NGExtensions/NGObjCRuntime.m sope/sope-core/NGExtensions/NGFileManager+JS.m sope/sope-core/NGExtensions/NGExtensions-Info.plist sope/sope-core/samples/ sope/sope-core/samples/sope-rsrclookup.m sope/sope-core/samples/EncodingTool.m sope/sope-core/samples/EOQualTool.m sope/sope-core/samples/eoqual.m sope/sope-core/samples/encoding.m sope/sope-core/samples/bmlookup.m sope/sope-core/samples/GNUmakefile sope/sope-core/samples/httpu_notify.m sope/sope-core/samples/ChangeLog sope/sope-core/samples/testsock.m sope/sope-core/samples/fhs.make sope/sope-core/samples/testurl.m sope/sope-core/samples/README sope/sope-core/samples/parserule.m sope/sope-core/samples/testdirenum.m sope/sope-core/samples/fmdls.m sope/sope-core/samples/GNUmakefile.preamble sope/sope-core/samples/subclassing.m sope/sope-core/samples/COPYING sope/sope-core/samples/EncodingTool.h sope/sope-core/samples/EOQualTool.h sope/sope-core/samples/common.h sope/sope-core/EOControl/ sope/sope-core/EOControl/EOControl.xcode/ sope/sope-core/EOControl/EOControl.xcode/project.pbxproj sope/sope-core/EOControl/COPYRIGHT sope/sope-core/EOControl/Version sope/sope-core/EOControl/COPYING sope/sope-core/EOControl/EODataSource.m sope/sope-core/EOControl/NSObject+EOQualifierOps.m sope/sope-core/EOControl/EODetailDataSource.h sope/sope-core/EOControl/EOControl-Info.plist sope/sope-core/EOControl/libEOControl.def sope/sope-core/EOControl/EODetailDataSource.m sope/sope-core/EOControl/EOFetchSpecification.h sope/sope-core/EOControl/EODataSource.h sope/sope-core/EOControl/EOControlDecls.h sope/sope-core/EOControl/EOKeyValueQualifier.m sope/sope-core/EOControl/GNUmakefile sope/sope-core/EOControl/EONull.h sope/sope-core/EOControl/EOFetchSpecification.m sope/sope-core/EOControl/NSArray+EOQualifier.m sope/sope-core/EOControl/GNUmakefile.preamble sope/sope-core/EOControl/EONotQualifier.m sope/sope-core/EOControl/EOClassDescription.h sope/sope-core/EOControl/EOKeyValueCoding.h sope/sope-core/EOControl/EOAndQualifier.m sope/sope-core/EOControl/EOKeyValueArchiver.h sope/sope-core/EOControl/common.h sope/sope-core/EOControl/TODO sope/sope-core/EOControl/EOGenericRecord.h sope/sope-core/EOControl/EOSQLParser.h sope/sope-core/EOControl/EOGlobalID.h sope/sope-core/EOControl/ChangeLog sope/sope-core/EOControl/EOKeyValueArchiver.m sope/sope-core/EOControl/EOClassDescription.m sope/sope-core/EOControl/EOKeyValueCoding.m sope/sope-core/EOControl/EONull.m sope/sope-core/EOControl/EOControl.h sope/sope-core/EOControl/EOGenericRecord.m sope/sope-core/EOControl/EOSQLParser.m sope/sope-core/EOControl/EOSortOrdering.h sope/sope-core/EOControl/EOQualifier.h sope/sope-core/EOControl/EOGlobalID.m sope/sope-core/EOControl/fhs.make sope/sope-core/EOControl/README sope/sope-core/EOControl/NSObject+QualDesc.m sope/sope-core/EOControl/EOQualifier.m sope/sope-core/EOControl/EOKeyGlobalID.h sope/sope-core/EOControl/EOSortOrdering.m sope/sope-core/EOControl/EOObserver.h sope/sope-core/EOControl/EOOrQualifier.m sope/sope-core/EOControl/EOArrayDataSource.h sope/sope-core/EOControl/EOKeyGlobalID.m sope/sope-core/EOControl/EOKeyComparisonQualifier.m sope/sope-core/EOControl/EOValidation.m sope/sope-core/EOControl/EOObserver.m sope/sope-core/EOControl/EOQualifierVariable.m sope/sope-core/EOControl/EOArrayDataSource.m sope/sope-core/EOControl/SxCore-EOControl.graffle sope/sope-core/EOControl/EOQualifierParser.m sope/sope-core/sope-core.xcode/ sope/sope-core/sope-core.xcode/project.pbxproj sope/sope-core/README-OSX.txt sope/sope-core/common.make sope/sope-core/Version sope/sope-core/ChangeLog sope/sope-core/GNUmakefile sope/sope-core/COPYRIGHT sope/sope-core/COPYING sope/sope-core/PROJECTLEAD sope/sope-core/dummy.c sope/sope-core/README sope/libFoundation/ sope/libFoundation/debian/ sope/libFoundation/debian/patches/ sope/libFoundation/debian/changelog sope/libFoundation/debian/control sope/libFoundation/debian/libfoundation-tools.install sope/libFoundation/debian/compat sope/libFoundation/debian/copyright sope/libFoundation/debian/libfoundation1.0.install sope/libFoundation/debian/docs sope/libFoundation/debian/rules sope/libFoundation/debian/libfoundation-data.install sope/libFoundation/debian/libfoundation-tools.links sope/libFoundation/debian/libfoundation1.0-dev.install sope/libFoundation/extensions/ sope/libFoundation/extensions/exceptions/ sope/libFoundation/extensions/exceptions/FoundationException.h sope/libFoundation/extensions/exceptions/GeneralExceptions.h sope/libFoundation/extensions/exceptions/NSCoderExceptions.h sope/libFoundation/extensions/PrintfScannerHandler.h sope/libFoundation/extensions/DefaultScannerHandler.h sope/libFoundation/extensions/support.h sope/libFoundation/extensions/objc-runtime.h sope/libFoundation/extensions/GCDictionary.h sope/libFoundation/extensions/GarbageCollector.h sope/libFoundation/extensions/NSException.h sope/libFoundation/extensions/GCObject.h sope/libFoundation/extensions/FormatScanner.h sope/libFoundation/extensions/PrintfFormatScanner.h sope/libFoundation/extensions/encoding.h sope/libFoundation/extensions/GCArray.h sope/libFoundation/doc/ sope/libFoundation/doc/libFoundation.texi sope/libFoundation/doc/GNUmakefile sope/libFoundation/doc/signature-test.pl sope/libFoundation/doc/README sope/libFoundation/Foundation/ sope/libFoundation/Foundation/exceptions/ sope/libFoundation/Foundation/exceptions/EncodingFormatExceptions.h sope/libFoundation/Foundation/exceptions/FoundationException.m sope/libFoundation/Foundation/exceptions/NSFileHandleExceptions.h sope/libFoundation/Foundation/exceptions/NSCoderExceptions.h sope/libFoundation/Foundation/exceptions/EncodingFormatExceptions.m sope/libFoundation/Foundation/exceptions/NSFileHandleExceptions.m sope/libFoundation/Foundation/exceptions/NSCoderExceptions.m sope/libFoundation/Foundation/exceptions/FoundationExceptions.h sope/libFoundation/Foundation/exceptions/StringExceptions.h sope/libFoundation/Foundation/exceptions/NSInvocationExceptions.h sope/libFoundation/Foundation/exceptions/StringExceptions.m sope/libFoundation/Foundation/exceptions/GeneralExceptions.h sope/libFoundation/Foundation/exceptions/NSValueExceptions.h sope/libFoundation/Foundation/exceptions/NSInvocationExceptions.m sope/libFoundation/Foundation/exceptions/NSValueExceptions.m sope/libFoundation/Foundation/exceptions/GeneralExceptions.m sope/libFoundation/Foundation/exceptions/FoundationException.h sope/libFoundation/Foundation/NSBundle.h sope/libFoundation/Foundation/cvtutf.c sope/libFoundation/Foundation/PrintfFormatScanner.m sope/libFoundation/Foundation/NSTimeZone.h sope/libFoundation/Foundation/NSHashTable.h sope/libFoundation/Foundation/NSConcreteCharacterSet.h sope/libFoundation/Foundation/PropertyListParser.h sope/libFoundation/Foundation/byte_order.h sope/libFoundation/Foundation/lfmemory.h.in sope/libFoundation/Foundation/NSTimeZone.m sope/libFoundation/Foundation/NSConcreteCharacterSet.m sope/libFoundation/Foundation/NSPortCoder.h sope/libFoundation/Foundation/PropertyListParser.m sope/libFoundation/Foundation/behavior.m sope/libFoundation/Foundation/NSCompoundPredicate.h sope/libFoundation/Foundation/NSKeyValueCoding.h sope/libFoundation/Foundation/NSPortCoder.m sope/libFoundation/Foundation/NSCalendarDate.h sope/libFoundation/Foundation/NSBundle.m sope/libFoundation/Foundation/cvtutf.h sope/libFoundation/Foundation/NSCompoundPredicate.m sope/libFoundation/Foundation/NSSerialization.h sope/libFoundation/Foundation/NSCalendarDate.m sope/libFoundation/Foundation/NSFileURLHandle.h sope/libFoundation/Foundation/NSURLHandle.h sope/libFoundation/Foundation/NSURLHandle.m sope/libFoundation/Foundation/NSTimer.h sope/libFoundation/Foundation/GNUmakefile.postamble sope/libFoundation/Foundation/NSSerialization.m sope/libFoundation/Foundation/NSPredicateParser.m sope/libFoundation/Foundation/NSFileURLHandle.m sope/libFoundation/Foundation/NSFrameInvocation.h sope/libFoundation/Foundation/NSProcessInfo.h sope/libFoundation/Foundation/NSTimer.m sope/libFoundation/Foundation/NSScanner.h sope/libFoundation/Foundation/NSZone.h sope/libFoundation/Foundation/NSConcreteDictionary.h sope/libFoundation/Foundation/NSPathUtilities.h sope/libFoundation/Foundation/encoding.m sope/libFoundation/Foundation/NSConcreteUnixTask.h sope/libFoundation/Foundation/NSFrameInvocation.m sope/libFoundation/Foundation/NSProcessInfo.m sope/libFoundation/Foundation/NSGeometry.h sope/libFoundation/Foundation/NSDistributedNotificationCenter.h sope/libFoundation/Foundation/NSComparisonPredicate.h sope/libFoundation/Foundation/NSStream.h sope/libFoundation/Foundation/NSZone.m sope/libFoundation/Foundation/NSNotificationQueue.h sope/libFoundation/Foundation/GCArray.m sope/libFoundation/Foundation/NSRunLoop.h sope/libFoundation/Foundation/load.m sope/libFoundation/Foundation/NSConcreteDictionary.m sope/libFoundation/Foundation/NSPathUtilities.m sope/libFoundation/Foundation/NSScanner.m sope/libFoundation/Foundation/NSComparisonPredicate.m sope/libFoundation/Foundation/NSConcreteUnixTask.m sope/libFoundation/Foundation/NSAttributedString.h sope/libFoundation/Foundation/NSGeometry.m sope/libFoundation/Foundation/NSClassicException.h sope/libFoundation/Foundation/NSDistributedNotificationCenter.m sope/libFoundation/Foundation/NSString+StringEncoding.m sope/libFoundation/Foundation/NSNotificationQueue.m sope/libFoundation/Foundation/NSUndoManager.h sope/libFoundation/Foundation/NSStream.m sope/libFoundation/Foundation/GNUmakefile sope/libFoundation/Foundation/NSObject+PropLists.h sope/libFoundation/Foundation/NSSocketPort.m sope/libFoundation/Foundation/NSMethodSignature.h sope/libFoundation/Foundation/NSRunLoop.m sope/libFoundation/Foundation/NSFormatter.h sope/libFoundation/Foundation/NSAttributedString.m sope/libFoundation/Foundation/NSUndoManager.m sope/libFoundation/Foundation/NSUserDefaults.h sope/libFoundation/Foundation/thr-mach.m sope/libFoundation/Foundation/NSMethodSignature.m sope/libFoundation/Foundation/NSFormatter.m sope/libFoundation/Foundation/NSUserDefaults.m sope/libFoundation/Foundation/PrintfScannerHandler.m sope/libFoundation/Foundation/NSArray.h sope/libFoundation/Foundation/NSInputStream.m sope/libFoundation/Foundation/FFCallInvocation.h sope/libFoundation/Foundation/NSArray.m sope/libFoundation/Foundation/NSVMPage.m sope/libFoundation/Foundation/NSPosixFileDescriptor.h sope/libFoundation/Foundation/FFCallInvocation.m sope/libFoundation/Foundation/NSDebug.h sope/libFoundation/Foundation/NSPortMessage.h sope/libFoundation/Foundation/NSDebug.m sope/libFoundation/Foundation/NSDistributedLock.h sope/libFoundation/Foundation/NSFileHandle.h sope/libFoundation/Foundation/NSPortMessage.m sope/libFoundation/Foundation/NSConcreteValue.h sope/libFoundation/Foundation/NSMappedData.h sope/libFoundation/Foundation/StackZone.h sope/libFoundation/Foundation/NSFileHandle.m sope/libFoundation/Foundation/NSPredicate.h sope/libFoundation/Foundation/NSDistributedLock.m sope/libFoundation/Foundation/NSPosixFileDescriptor.m sope/libFoundation/Foundation/NSConcreteValue.m sope/libFoundation/Foundation/StackZone.m sope/libFoundation/Foundation/NSPredicate.m sope/libFoundation/Foundation/NSMappedData.m sope/libFoundation/Foundation/NSConcreteNumber.m.sh sope/libFoundation/Foundation/NSConcreteScanner.h sope/libFoundation/Foundation/NSConcreteScanner.m sope/libFoundation/Foundation/GCDictionary.m sope/libFoundation/Foundation/NSPort.h sope/libFoundation/Foundation/NSSortDescriptor.h sope/libFoundation/Foundation/NSPort.m sope/libFoundation/Foundation/DefaultScannerHandler.m sope/libFoundation/Foundation/NSConcreteString.h sope/libFoundation/Foundation/NSSortDescriptor.m sope/libFoundation/Foundation/err.m sope/libFoundation/Foundation/NSMessagePort.m sope/libFoundation/Foundation/NSConcreteString.m sope/libFoundation/Foundation/NSExpression.h sope/libFoundation/Foundation/NSConcreteNumber.h sope/libFoundation/Foundation/NSExpression.m sope/libFoundation/Foundation/Foundation.h sope/libFoundation/Foundation/NSInvocation.h sope/libFoundation/Foundation/NSFileManager.h sope/libFoundation/Foundation/NSUtilities.h sope/libFoundation/Foundation/NSObject.h.in sope/libFoundation/Foundation/NSConcreteNumber.m sope/libFoundation/Foundation/NSInvocation.m sope/libFoundation/Foundation/NSFileManager.m sope/libFoundation/Foundation/NSUtilities.m sope/libFoundation/Foundation/NSFuncallException.h sope/libFoundation/Foundation/NSOutputStream.m sope/libFoundation/Foundation/NSHashMap.m sope/libFoundation/Foundation/common.h sope/libFoundation/Foundation/common.m sope/libFoundation/Foundation/NSRange.h sope/libFoundation/Foundation/NSConcreteWindowsFileHandle.h sope/libFoundation/Foundation/NSCoder.h sope/libFoundation/Foundation/misc.m sope/libFoundation/Foundation/NSNotificationCenter.m sope/libFoundation/Foundation/NSByteOrder.h sope/libFoundation/Foundation/NSRange.m sope/libFoundation/Foundation/NSConcreteWindowsFileHandle.m sope/libFoundation/Foundation/NSCoder.m sope/libFoundation/Foundation/NSURL.h sope/libFoundation/Foundation/NSDecimalNumber.h sope/libFoundation/Foundation/NSException.m sope/libFoundation/Foundation/NSString.h sope/libFoundation/Foundation/FormatScanner.m sope/libFoundation/Foundation/NSURL.m sope/libFoundation/Foundation/NSConcreteSet.h sope/libFoundation/Foundation/NSString.m sope/libFoundation/Foundation/NSObject.m sope/libFoundation/Foundation/NSConcreteFileHandle.h sope/libFoundation/Foundation/NSDecimalNumber.m sope/libFoundation/Foundation/NSConcreteTimeZone.h sope/libFoundation/Foundation/NSConcreteFileHandle.m sope/libFoundation/Foundation/NSConcreteTimeZone.m sope/libFoundation/Foundation/PrivateThreadData.h sope/libFoundation/Foundation/NSConcreteSet.m sope/libFoundation/Foundation/GCObject.m sope/libFoundation/Foundation/NSNotification.h sope/libFoundation/Foundation/NSConnection.h sope/libFoundation/Foundation/NSAccount.h sope/libFoundation/Foundation/NSNotification.m sope/libFoundation/Foundation/NSNumber.m sope/libFoundation/Foundation/GNUmakefile.alone sope/libFoundation/Foundation/NSScriptKeyValueCoding.h sope/libFoundation/Foundation/NSAllocDebugZone.h sope/libFoundation/Foundation/NSDecimal.h sope/libFoundation/Foundation/NSConcreteWindowsTask.h sope/libFoundation/Foundation/PrivateThreadData.m sope/libFoundation/Foundation/objc-runtime.m sope/libFoundation/Foundation/NSAccount.m sope/libFoundation/Foundation/NSConcreteWindowsTask.m sope/libFoundation/Foundation/NSConcreteArray.h sope/libFoundation/Foundation/NSDateFormatter.h sope/libFoundation/Foundation/NSAllocDebugZone.m sope/libFoundation/Foundation/NSDecimal.m sope/libFoundation/Foundation/GarbageCollector.m sope/libFoundation/Foundation/NSAutoreleasePool.h sope/libFoundation/Foundation/libFoundation.def sope/libFoundation/Foundation/NSConnection.m sope/libFoundation/Foundation/fhs.make sope/libFoundation/Foundation/NSConcreteUTF16String.m sope/libFoundation/Foundation/NSConcreteArray.m sope/libFoundation/Foundation/NSDateFormatter.m sope/libFoundation/Foundation/NSThread.h sope/libFoundation/Foundation/NSAutoreleasePool.m sope/libFoundation/Foundation/NSData.h sope/libFoundation/Foundation/NSConcreteMutableDictionary.m sope/libFoundation/Foundation/NSThread.m sope/libFoundation/Foundation/NSDate.h sope/libFoundation/Foundation/NSHost.h sope/libFoundation/Foundation/NSData.m sope/libFoundation/Foundation/UnixSignalHandler.h sope/libFoundation/Foundation/NSObjCRuntime.h sope/libFoundation/Foundation/NSProxy.h sope/libFoundation/Foundation/NSDate.m sope/libFoundation/Foundation/NSHost.m sope/libFoundation/Foundation/UnixSignalHandler.m sope/libFoundation/Foundation/NSProxy.m sope/libFoundation/Foundation/NSObjCRuntime.m sope/libFoundation/Foundation/NSError.h sope/libFoundation/Foundation/NSConcreteData.h sope/libFoundation/Foundation/NSError.m sope/libFoundation/Foundation/NSObjectInvocation.h sope/libFoundation/Foundation/NSConcreteDate.h sope/libFoundation/Foundation/NSPipe.m sope/libFoundation/Foundation/NSConcreteTimeZoneDetail.h sope/libFoundation/Foundation/NSConcreteData.m sope/libFoundation/Foundation/realpath.m sope/libFoundation/Foundation/NSConcreteDate.m sope/libFoundation/Foundation/NSObjectInvocation.m sope/libFoundation/Foundation/NSConcreteTimeZoneDetail.m sope/libFoundation/Foundation/NSDictionary.h sope/libFoundation/Foundation/NSClassDescription.h sope/libFoundation/Foundation/NSNull.h sope/libFoundation/Foundation/NSDictionary.m sope/libFoundation/Foundation/NSValue.h sope/libFoundation/Foundation/NSNull.m sope/libFoundation/Foundation/PropertyListParserUnichar.m sope/libFoundation/Foundation/NSClassDescription.m sope/libFoundation/Foundation/scanFloat.def sope/libFoundation/Foundation/NSValue.m sope/libFoundation/Foundation/NSCalendarDateScannerHandler.h sope/libFoundation/Foundation/NSArchiver.h sope/libFoundation/Foundation/NSLock.h sope/libFoundation/Foundation/NSCalendarDateScannerHandler.m sope/libFoundation/Foundation/NSStringScanner.m sope/libFoundation/Foundation/NSExceptionWithoutNested.h sope/libFoundation/Foundation/libFoundation.make.in sope/libFoundation/Foundation/NSSet.h sope/libFoundation/Foundation/NSLock.m sope/libFoundation/Foundation/NSSet.m sope/libFoundation/Foundation/NSTask.h sope/libFoundation/Foundation/NSDistantObject.h sope/libFoundation/Foundation/NSCharacterSet.h sope/libFoundation/Foundation/scanInt.def sope/libFoundation/Foundation/NSTask.m sope/libFoundation/Foundation/NSConcreteMutableString.m sope/libFoundation/Foundation/NSArchiver.m sope/libFoundation/Foundation/NSPortNameServer.h sope/libFoundation/Foundation/NSNumberFormatter.h sope/libFoundation/Foundation/NSCharacterSet.m sope/libFoundation/Foundation/NSDefaultZone.h sope/libFoundation/Foundation/NSPortNameServer.m sope/libFoundation/Foundation/NSNumberFormatter.m sope/libFoundation/Foundation/NSEnumerator.h sope/libFoundation/Foundation/NSObjectAllocation.m sope/libFoundation/Foundation/NSCalendarDateScanf.h sope/libFoundation/Foundation/NSDefaultZone.m sope/libFoundation/Foundation/NSMapTable.h sope/libFoundation/Foundation/NSEnumerator.m sope/libFoundation/Foundation/NSCalendarDateScanf.m sope/libFoundation/Resources/ sope/libFoundation/Resources/TimeZoneInfo/ sope/libFoundation/Resources/TimeZoneInfo/Europe/ sope/libFoundation/Resources/TimeZoneInfo/Europe/Brussels sope/libFoundation/Resources/TimeZoneInfo/Europe/Berlin sope/libFoundation/Resources/TimeZoneInfo/Europe/Paris sope/libFoundation/Resources/TimeZoneInfo/Canada/ sope/libFoundation/Resources/TimeZoneInfo/Canada/Newfoundland sope/libFoundation/Resources/TimeZoneInfo/Canada/Atlantic sope/libFoundation/Resources/TimeZoneInfo/Canada/Eastern sope/libFoundation/Resources/TimeZoneInfo/Canada/Yukon sope/libFoundation/Resources/TimeZoneInfo/Canada/Central sope/libFoundation/Resources/TimeZoneInfo/Canada/Mountain sope/libFoundation/Resources/TimeZoneInfo/Canada/East-Saskatchewan sope/libFoundation/Resources/TimeZoneInfo/Canada/Pacific sope/libFoundation/Resources/TimeZoneInfo/SystemV/ sope/libFoundation/Resources/TimeZoneInfo/SystemV/MST7MDT sope/libFoundation/Resources/TimeZoneInfo/SystemV/CST6 sope/libFoundation/Resources/TimeZoneInfo/SystemV/HST10 sope/libFoundation/Resources/TimeZoneInfo/SystemV/EST5 sope/libFoundation/Resources/TimeZoneInfo/SystemV/AST4ADT sope/libFoundation/Resources/TimeZoneInfo/SystemV/PST8PDT sope/libFoundation/Resources/TimeZoneInfo/SystemV/YST9 sope/libFoundation/Resources/TimeZoneInfo/SystemV/YST9YDT sope/libFoundation/Resources/TimeZoneInfo/SystemV/CST6CDT sope/libFoundation/Resources/TimeZoneInfo/SystemV/MST7 sope/libFoundation/Resources/TimeZoneInfo/SystemV/AST4 sope/libFoundation/Resources/TimeZoneInfo/SystemV/EST5EDT sope/libFoundation/Resources/TimeZoneInfo/SystemV/PST8 sope/libFoundation/Resources/TimeZoneInfo/Asia/ sope/libFoundation/Resources/TimeZoneInfo/Asia/Calcutta sope/libFoundation/Resources/TimeZoneInfo/Australia/ sope/libFoundation/Resources/TimeZoneInfo/Australia/Queensland sope/libFoundation/Resources/TimeZoneInfo/Australia/Victoria sope/libFoundation/Resources/TimeZoneInfo/Australia/South sope/libFoundation/Resources/TimeZoneInfo/Australia/West sope/libFoundation/Resources/TimeZoneInfo/Australia/NSW sope/libFoundation/Resources/TimeZoneInfo/Australia/North sope/libFoundation/Resources/TimeZoneInfo/Australia/Tasmania sope/libFoundation/Resources/TimeZoneInfo/US/ sope/libFoundation/Resources/TimeZoneInfo/US/Pacific-New sope/libFoundation/Resources/TimeZoneInfo/US/Eastern sope/libFoundation/Resources/TimeZoneInfo/US/Hawaii sope/libFoundation/Resources/TimeZoneInfo/US/Arizona sope/libFoundation/Resources/TimeZoneInfo/US/Yukon sope/libFoundation/Resources/TimeZoneInfo/US/East-Indiana sope/libFoundation/Resources/TimeZoneInfo/US/Central sope/libFoundation/Resources/TimeZoneInfo/US/Mountain sope/libFoundation/Resources/TimeZoneInfo/US/Pacific sope/libFoundation/Resources/TimeZoneInfo/GMT+10_30 sope/libFoundation/Resources/TimeZoneInfo/GMT+1 sope/libFoundation/Resources/TimeZoneInfo/GMT+2 sope/libFoundation/Resources/TimeZoneInfo/GMT+0_30 sope/libFoundation/Resources/TimeZoneInfo/GMT+3 sope/libFoundation/Resources/TimeZoneInfo/GMT+4 sope/libFoundation/Resources/TimeZoneInfo/GMT-0_30 sope/libFoundation/Resources/TimeZoneInfo/GMT+5 sope/libFoundation/Resources/TimeZoneInfo/GMT+6 sope/libFoundation/Resources/TimeZoneInfo/GMT+4_30 sope/libFoundation/Resources/TimeZoneInfo/GMT+7 sope/libFoundation/Resources/TimeZoneInfo/GMT+8 sope/libFoundation/Resources/TimeZoneInfo/GMT-4_30 sope/libFoundation/Resources/TimeZoneInfo/UCT sope/libFoundation/Resources/TimeZoneInfo/GMT+9 sope/libFoundation/Resources/TimeZoneInfo/EST sope/libFoundation/Resources/TimeZoneInfo/GMT+8_30 sope/libFoundation/Resources/TimeZoneInfo/SGT sope/libFoundation/Resources/TimeZoneInfo/GMT-8_30 sope/libFoundation/Resources/TimeZoneInfo/MST7MDT sope/libFoundation/Resources/TimeZoneInfo/MST sope/libFoundation/Resources/TimeZoneInfo/Universal sope/libFoundation/Resources/TimeZoneInfo/CST6CDT sope/libFoundation/Resources/TimeZoneInfo/GB-Eire sope/libFoundation/Resources/TimeZoneInfo/Turkey sope/libFoundation/Resources/TimeZoneInfo/GMT+3_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-3_30 sope/libFoundation/Resources/TimeZoneInfo/UTC sope/libFoundation/Resources/TimeZoneInfo/GMT+7_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-7_30 sope/libFoundation/Resources/TimeZoneInfo/GMT+10 sope/libFoundation/Resources/TimeZoneInfo/RegionsDictionary sope/libFoundation/Resources/TimeZoneInfo/GMT+11 sope/libFoundation/Resources/TimeZoneInfo/GMT-10 sope/libFoundation/Resources/TimeZoneInfo/CLST sope/libFoundation/Resources/TimeZoneInfo/GMT+12 sope/libFoundation/Resources/TimeZoneInfo/GMT+13 sope/libFoundation/Resources/TimeZoneInfo/GMT-11 sope/libFoundation/Resources/TimeZoneInfo/GMT+14 sope/libFoundation/Resources/TimeZoneInfo/GMT-12 sope/libFoundation/Resources/TimeZoneInfo/GMT-11_30 sope/libFoundation/Resources/TimeZoneInfo/CET sope/libFoundation/Resources/TimeZoneInfo/EST5EDT sope/libFoundation/Resources/TimeZoneInfo/EET sope/libFoundation/Resources/TimeZoneInfo/MET sope/libFoundation/Resources/TimeZoneInfo/GMT-1 sope/libFoundation/Resources/TimeZoneInfo/GMT+2_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-2 sope/libFoundation/Resources/TimeZoneInfo/GMT-3 sope/libFoundation/Resources/TimeZoneInfo/GMT sope/libFoundation/Resources/TimeZoneInfo/GMT-2_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-4 sope/libFoundation/Resources/TimeZoneInfo/GMT-5 sope/libFoundation/Resources/TimeZoneInfo/GMT+6_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-6 sope/libFoundation/Resources/TimeZoneInfo/GMT-7 sope/libFoundation/Resources/TimeZoneInfo/GMT-6_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-8 sope/libFoundation/Resources/TimeZoneInfo/GMT-9 sope/libFoundation/Resources/TimeZoneInfo/HST sope/libFoundation/Resources/TimeZoneInfo/WET sope/libFoundation/Resources/TimeZoneInfo/Iceland sope/libFoundation/Resources/TimeZoneInfo/GMT-10_30 sope/libFoundation/Resources/TimeZoneInfo/Poland sope/libFoundation/Resources/TimeZoneInfo/GMT+1_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-1_30 sope/libFoundation/Resources/TimeZoneInfo/NZ sope/libFoundation/Resources/TimeZoneInfo/Singapore sope/libFoundation/Resources/TimeZoneInfo/GMT+5_30 sope/libFoundation/Resources/TimeZoneInfo/Japan sope/libFoundation/Resources/TimeZoneInfo/GMT-5_30 sope/libFoundation/Resources/TimeZoneInfo/W-SU sope/libFoundation/Resources/TimeZoneInfo/GMT+9_30 sope/libFoundation/Resources/TimeZoneInfo/GMT-9_30 sope/libFoundation/Resources/TimeZoneInfo/create sope/libFoundation/Resources/TimeZoneInfo/GMT+11_30 sope/libFoundation/Resources/TimeZoneInfo/PST8PDT sope/libFoundation/Resources/TimeZoneInfo/SAST sope/libFoundation/Resources/TimeZoneInfo/Greenwich sope/libFoundation/Resources/Defaults/ sope/libFoundation/Resources/Defaults/English.plist sope/libFoundation/Resources/Defaults/French.plist sope/libFoundation/Resources/Defaults/German.plist sope/libFoundation/Resources/Defaults/NSGlobalDomain.plist sope/libFoundation/Resources/Defaults/Romanian.plist sope/libFoundation/Resources/CharacterSets/ sope/libFoundation/Resources/CharacterSets/lowercaseLetterCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/whitespaceCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/decomposableCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/emptyCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/letterCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/decimalDigitCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/controlCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/whitespaceAndNewlineCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/nonBaseCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/uppercaseLetterCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/alphanumericCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/punctuationCharacterSet.bitmap sope/libFoundation/Resources/CharacterSets/illegalCharacterSet.bitmap sope/libFoundation/Resources/GNUmakefile.alone sope/libFoundation/Resources/GNUmakefile sope/libFoundation/misc/ sope/libFoundation/misc/testnested.c sope/libFoundation/misc/GNUmakefile sope/libFoundation/misc/testurl.m sope/libFoundation/config/ sope/libFoundation/config/powerpc/ sope/libFoundation/config/powerpc/powerpc.h sope/libFoundation/config/alpha/ sope/libFoundation/config/alpha/linux-gnu.h sope/libFoundation/config/m68k/ sope/libFoundation/config/m68k/nextstep3.h sope/libFoundation/config/m68k/m68k.h sope/libFoundation/config/hppa/ sope/libFoundation/config/hppa/hppa.h sope/libFoundation/config/sparc/ sope/libFoundation/config/sparc/solaris2.4.h sope/libFoundation/config/sparc/sparc.h sope/libFoundation/config/i386/ sope/libFoundation/config/i386/freebsd.h sope/libFoundation/config/i386/i386.h sope/libFoundation/config/i386/gnu.h sope/libFoundation/config/i386/solaris2.5.1.h sope/libFoundation/config/i386/nextstep3.h sope/libFoundation/config/i386/nextstep4.h sope/libFoundation/config/i386/linux.h sope/libFoundation/config/i386/openbsd3.7.h sope/libFoundation/config/i386/solaris2.9.h sope/libFoundation/config/i386/cygwin32.h sope/libFoundation/config/i386/mingw32.h sope/libFoundation/config/i386/linux-gnu.h sope/libFoundation/config/powerpc64/ sope/libFoundation/config/powerpc64/powerpc64.h sope/libFoundation/config/powerpc64/gnu.h sope/libFoundation/config/powerpc64/linux.h sope/libFoundation/config/powerpc64/linux-gnu.h sope/libFoundation/config/generic/ sope/libFoundation/config/generic/generic.h sope/libFoundation/examples/ sope/libFoundation/examples/printenv.m sope/libFoundation/examples/Defaults.m sope/libFoundation/examples/chkdict.m sope/libFoundation/examples/GNUmakefile sope/libFoundation/examples/GNUmakefile.alone sope/libFoundation/examples/fmls.m sope/libFoundation/examples/fhs.make sope/libFoundation/examples/fmrm.m sope/libFoundation/README sope/libFoundation/NEWS sope/libFoundation/config.mak.in sope/libFoundation/configure sope/libFoundation/README.mingw32 sope/libFoundation/README.first sope/libFoundation/Version sope/libFoundation/README.gc sope/libFoundation/AUTHORS sope/libFoundation/configure.bat sope/libFoundation/config.guess sope/libFoundation/config.sub sope/libFoundation/gsfix.make.in sope/libFoundation/sharedlib.mak sope/libFoundation/README.osx sope/libFoundation/COPYING sope/libFoundation/GNUmakefile.alone sope/libFoundation/config.mak.win32 sope/libFoundation/mkinstalldirs sope/libFoundation/config.h.win32 sope/libFoundation/INSTALL.txt sope/libFoundation/configure.in sope/libFoundation/ChangeLog sope/libFoundation/TODO sope/libFoundation/libfoundation.spec sope/libFoundation/GNUmakefile sope/libFoundation/config.h.in sope/libFoundation/README.sparc sope/libFoundation/ANNOUNCE sope/libFoundation/aclocal.m4 sope/libFoundation/install-sh sope/gnustep-objc/ sope/gnustep-objc/debian/ sope/gnustep-objc/debian/patches/ sope/gnustep-objc/debian/patches/00list sope/gnustep-objc/debian/changelog sope/gnustep-objc/debian/control sope/gnustep-objc/debian/compat sope/gnustep-objc/debian/rules sope/gnustep-objc/debian/docs sope/gnustep-objc/debian/libobjc-lf2-dev.install sope/gnustep-objc/debian/copyright sope/gnustep-objc/debian/libobjc-lf2.install sope/gnustep-objc/config/ sope/gnustep-objc/config/powerpc/ sope/gnustep-objc/config/powerpc/linux-gnu/ sope/gnustep-objc/config/powerpc/linux-gnu/compiler-info.h sope/gnustep-objc/config/arm/ sope/gnustep-objc/config/arm/linux-gnu/ sope/gnustep-objc/config/arm/linux-gnu/compiler-info.h sope/gnustep-objc/config/unknown/ sope/gnustep-objc/config/unknown/generic/ sope/gnustep-objc/config/unknown/generic/compiler-info.h sope/gnustep-objc/config/alpha/ sope/gnustep-objc/config/alpha/generic/ sope/gnustep-objc/config/alpha/generic/compiler-info.h sope/gnustep-objc/config/m68k/ sope/gnustep-objc/config/m68k/linux-gnu/ sope/gnustep-objc/config/m68k/linux-gnu/compiler-info.h sope/gnustep-objc/config/sparc/ sope/gnustep-objc/config/sparc/solaris2.6/ sope/gnustep-objc/config/sparc/solaris2.6/compiler-info.h sope/gnustep-objc/config/sparc/solaris2.9/ sope/gnustep-objc/config/sparc/solaris2.9/compiler-info.h sope/gnustep-objc/config/sparc/linux-gnu/ sope/gnustep-objc/config/sparc/linux-gnu/compiler-info.h sope/gnustep-objc/config/sparc/config.make sope/gnustep-objc/config/hppa/ sope/gnustep-objc/config/hppa/hpux/ sope/gnustep-objc/config/hppa/hpux/compiler-info.h sope/gnustep-objc/config/hppa/linux-gnu/ sope/gnustep-objc/config/hppa/linux-gnu/compiler-info.h sope/gnustep-objc/config/mips/ sope/gnustep-objc/config/mips/irix6/ sope/gnustep-objc/config/mips/irix6/compiler-info.h sope/gnustep-objc/config/mips/linux-gnu/ sope/gnustep-objc/config/mips/linux-gnu/compiler-info.h sope/gnustep-objc/config/mipsel/ sope/gnustep-objc/config/mipsel/linux-gnu/ sope/gnustep-objc/config/mipsel/linux-gnu/compiler-info.h sope/gnustep-objc/config/i386/ sope/gnustep-objc/config/i386/linux-gnu/ sope/gnustep-objc/config/i386/linux-gnu/compiler-info.h sope/gnustep-objc/config/powerpc64/ sope/gnustep-objc/config/powerpc64/linux-gnu/ sope/gnustep-objc/config/powerpc64/linux-gnu/compiler-info.h sope/gnustep-objc/config/x86_64/ sope/gnustep-objc/config/x86_64/generic/ sope/gnustep-objc/config/x86_64/generic/compiler-info.h sope/gnustep-objc/config/ix86/ sope/gnustep-objc/config/ix86/openbsd3.7/ sope/gnustep-objc/config/ix86/openbsd3.7/compiler-info.h sope/gnustep-objc/config/ix86/solaris2.9/ sope/gnustep-objc/config/ix86/solaris2.9/compiler-info.h sope/gnustep-objc/config/ix86/linux-gnu/ sope/gnustep-objc/config/ix86/linux-gnu/compiler-info.h sope/gnustep-objc/config/ix86/freebsd/ sope/gnustep-objc/config/ix86/freebsd/compiler-info.h sope/gnustep-objc/config/ix86/openbsd3.2/ sope/gnustep-objc/config/ix86/openbsd3.2/compiler-info.h sope/gnustep-objc/config/s390/ sope/gnustep-objc/config/s390/linux-gnu/ sope/gnustep-objc/config/s390/linux-gnu/compiler-info.h sope/gnustep-objc/thr-backends/ sope/gnustep-objc/thr-backends/pthreads.h sope/gnustep-objc/thr-backends/single.c sope/gnustep-objc/thr-backends/solaris.h sope/gnustep-objc/thr-backends/posix.c sope/gnustep-objc/thr-backends/win32.c sope/gnustep-objc/thr-backends/single.h sope/gnustep-objc/thr-backends/win32.h sope/gnustep-objc/thr-backends/posix.h sope/gnustep-objc/thr-backends/mach.c sope/gnustep-objc/thr-backends/pthreads.c sope/gnustep-objc/thr-backends/solaris.c sope/gnustep-objc/thr-backends/mach.h sope/gnustep-objc/typedstream.h sope/gnustep-objc/objc-mem.h sope/gnustep-objc/configure sope/gnustep-objc/sendmsg.c sope/gnustep-objc/init.c sope/gnustep-objc/linking.m sope/gnustep-objc/class.c sope/gnustep-objc/Protocol.h sope/gnustep-objc/libobjc_entry.c sope/gnustep-objc/objc-decls.h sope/gnustep-objc/Protocol.m sope/gnustep-objc/libobjc.def sope/gnustep-objc/selector.c sope/gnustep-objc/gc.c sope/gnustep-objc/objc-features.texi sope/gnustep-objc/objc.h sope/gnustep-objc/hash.c sope/gnustep-objc/README.threads sope/gnustep-objc/encoding.c sope/gnustep-objc/COPYING sope/gnustep-objc/hash.h sope/gnustep-objc/runtime.h sope/gnustep-objc/objc-api.h sope/gnustep-objc/objects.c sope/gnustep-objc/NXConstStr.h sope/gnustep-objc/encoding.h sope/gnustep-objc/objc-list.h sope/gnustep-objc/thr.c sope/gnustep-objc/GNUmakefile.postamble sope/gnustep-objc/NXConstStr.m sope/gnustep-objc/sarray.c sope/gnustep-objc/thr.h sope/gnustep-objc/libobjc-lf2.spec sope/gnustep-objc/GNUmakefile sope/gnustep-objc/sarray.h sope/gnustep-objc/ChangeLog sope/gnustep-objc/THREADS sope/gnustep-objc/Object.h sope/gnustep-objc/fhs.make sope/gnustep-objc/README sope/gnustep-objc/Object.m sope/gnustep-objc/archive.c sope/gnustep-objc/nil_method.c sope/gnustep-objc/globals.c sope/gnustep-objc/globals.h sope/gnustep-objc/misc.c sope/gnustep-objc/COPYING.LIB sope/gnustep-make/ sope/gnustep-make/Instance/ sope/gnustep-make/Instance/Shared/ sope/gnustep-make/Instance/Shared/stamp-string.make sope/gnustep-make/Instance/Shared/bundle.make sope/gnustep-make/Instance/Shared/strings.make sope/gnustep-make/Instance/Shared/headers.make sope/gnustep-make/Instance/Shared/README sope/gnustep-make/Instance/Shared/java.make sope/gnustep-make/Instance/Documentation/ sope/gnustep-make/Instance/Documentation/autogsdoc.make sope/gnustep-make/Instance/Documentation/javadoc.make sope/gnustep-make/Instance/Documentation/install_files.make sope/gnustep-make/Instance/Documentation/texi.make sope/gnustep-make/Instance/Documentation/latex.make sope/gnustep-make/Instance/Documentation/gsdoc.make sope/gnustep-make/Instance/documentation.make sope/gnustep-make/Instance/application.make sope/gnustep-make/Instance/library.make sope/gnustep-make/Instance/clibrary.make sope/gnustep-make/Instance/subproject.make sope/gnustep-make/Instance/bundle.make sope/gnustep-make/Instance/objc.make sope/gnustep-make/Instance/tool.make sope/gnustep-make/Instance/rules.make sope/gnustep-make/Instance/README sope/gnustep-make/Instance/test-application.make sope/gnustep-make/Instance/ctool.make sope/gnustep-make/Instance/resource-set.make sope/gnustep-make/Instance/java.make sope/gnustep-make/Instance/test-library.make sope/gnustep-make/Instance/gswbundle.make sope/gnustep-make/Instance/test-tool.make sope/gnustep-make/Instance/java-tool.make sope/gnustep-make/Instance/framework.make sope/gnustep-make/Instance/palette.make sope/gnustep-make/Instance/service.make sope/gnustep-make/Instance/gswapp.make sope/gnustep-make/Master/ sope/gnustep-make/Master/documentation.make sope/gnustep-make/Master/application.make sope/gnustep-make/Master/library.make sope/gnustep-make/Master/clibrary.make sope/gnustep-make/Master/bundle.make sope/gnustep-make/Master/subproject.make sope/gnustep-make/Master/objc.make sope/gnustep-make/Master/tool.make sope/gnustep-make/Master/README sope/gnustep-make/Master/source-distribution.make sope/gnustep-make/Master/service.make sope/gnustep-make/Master/rpm.make sope/gnustep-make/Master/test-application.make sope/gnustep-make/Master/resource-set.make sope/gnustep-make/Master/ctool.make sope/gnustep-make/Master/test-library.make sope/gnustep-make/Master/java.make sope/gnustep-make/Master/aggregate.make sope/gnustep-make/Master/gswbundle.make sope/gnustep-make/Master/rules.make sope/gnustep-make/Master/test-tool.make sope/gnustep-make/Master/java-tool.make sope/gnustep-make/Master/framework.make sope/gnustep-make/Master/palette.make sope/gnustep-make/Master/gswapp.make sope/gnustep-make/Documentation/ sope/gnustep-make/Documentation/news.texi sope/gnustep-make/Documentation/faq.texi sope/gnustep-make/Documentation/gnustep-howto.texi sope/gnustep-make/Documentation/README.Darwin sope/gnustep-make/Documentation/make.texi sope/gnustep-make/Documentation/gnustep.init sope/gnustep-make/Documentation/GNUmakefile sope/gnustep-make/Documentation/GNUstep.7 sope/gnustep-make/Documentation/README.MinGWOnCygwin sope/gnustep-make/Documentation/README.Cygwin sope/gnustep-make/Documentation/filesystem.texi sope/gnustep-make/Documentation/internals.tex sope/gnustep-make/Documentation/machines.texi sope/gnustep-make/Documentation/openapp.1 sope/gnustep-make/Documentation/.latex2html-init sope/gnustep-make/Documentation/readme.texi sope/gnustep-make/Documentation/DESIGN sope/gnustep-make/Documentation/README.NetBSD sope/gnustep-make/Documentation/README.MinGW sope/gnustep-make/Documentation/install.texi sope/gnustep-make/Documentation/end.texi sope/gnustep-make/Documentation/announce.texi sope/gnustep-make/Documentation/userfaq.texi sope/gnustep-make/move_obsolete_paths.sh sope/gnustep-make/documentation.make sope/gnustep-make/bundle.make sope/gnustep-make/objc.make sope/gnustep-make/relative_path.sh sope/gnustep-make/clean_cpu.sh sope/gnustep-make/configure.ac sope/gnustep-make/native-library.make sope/gnustep-make/test-tool.make sope/gnustep-make/vendor.sh sope/gnustep-make/GNUstep.csh.in sope/gnustep-make/COPYING sope/gnustep-make/java-tool.make sope/gnustep-make/which_lib.c sope/gnustep-make/framework.make sope/gnustep-make/palette.make sope/gnustep-make/clibrary.make sope/gnustep-make/service.make sope/gnustep-make/NEWS sope/gnustep-make/ANNOUNCE sope/gnustep-make/GNUmakefile.postamble sope/gnustep-make/GNUmakefile.preamble sope/gnustep-make/names.make sope/gnustep-make/FAQ sope/gnustep-make/library-combo.make sope/gnustep-make/transform_paths.sh sope/gnustep-make/GNUstep-HOWTO sope/gnustep-make/strip_makefiles.sh sope/gnustep-make/config.make.in sope/gnustep-make/tar-exclude-list sope/gnustep-make/ChangeLog sope/gnustep-make/java-executable.template sope/gnustep-make/spec-rules.template sope/gnustep-make/ctool.make sope/gnustep-make/resource-set.make sope/gnustep-make/setlocaltz.sh sope/gnustep-make/config.h.in sope/gnustep-make/config.site sope/gnustep-make/test-library.make sope/gnustep-make/GNUstep-reset.sh sope/gnustep-make/GNUsteprc.in sope/gnustep-make/library.make sope/gnustep-make/configure sope/gnustep-make/spec-debug-rules.template sope/gnustep-make/fixpath.sh.in sope/gnustep-make/Version sope/gnustep-make/ChangeLog.1 sope/gnustep-make/config_thread.m sope/gnustep-make/config.guess sope/gnustep-make/GNUmakefile.in sope/gnustep-make/clean_os.sh sope/gnustep-make/debugapp.in sope/gnustep-make/aggregate.make sope/gnustep-make/config.sub sope/gnustep-make/target.make sope/gnustep-make/gnustep-make.spec.in sope/gnustep-make/GNUstep.sh.in sope/gnustep-make/common.make sope/gnustep-make/INSTALL sope/gnustep-make/gswbundle.make sope/gnustep-make/rules.make sope/gnustep-make/user_home.c sope/gnustep-make/ld_lib_path.sh sope/gnustep-make/gswapp.make sope/gnustep-make/application.make sope/gnustep-make/spec-debug-alone-rules.template sope/gnustep-make/mkinstalldirs sope/gnustep-make/os.sh sope/gnustep-make/create_domain_dir_tree.sh sope/gnustep-make/messages.make sope/gnustep-make/tool.make sope/gnustep-make/jni.make sope/gnustep-make/subproject.make sope/gnustep-make/java.make sope/gnustep-make/README sope/gnustep-make/test-application.make sope/gnustep-make/opentool.in sope/gnustep-make/cpu.sh sope/gnustep-make/executable.template.in sope/gnustep-make/openapp.in sope/gnustep-make/clean_vendor.sh sope/gnustep-make/ld_lib_path.csh sope/gnustep-make/install-sh sope/xmlrpc_call/ sope/xmlrpc_call/xmlrpc_call.m sope/xmlrpc_call/GNUmakefile sope/xmlrpc_call/fhs.make sope/xmlrpc_call/GNUmakefile.preamble sope/sope-xml/ sope/sope-xml/libxmlSAXDriver/ sope/sope-xml/libxmlSAXDriver/libxmlSAXDriver.xcode/ sope/sope-xml/libxmlSAXDriver/libxmlSAXDriver.xcode/project.pbxproj sope/sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.h sope/sope-xml/libxmlSAXDriver/libxmlSAXLocator.m sope/sope-xml/libxmlSAXDriver/TableCallbacks.m sope/sope-xml/libxmlSAXDriver/Version sope/sope-xml/libxmlSAXDriver/ChangeLog sope/sope-xml/libxmlSAXDriver/GNUmakefile sope/sope-xml/libxmlSAXDriver/libxmlHTMLSAXDriver.m sope/sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.h sope/sope-xml/libxmlSAXDriver/fhs.make sope/sope-xml/libxmlSAXDriver/bundle-info.plist sope/sope-xml/libxmlSAXDriver/README sope/sope-xml/libxmlSAXDriver/GNUmakefile.postamble sope/sope-xml/libxmlSAXDriver/libxmlDocSAXDriver.m sope/sope-xml/libxmlSAXDriver/libxmlSAXDriver.h sope/sope-xml/libxmlSAXDriver/libxmlSAXDriver-Info.plist sope/sope-xml/libxmlSAXDriver/COPYRIGHT sope/sope-xml/libxmlSAXDriver/COPYING sope/sope-xml/libxmlSAXDriver/libxmlSAXDriver.m sope/sope-xml/libxmlSAXDriver/unicode.h sope/sope-xml/libxmlSAXDriver/GNUmakefile.preamble sope/sope-xml/libxmlSAXDriver/TableCallbacks.h sope/sope-xml/libxmlSAXDriver/libxmlSAXLocator.h sope/sope-xml/libxmlSAXDriver/common.h sope/sope-xml/DOM/ sope/sope-xml/DOM/DOM.xcode/ sope/sope-xml/DOM/DOM.xcode/project.pbxproj sope/sope-xml/DOM/DOMNotation.h sope/sope-xml/DOM/DOMElement.h sope/sope-xml/DOM/DOMNotation.m sope/sope-xml/DOM/DOMElement.m sope/sope-xml/DOM/COPYRIGHT sope/sope-xml/DOM/DOM.h sope/sope-xml/DOM/DOMQueryPathExpression.h sope/sope-xml/DOM/DOMDocumentFragment.h sope/sope-xml/DOM/DOMAttribute.h sope/sope-xml/DOM/NSObject+StringValue.h sope/sope-xml/DOM/DOMQueryPathExpression.m sope/sope-xml/DOM/DOMDocumentFragment.m sope/sope-xml/DOM/DOMAttribute.m sope/sope-xml/DOM/NSObject+StringValue.m sope/sope-xml/DOM/DOM-Info.plist sope/sope-xml/DOM/DOMNode+QPEval.m sope/sope-xml/DOM/DOMDocument.h sope/sope-xml/DOM/DOMNode.h sope/sope-xml/DOM/COPYING sope/sope-xml/DOM/DOMImplementation.h sope/sope-xml/DOM/DOMDocument.m sope/sope-xml/DOM/DOMNode+Enum.h sope/sope-xml/DOM/DOMDocument+factory.m sope/sope-xml/DOM/GNUmakefile.preamble sope/sope-xml/DOM/DOMNamedNodeMap.h sope/sope-xml/DOM/DOMSaxHandler.h sope/sope-xml/DOM/DOMNode.m sope/sope-xml/DOM/DOMImplementation.m sope/sope-xml/DOM/DOMNode+Enum.m sope/sope-xml/DOM/DOMSaxHandler.m sope/sope-xml/DOM/DOMNodeIterator.h sope/sope-xml/DOM/GNUmakefile sope/sope-xml/DOM/ChangeLog sope/sope-xml/DOM/DOMComment.h sope/sope-xml/DOM/DOMNodeIterator.m sope/sope-xml/DOM/fhs.make sope/sope-xml/DOM/SxXML-DOM.graffle sope/sope-xml/DOM/DOMComment.m sope/sope-xml/DOM/DOMEntity.h sope/sope-xml/DOM/DOMEntity.m sope/sope-xml/DOM/DOMText.h sope/sope-xml/DOM/DOMNodeWalker.h sope/sope-xml/DOM/DOMText.m sope/sope-xml/DOM/DOMNodeWithChildren.m sope/sope-xml/DOM/NSObject+QPEval.h sope/sope-xml/DOM/Version sope/sope-xml/DOM/NSObject+QPEval.m sope/sope-xml/DOM/DOMNodeWalker.m sope/sope-xml/DOM/DOMCharacterData.h sope/sope-xml/DOM/TODO sope/sope-xml/DOM/DOMProcessingInstruction.h sope/sope-xml/DOM/DOMProcessingInstruction.m sope/sope-xml/DOM/DOMBuilder.h sope/sope-xml/DOM/NSObject+DOM.m sope/sope-xml/DOM/DOMEntityReference.h sope/sope-xml/DOM/DOMCharacterData.m sope/sope-xml/DOM/DOMNodeFilter.h sope/sope-xml/DOM/DOM+JS.m sope/sope-xml/DOM/DOMXMLOutputter.h sope/sope-xml/DOM/DOMEntityReference.m sope/sope-xml/DOM/DOMNodeFilter.m sope/sope-xml/DOM/DOMCDATASection.h sope/sope-xml/DOM/DOMXMLOutputter.m sope/sope-xml/DOM/DOMSaxBuilder.h sope/sope-xml/DOM/DOMNode+QueryPath.h sope/sope-xml/DOM/DOMTreeWalker.h sope/sope-xml/DOM/DOMCDATASection.m sope/sope-xml/DOM/DOMSaxBuilder.m sope/sope-xml/DOM/README sope/sope-xml/DOM/DOMNode+QueryPath.m sope/sope-xml/DOM/DOMTreeWalker.m sope/sope-xml/DOM/DOMPYXOutputter.h sope/sope-xml/DOM/DOMBuilderFactory.h sope/sope-xml/DOM/DOMDocumentType.h sope/sope-xml/DOM/DOMPYXOutputter.m sope/sope-xml/DOM/DOMBuilderFactory.m sope/sope-xml/DOM/DOMProtocols.h sope/sope-xml/DOM/EDOM.h sope/sope-xml/DOM/DOMDocumentBuilder.h sope/sope-xml/DOM/DOMDocumentType.m sope/sope-xml/DOM/common.h sope/sope-xml/SaxObjC/ sope/sope-xml/SaxObjC/SaxObjC.xcode/ sope/sope-xml/SaxObjC/SaxObjC.xcode/project.pbxproj sope/sope-xml/SaxObjC/SaxLexicalHandler.h sope/sope-xml/SaxObjC/SaxHandlerBase.m sope/sope-xml/SaxObjC/SaxLocator.h sope/sope-xml/SaxObjC/Version sope/sope-xml/SaxObjC/SaxMethodCallHandler.m sope/sope-xml/SaxObjC/SaxXMLReaderFactory.m sope/sope-xml/SaxObjC/SaxDefaultHandler.h sope/sope-xml/SaxObjC/SaxErrorHandler.h sope/sope-xml/SaxObjC/SaxXMLReader.h sope/sope-xml/SaxObjC/SaxAttributes.h sope/sope-xml/SaxObjC/SaxObjectModel.h sope/sope-xml/SaxObjC/SaxNamespaceSupport.h sope/sope-xml/SaxObjC/SaxDefaultHandler.m sope/sope-xml/SaxObjC/SaxEntityResolver.h sope/sope-xml/SaxObjC/SaxAttributes.m sope/sope-xml/SaxObjC/SaxObjectModel.m sope/sope-xml/SaxObjC/SaxException.h sope/sope-xml/SaxObjC/COPYRIGHT sope/sope-xml/SaxObjC/COPYING sope/sope-xml/SaxObjC/SaxNamespaceSupport.m sope/sope-xml/SaxObjC/SaxAttributeList.h sope/sope-xml/SaxObjC/SaxException.m sope/sope-xml/SaxObjC/SaxAttributeList.m sope/sope-xml/SaxObjC/XMLNamespaces.h sope/sope-xml/SaxObjC/SaxLocator.m sope/sope-xml/SaxObjC/SaxObjC.h sope/sope-xml/SaxObjC/TODO sope/sope-xml/SaxObjC/SaxObjC-Info.plist sope/sope-xml/SaxObjC/GNUmakefile.preamble sope/sope-xml/SaxObjC/fhs.make sope/sope-xml/SaxObjC/SaxDefaultHandler+NSXML.m sope/sope-xml/SaxObjC/GNUmakefile sope/sope-xml/SaxObjC/ChangeLog sope/sope-xml/SaxObjC/README sope/sope-xml/SaxObjC/SxXML-SaxObjC.graffle sope/sope-xml/SaxObjC/SaxObjectDecoder.h sope/sope-xml/SaxObjC/SaxObjectDecoder.m sope/sope-xml/SaxObjC/SaxDeclHandler.h sope/sope-xml/SaxObjC/SaxContentHandler.h sope/sope-xml/SaxObjC/SaxXMLFilter.h sope/sope-xml/SaxObjC/SaxDocumentHandler.h sope/sope-xml/SaxObjC/SaxHandlerBase.h sope/sope-xml/SaxObjC/SaxDTDHandler.h sope/sope-xml/SaxObjC/SaxXMLFilter.m sope/sope-xml/SaxObjC/SaxMethodCallHandler.h sope/sope-xml/SaxObjC/SaxXMLReaderFactory.h sope/sope-xml/SaxObjC/libSAXObjC.def sope/sope-xml/SaxObjC/common.h sope/sope-xml/samples/ sope/sope-xml/samples/PlistSaxDriver/ sope/sope-xml/samples/PlistSaxDriver/PlistSaxDriver.m sope/sope-xml/samples/PlistSaxDriver/GNUmakefile sope/sope-xml/samples/PlistSaxDriver/README sope/sope-xml/samples/PlistSaxDriver/bundle-info.plist sope/sope-xml/samples/data/ sope/sope-xml/samples/data/skyrix-xml.xml sope/sope-xml/samples/data/Main.xtmpl sope/sope-xml/samples/data/slashdot.rss sope/sope-xml/samples/data/test-digit.xml sope/sope-xml/samples/rssparse.xmap sope/sope-xml/samples/rss2plist1.m sope/sope-xml/samples/rss2plist2.m sope/sope-xml/samples/ChangeLog sope/sope-xml/samples/GNUmakefile sope/sope-xml/samples/domxml.m sope/sope-xml/samples/fhs.make sope/sope-xml/samples/README sope/sope-xml/samples/rssparse.m sope/sope-xml/samples/saxxml.m sope/sope-xml/samples/xmln.m sope/sope-xml/samples/testqp.m sope/sope-xml/samples/common.h sope/sope-xml/samples/GNUmakefile.preamble sope/sope-xml/sope-xml.xcode/ sope/sope-xml/sope-xml.xcode/project.pbxproj sope/sope-xml/XmlRpc/ sope/sope-xml/XmlRpc/XmlRpc.xcode/ sope/sope-xml/XmlRpc/XmlRpc.xcode/project.pbxproj sope/sope-xml/XmlRpc/COPYRIGHT sope/sope-xml/XmlRpc/Version sope/sope-xml/XmlRpc/NSException+XmlRpcCoding.m sope/sope-xml/XmlRpc/XmlRpcResponseEncoder.m sope/sope-xml/XmlRpc/XmlRpcMethodResponse.m sope/sope-xml/XmlRpc/NSURL+XmlRpcCoding.m sope/sope-xml/XmlRpc/NSObject+XmlRpc.h sope/sope-xml/XmlRpc/XmlRpcDecoder.m sope/sope-xml/XmlRpc/COPYING sope/sope-xml/XmlRpc/ChangeLog sope/sope-xml/XmlRpc/NSString+XmlRpcCoding.m sope/sope-xml/XmlRpc/NSData+XmlRpcCoding.m sope/sope-xml/XmlRpc/NSDate+XmlRpcCoding.m sope/sope-xml/XmlRpc/NSHost+XmlRpcCoding.m sope/sope-xml/XmlRpc/NSObject+XmlRpc.m sope/sope-xml/XmlRpc/XmlRpcResponseDecoder.m sope/sope-xml/XmlRpc/XmlRpcValue.h sope/sope-xml/XmlRpc/GNUmakefile sope/sope-xml/XmlRpc/NSNotification+XmlRpcCoding.m sope/sope-xml/XmlRpc/XmlRpcCoder.h sope/sope-xml/XmlRpc/XmlRpcRequestEncoder.m sope/sope-xml/XmlRpc/NSNumber+XmlRpcCoding.m sope/sope-xml/XmlRpc/GNUmakefile.preamble sope/sope-xml/XmlRpc/SxXML-XmlRpc.graffle sope/sope-xml/XmlRpc/NSDictionary+XmlRpcCoding.m sope/sope-xml/XmlRpc/NSArray+XmlRpcCoding.m sope/sope-xml/XmlRpc/XmlRpcMethodCall.h sope/sope-xml/XmlRpc/XmlRpc-Info.plist sope/sope-xml/XmlRpc/XmlRpc.h sope/sope-xml/XmlRpc/fhs.make sope/sope-xml/XmlRpc/XmlRpcMethodCall.m sope/sope-xml/XmlRpc/XmlRpcValue.m sope/sope-xml/XmlRpc/common.h sope/sope-xml/XmlRpc/XmlRpcRequestDecoder.m sope/sope-xml/XmlRpc/XmlRpcEncoder.m sope/sope-xml/XmlRpc/XmlRpcSaxHandler.h sope/sope-xml/XmlRpc/NSMutableString+XmlRpcDecoder.m sope/sope-xml/XmlRpc/XmlRpcSaxHandler.m sope/sope-xml/XmlRpc/XmlRpcMethodResponse.h sope/sope-xml/STXSaxDriver/ sope/sope-xml/STXSaxDriver/ExtraSTX/ sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredStack.h sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredText.h sope/sope-xml/STXSaxDriver/ExtraSTX/README sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredText_XHTML.m sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredLine.h sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredText.m sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredStack.m sope/sope-xml/STXSaxDriver/ExtraSTX/NSString+STX.h sope/sope-xml/STXSaxDriver/ExtraSTX/GNUmakefile sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredLine.m sope/sope-xml/STXSaxDriver/ExtraSTX/COPYRIGHT sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredText_XHTML.h sope/sope-xml/STXSaxDriver/ExtraSTX/StructuredTextRenderingDelegate.h sope/sope-xml/STXSaxDriver/ExtraSTX/NSString+STX.m sope/sope-xml/STXSaxDriver/Model/ sope/sope-xml/STXSaxDriver/Model/StructuredTextParagraph.h sope/sope-xml/STXSaxDriver/Model/StructuredTextListItem.m sope/sope-xml/STXSaxDriver/Model/GNUmakefile sope/sope-xml/STXSaxDriver/Model/README sope/sope-xml/STXSaxDriver/Model/COPYRIGHT sope/sope-xml/STXSaxDriver/Model/StructuredTextLiteralBlock.h sope/sope-xml/STXSaxDriver/Model/StructuredTextBodyElement.h sope/sope-xml/STXSaxDriver/Model/StructuredTextParagraph.m sope/sope-xml/STXSaxDriver/Model/StructuredTextList.h sope/sope-xml/STXSaxDriver/Model/StructuredTextBodyElement.m sope/sope-xml/STXSaxDriver/Model/StructuredTextLiteralBlock.m sope/sope-xml/STXSaxDriver/Model/StructuredTextDocument.h sope/sope-xml/STXSaxDriver/Model/StructuredTextList.m sope/sope-xml/STXSaxDriver/Model/StructuredTextDocument.m sope/sope-xml/STXSaxDriver/Model/StructuredTextHeader.h sope/sope-xml/STXSaxDriver/Model/StructuredTextListItem.h sope/sope-xml/STXSaxDriver/Model/StructuredTextHeader.m sope/sope-xml/STXSaxDriver/data/ sope/sope-xml/STXSaxDriver/data/extra_test1.stx sope/sope-xml/STXSaxDriver/data/hhtest3.stx sope/sope-xml/STXSaxDriver/data/hhtest1-expect.pyx sope/sope-xml/STXSaxDriver/data/extra_test2.stx sope/sope-xml/STXSaxDriver/data/extra_test1-expect.pyx sope/sope-xml/STXSaxDriver/data/hhtest3-expect.pyx sope/sope-xml/STXSaxDriver/data/extra_test2-expect.pyx sope/sope-xml/STXSaxDriver/data/hhtest1.stx sope/sope-xml/STXSaxDriver/data/hhtest2.stx sope/sope-xml/STXSaxDriver/ChangeLog sope/sope-xml/STXSaxDriver/Version sope/sope-xml/STXSaxDriver/StructuredTextBodyElement+SAX.m sope/sope-xml/STXSaxDriver/STXSaxDriver.h sope/sope-xml/STXSaxDriver/GNUmakefile sope/sope-xml/STXSaxDriver/fhs.make sope/sope-xml/STXSaxDriver/COPYRIGHT sope/sope-xml/STXSaxDriver/STXSaxDriver-Info.plist sope/sope-xml/STXSaxDriver/README sope/sope-xml/STXSaxDriver/TODO sope/sope-xml/STXSaxDriver/bundle-info.plist sope/sope-xml/STXSaxDriver/GNUmakefile.preamble sope/sope-xml/STXSaxDriver/STXSaxDriver.m sope/sope-xml/STXSaxDriver/common.h sope/sope-xml/STXSaxDriver/GNUmakefile.postamble sope/sope-xml/STXSaxDriver/COPYING.LIB sope/sope-xml/pyxSAXDriver/ sope/sope-xml/pyxSAXDriver/pyxSAXDriver.m sope/sope-xml/pyxSAXDriver/slashdot.pyx sope/sope-xml/pyxSAXDriver/pyxSAXDriver.h sope/sope-xml/pyxSAXDriver/GNUmakefile sope/sope-xml/pyxSAXDriver/ChangeLog sope/sope-xml/pyxSAXDriver/COPYING sope/sope-xml/pyxSAXDriver/fhs.make sope/sope-xml/pyxSAXDriver/README sope/sope-xml/pyxSAXDriver/pyxSAXDriver-Info.plist sope/sope-xml/pyxSAXDriver/bundle-info.plist sope/sope-xml/pyxSAXDriver/GNUmakefile.postamble sope/sope-xml/pyxSAXDriver/GNUmakefile.preamble sope/sope-xml/COPYING sope/sope-xml/TODO sope/sope-xml/README-OSX.txt sope/sope-xml/Version sope/sope-xml/GNUmakefile sope/sope-xml/ChangeLog sope/sope-xml/PROJECTLEAD sope/sope-xml/README sope/sope-xml/common.make sope/sope-xml/COPYRIGHT sope/sope-xml/dummy.c sope/SOPE.xcode/ sope/SOPE.xcode/project.pbxproj sope/sope-appserver/ sope/sope-appserver/SoOFS/ sope/sope-appserver/SoOFS/OFSFolderDataSource.h sope/sope-appserver/SoOFS/OFSFactoryContext.m sope/sope-appserver/SoOFS/OFSWebDocument.m sope/sope-appserver/SoOFS/OFSResourceManager.h sope/sope-appserver/SoOFS/OFSFile.m sope/sope-appserver/SoOFS/OFSImage.h sope/sope-appserver/SoOFS/Version sope/sope-appserver/SoOFS/OFSFolderDataSource.m sope/sope-appserver/SoOFS/OFSResourceManager.m sope/sope-appserver/SoOFS/OFSWebMethodRenderer.h sope/sope-appserver/SoOFS/OFSFactoryRegistry.h sope/sope-appserver/SoOFS/OFSHttpPasswd.h sope/sope-appserver/SoOFS/SoOFS.h sope/sope-appserver/SoOFS/OFSWebMethod.m sope/sope-appserver/SoOFS/OFSFolderClassDescription.h sope/sope-appserver/SoOFS/OFSFactoryRegistry.m sope/sope-appserver/SoOFS/OFSHttpPasswd.m sope/sope-appserver/SoOFS/OFSWebTemplate.h sope/sope-appserver/SoOFS/OFSFolderClassDescription.m sope/sope-appserver/SoOFS/OFSWebMethodRenderer.m sope/sope-appserver/SoOFS/product.plist sope/sope-appserver/SoOFS/OFSWebTemplate.m sope/sope-appserver/SoOFS/OFSWebMethod.h sope/sope-appserver/SoOFS/SoOFS-Info.plist sope/sope-appserver/SoOFS/GNUmakefile.preamble sope/sope-appserver/SoOFS/OFSPropertyListObject.h sope/sope-appserver/SoOFS/SoOFS-SXP-Info.plist sope/sope-appserver/SoOFS/SoOFSProduct.m sope/sope-appserver/SoOFS/OFSChangeLog.h sope/sope-appserver/SoOFS/OFSImage.m sope/sope-appserver/SoOFS/OFSFolder+SoDAV.m sope/sope-appserver/SoOFS/ChangeLog sope/sope-appserver/SoOFS/GNUmakefile sope/sope-appserver/SoOFS/OFSChangeLog.m sope/sope-appserver/SoOFS/fhs.make sope/sope-appserver/SoOFS/README sope/sope-appserver/SoOFS/OFSBaseObject.h sope/sope-appserver/SoOFS/sope.m sope/sope-appserver/SoOFS/OFSBaseObject.m sope/sope-appserver/SoOFS/OFSFileRenderer.h sope/sope-appserver/SoOFS/sope.8 sope/sope-appserver/SoOFS/TODO sope/sope-appserver/SoOFS/OFSWebDocument.h sope/sope-appserver/SoOFS/OFSFolder.h sope/sope-appserver/SoOFS/OFSPropertyListObject.m sope/sope-appserver/SoOFS/OFSFileRenderer.m sope/sope-appserver/SoOFS/OFSFactoryContext.h sope/sope-appserver/SoOFS/OFSFile.h sope/sope-appserver/SoOFS/OFSFolder.m sope/sope-appserver/SoOFS/common.h sope/sope-appserver/NGXmlRpc/ sope/sope-appserver/NGXmlRpc/NSObject+Reflection.h sope/sope-appserver/NGXmlRpc/NGXmlRpcInvocation.m sope/sope-appserver/NGXmlRpc/NGXmlRpc.h sope/sope-appserver/NGXmlRpc/GNUmakefile sope/sope-appserver/NGXmlRpc/Version sope/sope-appserver/NGXmlRpc/EOSortOrdering+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/NGXmlRpcAction+Registry.m sope/sope-appserver/NGXmlRpc/NSObject+Reflection.m sope/sope-appserver/NGXmlRpc/EOKeyGlobalID+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/WODirectAction+XmlRpc.h sope/sope-appserver/NGXmlRpc/WODirectAction+XmlRpc.m sope/sope-appserver/NGXmlRpc/WOMessage+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/GNUmakefile.preamble sope/sope-appserver/NGXmlRpc/NGXmlRpc-Info.plist sope/sope-appserver/NGXmlRpc/NGXmlRpcAction.h sope/sope-appserver/NGXmlRpc/NGXmlRpcClient.h sope/sope-appserver/NGXmlRpc/NGXmlRpcAction.m sope/sope-appserver/NGXmlRpc/NGXmlRpcClient.m sope/sope-appserver/NGXmlRpc/WOResponse+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/EOQualifier+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/ChangeLog sope/sope-appserver/NGXmlRpc/WODirectAction+XmlRpcIntrospection.h sope/sope-appserver/NGXmlRpc/fhs.make sope/sope-appserver/NGXmlRpc/common.h sope/sope-appserver/NGXmlRpc/NGXmlRpcRequestHandler.h sope/sope-appserver/NGXmlRpc/NGAsyncResultProxy.h sope/sope-appserver/NGXmlRpc/WODirectAction+XmlRpcIntrospection.m sope/sope-appserver/NGXmlRpc/XmlRpcMethodResponse+WO.h sope/sope-appserver/NGXmlRpc/NGXmlRpcRequestHandler.m sope/sope-appserver/NGXmlRpc/NGAsyncResultProxy.m sope/sope-appserver/NGXmlRpc/EOFetchSpecification+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/XmlRpcMethodResponse+WO.m sope/sope-appserver/NGXmlRpc/NGXmlRpcMethodSignature.h sope/sope-appserver/NGXmlRpc/NGXmlRpcMethodSignature.m sope/sope-appserver/NGXmlRpc/XmlRpcMethodCall+WO.h sope/sope-appserver/NGXmlRpc/NGXmlRpcInvocation.h sope/sope-appserver/NGXmlRpc/EONull+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/WORequest+XmlRpcCoding.m sope/sope-appserver/NGXmlRpc/XmlRpcMethodCall+WO.m sope/sope-appserver/WEExtensions/ sope/sope-appserver/WEExtensions/WEExtensions.xcode/ sope/sope-appserver/WEExtensions/WEExtensions.xcode/project.pbxproj sope/sope-appserver/WEExtensions/WETableView/ sope/sope-appserver/WEExtensions/WETableView/WETableViewConfigObject.h sope/sope-appserver/WEExtensions/WETableView/WETableViewTitleMode.m sope/sope-appserver/WEExtensions/WETableView/WETableViewInfo.h sope/sope-appserver/WEExtensions/WETableView/README sope/sope-appserver/WEExtensions/WETableView/WETableViewConfigObject.m sope/sope-appserver/WEExtensions/WETableView/GNUmakefile sope/sope-appserver/WEExtensions/WETableView/WETableHeader.m sope/sope-appserver/WEExtensions/WETableView/WETableViewColorConfig.h sope/sope-appserver/WEExtensions/WETableView/WETableViewLabelConfig.h sope/sope-appserver/WEExtensions/WETableView/WETableView+Grouping.h sope/sope-appserver/WEExtensions/WETableView/WETableViewGroupMode.m sope/sope-appserver/WEExtensions/WETableView/WETableViewFooterMode.m sope/sope-appserver/WEExtensions/WETableView/WETableViewColorConfig.m sope/sope-appserver/WEExtensions/WETableView/WETableViewLabelConfig.m sope/sope-appserver/WEExtensions/WETableView/WETableView+Grouping.m sope/sope-appserver/WEExtensions/WETableView/WETableViewDefines.h sope/sope-appserver/WEExtensions/WETableView/WETableViewIconConfig.h sope/sope-appserver/WEExtensions/WETableView/WETableView.h sope/sope-appserver/WEExtensions/WETableView/WETableViewState.h sope/sope-appserver/WEExtensions/WETableView/WETableData.m sope/sope-appserver/WEExtensions/WETableView/WETableViewIconConfig.m sope/sope-appserver/WEExtensions/WETableView/WETableView.m sope/sope-appserver/WEExtensions/WETableView/WETableCell.h sope/sope-appserver/WEExtensions/WETableView/WETableViewButtonMode.m sope/sope-appserver/WEExtensions/WETableView/WETableViewState.m sope/sope-appserver/WEExtensions/WETableView/GNUmakefile.preamble sope/sope-appserver/WEExtensions/WETableView/WETableCell.m sope/sope-appserver/WEExtensions/WEContextKey.m sope/sope-appserver/WEExtensions/WETreeView.m sope/sope-appserver/WEExtensions/calendar.js sope/sope-appserver/WEExtensions/WEQualifierConditional.m sope/sope-appserver/WEExtensions/WEComponentValue.m sope/sope-appserver/WEExtensions/JSClipboard.m sope/sope-appserver/WEExtensions/WExExtElemBuilder.m sope/sope-appserver/WEExtensions/WEWeekColumnView.m sope/sope-appserver/WEExtensions/WETableMatrixLabel.m sope/sope-appserver/WEExtensions/WETreeHeader.m sope/sope-appserver/WEExtensions/WEDropScript.js sope/sope-appserver/WEExtensions/calendar.jsm sope/sope-appserver/WEExtensions/WETableMatrix.m sope/sope-appserver/WEExtensions/WERichString.m sope/sope-appserver/WEExtensions/COPYRIGHT sope/sope-appserver/WEExtensions/COPYING sope/sope-appserver/WEExtensions/WEDropScript.jsm sope/sope-appserver/WEExtensions/WETabItem.m sope/sope-appserver/WEExtensions/ChangeLog sope/sope-appserver/WEExtensions/js2m.sh sope/sope-appserver/WEExtensions/GNUmakefile.postamble sope/sope-appserver/WEExtensions/GNUmakefile.preamble sope/sope-appserver/WEExtensions/WETreeContextKeys.h sope/sope-appserver/WEExtensions/JSMenu.h sope/sope-appserver/WEExtensions/WEEpozEditor.m sope/sope-appserver/WEExtensions/GNUmakefile sope/sope-appserver/WEExtensions/JSMenu.m sope/sope-appserver/WEExtensions/fhs.make sope/sope-appserver/WEExtensions/bundle-info.plist sope/sope-appserver/WEExtensions/WEPageView.m sope/sope-appserver/WEExtensions/Version sope/sope-appserver/WEExtensions/WETableMatrixContent.m sope/sope-appserver/WEExtensions/WEClientCapabilities.h sope/sope-appserver/WEExtensions/WEDropContainer.m sope/sope-appserver/WEExtensions/WEDragContainer.m sope/sope-appserver/WEExtensions/WEDateField.m sope/sope-appserver/WEExtensions/WETreeData.m sope/sope-appserver/WEExtensions/WEPageLink.m sope/sope-appserver/WEExtensions/dummy.m sope/sope-appserver/WEExtensions/WETreeMatrixElement.h sope/sope-appserver/WEExtensions/WETabView.h sope/sope-appserver/WEExtensions/WETabView.m sope/sope-appserver/WEExtensions/README sope/sope-appserver/WEExtensions/WETreeMatrixElement.m sope/sope-appserver/WEExtensions/calendar.m sope/sope-appserver/WEExtensions/common.h sope/sope-appserver/WEExtensions/WEContextConditional.h sope/sope-appserver/WEExtensions/WEContextConditional.m sope/sope-appserver/WEExtensions/WEExtensionsBundle.m sope/sope-appserver/WEExtensions/WEWeekOverview.m sope/sope-appserver/WEExtensions/WEDropScript.h sope/sope-appserver/WEExtensions/TODO sope/sope-appserver/WEExtensions/JSMenuItem.h sope/sope-appserver/WEExtensions/WETableCalcMatrix.h sope/sope-appserver/WEExtensions/WETableCalcMatrix.m sope/sope-appserver/WEExtensions/WExCalElemBuilder.m sope/sope-appserver/WEExtensions/WESwitch.m sope/sope-appserver/WEExtensions/WERedirect.m sope/sope-appserver/WEExtensions/WETimeField.m sope/sope-appserver/WEExtensions/WExDnDElemBuilder.m sope/sope-appserver/WEExtensions/WECalendarField.h sope/sope-appserver/WEExtensions/WECollapsibleComponentContent.m sope/sope-appserver/WEExtensions/WEMonthOverview.m sope/sope-appserver/WEExtensions/WECalendarField.m sope/sope-appserver/WEExtensions/JSShiftClick.m sope/sope-appserver/WEExtensions/WEBrowser.m sope/sope-appserver/WEExtensions/JSMenuItem.m sope/sope-appserver/WEExtensions/WEExtensions-Info.plist sope/sope-appserver/mod_ngobjweb/ sope/sope-appserver/mod_ngobjweb/apversion.sh sope/sope-appserver/mod_ngobjweb/sns.c sope/sope-appserver/mod_ngobjweb/config.c sope/sope-appserver/mod_ngobjweb/ngobjweb_module.c sope/sope-appserver/mod_ngobjweb/ChangeLog sope/sope-appserver/mod_ngobjweb/GNUmakefile sope/sope-appserver/mod_ngobjweb/README sope/sope-appserver/mod_ngobjweb/NGBufferedDescriptor.c sope/sope-appserver/mod_ngobjweb/handler.c sope/sope-appserver/mod_ngobjweb/CHANGES sope/sope-appserver/mod_ngobjweb/NGBufferedDescriptor.h sope/sope-appserver/mod_ngobjweb/globals.c sope/sope-appserver/mod_ngobjweb/scanhttp.c sope/sope-appserver/mod_ngobjweb/httpd.conf sope/sope-appserver/mod_ngobjweb/COPYRIGHT sope/sope-appserver/mod_ngobjweb/skyrix.conf sope/sope-appserver/mod_ngobjweb/500mod_ngobjweb.info sope/sope-appserver/mod_ngobjweb/common.h sope/sope-appserver/NGObjWeb/ sope/sope-appserver/NGObjWeb/NGObjWeb.xcode/ sope/sope-appserver/NGObjWeb/NGObjWeb.xcode/project.pbxproj sope/sope-appserver/NGObjWeb/WebDAV/ sope/sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/ sope/sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/project.pbxproj sope/sope-appserver/NGObjWeb/WebDAV/EOFetchSpecification+SoDAV.m sope/sope-appserver/NGObjWeb/WebDAV/SoObjectResultEntry.h sope/sope-appserver/NGObjWeb/WebDAV/SaxDAVHandler.m sope/sope-appserver/NGObjWeb/WebDAV/SoObjectDataSource.h sope/sope-appserver/NGObjWeb/WebDAV/SoSubscription.m sope/sope-appserver/NGObjWeb/WebDAV/SoWebDAVValue.h sope/sope-appserver/NGObjWeb/WebDAV/TODO sope/sope-appserver/NGObjWeb/WebDAV/SoObjectResultEntry.m sope/sope-appserver/NGObjWeb/WebDAV/SoWebDAVValue.m sope/sope-appserver/NGObjWeb/WebDAV/README sope/sope-appserver/NGObjWeb/WebDAV/SoObjectWebDAVDispatcher.h sope/sope-appserver/NGObjWeb/WebDAV/SoObject+SoDAVQuery.m sope/sope-appserver/NGObjWeb/WebDAV/SoDAV.h sope/sope-appserver/NGObjWeb/WebDAV/SoObjectWebDAVDispatcher.m sope/sope-appserver/NGObjWeb/WebDAV/DAVFetchSpec.txt sope/sope-appserver/NGObjWeb/WebDAV/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/WebDAV/SoObjectDataSource.m sope/sope-appserver/NGObjWeb/WebDAV/SoWebDAVRenderer.h sope/sope-appserver/NGObjWeb/WebDAV/GNUmakefile sope/sope-appserver/NGObjWeb/WebDAV/WebDAV-Info.plist sope/sope-appserver/NGObjWeb/WebDAV/SoWebDAVRenderer.m sope/sope-appserver/NGObjWeb/WebDAV/SoDAVSQLParser.h sope/sope-appserver/NGObjWeb/WebDAV/SoDAVLockManager.h sope/sope-appserver/NGObjWeb/WebDAV/SoDAVSQLParser.m sope/sope-appserver/NGObjWeb/WebDAV/SoObject+SoDAV.h sope/sope-appserver/NGObjWeb/WebDAV/EOFetchSpecification+SoDAV.h sope/sope-appserver/NGObjWeb/WebDAV/SoSubscriptionManager.h sope/sope-appserver/NGObjWeb/WebDAV/SaxDAVHandler.h sope/sope-appserver/NGObjWeb/WebDAV/SoObject+SoDAV.m sope/sope-appserver/NGObjWeb/WebDAV/SoDAVLockManager.m sope/sope-appserver/NGObjWeb/WebDAV/SoSubscription.h sope/sope-appserver/NGObjWeb/WebDAV/SoSubscriptionManager.m sope/sope-appserver/NGObjWeb/WebDAV/common.h sope/sope-appserver/NGObjWeb/DynamicElements/ sope/sope-appserver/NGObjWeb/DynamicElements/WOHyperlinkInfo.m sope/sope-appserver/NGObjWeb/DynamicElements/WOResetButton.m sope/sope-appserver/NGObjWeb/DynamicElements/_WOComplexHyperlink.m sope/sope-appserver/NGObjWeb/DynamicElements/WOGenericElement.h sope/sope-appserver/NGObjWeb/DynamicElements/WOText.m sope/sope-appserver/NGObjWeb/DynamicElements/WOSwitchComponent.m sope/sope-appserver/NGObjWeb/DynamicElements/WOFileUpload.m sope/sope-appserver/NGObjWeb/DynamicElements/WOGenericElement.m sope/sope-appserver/NGObjWeb/DynamicElements/WOCompoundElement.h sope/sope-appserver/NGObjWeb/DynamicElements/WOInput.h sope/sope-appserver/NGObjWeb/DynamicElements/WOQuickTime.m sope/sope-appserver/NGObjWeb/DynamicElements/_WOConstResourceImage.m sope/sope-appserver/NGObjWeb/DynamicElements/WOxMiscElemBuilder.m sope/sope-appserver/NGObjWeb/DynamicElements/WOCompoundElement.m sope/sope-appserver/NGObjWeb/DynamicElements/WOInput.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHiddenField.m sope/sope-appserver/NGObjWeb/DynamicElements/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/DynamicElements/WOImageButton.m sope/sope-appserver/NGObjWeb/DynamicElements/WOCheckBoxList.m sope/sope-appserver/NGObjWeb/DynamicElements/GNUmakefile sope/sope-appserver/NGObjWeb/DynamicElements/WORadioButton.m sope/sope-appserver/NGObjWeb/DynamicElements/WOForm.h sope/sope-appserver/NGObjWeb/DynamicElements/_WOCommonStaticDAHyperlink.m sope/sope-appserver/NGObjWeb/DynamicElements/WOActionURL.m sope/sope-appserver/NGObjWeb/DynamicElements/WOEmbeddedObject.m sope/sope-appserver/NGObjWeb/DynamicElements/WOConditional.m sope/sope-appserver/NGObjWeb/DynamicElements/WOForm.m sope/sope-appserver/NGObjWeb/DynamicElements/WOMetaRefresh.m sope/sope-appserver/NGObjWeb/DynamicElements/WOString.m sope/sope-appserver/NGObjWeb/DynamicElements/WOJavaScript.m sope/sope-appserver/NGObjWeb/DynamicElements/WOResourceURL.m sope/sope-appserver/NGObjWeb/DynamicElements/WOImage.h sope/sope-appserver/NGObjWeb/DynamicElements/WOActiveImage.m sope/sope-appserver/NGObjWeb/DynamicElements/WONestedList.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHyperlink.h sope/sope-appserver/NGObjWeb/DynamicElements/WOImage.m sope/sope-appserver/NGObjWeb/DynamicElements/WOBrowser.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHtml.m sope/sope-appserver/NGObjWeb/DynamicElements/WOxControlElemBuilder.m sope/sope-appserver/NGObjWeb/DynamicElements/WOVBScript.m sope/sope-appserver/NGObjWeb/DynamicElements/WOComponentContent.h sope/sope-appserver/NGObjWeb/DynamicElements/WOComponentReference.h sope/sope-appserver/NGObjWeb/DynamicElements/WOComponentContent.m sope/sope-appserver/NGObjWeb/DynamicElements/WOIFrame.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHyperlink.m sope/sope-appserver/NGObjWeb/DynamicElements/WOPasswordField.m sope/sope-appserver/NGObjWeb/DynamicElements/WOEntity.m sope/sope-appserver/NGObjWeb/DynamicElements/README sope/sope-appserver/NGObjWeb/DynamicElements/_WOSimpleActionHyperlink.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHTMLDynamicElement.h sope/sope-appserver/NGObjWeb/DynamicElements/WOGenericContainer.m sope/sope-appserver/NGObjWeb/DynamicElements/WOComponentReference.m sope/sope-appserver/NGObjWeb/DynamicElements/WORepetition.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHTMLDynamicElement.m sope/sope-appserver/NGObjWeb/DynamicElements/WORadioButtonList.m sope/sope-appserver/NGObjWeb/DynamicElements/WOCheckBox.m sope/sope-appserver/NGObjWeb/DynamicElements/WOTextField.m sope/sope-appserver/NGObjWeb/DynamicElements/_WOResourceImage.m sope/sope-appserver/NGObjWeb/DynamicElements/WOSetCursor.m sope/sope-appserver/NGObjWeb/DynamicElements/WOFrame.m sope/sope-appserver/NGObjWeb/DynamicElements/WOBody.m sope/sope-appserver/NGObjWeb/DynamicElements/WOxHTMLElemBuilder.m sope/sope-appserver/NGObjWeb/DynamicElements/WOPopUpButton.m sope/sope-appserver/NGObjWeb/DynamicElements/WOSubmitButton.m sope/sope-appserver/NGObjWeb/DynamicElements/common.h sope/sope-appserver/NGObjWeb/DynamicElements/_WOTemporaryHyperlink.m sope/sope-appserver/NGObjWeb/DynamicElements/WOxXULElemBuilder.m sope/sope-appserver/NGObjWeb/DynamicElements/WOHyperlinkInfo.h sope/sope-appserver/NGObjWeb/SoObjects/ sope/sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/ sope/sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/project.pbxproj sope/sope-appserver/NGObjWeb/SoObjects/WODirectAction+SoObjects.m sope/sope-appserver/NGObjWeb/SoObjects/SoCore-SXP-Info.plist sope/sope-appserver/NGObjWeb/SoObjects/SoObjectSOAPDispatcher.h sope/sope-appserver/NGObjWeb/SoObjects/WOComponent+SoObjects.m sope/sope-appserver/NGObjWeb/SoObjects/SoTemplateRenderer.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjectSOAPDispatcher.m sope/sope-appserver/NGObjWeb/SoObjects/SoTemplateRenderer.m sope/sope-appserver/NGObjWeb/SoObjects/SoClassSecurityInfo.h sope/sope-appserver/NGObjWeb/SoObjects/SoProductRegistry.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjects.h sope/sope-appserver/NGObjWeb/SoObjects/SoUser.h sope/sope-appserver/NGObjWeb/SoObjects/SoHTTPAuthenticator.h sope/sope-appserver/NGObjWeb/SoObjects/SoUser.m sope/sope-appserver/NGObjWeb/SoObjects/GNUmakefile sope/sope-appserver/NGObjWeb/SoObjects/SoClassSecurityInfo.m sope/sope-appserver/NGObjWeb/SoObjects/SoProductRegistry.m sope/sope-appserver/NGObjWeb/SoObjects/SoHTTPAuthenticator.m sope/sope-appserver/NGObjWeb/SoObjects/SoObjectRequestHandler.h sope/sope-appserver/NGObjWeb/SoObjects/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/SoObjects/SoObjects-Info.plist sope/sope-appserver/NGObjWeb/SoObjects/SoClassRegistry.h sope/sope-appserver/NGObjWeb/SoObjects/SoControlPanel.h sope/sope-appserver/NGObjWeb/SoObjects/SoApplication.h sope/sope-appserver/NGObjWeb/SoObjects/SoClassRegistry.m sope/sope-appserver/NGObjWeb/SoObjects/SoControlPanel.m sope/sope-appserver/NGObjWeb/SoObjects/SoApplication.m sope/sope-appserver/NGObjWeb/SoObjects/NSException+HTTP.h sope/sope-appserver/NGObjWeb/SoObjects/SoDefaultRenderer.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjectRequestHandler.m sope/sope-appserver/NGObjWeb/SoObjects/NSException+HTTP.m sope/sope-appserver/NGObjWeb/SoObjects/SoDefaultRenderer.m sope/sope-appserver/NGObjWeb/SoObjects/SoProduct.h sope/sope-appserver/NGObjWeb/SoObjects/WODirectActionRequestHandler+SoObjects.m sope/sope-appserver/NGObjWeb/SoObjects/SoSubContext.h sope/sope-appserver/NGObjWeb/SoObjects/SoProduct.m sope/sope-appserver/NGObjWeb/SoObjects/SoClass.h sope/sope-appserver/NGObjWeb/SoObjects/NOTES sope/sope-appserver/NGObjWeb/SoObjects/SoSecurityException.h sope/sope-appserver/NGObjWeb/SoObjects/SoSecurityException.m sope/sope-appserver/NGObjWeb/SoObjects/SoPageInvocation.h sope/sope-appserver/NGObjWeb/SoObjects/SoComponent.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjCClass.h sope/sope-appserver/NGObjWeb/SoObjects/SoSubContext.m sope/sope-appserver/NGObjWeb/SoObjects/SoObject.h sope/sope-appserver/NGObjWeb/SoObjects/SoSelectorInvocation.h sope/sope-appserver/NGObjWeb/SoObjects/SoActionInvocation.h sope/sope-appserver/NGObjWeb/SoObjects/SoComponent.m sope/sope-appserver/NGObjWeb/SoObjects/SoObjCClass.m sope/sope-appserver/NGObjWeb/SoObjects/WORequest+So.h sope/sope-appserver/NGObjWeb/SoObjects/SoClass.m sope/sope-appserver/NGObjWeb/SoObjects/SoPermissions.h sope/sope-appserver/NGObjWeb/SoObjects/SoObject.m sope/sope-appserver/NGObjWeb/SoObjects/SoSelectorInvocation.m sope/sope-appserver/NGObjWeb/SoObjects/SoPageInvocation.m sope/sope-appserver/NGObjWeb/SoObjects/SoActionInvocation.m sope/sope-appserver/NGObjWeb/SoObjects/WORequest+So.m sope/sope-appserver/NGObjWeb/SoObjects/SoProductClassInfo.h sope/sope-appserver/NGObjWeb/SoObjects/SoPermissions.m sope/sope-appserver/NGObjWeb/SoObjects/SoProductClassInfo.m sope/sope-appserver/NGObjWeb/SoObjects/product.plist sope/sope-appserver/NGObjWeb/SoObjects/README sope/sope-appserver/NGObjWeb/SoObjects/SoProductResourceManager.h sope/sope-appserver/NGObjWeb/SoObjects/SoProductResourceManager.m sope/sope-appserver/NGObjWeb/SoObjects/SoSecurityManager.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjectXmlRpcDispatcher.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjectXmlRpcDispatcher.m sope/sope-appserver/NGObjWeb/SoObjects/SoLookupAssociation.h sope/sope-appserver/NGObjWeb/SoObjects/SoSecurityManager.m sope/sope-appserver/NGObjWeb/SoObjects/SoLookupAssociation.m sope/sope-appserver/NGObjWeb/SoObjects/SoObject+Traversal.m sope/sope-appserver/NGObjWeb/SoObjects/TODO sope/sope-appserver/NGObjWeb/SoObjects/common.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjectMethodDispatcher.h sope/sope-appserver/NGObjWeb/SoObjects/WOContext+SoObjects.h sope/sope-appserver/NGObjWeb/SoObjects/SoObjectMethodDispatcher.m sope/sope-appserver/NGObjWeb/SoObjects/WOContext+SoObjects.m sope/sope-appserver/NGObjWeb/NGObjWeb/ sope/sope-appserver/NGObjWeb/NGObjWeb/OWResponder.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOMessage.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOElement.h sope/sope-appserver/NGObjWeb/NGObjWeb/WORequestHandler.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOComponentScript.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOAdaptor.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOResponse.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOComponentDefinition.h sope/sope-appserver/NGObjWeb/NGObjWeb/WODynamicElement.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOHTTPConnection.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOApplication.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOCookie.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOProxyRequestHandler.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOCoreApplication.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOAssociation.h sope/sope-appserver/NGObjWeb/NGObjWeb/WODisplayGroup.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOElementTrackingContext.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOResourceManager.h sope/sope-appserver/NGObjWeb/NGObjWeb/OWResourceManager.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOSession.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOContext.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOMailDelivery.h sope/sope-appserver/NGObjWeb/NGObjWeb/NGObjWeb.h sope/sope-appserver/NGObjWeb/NGObjWeb/WORequest.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOPageGenerationContext.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOActionResults.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOSessionStore.h sope/sope-appserver/NGObjWeb/NGObjWeb/NGObjWebDecls.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOComponent.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOStatisticsStore.h sope/sope-appserver/NGObjWeb/NGObjWeb/WODirectAction.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOTemplate.h sope/sope-appserver/NGObjWeb/NGObjWeb/WEClientCapabilities.h sope/sope-appserver/NGObjWeb/NGObjWeb/OWViewRequestHandler.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOxElemBuilder.h sope/sope-appserver/NGObjWeb/NGObjWeb/WOTemplateBuilder.h sope/sope-appserver/NGObjWeb/Templates/ sope/sope-appserver/NGObjWeb/Templates/WOWrapperTemplateBuilder.h sope/sope-appserver/NGObjWeb/Templates/WOComponentScriptPart.m sope/sope-appserver/NGObjWeb/Templates/WOTemplateBuilder.m sope/sope-appserver/NGObjWeb/Templates/WOxElemBuilder.m sope/sope-appserver/NGObjWeb/Templates/WOHTMLParser.m sope/sope-appserver/NGObjWeb/Templates/common.h sope/sope-appserver/NGObjWeb/Templates/WOWrapperTemplateBuilder.m sope/sope-appserver/NGObjWeb/Templates/GNUmakefile sope/sope-appserver/NGObjWeb/Templates/WOComponentScript.m sope/sope-appserver/NGObjWeb/Templates/WOSubcomponentInfo.m sope/sope-appserver/NGObjWeb/Templates/WODParser.h sope/sope-appserver/NGObjWeb/Templates/WODParser.m sope/sope-appserver/NGObjWeb/Templates/WOxTagClassElemBuilder.m sope/sope-appserver/NGObjWeb/Templates/WOxComponentElemBuilder.m sope/sope-appserver/NGObjWeb/Templates/WOxTemplateBuilder.h sope/sope-appserver/NGObjWeb/Templates/README-Templates.txt sope/sope-appserver/NGObjWeb/Templates/WOApplication+Builders.m sope/sope-appserver/NGObjWeb/Templates/WOxTemplateBuilder.m sope/sope-appserver/NGObjWeb/Templates/WOTemplate.m sope/sope-appserver/NGObjWeb/Templates/WOHTMLParser.h sope/sope-appserver/NGObjWeb/Templates/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/Associations/ sope/sope-appserver/NGObjWeb/Associations/WOScriptAssociation.h sope/sope-appserver/NGObjWeb/Associations/NSUserDefaults+KVC.m sope/sope-appserver/NGObjWeb/Associations/GNUmakefile sope/sope-appserver/NGObjWeb/Associations/WOResourceURLAssociation.h sope/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.h sope/sope-appserver/NGObjWeb/Associations/WOScriptAssociation.m sope/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m sope/sope-appserver/NGObjWeb/Associations/WOValueAssociation.h sope/sope-appserver/NGObjWeb/Associations/WOLabelAssociation.h sope/sope-appserver/NGObjWeb/Associations/WOResourceURLAssociation.m sope/sope-appserver/NGObjWeb/Associations/WOValueAssociation.m sope/sope-appserver/NGObjWeb/Associations/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/Associations/common.h sope/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociationSystemKVC.m sope/sope-appserver/NGObjWeb/Associations/WOLabelAssociation.m sope/sope-appserver/NGObjWeb/Associations/WOAssociation.m sope/sope-appserver/NGObjWeb/WOHttpAdaptor/ sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WORecordRequestStream.h sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WORequest+Adaptor.m sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WORecordRequestStream.m sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WORequestParser.h sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpTransaction.h sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WORequestParser.m sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpAdaptor.h sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpTransaction.m sope/sope-appserver/NGObjWeb/WOHttpAdaptor/GNUmakefile sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WORequest+Adaptor.h sope/sope-appserver/NGObjWeb/WOHttpAdaptor/WOHttpAdaptor.m sope/sope-appserver/NGObjWeb/WOHttpAdaptor/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/WOHttpAdaptor/common.h sope/sope-appserver/NGObjWeb/NGHttp/ sope/sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/ sope/sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/project.pbxproj sope/sope-appserver/NGObjWeb/NGHttp/NGHttpHeaderFieldParser.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpMessageParser.m sope/sope-appserver/NGObjWeb/NGHttp/NGUrlFormCoder.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttpBodyParser.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpCookie.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpCookie.m sope/sope-appserver/NGObjWeb/NGHttp/ChangeLog sope/sope-appserver/NGObjWeb/NGHttp/GNUmakefile sope/sope-appserver/NGObjWeb/NGHttp/NGHttpMessageParser.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttp-Info.plist sope/sope-appserver/NGObjWeb/NGHttp/NGHttpBodyParser.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttpHeaderFieldParser.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttp.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpHeaderFields.h sope/sope-appserver/NGObjWeb/NGHttp/README sope/sope-appserver/NGObjWeb/NGHttp/NGHttpHeaderFields.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttp.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttpMessage.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpRequest.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpMessage.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttpDecls.h sope/sope-appserver/NGObjWeb/NGHttp/NGHttpRequest.m sope/sope-appserver/NGObjWeb/NGHttp/NGHttpResponse.h sope/sope-appserver/NGObjWeb/NGHttp/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/NGHttp/NGHttpResponse.m sope/sope-appserver/NGObjWeb/NGHttp/NGUrlFormCoder.h sope/sope-appserver/NGObjWeb/NGHttp/common.h sope/sope-appserver/NGObjWeb/WOCookie.m sope/sope-appserver/NGObjWeb/COPYING sope/sope-appserver/NGObjWeb/WOCoreApplication+Bundle.m sope/sope-appserver/NGObjWeb/SoCoreProduct.m sope/sope-appserver/NGObjWeb/WORequestHandler.m sope/sope-appserver/NGObjWeb/WORequestHandler+private.h sope/sope-appserver/NGObjWeb/WOElement.m sope/sope-appserver/NGObjWeb/WOWatchDogApplicationMain.m sope/sope-appserver/NGObjWeb/WOElement+private.h sope/sope-appserver/NGObjWeb/wobundle.make sope/sope-appserver/NGObjWeb/WODynamicElement.m sope/sope-appserver/NGObjWeb/WOHTTPConnection.m sope/sope-appserver/NGObjWeb/Languages.plist sope/sope-appserver/NGObjWeb/WOSimpleHTTPParser.h sope/sope-appserver/NGObjWeb/wobundle-gs.make sope/sope-appserver/NGObjWeb/WOApplication.m sope/sope-appserver/NGObjWeb/WOComponentRequestHandler.h sope/sope-appserver/NGObjWeb/WOApplication+private.h sope/sope-appserver/NGObjWeb/WOSimpleHTTPParser.m sope/sope-appserver/NGObjWeb/COPYRIGHT sope/sope-appserver/NGObjWeb/WOComponentDefinition.m sope/sope-appserver/NGObjWeb/WOApplicationMain.m sope/sope-appserver/NGObjWeb/_WOStringTable.h sope/sope-appserver/NGObjWeb/WODirectActionRequestHandler.h sope/sope-appserver/NGObjWeb/WOComponentRequestHandler.m sope/sope-appserver/NGObjWeb/NGHttp+WO.h sope/sope-appserver/NGObjWeb/WOStats.m sope/sope-appserver/NGObjWeb/fhs.make sope/sope-appserver/NGObjWeb/GNUmakefile.postamble sope/sope-appserver/NGObjWeb/GNUmakefile.preamble sope/sope-appserver/NGObjWeb/_WOStringTable.m sope/sope-appserver/NGObjWeb/NGHttp+WO.m sope/sope-appserver/NGObjWeb/WOMessage+XML.m sope/sope-appserver/NGObjWeb/WOSession.m sope/sope-appserver/NGObjWeb/WODirectActionRequestHandler.m sope/sope-appserver/NGObjWeb/WODisplayGroup.m sope/sope-appserver/NGObjWeb/WOResourceManager.m sope/sope-appserver/NGObjWeb/OWResourceManager.m sope/sope-appserver/NGObjWeb/WOPageRequestHandler.m sope/sope-appserver/NGObjWeb/WOContext.m sope/sope-appserver/NGObjWeb/WOContext+private.h sope/sope-appserver/NGObjWeb/TROUBLESHOOTING sope/sope-appserver/NGObjWeb/WOMailDelivery.m sope/sope-appserver/NGObjWeb/ChangeLog sope/sope-appserver/NGObjWeb/subdirs.make sope/sope-appserver/NGObjWeb/GNUmakefile sope/sope-appserver/NGObjWeb/NGObjWeb.m sope/sope-appserver/NGObjWeb/WOServerSessionStore.m sope/sope-appserver/NGObjWeb/WOFileSessionStore.m sope/sope-appserver/NGObjWeb/WOSessionStore.m sope/sope-appserver/NGObjWeb/DAVPropMap.plist sope/sope-appserver/NGObjWeb/woapp.make sope/sope-appserver/NGObjWeb/UnixSignalHandler.h sope/sope-appserver/NGObjWeb/WOComponent.m sope/sope-appserver/NGObjWeb/WOChildComponentReference.h sope/sope-appserver/NGObjWeb/WOComponent+private.h sope/sope-appserver/NGObjWeb/WOStatisticsStore.m sope/sope-appserver/NGObjWeb/SNSConnection.h sope/sope-appserver/NGObjWeb/WODirectAction.m sope/sope-appserver/NGObjWeb/UnixSignalHandler.m sope/sope-appserver/NGObjWeb/WOComponent+Sync.m sope/sope-appserver/NGObjWeb/SNSConnection.m sope/sope-appserver/NGObjWeb/NSObject+WO.h sope/sope-appserver/NGObjWeb/WEClientCapabilities.m sope/sope-appserver/NGObjWeb/WOMessage.m sope/sope-appserver/NGObjWeb/wod.m sope/sope-appserver/NGObjWeb/OWViewRequestHandler.m sope/sope-appserver/NGObjWeb/NSObject+WO.m sope/sope-appserver/NGObjWeb/Version sope/sope-appserver/NGObjWeb/WOAdaptor.m sope/sope-appserver/NGObjWeb/dummy.m sope/sope-appserver/NGObjWeb/WOChildComponentReference.m sope/sope-appserver/NGObjWeb/Defaults.plist sope/sope-appserver/NGObjWeb/WOResponse.m sope/sope-appserver/NGObjWeb/WOProxyRequestHandler.m sope/sope-appserver/NGObjWeb/WOResponse+private.h sope/sope-appserver/NGObjWeb/ngobjweb.make sope/sope-appserver/NGObjWeb/woapp-gs.make sope/sope-appserver/NGObjWeb/WOComponent+JS.m sope/sope-appserver/NGObjWeb/WOCoreApplication.m sope/sope-appserver/NGObjWeb/WOHTTPURLHandle.m sope/sope-appserver/NGObjWeb/NGObjWeb-Info.plist sope/sope-appserver/NGObjWeb/WORequest.m sope/sope-appserver/NGObjWeb/WOElementID.h sope/sope-appserver/NGObjWeb/WORunLoop.h sope/sope-appserver/NGObjWeb/WOScriptedComponent.h sope/sope-appserver/NGObjWeb/WOComponentFault.h sope/sope-appserver/NGObjWeb/README sope/sope-appserver/NGObjWeb/WORunLoop.m sope/sope-appserver/NGObjWeb/TODO sope/sope-appserver/NGObjWeb/WOComponentFault.m sope/sope-appserver/NGObjWeb/common.h sope/sope-appserver/NGObjWeb/WOResourceRequestHandler.m sope/sope-appserver/NGObjWeb/WOServerDefaults.m sope/sope-appserver/NGObjWeb/WOScriptedComponent.m sope/sope-appserver/NGObjWeb/WOElementID.m sope/sope-appserver/NGObjWeb/WOApplication+defaults.m sope/sope-appserver/NGObjWeb/sope-ngobjweb-defaults.5 sope/sope-appserver/NGObjWeb/WOMessage+Validation.m sope/sope-appserver/samples/ sope/sope-appserver/samples/TestPages/ sope/sope-appserver/samples/TestPages/TwoForms.wo/ sope/sope-appserver/samples/TestPages/TwoForms.wo/TwoForms.html sope/sope-appserver/samples/TestPages/TwoForms.wo/TwoForms.wod sope/sope-appserver/samples/TestPages/Main.wo/ sope/sope-appserver/samples/TestPages/Main.wo/Main.html sope/sope-appserver/samples/TestPages/Main.wo/Main.wod sope/sope-appserver/samples/TestPages/FormDisplay.wo/ sope/sope-appserver/samples/TestPages/FormDisplay.wo/FormDisplay.wod sope/sope-appserver/samples/TestPages/FormDisplay.wo/FormDisplay.html sope/sope-appserver/samples/TestPages/ChangeLog sope/sope-appserver/samples/TestPages/Main.m sope/sope-appserver/samples/TestPages/GNUmakefile.preamble sope/sope-appserver/samples/TestPages/FormDisplay.m sope/sope-appserver/samples/TestPages/GNUmakefile sope/sope-appserver/samples/TestPages/TestPages.m sope/sope-appserver/samples/TestPages/TwoForms.m sope/sope-appserver/samples/TestPages/common.h sope/sope-appserver/samples/TestSite/ sope/sope-appserver/samples/TestSite/subdir/ sope/sope-appserver/samples/TestSite/subdir/index.wox sope/sope-appserver/samples/TestSite/Projects/ sope/sope-appserver/samples/TestSite/Projects/Development/ sope/sope-appserver/samples/TestSite/Projects/SalesIntern/ sope/sope-appserver/samples/TestSite/Projects/stylesheet.css sope/sope-appserver/samples/TestSite/Projects/index.wox sope/sope-appserver/samples/TestSite/Projects/Main.xtmpl sope/sope-appserver/samples/TestSite/Projects/OGoLogo.gif sope/sope-appserver/samples/TestSite/Projects/blogstyle.css sope/sope-appserver/samples/TestSite/Projects/projectcard.wox sope/sope-appserver/samples/TestSite/plisttest/ sope/sope-appserver/samples/TestSite/plisttest/MyNews1.plist sope/sope-appserver/samples/TestSite/plisttest/index.wox sope/sope-appserver/samples/TestSite/plisttest/Main.xtmpl sope/sope-appserver/samples/TestSite/plisttest/MyNews2.plist sope/sope-appserver/samples/TestSite/images/ sope/sope-appserver/samples/TestSite/images/banner-new.gif sope/sope-appserver/samples/TestSite/images/banner_left.gif sope/sope-appserver/samples/TestSite/images/banner_right.gif sope/sope-appserver/samples/TestSite/images/banner_back.gif sope/sope-appserver/samples/TestSite/images/banner.gif sope/sope-appserver/samples/TestSite/plone/ sope/sope-appserver/samples/TestSite/plone/plone_javascripts.js sope/sope-appserver/samples/TestSite/plone/ploneCustom.css sope/sope-appserver/samples/TestSite/plone/plonePrint.css sope/sope-appserver/samples/TestSite/plone/plonePresentation.css sope/sope-appserver/samples/TestSite/plone/searchbox.wox sope/sope-appserver/samples/TestSite/plone/index.wox sope/sope-appserver/samples/TestSite/plone/plone.css sope/sope-appserver/samples/TestSite/plone/linkTransparent.gif sope/sope-appserver/samples/TestSite/plone/required.gif sope/sope-appserver/samples/TestSite/plone/NOTES.txt sope/sope-appserver/samples/TestSite/plone/Main.xtmpl sope/sope-appserver/samples/TestSite/plone/plone_formtooltip.js sope/sope-appserver/samples/TestSite/plone/ploneNS4.css sope/sope-appserver/samples/TestSite/plone/loggedin.html sope/sope-appserver/samples/TestSite/plone/linkOpaque.gif sope/sope-appserver/samples/TestSite/stylesheet.css sope/sope-appserver/samples/TestSite/Main.xtmpl sope/sope-appserver/samples/TestSite/webfolders.xhtml sope/sope-appserver/samples/TestSite/ChangeLog sope/sope-appserver/samples/TestSite/embed.wox sope/sope-appserver/samples/TestSite/Debug.xtmpl sope/sope-appserver/samples/TestSite/test.wox sope/sope-appserver/samples/TestSite/htpasswd sope/sope-appserver/samples/TestSite/README sope/sope-appserver/samples/TestSite/favicon.ico sope/sope-appserver/samples/TestSite/accept.gif sope/sope-appserver/samples/TestSite/index.html sope/sope-appserver/samples/TestSite/.sope.plist sope/sope-appserver/samples/xmlrpc/ sope/sope-appserver/samples/xmlrpc/meerkat_xml_channels.m sope/sope-appserver/samples/xmlrpc/NGBloggerClient.m sope/sope-appserver/samples/xmlrpc/blogger_zidestore.m sope/sope-appserver/samples/xmlrpc/GNUmakefile sope/sope-appserver/samples/xmlrpc/NGBloggerClient.h sope/sope-appserver/samples/xmlrpc/common.h sope/sope-appserver/samples/parsedav/ sope/sope-appserver/samples/parsedav/data/ sope/sope-appserver/samples/parsedav/data/propupt1.xml sope/sope-appserver/samples/parsedav/DAVParserTest.m sope/sope-appserver/samples/parsedav/parsedav.m sope/sope-appserver/samples/parsedav/DAVParserTest.h sope/sope-appserver/samples/parsedav/GNUmakefile sope/sope-appserver/samples/parsedav/README sope/sope-appserver/samples/parsedav/GNUmakefile.preamble sope/sope-appserver/samples/parsedav/common.h sope/sope-appserver/samples/iCalPortal/ sope/sope-appserver/samples/iCalPortal/db/ sope/sope-appserver/samples/iCalPortal/db/donald/ sope/sope-appserver/samples/iCalPortal/db/donald/mozcal.ics sope/sope-appserver/samples/iCalPortal/db/donald/korg.ics sope/sope-appserver/samples/iCalPortal/db/donald/mozcal-clean.ics sope/sope-appserver/samples/iCalPortal/db/donald/skytest1.ics sope/sope-appserver/samples/iCalPortal/db/donald/.account.plist sope/sope-appserver/samples/iCalPortal/db/donald/skytest2.ics sope/sope-appserver/samples/iCalPortal/db/donald/shire-cal1.ics sope/sope-appserver/samples/iCalPortal/db/account.tmpl sope/sope-appserver/samples/iCalPortal/German.lproj/ sope/sope-appserver/samples/iCalPortal/German.lproj/main.strings sope/sope-appserver/samples/iCalPortal/Pages/ sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalLicensePage.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalCalTabs.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalRegistrationPage.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalProfilePage.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalFeedbackPage.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalBaseFrame.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalDayOverview.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalBox.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalWelcomePage.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalCalTabs.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalFrame.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalToDoView.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalLicensePage.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalRightMenu.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalFeedbackPage.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalBaseFrame.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalRegistrationPage.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalWelcomePage.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalBox.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalFrame.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalLeftMenu.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalMonthView.m sope/sope-appserver/samples/iCalPortal/Pages/GNUmakefile sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalToDoView.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalWeekOverview.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalRightMenu.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalHomePage.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalWeekOverview.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalProfilePage.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalLeftMenu.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalMonthView.wox sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalDayOverview.m sope/sope-appserver/samples/iCalPortal/Pages/iCalPortalHomePage.wox sope/sope-appserver/samples/iCalPortal/WebDAV/ sope/sope-appserver/samples/iCalPortal/WebDAV/iCalDeleteAction.h sope/sope-appserver/samples/iCalPortal/WebDAV/iCalGetAction.m sope/sope-appserver/samples/iCalPortal/WebDAV/iCalAction.m sope/sope-appserver/samples/iCalPortal/WebDAV/iCalPublishAction.h sope/sope-appserver/samples/iCalPortal/WebDAV/iCalDeleteAction.m sope/sope-appserver/samples/iCalPortal/WebDAV/iCalRequestHandler.h sope/sope-appserver/samples/iCalPortal/WebDAV/iCalLockAction.h sope/sope-appserver/samples/iCalPortal/WebDAV/GNUmakefile sope/sope-appserver/samples/iCalPortal/WebDAV/iCalPublishAction.m sope/sope-appserver/samples/iCalPortal/WebDAV/iCalOptionsAction.h sope/sope-appserver/samples/iCalPortal/WebDAV/iCalLockAction.m sope/sope-appserver/samples/iCalPortal/WebDAV/iCalRequestHandler.m sope/sope-appserver/samples/iCalPortal/WebDAV/iCalGetAction.h sope/sope-appserver/samples/iCalPortal/WebDAV/iCalAction.h sope/sope-appserver/samples/iCalPortal/WebDAV/iCalOptionsAction.m sope/sope-appserver/samples/iCalPortal/English.lproj/ sope/sope-appserver/samples/iCalPortal/English.lproj/banner_deutsch.gif sope/sope-appserver/samples/iCalPortal/English.lproj/wp_config.gif sope/sope-appserver/samples/iCalPortal/English.lproj/free_hosting.gif sope/sope-appserver/samples/iCalPortal/English.lproj/wp_faq.gif sope/sope-appserver/samples/iCalPortal/English.lproj/line.gif sope/sope-appserver/samples/iCalPortal/English.lproj/powered_by_publisher.gif sope/sope-appserver/samples/iCalPortal/English.lproj/tab_selected.gif sope/sope-appserver/samples/iCalPortal/English.lproj/tab_left.gif sope/sope-appserver/samples/iCalPortal/English.lproj/pixel.gif sope/sope-appserver/samples/iCalPortal/English.lproj/back_menu.gif sope/sope-appserver/samples/iCalPortal/English.lproj/back_seite.gif sope/sope-appserver/samples/iCalPortal/English.lproj/feedback.gif sope/sope-appserver/samples/iCalPortal/English.lproj/site.css sope/sope-appserver/samples/iCalPortal/English.lproj/wp_feedback.gif sope/sope-appserver/samples/iCalPortal/English.lproj/favicon.ico sope/sope-appserver/samples/iCalPortal/English.lproj/wp_info.gif sope/sope-appserver/samples/iCalPortal/English.lproj/back.gif sope/sope-appserver/samples/iCalPortal/English.lproj/back_menu2.gif sope/sope-appserver/samples/iCalPortal/English.lproj/submit.gif sope/sope-appserver/samples/iCalPortal/English.lproj/banner_a.gif sope/sope-appserver/samples/iCalPortal/English.lproj/search.gif sope/sope-appserver/samples/iCalPortal/English.lproj/tab_.gif sope/sope-appserver/samples/iCalPortal/English.lproj/banner_b.gif sope/sope-appserver/samples/iCalPortal/English.lproj/sidesmiley.gif sope/sope-appserver/samples/iCalPortal/English.lproj/banner_c.gif sope/sope-appserver/samples/iCalPortal/English.lproj/wp_create.gif sope/sope-appserver/samples/iCalPortal/English.lproj/main.strings sope/sope-appserver/samples/iCalPortal/English.lproj/banner_d.gif sope/sope-appserver/samples/iCalPortal/English.lproj/small.gif sope/sope-appserver/samples/iCalPortal/English.lproj/banner_e.gif sope/sope-appserver/samples/iCalPortal/iCalPortalCalendar.m sope/sope-appserver/samples/iCalPortal/iCalPortalUser.h sope/sope-appserver/samples/iCalPortal/iCalPortal.h sope/sope-appserver/samples/iCalPortal/iCalPortalPage.m sope/sope-appserver/samples/iCalPortal/iCalPortalUser.m sope/sope-appserver/samples/iCalPortal/iCalPortal.m sope/sope-appserver/samples/iCalPortal/icons.make sope/sope-appserver/samples/iCalPortal/ChangeLog sope/sope-appserver/samples/iCalPortal/GNUmakefile sope/sope-appserver/samples/iCalPortal/iCalDayView.h sope/sope-appserver/samples/iCalPortal/iCalView.h sope/sope-appserver/samples/iCalPortal/iCalDayView.m sope/sope-appserver/samples/iCalPortal/README sope/sope-appserver/samples/iCalPortal/iCalView.m sope/sope-appserver/samples/iCalPortal/DirectAction.m sope/sope-appserver/samples/iCalPortal/iCalWeekView.h sope/sope-appserver/samples/iCalPortal/iCalPortalDatabase.h sope/sope-appserver/samples/iCalPortal/COPYING sope/sope-appserver/samples/iCalPortal/COPYRIGHT sope/sope-appserver/samples/iCalPortal/iCalPortalCalendar.h sope/sope-appserver/samples/iCalPortal/iCalWeekView.m sope/sope-appserver/samples/iCalPortal/iCalPortalDatabase.m sope/sope-appserver/samples/iCalPortal/GNUmakefile.preamble sope/sope-appserver/samples/iCalPortal/mkpage.sh sope/sope-appserver/samples/iCalPortal/iCalPortalPage.h sope/sope-appserver/samples/iCalPortal/common.h sope/sope-appserver/samples/davpropget/ sope/sope-appserver/samples/davpropget/davpropget.m sope/sope-appserver/samples/davpropget/GNUmakefile sope/sope-appserver/samples/davpropget/NOTES sope/sope-appserver/samples/davpropget/README sope/sope-appserver/samples/davpropget/common.h sope/sope-appserver/samples/davpropget/GNUmakefile.preamble sope/sope-appserver/samples/HelloWorld/ sope/sope-appserver/samples/HelloWorld/Main.wo/ sope/sope-appserver/samples/HelloWorld/Main.wo/Main.html sope/sope-appserver/samples/HelloWorld/Main.wo/Main.wod sope/sope-appserver/samples/HelloWorld/HelloWorld.m sope/sope-appserver/samples/HelloWorld/Main.m sope/sope-appserver/samples/HelloWorld/GNUmakefile sope/sope-appserver/samples/HelloWorld/ChangeLog sope/sope-appserver/samples/HelloWorld/common.h sope/sope-appserver/samples/HelloWorld/GNUmakefile.preamble sope/sope-appserver/samples/WOxExtTest/ sope/sope-appserver/samples/WOxExtTest/WebServerResources/ sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_left.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/next.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_plus.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_selected.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_projects.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/corner_right.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/next_blind.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/expanded.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/OGoLogo.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_projects_selected.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/last.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/previous.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_projects_left.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_leaf_corner.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/menu_email_inactive.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_line.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_corner_plus.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/folder_closed.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/folder_opened.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/downward_sorted.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_minus.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_news_selected.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_space.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_news_left.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/menu_email.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/last_blind.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_corner_minus.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_persons.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_leaf.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/upward_sorted.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/previous_blind.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/first.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_persons_selected.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_persons_left.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/first_blind.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/tab_news.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_corner.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/corner_left.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/treeview_junction.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/collapsed.gif sope/sope-appserver/samples/WOxExtTest/WebServerResources/non_sorted.gif sope/sope-appserver/samples/WOxExtTest/Resources/ sope/sope-appserver/samples/WOxExtTest/Resources/appointments.plist sope/sope-appserver/samples/WOxExtTest/Resources/Dictionary.plist sope/sope-appserver/samples/WOxExtTest/Resources/TreeView.plist sope/sope-appserver/samples/WOxExtTest/Resources/TableView.plist sope/sope-appserver/samples/WOxExtTest/QualifierConditional.m sope/sope-appserver/samples/WOxExtTest/CollapsibleContent.m sope/sope-appserver/samples/WOxExtTest/ModalWindow.m sope/sope-appserver/samples/WOxExtTest/ImageFlyover.m sope/sope-appserver/samples/WOxExtTest/TreeView.m sope/sope-appserver/samples/WOxExtTest/PanelContent.m sope/sope-appserver/samples/WOxExtTest/CalendarField.wox sope/sope-appserver/samples/WOxExtTest/VarString.wox sope/sope-appserver/samples/WOxExtTest/WeekColumnView.m sope/sope-appserver/samples/WOxExtTest/Browser.wox sope/sope-appserver/samples/WOxExtTest/Lori.icns sope/sope-appserver/samples/WOxExtTest/RichString.m sope/sope-appserver/samples/WOxExtTest/DnD.m sope/sope-appserver/samples/WOxExtTest/CollapsibleContentExt.m sope/sope-appserver/samples/WOxExtTest/RadioButtonMatrix.m sope/sope-appserver/samples/WOxExtTest/ImageFlyover.wox sope/sope-appserver/samples/WOxExtTest/CheckBoxMatrix.m sope/sope-appserver/samples/WOxExtTest/TableMatrix.m sope/sope-appserver/samples/WOxExtTest/ValidatedField.m sope/sope-appserver/samples/WOxExtTest/TableView.m sope/sope-appserver/samples/WOxExtTest/ShiftClick.m sope/sope-appserver/samples/WOxExtTest/GNUmakefile.preamble sope/sope-appserver/samples/WOxExtTest/TabPanel.m sope/sope-appserver/samples/WOxExtTest/DnD.wox sope/sope-appserver/samples/WOxExtTest/QualifierConditional.wox sope/sope-appserver/samples/WOxExtTest/Table.m sope/sope-appserver/samples/WOxExtTest/Frame.m sope/sope-appserver/samples/WOxExtTest/CollapsibleContentExt.wox sope/sope-appserver/samples/WOxExtTest/ChangeLog sope/sope-appserver/samples/WOxExtTest/GNUmakefile sope/sope-appserver/samples/WOxExtTest/CheckBoxMatrix.wox sope/sope-appserver/samples/WOxExtTest/PageView.m sope/sope-appserver/samples/WOxExtTest/Main.wox sope/sope-appserver/samples/WOxExtTest/RadioButtonMatrix.wox sope/sope-appserver/samples/WOxExtTest/WeekOverview.wox sope/sope-appserver/samples/WOxExtTest/ShiftClick.wox sope/sope-appserver/samples/WOxExtTest/ValidatedField.wox sope/sope-appserver/samples/WOxExtTest/DirectAction.m sope/sope-appserver/samples/WOxExtTest/Table.wox sope/sope-appserver/samples/WOxExtTest/ConfirmPanel.m sope/sope-appserver/samples/WOxExtTest/MonthOverview.wox sope/sope-appserver/samples/WOxExtTest/TimeField.wox sope/sope-appserver/samples/WOxExtTest/AlertPanel.m sope/sope-appserver/samples/WOxExtTest/PageView.wox sope/sope-appserver/samples/WOxExtTest/TextFlyover.m sope/sope-appserver/samples/WOxExtTest/DictionaryRepetition.wox sope/sope-appserver/samples/WOxExtTest/ConfirmPanel.wox sope/sope-appserver/samples/WOxExtTest/WOxExtTest.m sope/sope-appserver/samples/WOxExtTest/ModalWindow.wox sope/sope-appserver/samples/WOxExtTest/TabView.m sope/sope-appserver/samples/WOxExtTest/favicon.ico sope/sope-appserver/samples/WOxExtTest/TimeField.m sope/sope-appserver/samples/WOxExtTest/Main.m sope/sope-appserver/samples/WOxExtTest/CollapsibleContent.wox sope/sope-appserver/samples/WOxExtTest/AlertPanel.wox sope/sope-appserver/samples/WOxExtTest/KeyValueConditional.m sope/sope-appserver/samples/WOxExtTest/TreeView.wox sope/sope-appserver/samples/WOxExtTest/PanelContent.wox sope/sope-appserver/samples/WOxExtTest/TextFlyover.wox sope/sope-appserver/samples/WOxExtTest/ThresholdColoredNumber.m sope/sope-appserver/samples/WOxExtTest/DateField.m sope/sope-appserver/samples/WOxExtTest/TabView.wox sope/sope-appserver/samples/WOxExtTest/WeekOverview.m sope/sope-appserver/samples/WOxExtTest/KeyValueConditional.wox sope/sope-appserver/samples/WOxExtTest/WeekColumnView.wox sope/sope-appserver/samples/WOxExtTest/site.css sope/sope-appserver/samples/WOxExtTest/RichString.wox sope/sope-appserver/samples/WOxExtTest/TableMatrix.wox sope/sope-appserver/samples/WOxExtTest/Switch.m sope/sope-appserver/samples/WOxExtTest/DateField.wox sope/sope-appserver/samples/WOxExtTest/ThresholdColoredNumber.wox sope/sope-appserver/samples/WOxExtTest/TableView.wox sope/sope-appserver/samples/WOxExtTest/TabPanel.wox sope/sope-appserver/samples/WOxExtTest/Frame.wox sope/sope-appserver/samples/WOxExtTest/common.h sope/sope-appserver/samples/WOxExtTest/DictionaryRepetition.m sope/sope-appserver/samples/WOxExtTest/MonthOverview.m sope/sope-appserver/samples/WOxExtTest/CalendarField.m sope/sope-appserver/samples/WOxExtTest/Switch.wox sope/sope-appserver/samples/WOxExtTest/Browser.m sope/sope-appserver/samples/GNUmakefile sope/sope-appserver/samples/ChangeLog sope/sope-appserver/samples/COPYING sope/sope-appserver/samples/README sope/sope-appserver/WOExtensions/ sope/sope-appserver/WOExtensions/WOExtensions.xcode/ sope/sope-appserver/WOExtensions/WOExtensions.xcode/project.pbxproj sope/sope-appserver/WOExtensions/JSValidatedField.m sope/sope-appserver/WOExtensions/JSTextFlyover.m sope/sope-appserver/WOExtensions/Version sope/sope-appserver/WOExtensions/dummy.m sope/sope-appserver/WOExtensions/COPYRIGHT sope/sope-appserver/WOExtensions/COPYING sope/sope-appserver/WOExtensions/WOExtensions-Info.plist sope/sope-appserver/WOExtensions/WOExtensions.h sope/sope-appserver/WOExtensions/WOxExtElemBuilder.m sope/sope-appserver/WOExtensions/JSConfirmPanel.m sope/sope-appserver/WOExtensions/WOExtensionsBuilderModule.m sope/sope-appserver/WOExtensions/WOKeyValueConditional.m sope/sope-appserver/WOExtensions/GNUmakefile.postamble sope/sope-appserver/WOExtensions/WOCheckBoxMatrix.m sope/sope-appserver/WOExtensions/WORadioButtonMatrix.m sope/sope-appserver/WOExtensions/GNUmakefile.preamble sope/sope-appserver/WOExtensions/JSKeyHandler.m sope/sope-appserver/WOExtensions/JSAlertPanel.m sope/sope-appserver/WOExtensions/fhs.make sope/sope-appserver/WOExtensions/WOThresholdColoredNumber.m sope/sope-appserver/WOExtensions/bundle-info.plist sope/sope-appserver/WOExtensions/JSImageFlyover.m sope/sope-appserver/WOExtensions/GNUmakefile sope/sope-appserver/WOExtensions/WOTabPanel.m sope/sope-appserver/WOExtensions/ChangeLog sope/sope-appserver/WOExtensions/WOTable.m sope/sope-appserver/WOExtensions/JSModalWindow.m sope/sope-appserver/WOExtensions/WORedirect.h sope/sope-appserver/WOExtensions/WORedirect.m sope/sope-appserver/WOExtensions/compat.m sope/sope-appserver/WOExtensions/WOCollapsibleComponentContent.m sope/sope-appserver/WOExtensions/WODictionaryRepetition.m sope/sope-appserver/WOExtensions/common.h sope/sope-appserver/WOXML/ sope/sope-appserver/WOXML/samples/ sope/sope-appserver/WOXML/samples/slashdot/ sope/sope-appserver/WOXML/samples/slashdot/slashdot.xmlmodel sope/sope-appserver/WOXML/samples/slashdot/GNUmakefile sope/sope-appserver/WOXML/samples/slashdot/woslash.m sope/sope-appserver/WOXML/samples/slashdot/SlashDotStory.m sope/sope-appserver/WOXML/WOXMLMappingProperty.m sope/sope-appserver/WOXML/WOXMLMapDecoder.h sope/sope-appserver/WOXML/WOXMLDecoder.h sope/sope-appserver/WOXML/WOXMLSaxModelHandler.h sope/sope-appserver/WOXML/WOXMLMapDecoder.m sope/sope-appserver/WOXML/Version sope/sope-appserver/WOXML/WOXMLDecoder.m sope/sope-appserver/WOXML/ChangeLog sope/sope-appserver/WOXML/WOXML-Info.plist sope/sope-appserver/WOXML/GNUmakefile sope/sope-appserver/WOXML/WOXMLSaxModelHandler.m sope/sope-appserver/WOXML/WOXMLMappingModel.h sope/sope-appserver/WOXML/fhs.make sope/sope-appserver/WOXML/COPYRIGHT sope/sope-appserver/WOXML/WOXML.h sope/sope-appserver/WOXML/README sope/sope-appserver/WOXML/WOXMLMappingProperty.h sope/sope-appserver/WOXML/WOXMLMappingModel.m sope/sope-appserver/WOXML/WOXMLMappingEntity.h sope/sope-appserver/WOXML/COPYING sope/sope-appserver/WOXML/WOXMLMappingEntity.m sope/sope-appserver/WOXML/GNUmakefile.preamble sope/sope-appserver/WOXML/common.h sope/sope-appserver/sope-appserver.xcode/ sope/sope-appserver/sope-appserver.xcode/project.pbxproj sope/sope-appserver/README-OSX.txt sope/sope-appserver/Version sope/sope-appserver/GNUmakefile sope/sope-appserver/ChangeLog sope/sope-appserver/SOPE-Info.plist sope/sope-appserver/PROJECTLEAD sope/sope-appserver/README sope/sope-appserver/common.make sope/sope-appserver/COPYRIGHT sope/sope-appserver/COPYING sope/sope-ical/ sope/sope-ical/samples/ sope/sope-ical/samples/GNUmakefile.preamble sope/sope-ical/samples/vcfparsetest.m sope/sope-ical/samples/ChangeLog sope/sope-ical/samples/GNUmakefile sope/sope-ical/samples/COPYING sope/sope-ical/samples/icalds.m sope/sope-ical/samples/vcf2xml.m sope/sope-ical/samples/fhs.make sope/sope-ical/samples/README sope/sope-ical/samples/common.h sope/sope-ical/samples/icalparsetest.m sope/sope-ical/versitSaxDriver/ sope/sope-ical/versitSaxDriver/versitSaxDriver.xcode/ sope/sope-ical/versitSaxDriver/versitSaxDriver.xcode/project.pbxproj sope/sope-ical/versitSaxDriver/ChangeLog sope/sope-ical/versitSaxDriver/Version sope/sope-ical/versitSaxDriver/AUTHORS sope/sope-ical/versitSaxDriver/GNUmakefile.postamble sope/sope-ical/versitSaxDriver/VSvCardSaxDriver.h sope/sope-ical/versitSaxDriver/GNUmakefile sope/sope-ical/versitSaxDriver/fhs.make sope/sope-ical/versitSaxDriver/versitSaxDriver-Info.plist sope/sope-ical/versitSaxDriver/VSStringFormatter.h sope/sope-ical/versitSaxDriver/VSvCardSaxDriver.m sope/sope-ical/versitSaxDriver/bundle-info.plist sope/sope-ical/versitSaxDriver/README sope/sope-ical/versitSaxDriver/VSStringFormatter.m sope/sope-ical/versitSaxDriver/VSiCalSaxDriver.h sope/sope-ical/versitSaxDriver/VSiCalSaxDriver.m sope/sope-ical/versitSaxDriver/VSSaxDriver.h sope/sope-ical/versitSaxDriver/COPYRIGHT sope/sope-ical/versitSaxDriver/COPYING sope/sope-ical/versitSaxDriver/VSSaxDriver.m sope/sope-ical/versitSaxDriver/GNUmakefile.preamble sope/sope-ical/versitSaxDriver/common.h sope/sope-ical/data/ sope/sope-ical/data/test-noodle1.ics sope/sope-ical/data/test3.ics sope/sope-ical/data/test4.ics sope/sope-ical/data/test5-libical.txt sope/sope-ical/data/test6-libical.txt sope/sope-ical/data/kabc34-fullrecord.vcf sope/sope-ical/data/kde-vcard4-evo.vcf sope/sope-ical/data/evo22-fulltask.ics sope/sope-ical/data/kde-vcard1.vcf sope/sope-ical/data/kde-vcard5.vcf sope/sope-ical/data/kde-vcard6.vcf sope/sope-ical/data/kde-vcard3-moz.vcf sope/sope-ical/data/test5-entourage.ics sope/sope-ical/data/korg34-fulltask.ics sope/sope-ical/data/evo22-fullrecord.vcf sope/sope-ical/data/test6-appleical.ics sope/sope-ical/data/test1-libical.txt sope/sope-ical/data/test2-libical.txt sope/sope-ical/data/test2.vfb sope/sope-ical/data/test1.ics sope/sope-ical/data/test3-libical.txt sope/sope-ical/data/apple-fullrecord.vcf sope/sope-ical/data/kde-vcard2-ns.vcf sope/sope-ical/data/outlook2002.vcf sope/sope-ical/data/test4-libical.txt sope/sope-ical/NGiCal/ sope/sope-ical/NGiCal/tests/ sope/sope-ical/NGiCal/tests/README sope/sope-ical/NGiCal/tests/NGiCalTests-Info.plist sope/sope-ical/NGiCal/tests/common.h sope/sope-ical/NGiCal/tests/iCalRecurrenceCalculatorTests.m sope/sope-ical/NGiCal/NGiCal.xcode/ sope/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj sope/sope-ical/NGiCal/iCalRenderer.h sope/sope-ical/NGiCal/NGVCard.m sope/sope-ical/NGiCal/NGVCardOrg.h sope/sope-ical/NGiCal/NGVCardSimpleValue.h sope/sope-ical/NGiCal/iCalEntityObject.h sope/sope-ical/NGiCal/iCalToDo.h sope/sope-ical/NGiCal/COPYRIGHT sope/sope-ical/NGiCal/COPYING sope/sope-ical/NGiCal/iCalRecurrenceCalculator.h sope/sope-ical/NGiCal/NGVCardSimpleValue.m sope/sope-ical/NGiCal/NGVCardOrg.m sope/sope-ical/NGiCal/iCalEntityObject.m sope/sope-ical/NGiCal/iCalJournal.h sope/sope-ical/NGiCal/iCalToDo.m sope/sope-ical/NGiCal/iCalRenderer.m sope/sope-ical/NGiCal/iCalRecurrenceCalculator.m sope/sope-ical/NGiCal/iCalJournal.m sope/sope-ical/NGiCal/NGiCal.xmap sope/sope-ical/NGiCal/NGVCardPhone.h sope/sope-ical/NGiCal/GNUmakefile.preamble sope/sope-ical/NGiCal/NGVCardPhone.m sope/sope-ical/NGiCal/iCalDataSource.h sope/sope-ical/NGiCal/iCalAlarm.h sope/sope-ical/NGiCal/iCalEvent.h sope/sope-ical/NGiCal/fhs.make sope/sope-ical/NGiCal/GNUmakefile.postamble sope/sope-ical/NGiCal/iCalDataSource.m sope/sope-ical/NGiCal/NGiCal-Info.plist sope/sope-ical/NGiCal/iCalAlarm.m sope/sope-ical/NGiCal/iCalPerson.h sope/sope-ical/NGiCal/GNUmakefile sope/sope-ical/NGiCal/ChangeLog sope/sope-ical/NGiCal/iCalCalendar.h sope/sope-ical/NGiCal/iCalEventChanges.h sope/sope-ical/NGiCal/iCalPerson.m sope/sope-ical/NGiCal/iCalEventChanges.m sope/sope-ical/NGiCal/iCalCalendar.m sope/sope-ical/NGiCal/NGVCardSaxHandler.h sope/sope-ical/NGiCal/IcalElements.m sope/sope-ical/NGiCal/iCalDuration.h sope/sope-ical/NGiCal/iCalEvent.m sope/sope-ical/NGiCal/iCalDuration.m sope/sope-ical/NGiCal/IcalResponse.h sope/sope-ical/NGiCal/NGVCardAddress.h sope/sope-ical/NGiCal/IcalResponse.m sope/sope-ical/NGiCal/iCalTrigger.h sope/sope-ical/NGiCal/NGVCardSaxHandler.m sope/sope-ical/NGiCal/NGVCardAddress.m sope/sope-ical/NGiCal/Version sope/sope-ical/NGiCal/iCalTrigger.m sope/sope-ical/NGiCal/iCalRecurrenceRule.h sope/sope-ical/NGiCal/iCalDateHolder.h sope/sope-ical/NGiCal/iCalDateHolder.m sope/sope-ical/NGiCal/NGVCardStrArrayValue.h sope/sope-ical/NGiCal/NSString+ICal.h sope/sope-ical/NGiCal/iCalObject.h sope/sope-ical/NGiCal/NGiCal.h sope/sope-ical/NGiCal/NGVCardStrArrayValue.m sope/sope-ical/NGiCal/NSString+ICal.m sope/sope-ical/NGiCal/NGVCardValue.h sope/sope-ical/NGiCal/iCalRecurrenceRule.m sope/sope-ical/NGiCal/NGVCardName.h sope/sope-ical/NGiCal/NGVCardValue.m sope/sope-ical/NGiCal/NGVCardName.m sope/sope-ical/NGiCal/iCalFreeBusy.h sope/sope-ical/NGiCal/iCalObject.m sope/sope-ical/NGiCal/README sope/sope-ical/NGiCal/iCalRepeatableEntityObject.h sope/sope-ical/NGiCal/NSCalendarDate+ICal.h sope/sope-ical/NGiCal/NSCalendarDate+ICal.m sope/sope-ical/NGiCal/iCalAttachment.h sope/sope-ical/NGiCal/iCalFreeBusy.m sope/sope-ical/NGiCal/NGVCard.h sope/sope-ical/NGiCal/iCalAttachment.m sope/sope-ical/NGiCal/common.h sope/sope-ical/NGiCal/iCalRepeatableEntityObject.m sope/sope-ical/sope-ical.xcode/ sope/sope-ical/sope-ical.xcode/project.pbxproj sope/sope-ical/README-OSX.txt sope/sope-ical/ChangeLog sope/sope-ical/GNUmakefile sope/sope-ical/README sope/REVISION.svn sope/configure sope/Version sope/GNUmakefile sope/PROJECTLEAD sope/README sope/INSTALL sope/COPYRIGHT .md5sum .md5sum.changes ###################################### ps:/usr/local sysadmin$ cd sope ps:/usr/local/sope sysadmin$ sudo ./configure --enable-debug --with-gnustep Password: GNUstep environment: system: /Users/sysadmin/OGoRoot local: /Users/sysadmin/OGoRoot user: /Users/sysadmin/OGoRoot path: /Users/sysadmin/OGoRoot flat: yes arch: powerpc-apple-darwin8.5.0 combo: apple-apple-nil Note: will install in GNUSTEP_LOCAL_ROOT: /Users/sysadmin/OGoRoot Configuration: FHS: install in GNUstep tree debug: yes strip: yes prefix: /Users/sysadmin/OGoRoot gstep: /Users/sysadmin/OGoRoot/Library/Makefiles config: /usr/local/sope/config.make script: /Users/sysadmin/OGoRoot/Library/Makefiles/GNUstep.sh creating: /usr/local/sope/config.make required library found: xml2 required library found: ldap required library found: ssl required library found: pq configuring NGStreams library .... done (log in config-NGStreams.log). ###################################### ps:/usr/local/sope sysadmin$ sudo make all Password: Making all in sope-xml... Making all in SaxObjC... Making build-headers for framework SaxObjC... Creating derived_src... Creating SaxObjC.framework/Versions/A/.... Creating SaxObjC.framework/Versions/A/Headers... Creating SaxObjC.framework/Versions/A/Resources... Making all for library libSaxObjC... Compiling file SaxAttributeList.m ... Compiling file SaxAttributes.m ... Compiling file SaxDefaultHandler.m ... Compiling file SaxException.m ... Compiling file SaxHandlerBase.m ... Compiling file SaxLocator.m ... Compiling file SaxMethodCallHandler.m ... SaxMethodCallHandler.m: In function '_selAddEscaped': SaxMethodCallHandler.m:147: warning: pointer targets in assignment differ in signedness SaxMethodCallHandler.m:180: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness Compiling file SaxNamespaceSupport.m ... Compiling file SaxObjectDecoder.m ... Compiling file SaxObjectModel.m ... Compiling file SaxXMLFilter.m ... Compiling file SaxXMLReaderFactory.m ... Linking library libSaxObjC ... Making all for framework SaxObjC... Linking framework SaxObjC ... Creating SaxObjC.framework/Versions/A/Resources/Info.plist... Making all in DOM... Making build-headers for framework DOM... Creating derived_src... Creating DOM.framework/Versions/A/.... Creating DOM.framework/Versions/A/Headers... Creating DOM.framework/Versions/A/Resources... Making all for library libDOM... Compiling file DOMSaxBuilder.m ... Compiling file DOMSaxHandler.m ... Compiling file DOMXMLOutputter.m ... DOMXMLOutputter.m: In function '-[DOMXMLOutputter outputNode:to:]': DOMXMLOutputter.m:283: warning: conflicting types for '-(void)outputNode:(id )_node to:(id)_target' DOMXMLOutputter.h:35: warning: previous declaration of '-(void)outputNode:(id)_node to:(id)_target' DOMXMLOutputter.m: In function '-[DOMXMLOutputter outputNodeList:to:]': DOMXMLOutputter.m:306: warning: conflicting types for '-(void)outputNodeList:(id)_nodeList to:(id)_target' DOMXMLOutputter.m:29: warning: previous declaration of '-(void)outputNodeList:(id )_nodeList to:(id)_target' Compiling file DOMPYXOutputter.m ... Compiling file DOMNodeWalker.m ... Compiling file NSObject+DOM.m ... Compiling file DOMNode+Enum.m ... Compiling file DOMNode+QueryPath.m ... Compiling file DOMQueryPathExpression.m ... Compiling file NSObject+QPEval.m ... Compiling file DOMNode+QPEval.m ... Compiling file NSObject+StringValue.m ... Compiling file DOMAttribute.m ... DOMAttribute.m: In function '-[DOMAttribute attributes]': DOMAttribute.m:149: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' DOMAttribute.m: In function '-[DOMAttribute parentNode]': DOMAttribute.m:153: warning: conflicting types for '-(id)parentNode' ../DOM/DOMProtocols.h:111: warning: previous declaration of '-(id )parentNode' DOMAttribute.m: In function '-[DOMAttribute nextSibling]': DOMAttribute.m:156: warning: conflicting types for '-(id)nextSibling' ../DOM/DOMProtocols.h:113: warning: previous declaration of '-(id )nextSibling' DOMAttribute.m: In function '-[DOMAttribute previousSibling]': DOMAttribute.m:159: warning: conflicting types for '-(id)previousSibling' ../DOM/DOMProtocols.h:112: warning: previous declaration of '-(id )previousSibling' Compiling file DOMCDATASection.m ... DOMCDATASection.m: In function '-[DOMCDATASection childNodes]': DOMCDATASection.m:38: warning: conflicting types for '-(id)childNodes' ../DOM/DOMProtocols.h:115: warning: previous declaration of '-(id )childNodes' DOMCDATASection.m: In function '-[DOMCDATASection appendChild:]': DOMCDATASection.m:41: warning: conflicting types for '-(id)appendChild:(id)_node' ../DOM/DOMProtocols.h:122: warning: previous declaration of '-(id )appendChild:(id )_node' DOMCDATASection.m: In function '-[DOMCDATASection attributes]': DOMCDATASection.m:45: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' Compiling file DOMCharacterData.m ... DOMCharacterData.m: In function '-[DOMCharacterData parentNode]': DOMCharacterData.m:102: warning: conflicting types for '-(id)parentNode' ../DOM/DOMProtocols.h:111: warning: previous declaration of '-(id )parentNode' Compiling file DOMComment.m ... DOMComment.m: In function '-[DOMComment childNodes]': DOMComment.m:38: warning: conflicting types for '-(id)childNodes' ../DOM/DOMProtocols.h:115: warning: previous declaration of '-(id )childNodes' DOMComment.m: In function '-[DOMComment appendChild:]': DOMComment.m:41: warning: conflicting types for '-(id)appendChild:(id)_node' ../DOM/DOMProtocols.h:122: warning: previous declaration of '-(id )appendChild:(id )_node' DOMComment.m: In function '-[DOMComment attributes]': DOMComment.m:45: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' Compiling file DOMDocument.m ... DOMDocument.m: In function '-[DOMDocument doctype]': DOMDocument.m:112: warning: conflicting types for '-(id)doctype' ../DOM/DOMProtocols.h:237: warning: previous declaration of '-(id )doctype' DOMDocument.m: In function '-[DOMDocument documentElement]': DOMDocument.m:119: warning: conflicting types for '-(id)documentElement' ../DOM/DOMProtocols.h:239: warning: previous declaration of '-(id )documentElement' DOMDocument.m: In function '-[DOMDocument attributes]': DOMDocument.m:155: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' DOMDocument.m: In function '-[DOMDocument ownerDocument]': DOMDocument.m:159: warning: conflicting types for '-(DOMDocument *)ownerDocument' ../DOM/DOMProtocols.h:130: warning: previous declaration of '-(id)ownerDocument' DOMDocument.m: In function '-[DOMDocument parentNode]': DOMDocument.m:163: warning: conflicting types for '-(id)parentNode' ../DOM/DOMProtocols.h:111: warning: previous declaration of '-(id )parentNode' DOMDocument.m: In function '-[DOMDocument nextSibling]': DOMDocument.m:167: warning: conflicting types for '-(id)nextSibling' ../DOM/DOMProtocols.h:113: warning: previous declaration of '-(id )nextSibling' DOMDocument.m: In function '-[DOMDocument previousSibling]': DOMDocument.m:171: warning: conflicting types for '-(id)previousSibling' ../DOM/DOMProtocols.h:112: warning: previous declaration of '-(id )previousSibling' DOMDocument.m: In function '-[DOMDocument getElementsByTagName:]': DOMDocument.m:199: warning: conflicting types for '-(id)getElementsByTagName:(NSString *)_tagName' ../DOM/DOMProtocols.h:241: warning: previous declaration of '-(id )getElementsByTagName:(NSString *)_tagName' DOMDocument.m: In function '-[DOMDocument getElementsByTagName:namespaceURI:]': DOMDocument.m:235: warning: conflicting types for '-(id)getElementsByTagName:(NSString *)_tagName namespaceURI:(NSString *)_uri' ../DOM/DOMProtocols.h:243: warning: previous declaration of '-(id )getElementsByTagName:(NSString *)_tagName namespaceURI:(NSString *)_uri' DOMDocument.m: In function '-[DOMDocument getElementById:]': DOMDocument.m:240: warning: conflicting types for '-(id)getElementById:(NSString *)_eid' ../DOM/DOMProtocols.h:244: warning: previous declaration of '-(id )getElementById:(NSString *)_eid' DOMDocument.m: In function '-[DOMDocument createElement:]': DOMDocument.m:286: warning: conflicting types for '-(id)createElement:(NSString *)_tagName' ../DOM/DOMProtocols.h:248: warning: previous declaration of '-(id )createElement:(NSString *)_tagName' DOMDocument.m: In function '-[DOMDocument createElement:namespaceURI:]': DOMDocument.m:293: warning: conflicting types for '-(id)createElement:(NSString *)_tagName namespaceURI:(NSString *)_uri' ../DOM/DOMProtocols.h:250: warning: previous declaration of '-(id )createElement:(NSString *)_tagName namespaceURI:(NSString *)_uri' DOMDocument.m: In function '-[DOMDocument createDocumentFragment]': DOMDocument.m:301: warning: conflicting types for '-(id)createDocumentFragment' ../DOM/DOMProtocols.h:252: warning: previous declaration of '-(id )createDocumentFragment' DOMDocument.m: In function '-[DOMDocument createTextNode:]': DOMDocument.m:307: warning: conflicting types for '-(id)createTextNode:(NSString *)_data' ../DOM/DOMProtocols.h:253: warning: previous declaration of '-(id )createTextNode:(NSString *)_data' DOMDocument.m: In function '-[DOMDocument createComment:]': DOMDocument.m:312: warning: conflicting types for '-(id)createComment:(NSString *)_data' ../DOM/DOMProtocols.h:254: warning: previous declaration of '-(id )createComment:(NSString *)_data' DOMDocument.m: In function '-[DOMDocument createCDATASection:]': DOMDocument.m:317: warning: conflicting types for '-(id)createCDATASection:(NSString *)_data' ../DOM/DOMProtocols.h:255: warning: previous declaration of '-(id )createCDATASection:(NSString *)_data' DOMDocument.m: In function '-[DOMDocument createProcessingInstruction:data:]': DOMDocument.m:323: warning: conflicting types for '-(id)createProcessingInstruction:(NSString *)_target data:(NSString *)_data' ../DOM/DOMProtocols.h:258: warning: previous declaration of '-(id )createProcessingInstruction:(NSString *)_target data:(NSString *)_data' DOMDocument.m: In function '-[DOMDocument createAttribute:]': DOMDocument.m:331: warning: conflicting types for '-(id)createAttribute:(NSString *)_name' ../DOM/DOMProtocols.h:260: warning: previous declaration of '-(id )createAttribute:(NSString *)_name' DOMDocument.m: In function '-[DOMDocument createAttribute:namespaceURI:]': DOMDocument.m:338: warning: conflicting types for '-(id)createAttribute:(NSString *)_name namespaceURI:(NSString *)_uri' ../DOM/DOMProtocols.h:262: warning: previous declaration of '-(id )createAttribute:(NSString *)_name namespaceURI:(NSString *)_uri' DOMDocument.m: In function '-[DOMDocument createEntityReference:]': DOMDocument.m:346: warning: conflicting types for '-(id)createEntityReference:(NSString *)_name' ../DOM/DOMProtocols.h:264: warning: previous declaration of '-(id )createEntityReference:(NSString *)_name' Compiling file DOMElement.m ... DOMElement.m: In function '-[DOMElement getElementsByTagName:]': DOMElement.m:133: warning: conflicting types for '-(id)getElementsByTagName:(NSString *)_tagName' ../DOM/DOMProtocols.h:195: warning: previous declaration of '-(id )getElementsByTagName:(NSString *)_tagName' DOMElement.m: In function '-[DOMElement getElementsByTagName:namespaceURI:]': DOMElement.m:168: warning: conflicting types for '-(id)getElementsByTagName:(NSString *)_tagName namespaceURI:(NSString *)_uri' ../DOM/DOMProtocols.h:197: warning: previous declaration of '-(id )getElementsByTagName:(NSString *)_tagName namespaceURI:(NSString *)_uri' DOMElement.m: In function '-[DOMElement setAttributeNodeNS:]': DOMElement.m:339: warning: conflicting types for '-(id)setAttributeNodeNS:(id)_attrNode' ../DOM/DOMProtocols.h:215: warning: previous declaration of '-(id )setAttributeNodeNS:(id )_attrNode' DOMElement.m: In function '-[DOMElement removeAttributeNodeNS:]': DOMElement.m:401: warning: conflicting types for '-(id)removeAttributeNodeNS:(id)_attrNode' ../DOM/DOMProtocols.h:216: warning: previous declaration of '-(id )removeAttributeNodeNS:(id )_attrNode' DOMElement.m: In function '-[DOMElement setAttributeNode:]': DOMElement.m:438: warning: conflicting types for '-(id)setAttributeNode:(id)_attrNode' ../DOM/DOMProtocols.h:213: warning: previous declaration of '-(id )setAttributeNode:(id )_attrNode' DOMElement.m: In function '-[DOMElement removeAttributeNode:]': DOMElement.m:442: warning: conflicting types for '-(id)removeAttributeNode:(id)_attrNode' ../DOM/DOMProtocols.h:214: warning: previous declaration of '-(id )removeAttributeNode:(id )_attrNode' DOMElement.m: In function '-[DOMElement attributes]': DOMElement.m:477: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' DOMElement.m: In function '-[DOMElement parentNode]': DOMElement.m:496: warning: conflicting types for '-(id)parentNode' ../DOM/DOMProtocols.h:111: warning: previous declaration of '-(id )parentNode' Compiling file DOMEntity.m ... Compiling file DOMEntityReference.m ... Compiling file DOMImplementation.m ... Compiling file DOMNode.m ... DOMNode.m: In function '-[DOMNode ownerDocument]': DOMNode.m:96: warning: conflicting types for '-(DOMDocument *)ownerDocument' ../DOM/DOMProtocols.h:130: warning: previous declaration of '-(id)ownerDocument' DOMNode.m: In function '-[DOMNode attributes]': DOMNode.m:147: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' DOMNode.m: In function '-[DOMNode removeChild:]': DOMNode.m:158: warning: conflicting types for '-(id)removeChild:(id)_node' ../DOM/DOMProtocols.h:123: warning: previous declaration of '-(id )removeChild:(id )_node' DOMNode.m: In function '-[DOMNode appendChild:]': DOMNode.m:161: warning: conflicting types for '-(id)appendChild:(id)_node' ../DOM/DOMProtocols.h:122: warning: previous declaration of '-(id )appendChild:(id )_node' DOMNode.m: In function '-[DOMNode parentNode]': DOMNode.m:167: warning: conflicting types for '-(id)parentNode' ../DOM/DOMProtocols.h:111: warning: previous declaration of '-(id )parentNode' DOMNode.m: In function '-[DOMNode previousSibling]': DOMNode.m:171: warning: conflicting types for '-(id)previousSibling' ../DOM/DOMProtocols.h:112: warning: previous declaration of '-(id )previousSibling' DOMNode.m: In function '-[DOMNode nextSibling]': DOMNode.m:179: warning: conflicting types for '-(id)nextSibling' ../DOM/DOMProtocols.h:113: warning: previous declaration of '-(id )nextSibling' DOMNode.m: In function '-[DOMNode childNodes]': DOMNode.m:188: warning: conflicting types for '-(id)childNodes' ../DOM/DOMProtocols.h:115: warning: previous declaration of '-(id )childNodes' DOMNode.m: In function '-[DOMNode firstChild]': DOMNode.m:194: warning: conflicting types for '-(id)firstChild' ../DOM/DOMProtocols.h:117: warning: previous declaration of '-(id )firstChild' DOMNode.m: In function '-[DOMNode lastChild]': DOMNode.m:197: warning: conflicting types for '-(id)lastChild' ../DOM/DOMProtocols.h:118: warning: previous declaration of '-(id )lastChild' Compiling file DOMNodeWithChildren.m ... Compiling file DOMNotation.m ... Compiling file DOMProcessingInstruction.m ... Compiling file DOMText.m ... DOMText.m: In function '-[DOMText childNodes]': DOMText.m:42: warning: conflicting types for '-(id)childNodes' ../DOM/DOMProtocols.h:115: warning: previous declaration of '-(id )childNodes' DOMText.m: In function '-[DOMText appendChild:]': DOMText.m:45: warning: conflicting types for '-(id)appendChild:(id)_node' ../DOM/DOMProtocols.h:122: warning: previous declaration of '-(id )appendChild:(id )_node' DOMText.m: In function '-[DOMText attributes]': DOMText.m:49: warning: conflicting types for '-(id)attributes' ../DOM/DOMProtocols.h:107: warning: previous declaration of '-(id )attributes' Compiling file DOMDocument+factory.m ... Compiling file DOMDocumentType.m ... Compiling file DOM+JS.m ... Compiling file DOMBuilderFactory.m ... Compiling file DOMTreeWalker.m ... Compiling file DOMNodeFilter.m ... Compiling file DOMNodeIterator.m ... Linking library libDOM ... Making all for framework DOM... Linking framework DOM ... ld: can't locate framework for: -framework SaxObjC /usr/bin/libtool: internal link edit command failed Creating DOM.framework/Versions/A/Resources/Info.plist... Making all in libxmlSAXDriver... Making all for bundle libxmlSAXDriver... Creating libxmlSAXDriver.sax/Contents/MacOS... Compiling file libxmlSAXDriver.m ... libxmlSAXDriver.m: In function 'xmlCharsToString': libxmlSAXDriver.m:68: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlSAXDriver.m:69: warning: pointer targets in passing argument 2 of 'strcpy' differ in signedness libxmlSAXDriver.m:74: warning: pointer targets in passing argument 1 of 'initWithUTF8String:' differ in signedness libxmlSAXDriver.m: In function '-[libxmlSAXDriver parseFromSource:systemId:]': libxmlSAXDriver.m:434: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness libxmlSAXDriver.m:434: warning: pointer targets in assignment differ in signedness libxmlSAXDriver.m:452: warning: pointer targets in passing argument 1 of 'xmlCreateMemoryParserCtxt' differ in signedness libxmlSAXDriver.m: In function '_startElement': libxmlSAXDriver.m:788: warning: pointer targets in initialization differ in signedness libxmlSAXDriver.m: In function '_comment': libxmlSAXDriver.m:986: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlSAXDriver.m: In function '_getEntity': libxmlSAXDriver.m:1055: warning: pointer targets in assignment differ in signedness Compiling file libxmlHTMLSAXDriver.m ... libxmlHTMLSAXDriver.m:57: warning: pointer targets in initialization differ in signedness libxmlHTMLSAXDriver.m:59: warning: pointer targets in initialization differ in signedness libxmlHTMLSAXDriver.m: In function 'xmlCharsToString': libxmlHTMLSAXDriver.m:81: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlHTMLSAXDriver.m:82: warning: pointer targets in passing argument 2 of 'strcpy' differ in signedness libxmlHTMLSAXDriver.m:87: warning: pointer targets in passing argument 1 of 'initWithUTF8String:' differ in signedness libxmlHTMLSAXDriver.m: In function '-[libxmlHTMLSAXDriver processTextNode:]': libxmlHTMLSAXDriver.m:487: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlHTMLSAXDriver.m: In function '-[libxmlHTMLSAXDriver processCommentNode:]': libxmlHTMLSAXDriver.m:533: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlHTMLSAXDriver.m: In function 'error': libxmlHTMLSAXDriver.m:768: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlHTMLSAXDriver.m:768: warning: pointer targets in passing argument 1 of 'strncasecmp' differ in signedness libxmlHTMLSAXDriver.m:782: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlHTMLSAXDriver.m:782: warning: pointer targets in passing argument 1 of 'strncasecmp' differ in signedness Compiling file libxmlDocSAXDriver.m ... libxmlDocSAXDriver.m: In function 'xmlCharsToString': libxmlDocSAXDriver.m:49: warning: pointer targets in passing argument 1 of 'initWithUTF8String:' differ in signedness libxmlDocSAXDriver.m: In function '-[libxmlDocSAXDriver processTextNode:]': libxmlDocSAXDriver.m:414: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness libxmlDocSAXDriver.m: In function '-[libxmlDocSAXDriver processCommentNode:]': libxmlDocSAXDriver.m:456: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness Compiling file libxmlSAXLocator.m ... libxmlSAXLocator.m: In function '-[libxmlSAXLocator publicId]': libxmlSAXLocator.m:61: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness libxmlSAXLocator.m: In function '-[libxmlSAXLocator systemId]': libxmlSAXLocator.m:68: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file TableCallbacks.m ... Linking bundle libxmlSAXDriver ... Creating libxmlSAXDriver.sax/Contents/Resources... Creating libxmlSAXDriver.sax/Contents... Creating libxmlSAXDriver.sax/Contents/Info.plist... Copying resources into the bundle wrapper... Making all in STXSaxDriver... Making all in subprojects of bundle STXSaxDriver... Making all for subproject ExtraSTX... Compiling file NSString+STX.m ... Compiling file StructuredLine.m ... Compiling file StructuredStack.m ... Compiling file StructuredText.m ... Linking subproject ExtraSTX ... Making all for subproject Model... Compiling file StructuredTextDocument.m ... Compiling file StructuredTextBodyElement.m ... StructuredTextBodyElement.m: In function '-[StructuredTextBodyElement addElement:]': StructuredTextBodyElement.m:66: warning: conflicting types for '-(void)addElement:(NSObject *)anElement' StructuredTextBodyElement.h:39: warning: previous declaration of '-(void)addElement:(StructuredTextBodyElement *)_element' Compiling file StructuredTextParagraph.m ... Compiling file StructuredTextListItem.m ... Compiling file StructuredTextList.m ... Compiling file StructuredTextLiteralBlock.m ... Compiling file StructuredTextHeader.m ... Linking subproject Model ... Making all for bundle STXSaxDriver... Creating STXSaxDriver.sax/Contents/MacOS... Compiling file STXSaxDriver.m ... Compiling file StructuredTextBodyElement+SAX.m ... Linking bundle STXSaxDriver ... Creating STXSaxDriver.sax/Contents/Resources... Creating STXSaxDriver.sax/Contents... Creating STXSaxDriver.sax/Contents/Info.plist... Copying resources into the bundle wrapper... Copying resources from subprojects into the bundle wrapper... Making all in XmlRpc... Making build-headers for framework XmlRpc... Creating derived_src... Creating XmlRpc.framework/Versions/A/.... Creating XmlRpc.framework/Versions/A/Headers... Creating XmlRpc.framework/Versions/A/Resources... Making all for library libXmlRpc... Compiling file XmlRpcEncoder.m ... Compiling file XmlRpcDecoder.m ... Compiling file XmlRpcMethodCall.m ... Compiling file XmlRpcMethodResponse.m ... Compiling file XmlRpcSaxHandler.m ... Compiling file XmlRpcValue.m ... Compiling file NSMutableString+XmlRpcDecoder.m ... Compiling file NSArray+XmlRpcCoding.m ... Compiling file NSData+XmlRpcCoding.m ... Compiling file NSDate+XmlRpcCoding.m ... Compiling file NSDictionary+XmlRpcCoding.m ... Compiling file NSException+XmlRpcCoding.m ... Compiling file NSHost+XmlRpcCoding.m ... Compiling file NSNotification+XmlRpcCoding.m ... Compiling file NSNumber+XmlRpcCoding.m ... Compiling file NSObject+XmlRpc.m ... NSObject+XmlRpc.m: In function '-[NSDate(XmlRpcParsing) initWithXmlRpcType:characters:length:]': NSObject+XmlRpc.m:230: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSObject+XmlRpc.m:232: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSObject+XmlRpc.m:234: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSObject+XmlRpc.m:237: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSObject+XmlRpc.m:239: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSObject+XmlRpc.m:241: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness Compiling file NSString+XmlRpcCoding.m ... Compiling file NSURL+XmlRpcCoding.m ... Linking library libXmlRpc ... Making all for framework XmlRpc... Linking framework XmlRpc ... ld: can't locate framework for: -framework SaxObjC /usr/bin/libtool: internal link edit command failed Creating XmlRpc.framework/Versions/A/Resources/Info.plist... Making all in samples... Making all for tool saxxml... Compiling file saxxml.m ... Linking tool saxxml ... Making all for tool xmln... Compiling file xmln.m ... Linking tool xmln ... Making all for tool rss2plist1... Compiling file rss2plist1.m ... Linking tool rss2plist1 ... Making all for tool rss2plist2... Compiling file rss2plist2.m ... Linking tool rss2plist2 ... Making all for tool rssparse... Compiling file rssparse.m ... Linking tool rssparse ... Making all for tool domxml... Compiling file domxml.m ... Linking tool domxml ... Making all for tool testqp... Compiling file testqp.m ... Linking tool testqp ... Making all in sope-core... Making all in EOControl... Making all for library libEOControl... Compiling file EOAndQualifier.m ... Compiling file EOArrayDataSource.m ... Compiling file EOClassDescription.m ... Compiling file EODataSource.m ... Compiling file EODetailDataSource.m ... Compiling file EOFetchSpecification.m ... Compiling file EOGenericRecord.m ... Compiling file EOGlobalID.m ... Compiling file EOKeyComparisonQualifier.m ... Compiling file EOKeyGlobalID.m ... Compiling file EOKeyValueArchiver.m ... Compiling file EOKeyValueCoding.m ... Compiling file EOKeyValueQualifier.m ... Compiling file EONotQualifier.m ... Compiling file EONull.m ... Compiling file EOObserver.m ... Compiling file EOOrQualifier.m ... Compiling file EOQualifier.m ... Compiling file EOQualifierParser.m ... EOQualifierParser.m:45: warning: pointer targets in initialization differ in signedness EOQualifierParser.m:46: warning: pointer targets in initialization differ in signedness EOQualifierParser.m:47: warning: pointer targets in initialization differ in signedness EOQualifierParser.m:48: warning: pointer targets in initialization differ in signedness EOQualifierParser.m:49: warning: pointer targets in initialization differ in signedness EOQualifierParser.m:50: warning: pointer targets in initialization differ in signedness EOQualifierParser.m: In function '_parseValue': EOQualifierParser.m:947: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness EOQualifierParser.m:953: warning: pointer targets in passing argument 2 of 'strncmp' differ in signedness EOQualifierParser.m:954: warning: pointer targets in passing argument 2 of 'strncasecmp' differ in signedness EOQualifierParser.m:1030: warning: pointer targets in assignment differ in signedness EOQualifierParser.m:1031: warning: pointer targets in passing argument 1 of 'index' differ in signedness EOQualifierParser.m:1031: warning: pointer targets in assignment differ in signedness EOQualifierParser.m:1032: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness Compiling file EOSortOrdering.m ... Compiling file EOValidation.m ... Compiling file NSArray+EOQualifier.m ... Compiling file NSObject+EOQualifierOps.m ... Compiling file EOSQLParser.m ... EOSQLParser.m: In function '-[EOSQLParser parseToken:from:length:consume:]': EOSQLParser.m:148: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness EOSQLParser.m: In function '-[EOSQLParser parseIdentifier:from:length:consume:]': EOSQLParser.m:219: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:224: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m: In function '-[EOSQLParser parseContainsQualifier:from:length:]': EOSQLParser.m:324: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:327: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:333: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m: In function '-[EOSQLParser parseQualifier:from:length:]': EOSQLParser.m:363: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:369: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m: In function '-[EOSQLParser parseScope::from:length:]': EOSQLParser.m:428: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:430: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:432: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:439: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:440: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m: In function '-[EOSQLParser parseSELECT:from:length:strict:]': EOSQLParser.m:483: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:498: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:505: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:533: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:536: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:550: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:551: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:566: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m:567: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness EOSQLParser.m: In function '-[EOSQLParser parseSQL:from:length:strict:]': EOSQLParser.m:627: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness Compiling file EOQualifierVariable.m ... Compiling file NSObject+QualDesc.m ... Linking library libEOControl ... Making all in NGExtensions... Making all in subprojects of library libNGExtensions... Making all for subproject FdExt... Compiling file NSArray+enumerator.m ... Compiling file NSAutoreleasePool+misc.m ... Compiling file NSBundle+misc.m ... Compiling file NSCalendarDate+misc.m ... Compiling file NSData+gzip.m ... Compiling file NSData+misc.m ... Compiling file NSDictionary+misc.m ... Compiling file NSEnumerator+misc.m ... Compiling file NSException+misc.m ... Compiling file NSFileManager+Extensions.m ... Compiling file NSMethodSignature+misc.m ... Compiling file NSNull+misc.m ... NSNull+misc.m: In function '-[NSNull(misc) forwardInvocation:]': NSNull+misc.m:174: warning: pointer targets in assignment differ in signedness Compiling file NSObject+Logs.m ... Compiling file NSObject+Values.m ... Compiling file NSProcessInfo+misc.m ... Compiling file NSRunLoop+FileObjects.m ... Compiling file NSSet+enumerator.m ... Compiling file NSString+Ext.m ... Compiling file NSString+Encoding.m ... Compiling file NSString+Escaping.m ... Compiling file NSString+Formatting.m ... Compiling file NSString+misc.m ... Compiling file NSString+HTMLEscaping.m ... NSString+HTMLEscaping.m: In function '-[NSString(HTMLEscaping) stringByEscapingHTMLStringUsingCharacters]': NSString+HTMLEscaping.m:112: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness NSString+HTMLEscaping.m: In function '-[NSString(HTMLEscaping) stringByEscapingHTMLAttributeValueUsingCharacters]': NSString+HTMLEscaping.m:208: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness Compiling file NSString+XMLEscaping.m ... NSString+XMLEscaping.m: In function '-[NSString(XMLEscaping) stringByEscapingXMLStringUsingCharacters]': NSString+XMLEscaping.m:83: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness Compiling file NSString+URLEscaping.m ... NSString+URLEscaping.m: In function 'NGEscapeUrlBuffer': NSString+URLEscaping.m:134: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness NSString+URLEscaping.m: In function '-[NSString(URLEscaping) stringByUnescapingURL]': NSString+URLEscaping.m:261: warning: pointer targets in passing argument 1 of 'NGUnescapeUrlBuffer' differ in signedness NSString+URLEscaping.m:261: warning: pointer targets in passing argument 2 of 'NGUnescapeUrlBuffer' differ in signedness NSString+URLEscaping.m: In function '-[NSString(URLEscaping) stringByEscapingURL]': NSString+URLEscaping.m:301: warning: pointer targets in passing argument 2 of 'NGEscapeUrlBuffer' differ in signedness NSString+URLEscaping.m:308: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NSString+URLEscaping.m:312: warning: pointer targets in passing argument 2 of 'NGEscapeUrlBuffer' differ in signedness Compiling file NSString+German.m ... Compiling file NSURL+misc.m ... Compiling file NGPropertyListParser.m ... NGPropertyListParser.m: In function 'NGParseStringFromBuffer': NGPropertyListParser.m:88: warning: pointer targets in passing argument 2 of '_parseString' differ in signedness NGPropertyListParser.m: In function 'NGParseArrayFromBuffer': NGPropertyListParser.m:112: warning: pointer targets in passing argument 2 of '_parseArray' differ in signedness NGPropertyListParser.m: In function 'NGParseDictionaryFromBuffer': NGPropertyListParser.m:136: warning: pointer targets in passing argument 2 of '_parseDict' differ in signedness NGPropertyListParser.m: In function 'NGParseStringFromString': NGPropertyListParser.m:158: warning: pointer targets in passing argument 1 of 'NGParseStringFromBuffer' differ in signedness NGPropertyListParser.m: In function 'NGParseArrayFromString': NGPropertyListParser.m:163: warning: pointer targets in passing argument 1 of 'NGParseArrayFromBuffer' differ in signedness NGPropertyListParser.m: In function 'NGParseDictionaryFromString': NGPropertyListParser.m:168: warning: pointer targets in passing argument 1 of 'NGParseDictionaryFromBuffer' differ in signedness NGPropertyListParser.m: In function 'NGParsePropertyListFromBuffer': NGPropertyListParser.m:190: warning: pointer targets in passing argument 2 of '_parseProperty' differ in signedness NGPropertyListParser.m: In function 'NGParsePropertyListFromString': NGPropertyListParser.m:203: warning: pointer targets in passing argument 1 of 'NGParsePropertyListFromBuffer' differ in signedness Linking subproject FdExt ... Making all for subproject EOExt... Compiling file EOCacheDataSource.m ... Compiling file EOCompoundDataSource.m ... Compiling file EODataSource+NGExtensions.m ... Compiling file EOFetchSpecification+plist.m ... Compiling file EOFilterDataSource.m ... Compiling file EOGrouping.m ... Compiling file EOGroupingSet.m ... Compiling file EOKeyGrouping.m ... Compiling file EOKeyMapDataSource.m ... Compiling file EOQualifier+CtxEval.m ... Compiling file EOQualifier+plist.m ... Compiling file EOQualifierGrouping.m ... Compiling file EOSortOrdering+plist.m ... Compiling file EOTrueQualifier.m ... Compiling file NSArray+EOGrouping.m ... Linking subproject EOExt ... Making all for subproject XmlExt... Compiling file DOMNode+EOQualifier.m ... Linking subproject XmlExt ... Making all for subproject NGRuleEngine... Compiling file NGRule.m ... Compiling file NGRuleAssignment.m ... Compiling file NGRuleContext.m ... Compiling file NGRuleModel.m ... Compiling file NGRuleParser.m ... Linking subproject NGRuleEngine ... Making all for library libNGExtensions... Compiling file NGExtensions.m ... Compiling file NGBase64Coding.m ... Compiling file NGBitSet.m ... Compiling file NGBundleManager.m ... Compiling file NGCustomFileManager.m ... Compiling file NGDirectoryEnumerator.m ... NGDirectoryEnumerator.m: In function '-[NGDirEntry initWithFileManager:path:]': NGDirectoryEnumerator.m:270: warning: conflicting types for '-(id)initWithFileManager:(id)_fm path:(NSString *)_path' NGDirectoryEnumerator.m:41: warning: previous declaration of '-(id)initWithFileManager:(id )_fm path:(NSString *)_path' Compiling file NGFileFolderInfoDataSource.m ... Compiling file NGFileManager.m ... Compiling file NGFileManager+JS.m ... Compiling file NGFileManagerURL.m ... Compiling file NGHashMap.m ... Compiling file NGMerging.m ... Compiling file NGObjCRuntime.m ... NGObjCRuntime.m: In function '+[NSObject(NGObjCRuntime) instanceVariableNames]': NGObjCRuntime.m:602: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file NGQuotedPrintableCoding.m ... Compiling file NGStack.m ... Compiling file NGCalendarDateRange.m ... Compiling file NGResourceLocator.m ... Compiling file FileObjectHolder.m ... Linking library libNGExtensions ... Making all in NGStreams... Making all for library libNGStreams... Compiling file NGStreams.m ... Compiling file NGBase64Stream.m ... Compiling file NGBufferedStream.m ... Compiling file NGByteCountStream.m ... Compiling file NGCTextStream.m ... In file included from NGCTextStream.m:22: ../NGExtensions/NGExtensions/NGCharBuffers.h: In function 'NGCharBuffer8_newWithCString': ../NGExtensions/NGExtensions/NGCharBuffers.h:69: warning: pointer targets in passing argument 1 of 'strcpy' differ in signedness ../NGExtensions/NGExtensions/NGCharBuffers.h: In function 'NGCharBuffer8_addCString': ../NGExtensions/NGExtensions/NGCharBuffers.h:114: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness ../NGExtensions/NGExtensions/NGCharBuffers.h: In function 'NGCharBuffer8_makeStringAndDealloc': ../NGExtensions/NGExtensions/NGCharBuffers.h:128: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness ../NGExtensions/NGExtensions/NGCharBuffers.h:130: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness ../NGExtensions/NGExtensions/NGCharBuffers.h:130: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness NGCTextStream.m: In function '+[NGCTextStream _flushForExit:]': NGCTextStream.m:67: warning: '-flush' not found in protocol(s) NGCTextStream.m: In function '_flushAtExit': NGCTextStream.m:73: warning: '-flush' not found in protocol(s) NGCTextStream.m: In function '-[NGCTextStream writeString:]': NGCTextStream.m:296: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness Compiling file NGConcreteStreamFileHandle.m ... Compiling file NGDataStream.m ... Compiling file NGFileStream.m ... NGFileStream.m: In function '+[NGFileStream _makeThreadSafe:]': NGFileStream.m:149: warning: passing argument 1 of 'initWithSource:' from incompatible pointer type NGFileStream.m:150: warning: passing argument 1 of 'initWithSource:' from incompatible pointer type NGFileStream.m:151: warning: passing argument 1 of 'initWithSource:' from incompatible pointer type NGFileStream.m: In function '+[NGFileStream _flushForExit:]': NGFileStream.m:155: warning: '-flush' not found in protocol(s) NGFileStream.m: In function '_flushForExit': NGFileStream.m:161: warning: '-flush' not found in protocol(s) Compiling file NGFilterStream.m ... Compiling file NGFilterTextStream.m ... Compiling file NGLockingStream.m ... Compiling file NGStream.m ... Compiling file NGStreamExceptions.m ... Compiling file NGStringTextStream.m ... Compiling file NGTextStream.m ... Compiling file NGDescriptorFunctions.m ... Compiling file NGStreamPipe.m ... Compiling file NGByteBuffer.m ... Compiling file NGCharBuffer.m ... Compiling file NGTerminalSupport.m ... Compiling file NGActiveSocket.m ... Compiling file NGDatagramPacket.m ... Compiling file NGDatagramSocket.m ... NGDatagramSocket.m: In function '-[NGDatagramSocket primaryReceivePacketWithMaxSize:]': NGDatagramSocket.m:240: warning: pointer targets in passing argument 6 of 'recvfrom' differ in signedness Compiling file NGInternetSocketAddress.m ... NGInternetSocketAddress.m: In function '-[NGInternetSocketAddress _fillAddress]': NGInternetSocketAddress.m:265: warning: pointer targets in assignment differ in signedness NGInternetSocketAddress.m:268: warning: pointer targets in passing argument 1 of 'inet_addr' differ in signedness NGInternetSocketAddress.m:300: warning: pointer targets in passing argument 1 of 'gethostbyname' differ in signedness Compiling file NGInternetSocketDomain.m ... Compiling file NGLocalSocketAddress.m ... Compiling file NGLocalSocketDomain.m ... Compiling file NGNetUtilities.m ... NGNetUtilities.m: In function 'NGSocketAddressFromString': NGNetUtilities.m:28: warning: pointer targets in initialization differ in signedness NGNetUtilities.m:33: warning: pointer targets in passing argument 1 of 'index' differ in signedness NGNetUtilities.m:33: warning: pointer targets in initialization differ in signedness NGNetUtilities.m:41: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness NGNetUtilities.m:46: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NGNetUtilities.m:51: warning: pointer targets in passing argument 1 of 'index' differ in signedness NGNetUtilities.m:51: warning: pointer targets in initialization differ in signedness NGNetUtilities.m:58: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness NGNetUtilities.m:60: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness NGNetUtilities.m:61: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file NGPassiveSocket.m ... NGPassiveSocket.m: In function '-[NGPassiveSocket accept]': NGPassiveSocket.m:213: warning: pointer targets in passing argument 3 of 'accept' differ in signedness NGPassiveSocket.m:230: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness Compiling file NGSocket.m ... NGSocket.m: In function '-[NGSocket bindToAddress:]': NGSocket.m:306: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness NGSocket.m: In function '-[NGSocket kernelBoundAddress]': NGSocket.m:346: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness NGSocket.m: In function '-[NGSocket getOption:level:value:len:]': NGSocket.m:467: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness Compiling file NGSocketExceptions.m ... Compiling file NGGZipStream.m ... Compiling file NGActiveSSLSocket.m ... Linking library libNGStreams ... Making all in sope-mime... Making all in subprojects of library libNGMime... Making all for subproject NGMime... Compiling file NGMime.m ... Compiling file NGConcreteMimeType.m ... Compiling file NGMimeBodyGenerator.m ... NGMimeBodyGenerator.m: In function '_isBoundaryInArray': NGMimeBodyGenerator.m:179: warning: pointer targets in assignment differ in signedness NGMimeBodyGenerator.m:209: warning: pointer targets in passing argument 1 of 'strncmp' differ in signedness NGMimeBodyGenerator.m:209: warning: pointer targets in passing argument 2 of 'strncmp' differ in signedness NGMimeBodyGenerator.m:217: warning: pointer targets in passing argument 1 of 'strncmp' differ in signedness NGMimeBodyGenerator.m:217: warning: pointer targets in passing argument 2 of 'strncmp' differ in signedness NGMimeBodyGenerator.m:223: warning: pointer targets in passing argument 1 of 'strncmp' differ in signedness NGMimeBodyGenerator.m:223: warning: pointer targets in passing argument 2 of 'strncmp' differ in signedness Compiling file NGMimeBodyParser.m ... Compiling file NGMimeBodyPart.m ... Compiling file NGMimeBodyPartParser.m ... Compiling file NGMimeExceptions.m ... Compiling file NGMimeHeaderFieldGenerator.m ... Compiling file NGMimeHeaderFieldParser.m ... NGMimeHeaderFieldParser.m: In function '-[NGMimeHeaderFieldParser parseValue:ofHeaderField:]': NGMimeHeaderFieldParser.m:133: warning: conflicting types for '-(id)parseValue:(NSString *)_data ofHeaderField:(NSString *)_field' NGMimeHeaderFieldParser.h:41: warning: previous declaration of '-(id)parseValue:(id)_data ofHeaderField:(NSString *)_field' Compiling file NGMimeHeaderFields.m ... Compiling file NGMimeMultipartBody.m ... Compiling file NGMimeMultipartBodyParser.m ... Compiling file NGMimePartGenerator.m ... Compiling file NGMimePartParser.m ... NGMimePartParser.m: In function '-[NGMimePartParser parseHeader]': NGMimePartParser.m:675: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness NGMimePartParser.m:705: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness Compiling file NGMimeType.m ... NGMimeType.m: In function '_parseMimeType': NGMimeType.m:652: warning: pointer targets in passing argument 1 of '_stringForType' differ in signedness NGMimeType.m:674: warning: pointer targets in passing argument 1 of '_stringForSubType' differ in signedness Compiling file NGPart.m ... Compiling file NGMimeFileData.m ... Compiling file NGMimeJoinedData.m ... Compiling file NGMimeUtilities.m ... NGMimeUtilities.m: In function 'parseParameters': NGMimeUtilities.m:119: warning: pointer targets in passing argument 1 of '_stringForParameterName' differ in signedness Compiling file NGMimeContentDispositionHeaderFieldParser.m ... Compiling file NGMimeContentLengthHeaderFieldParser.m ... Compiling file NGMimeContentTypeHeaderFieldParser.m ... Compiling file NGMimeHeaderFieldParserSet.m ... Compiling file NGMimeRFC822DateHeaderFieldParser.m ... NGMimeRFC822DateHeaderFieldParser.m: In function 'parseTimeZone': NGMimeRFC822DateHeaderFieldParser.m:217: warning: pointer targets in passing argument 1 of 'strncmp' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:231: warning: pointer targets in passing argument 1 of 'strncpy' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:231: warning: pointer targets in passing argument 2 of 'strncpy' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:254: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:255: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:259: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:266: warning: pointer targets in passing argument 2 of 'strcpy' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:270: warning: pointer targets in passing argument 2 of 'strcpy' differ in signedness NGMimeRFC822DateHeaderFieldParser.m: In function '-[NGMimeRFC822DateHeaderFieldParser parseValue:ofHeaderField:]': NGMimeRFC822DateHeaderFieldParser.m:300: warning: pointer targets in passing argument 1 of 'getCString:maxLength:' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:332: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:358: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:383: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:397: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NGMimeRFC822DateHeaderFieldParser.m:417: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness Compiling file NGMimeStringHeaderFieldParser.m ... NGMimeStringHeaderFieldParser.m: In function '-[NGMimeStringHeaderFieldParser parseValue:ofHeaderField:]': NGMimeStringHeaderFieldParser.m:50: warning: conflicting types for '-(id)parseValue:(NSString *)_value ofHeaderField:(NSString *)_field' NGMimeHeaderFieldParser.h:87: warning: previous declaration of '-(id)parseValue:(id)_data ofHeaderField:(NSString *)_field' Compiling file NSCalendarDate+RFC822.m ... Compiling file NGMimeAddressHeaderFieldGenerator.m ... NGMimeAddressHeaderFieldGenerator.m: In function '-[NGMimeAddressHeaderFieldGenerator generateDataForHeaderFieldNamed:value:]': NGMimeAddressHeaderFieldGenerator.m:132: warning: pointer targets in passing argument 1 of 'NGEncodeQuotedPrintableMime' differ in signedness NGMimeAddressHeaderFieldGenerator.m:136: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness Compiling file NGMimeContentDispositionHeaderFieldGenerator.m ... NGMimeContentDispositionHeaderFieldGenerator.m: In function '-[NGMimeContentDispositionHeaderFieldGenerator generateDataForHeaderFieldNamed:value:]': NGMimeContentDispositionHeaderFieldGenerator.m:66: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NGMimeContentDispositionHeaderFieldGenerator.m:107: warning: pointer targets in passing argument 3 of 'NGEncodeQuotedPrintableMime' differ in signedness Compiling file NGMimeContentLengthHeaderFieldGenerator.m ... Compiling file NGMimeContentTypeHeaderFieldGenerator.m ... NGMimeContentTypeHeaderFieldGenerator.m: In function '-[NGMimeContentTypeHeaderFieldGenerator generateDataForHeaderFieldNamed:value:]': NGMimeContentTypeHeaderFieldGenerator.m:63: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NGMimeContentTypeHeaderFieldGenerator.m:73: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NGMimeContentTypeHeaderFieldGenerator.m:96: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NGMimeContentTypeHeaderFieldGenerator.m:112: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness Compiling file NGMimeHeaderFieldGeneratorSet.m ... Compiling file NGMimeRFC822DateHeaderFieldGenerator.m ... Compiling file NGMimeStringHeaderFieldGenerator.m ... Linking subproject NGMime ... Making all for subproject NGMail... Compiling file NGMail.m ... Compiling file NGMailAddressList.m ... Compiling file NGMailAddressParser.m ... NGMailAddressParser.m: In function 'mkStrObj': NGMailAddressParser.m:55: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness NGMailAddressParser.m: In function 'parseAtom': NGMailAddressParser.m:128: warning: pointer targets in passing argument 1 of 'mkStrObj' differ in signedness NGMailAddressParser.m: In function 'parseQText': NGMailAddressParser.m:200: warning: pointer targets in passing argument 1 of 'mkStrObj' differ in signedness NGMailAddressParser.m: In function 'parseDText': NGMailAddressParser.m:252: warning: pointer targets in passing argument 1 of 'mkStrObj' differ in signedness NGMailAddressParser.m: In function '+[NGMailAddressParser mailAddressParserWithString:]': NGMailAddressParser.m:323: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness NGMailAddressParser.m: In function '+[NGMailAddressParser mailAddressParserWithData:]': NGMailAddressParser.m:328: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness NGMailAddressParser.m: In function '+[NGMailAddressParser mailAddressParserWithCString:]': NGMailAddressParser.m:333: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness Compiling file NGMailAddress.m ... Compiling file NGMimeMessage.m ... Compiling file NGMimeMessageGenerator.m ... NGMimeMessageGenerator.m: In function '-[NGMimeMessageGenerator generateDataForHeaderField:value:]': NGMimeMessageGenerator.m:157: warning: pointer targets in passing argument 1 of 'NGEncodeQuotedPrintableMime' differ in signedness NGMimeMessageGenerator.m:157: warning: pointer targets in passing argument 3 of 'NGEncodeQuotedPrintableMime' differ in signedness Compiling file NGMimeMessageParser.m ... NGMimeMessageParser.m: In function '-[NSData(MimeQPHeaderFieldDecoding) decodeQuotedPrintableValueOfMIMEHeaderField:]': NGMimeMessageParser.m:213: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness NGMimeMessageParser.m:239: warning: pointer targets in passing argument 2 of '_rfc2047Decoding' differ in signedness Compiling file NGMBoxReader.m ... Compiling file NGPop3Client.m ... Compiling file NGPop3Support.m ... Compiling file NGSmtpClient.m ... Compiling file NGSmtpSupport.m ... Compiling file NGSendMail.m ... Compiling file NGMimeMessageBodyGenerator.m ... Compiling file NGMimeMessageMultipartBodyGenerator.m ... Compiling file NGMimeMessageRfc822BodyGenerator.m ... Compiling file NGMimeMessageTextBodyGenerator.m ... Linking subproject NGMail ... Making all for subproject NGImap4... Compiling file NGImap4ResponseParser.m ... NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseListOrLSubResponseIntoHashMap:]': NGImap4ResponseParser.m:646: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m:646: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseCapabilityResponseIntoHashMap:]': NGImap4ResponseParser.m:684: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseSearchResponseIntoHashMap:]': NGImap4ResponseParser.m:706: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseSortResponseIntoHashMap:]': NGImap4ResponseParser.m:725: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseQuotaResponseIntoHashMap:]': NGImap4ResponseParser.m:746: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseQuotaRootResponseIntoHashMap:]': NGImap4ResponseParser.m:803: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseStatusResponseIntoHashMap:]': NGImap4ResponseParser.m:906: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseByeUntaggedResponseIntoHashMap:]': NGImap4ResponseParser.m:946: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseQuotedStringOrNIL]': NGImap4ResponseParser.m:958: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseQuotedStringOrDataOrNIL]': NGImap4ResponseParser.m:970: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseEnvelopeAddressStructure]': NGImap4ResponseParser.m:1025: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseEnvelopeAddressStructures]': NGImap4ResponseParser.m:1063: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness NGImap4ResponseParser.m: In function '-[NGImap4ResponseParser _parseNumberUntaggedResponse:]': NGImap4ResponseParser.m:1217: warning: pointer targets in passing argument 2 of '_matchesString' differ in signedness Compiling file NGImap4Client.m ... NGImap4Client.m: In function '-[NGImap4Client sort:qualifier:encoding:]': NGImap4Client.m:1080: warning: conflicting types for '-(NSDictionary *)sort:(id)_sortSpec qualifier:(EOQualifier *)_qual encoding:(NSString *)_encoding' NGImap4Client.h:131: warning: previous declaration of '-(NSDictionary *)sort:(NSArray *)_sortOrderings qualifier:(EOQualifier *)_qual encoding:(NSString *)_encoding' NGImap4Client.m: In function '-[NGImap4Client textStream]': NGImap4Client.m:1422: warning: conflicting types for '-(id )textStream' NGImap4Client.m:44: warning: previous declaration of '-(NGCTextStream *)textStream' Compiling file NGImap4Support.m ... Compiling file NGImap4.m ... Compiling file NGImap4Folder.m ... NGImap4Folder.m: In function '-[NGImap4Folder initWithContext:name:flags:parentFolder:]': NGImap4Folder.m:131: warning: conflicting types for '-(id)initWithContext:(id)_context name:(NSString *)_name flags:(NSArray *)_flags parentFolder:(id )_folder' NGImap4Folder.h:83: warning: previous declaration of '-(id)initWithContext:(NGImap4Context *)_context name:(NSString *)_name flags:(NSArray *)_flags parentFolder:(id )_folder' Compiling file NGImap4Context.m ... Compiling file NGImap4Message.m ... NGImap4Message.m: In function '-[NGImap4Message _removeFlag:]': NGImap4Message.m:699: warning: conflicting types for '-(void)_removeFlag:(NSNotification *)_notification' NGImap4Message.m:42: warning: previous declaration of '-(void)_removeFlag:(id)_obj' NGImap4Message.m: In function '-[NGImap4Message _addFlag:]': NGImap4Message.m:717: warning: conflicting types for '-(void)_addFlag:(NSNotification *)_notification' NGImap4Message.m:43: warning: previous declaration of '-(void)_addFlag:(id)_obj' Compiling file NGImap4ServerRoot.m ... NGImap4ServerRoot.m: In function '-[NGImap4ServerRoot parentFolder]': NGImap4ServerRoot.m:157: warning: conflicting types for '-(id )parentFolder' NGImap4ServerRoot.h:51: warning: previous declaration of '-(NGImap4Folder *)parentFolder' NGImap4ServerRoot.m: In function '-[NGImap4ServerRoot copySubFolder:to:]': NGImap4ServerRoot.m:358: warning: conflicting types for '-(BOOL)copySubFolder:(NGImap4Folder *)_f to:(id )_folder' NGImap4ServerRoot.h:82: warning: previous declaration of '-(BOOL)copySubFolder:(NGImap4Folder *)_f to:(NGImap4Folder *)_folder' NGImap4ServerRoot.m: In function '-[NGImap4ServerRoot moveSubFolder:to:]': NGImap4ServerRoot.m:362: warning: conflicting types for '-(BOOL)moveSubFolder:(NGImap4Folder *)_f to:(id )_folder' NGImap4ServerRoot.h:83: warning: previous declaration of '-(BOOL)moveSubFolder:(NGImap4Folder *)_f to:(NGImap4Folder *)_folder' Compiling file NGImap4Functions.m ... Compiling file NGImap4FileManager.m ... NGImap4FileManager.m: In function '-[NGImap4FileManager _lookupFolderAtPath:]': NGImap4FileManager.m:164: warning: conflicting types for '-(id )_lookupFolderAtPath:(NSArray *)_paths' NGImap4FileManager.m:36: warning: previous declaration of '-(NGImap4Folder *)_lookupFolderAtPath:(NSArray *)_paths' Compiling file NGImap4DataSource.m ... Compiling file NSString+Imap4.m ... NSString+Imap4.m: In function '-[NSString(Imap4) stringByEncodingImap4FolderName]': NSString+Imap4.m:51: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NSString+Imap4.m:99: warning: pointer targets in passing argument 1 of 'initWithCStringNoCopy:length:freeWhenDone:' differ in signedness NSString+Imap4.m: In function '-[NSString(Imap4) stringByDecodingImap4FolderName]': NSString+Imap4.m:121: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness NSString+Imap4.m:144: warning: pointer targets in passing argument 1 of '_decodeOfModifiedUTF7' differ in signedness NSString+Imap4.m:169: warning: pointer targets in passing argument 1 of 'initWithCStringNoCopy:length:freeWhenDone:' differ in signedness NSString+Imap4.m: In function '-[NSString(Imap4) stringByEscapingImap4Password]': NSString+Imap4.m:181: warning: pointer targets in assignment differ in signedness NSString+Imap4.m:211: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness Compiling file NGSieveClient.m ... NGSieveClient.m: In function '-[NGSieveClient normalizeOpenConnectionResponse:]': NGSieveClient.m:353: warning: conflicting types for '-(NSDictionary *)normalizeOpenConnectionResponse:(NGHashMap *)_map' NGSieveClient.m:40: warning: previous declaration of '-(NSMutableDictionary *)normalizeOpenConnectionResponse:(NGHashMap *)_map' Compiling file EOQualifier+IMAPAdditions.m ... Compiling file NGImap4MessageGlobalID.m ... Compiling file NGImap4FolderGlobalID.m ... Compiling file NGImap4ServerGlobalID.m ... Compiling file NGImap4FolderMailRegistry.m ... Compiling file NGImap4FolderFlags.m ... Compiling file NGImap4ResponseNormalizer.m ... Compiling file NGImap4Envelope.m ... Compiling file NGImap4EnvelopeAddress.m ... Linking subproject NGImap4 ... Making all for library libNGMime... Linking library libNGMime ... Making all in sope-appserver... Making all in NGObjWeb... Making all in subprojects of library libNGObjWeb... Making all for subproject NGHttp... Compiling file NGHttp.m ... Compiling file NGHttpCookie.m ... In file included from common.h:33, from NGHttpCookie.m:22: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file NGHttpHeaderFieldParser.m ... In file included from common.h:33, from NGHttpHeaderFieldParser.m:22: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. NGHttpHeaderFieldParser.m: In function '-[NGHttpStringHeaderFieldParser parseValue:ofHeaderField:]': NGHttpHeaderFieldParser.m:43: warning: pointer targets in assignment differ in signedness NGHttpHeaderFieldParser.m:58: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness NGHttpHeaderFieldParser.m: In function '-[NGHttpCredentialsFieldParser parseValue:ofHeaderField:]': NGHttpHeaderFieldParser.m:91: warning: pointer targets in assignment differ in signedness NGHttpHeaderFieldParser.m:117: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness NGHttpHeaderFieldParser.m: In function '-[NGHttpStringArrayHeaderFieldParser parseValue:ofHeaderField:]': NGHttpHeaderFieldParser.m:170: warning: pointer targets in assignment differ in signedness NGHttpHeaderFieldParser.m:218: warning: pointer targets in passing argument 1 of 'parseValuePart:length:zone:' differ in signedness Compiling file NGHttpHeaderFields.m ... In file included from common.h:33, from NGHttpHeaderFields.m:22: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file NGHttpBodyParser.m ... In file included from common.h:33, from NGHttpBodyParser.m:24: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. NGHttpBodyParser.m: In function '-[NGFormUrlBodyParser parseBodyOfPart:data:delegate:]': NGHttpBodyParser.m:49: warning: pointer targets in passing argument 1 of 'NGDecodeUrlFormParameters' differ in signedness Compiling file NGHttpMessage.m ... In file included from common.h:33, from NGHttpMessage.m:23: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file NGHttpMessageParser.m ... In file included from common.h:33, from NGHttpMessageParser.m:22: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. NGHttpMessageParser.m: In function '-[NGHttpMessageParser parseRequestLine]': NGHttpMessageParser.m:237: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness NGHttpMessageParser.m:244: warning: pointer targets in passing argument 1 of 'rindex' differ in signedness NGHttpMessageParser.m:244: warning: pointer targets in assignment differ in signedness NGHttpMessageParser.m:247: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness NGHttpMessageParser.m:247: warning: pointer targets in assignment differ in signedness NGHttpMessageParser.m:252: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness NGHttpMessageParser.m:255: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness NGHttpMessageParser.m:266: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness NGHttpMessageParser.m:277: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness Compiling file NGHttpRequest.m ... In file included from common.h:33, from NGHttpRequest.m:23: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. NGHttpRequest.m: In function '-[NGHttpRequest uriParameters]': NGHttpRequest.m:111: warning: pointer targets in passing argument 1 of 'NGDecodeUrlFormParameters' differ in signedness Compiling file NGHttpResponse.m ... In file included from common.h:33, from NGHttpResponse.m:22: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file NGUrlFormCoder.m ... In file included from common.h:33, from NGUrlFormCoder.m:23: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. NGUrlFormCoder.m: In function 'NGDecodeUrlFormParameters': NGUrlFormCoder.m:123: warning: pointer targets in passing argument 1 of '_unescapeUrl' differ in signedness NGUrlFormCoder.m:124: warning: pointer targets in passing argument 1 of 'urlStringFromBuffer' differ in signedness NGUrlFormCoder.m:136: warning: pointer targets in passing argument 1 of '_unescapeUrl' differ in signedness NGUrlFormCoder.m:137: warning: pointer targets in passing argument 1 of 'urlStringFromBuffer' differ in signedness Linking subproject NGHttp ... Making all for subproject Associations... Compiling file WOAssociation.m ... Compiling file WOValueAssociation.m ... Compiling file WOKeyPathAssociation.m ... WOKeyPathAssociation.m: In function '_getSetSel': WOKeyPathAssociation.m:759: warning: pointer targets in passing argument 1 of '_getSetSelName' differ in signedness WOKeyPathAssociation.m: In function '_setValue': WOKeyPathAssociation.m:779: warning: pointer targets in passing argument 1 of '_getSetSel' differ in signedness WOKeyPathAssociation.m:839: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness WOKeyPathAssociation.m:840: warning: pointer targets in passing argument 3 of 'sm.strmethod' differ in signedness WOKeyPathAssociation.m: In function '-[WOKeyPathAssociation setUnsignedIntValue:inComponent:]': WOKeyPathAssociation.m:962: warning: pointer targets in passing argument 1 of '_getSetSel' differ in signedness WOKeyPathAssociation.m: In function '-[WOKeyPathAssociation setIntValue:inComponent:]': WOKeyPathAssociation.m:1072: warning: pointer targets in passing argument 1 of '_getSetSel' differ in signedness WOKeyPathAssociation.m: In function '-[WOKeyPathAssociation setBoolValue:inComponent:]': WOKeyPathAssociation.m:1177: warning: pointer targets in passing argument 1 of '_getSetSel' differ in signedness Compiling file WOKeyPathAssociationSystemKVC.m ... Compiling file WOScriptAssociation.m ... Compiling file WOResourceURLAssociation.m ... Compiling file WOLabelAssociation.m ... Compiling file NSUserDefaults+KVC.m ... Linking subproject Associations ... Making all for subproject Templates... Compiling file WOComponentScript.m ... Compiling file WOComponentScriptPart.m ... Compiling file WODParser.m ... WODParser.m: In function '_makeStringForBuffer': WODParser.m:95: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness WODParser.m: In function '_makeException': WODParser.m:285: warning: pointer targets in passing argument 1 of '_makeStringForBuffer' differ in signedness WODParser.m: In function '_parseIdentifier': WODParser.m:405: warning: pointer targets in passing argument 1 of '_makeStringForBuffer' differ in signedness WODParser.m: In function '_parseQString': WODParser.m:553: warning: pointer targets in passing argument 1 of '_makeStringForBuffer' differ in signedness Compiling file WOHTMLParser.m ... WOHTMLParser.m: In function '-[WOHTMLParser _makeConstantStringElementWithBuffer:length:]': WOHTMLParser.m:106: warning: pointer targets in passing argument 1 of 'initWithBuffer:length:' differ in signedness WOHTMLParser.m: In function '-[WOHTMLParser _makeStringForBuffer:length:]': WOHTMLParser.m:119: warning: pointer targets in passing argument 1 of 'initWithCString:length:' differ in signedness WOHTMLParser.m: In function '_makeHtmlException': WOHTMLParser.m:247: warning: pointer targets in assignment differ in signedness WOHTMLParser.m:251: warning: pointer targets in assignment differ in signedness WOHTMLParser.m: In function '_parseStringValue': WOHTMLParser.m:390: warning: pointer targets in passing argument 1 of '_makeStringForBuffer:length:' differ in signedness WOHTMLParser.m:411: warning: pointer targets in passing argument 1 of '_makeStringForBuffer:length:' differ in signedness WOHTMLParser.m: In function '_makeTextString': WOHTMLParser.m:771: warning: pointer targets in passing argument 1 of '_makeStringForBuffer:length:' differ in signedness WOHTMLParser.m: In function '_parseElement': WOHTMLParser.m:907: warning: pointer targets in passing argument 1 of '_makeConstantStringElementWithBuffer:length:' differ in signedness Compiling file WOSubcomponentInfo.m ... Compiling file WOTemplate.m ... Compiling file WOTemplateBuilder.m ... Compiling file WOWrapperTemplateBuilder.m ... Compiling file WOxComponentElemBuilder.m ... Compiling file WOxTemplateBuilder.m ... Compiling file WOxElemBuilder.m ... WOxElemBuilder.m: In function '-[WOxElemBuilderComponentInfo instantiateWithResourceManager:languages:]': WOxElemBuilder.m:76: warning: conflicting types for '-(WOComponent *)instantiateWithResourceManager:(WOResourceManager *)_rm languages:(NSArray *)_languages' ../NGObjWeb/WOxElemBuilder.h:150: warning: previous declaration of '-(id)instantiateWithResourceManager:(WOResourceManager *)_rm languages:(NSArray *)_languages' Compiling file WOxTagClassElemBuilder.m ... Compiling file WOApplication+Builders.m ... Linking subproject Templates ... Making all for subproject DynamicElements... Compiling file WOxHTMLElemBuilder.m ... Compiling file WOxControlElemBuilder.m ... Compiling file WOxMiscElemBuilder.m ... Compiling file WOxXULElemBuilder.m ... Compiling file WOActionURL.m ... Compiling file WOBody.m ... WOBody.m: In function '-[WOBody appendToResponse:inContext:]': WOBody.m:102: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBody.m:109: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBody.m:142: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBody.m:159: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOBrowser.m ... WOBrowser.m: In function '-[WOBrowser appendOptionsToResponse:inContext:]': WOBrowser.m:288: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:290: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:318: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:323: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m: In function '-[WOBrowser appendToResponse:inContext:]': WOBrowser.m:337: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:345: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:348: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:354: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:357: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOBrowser.m:361: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOCheckBox.m ... WOCheckBox.m: In function '-[WOCheckBox appendToResponse:inContext:]': WOCheckBox.m:91: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBox.m:94: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBox.m:96: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBox.m:99: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBox.m:109: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOCheckBoxList.m ... WOCheckBoxList.m: In function '-[WOCheckBoxList appendToResponse:inContext:]': WOCheckBoxList.m:176: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:178: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:180: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:183: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOCheckBoxList.m:193: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOComponentContent.m ... Compiling file WOComponentReference.m ... Compiling file WOCompoundElement.m ... Compiling file WOConditional.m ... Compiling file WOEmbeddedObject.m ... WOEmbeddedObject.m: In function '-[WOEmbeddedObject appendToResponse:inContext:]': WOEmbeddedObject.m:134: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOEmbeddedObject.m:191: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOFileUpload.m ... WOFileUpload.m: In function '-[WOFileUpload appendToResponse:inContext:]': WOFileUpload.m:163: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOFileUpload.m:167: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOFileUpload.m:179: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOForm.m ... WOForm.m: In function '-[WOForm appendToResponse:inContext:]': WOForm.m:348: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOForm.m:362: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOForm.m:365: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOForm.m:368: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOForm.m:382: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOFrame.m ... WOFrame.m: In function '-[WOFrame appendToResponse:inContext:]': WOFrame.m:149: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOFrame.m:172: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOGenericContainer.m ... WOGenericContainer.m: In function '-[WOGenericContainer appendToResponse:inContext:]': WOGenericContainer.m:119: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOGenericElement.m ... WOGenericElement.m: In function '-[WOGenericElement _configureForConstantElementName:]': WOGenericElement.m:119: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness WOGenericElement.m: In function '-[WOGenericElement _appendAttributesToResponse:inContext:]': WOGenericElement.m:202: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOGenericElement.m: In function '-[WOGenericElement appendToResponse:inContext:]': WOGenericElement.m:239: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOHtml.m ... WOHtml.m: In function '-[WOHtml appendToResponse:inContext:]': WOHtml.m:80: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOHtml.m:82: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOHTMLDynamicElement.m ... Compiling file WOHiddenField.m ... WOHiddenField.m: In function '-[WOHiddenField appendToResponse:inContext:]': WOHiddenField.m:57: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOHiddenField.m:59: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOHiddenField.m:69: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOHyperlink.m ... Compiling file WOHyperlinkInfo.m ... Compiling file WOImage.m ... WOImage.m: In function '-[WOImage appendToResponse:inContext:]': WOImage.m:95: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOImage.m:123: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOImage.m: At top level: WOImage.m:396: warning: method possibly missing a [super dealloc] call Compiling file WOImageButton.m ... WOImageButton.m: In function '-[WOImageButton appendToResponse:inContext:]': WOImageButton.m:199: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOImageButton.m:203: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOImageButton.m:247: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOInput.m ... Compiling file WOIFrame.m ... WOIFrame.m: In function '-[WOIFrame appendToResponse:inContext:]': WOIFrame.m:153: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOIFrame.m:180: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOJavaScript.m ... WOJavaScript.m: In function '-[WOJavaScript appendToResponse:inContext:]': WOJavaScript.m:126: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOJavaScript.m:130: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOJavaScript.m:133: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOJavaScript.m:144: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOJavaScript.m:149: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOJavaScript.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOMetaRefresh.m ... WOMetaRefresh.m: In function '-[WOMetaRefresh appendToResponse:inContext:]': WOMetaRefresh.m:149: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:151: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOMetaRefresh.m:222: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WONestedList.m ... WONestedList.m: In function '-[WONestedList appendList:atLevel:toResponse:inContext:]': WONestedList.m:153: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WONestedList.m:166: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WONestedList.m:176: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WONestedList.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOPasswordField.m ... WOPasswordField.m: In function '-[WOPasswordField appendToResponse:inContext:]': WOPasswordField.m:64: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:66: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:70: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:71: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:71: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:71: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:71: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:71: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:71: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPasswordField.m:81: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOPopUpButton.m ... WOPopUpButton.m: In function '-[WOPopUpButton appendOptionsToResponse:inContext:]': WOPopUpButton.m:297: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m:299: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m:301: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m:338: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m:340: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m:349: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m: In function '-[WOPopUpButton appendToResponse:inContext:]': WOPopUpButton.m:379: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOPopUpButton.m:393: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WORadioButton.m ... WORadioButton.m: In function '-[WORadioButton appendToResponse:inContext:]': WORadioButton.m:97: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButton.m:99: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButton.m:101: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButton.m:105: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButton.m:112: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButton.m:122: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WORadioButtonList.m ... WORadioButtonList.m: In function '-[WORadioButtonList appendToResponse:inContext:]': WORadioButtonList.m:145: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:147: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:149: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:152: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WORadioButtonList.m:160: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WORepetition.m ... Compiling file WOResetButton.m ... WOResetButton.m: In function '-[WOResetButton appendToResponse:inContext:]': WOResetButton.m:49: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOResetButton.m:59: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOResourceURL.m ... Compiling file WOString.m ... WOString.m: In function '-[_WOSimpleStaticASCIIString initWithValue:escapeHTML:]': WOString.m:281: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness WOString.m:326: warning: pointer targets in passing argument 2 of 'strncpy' differ in signedness WOString.m: At top level: WOString.m:780: warning: method possibly missing a [super dealloc] call Compiling file WOSubmitButton.m ... WOSubmitButton.m: In function '-[WOSubmitButton appendToResponse:inContext:]': WOSubmitButton.m:148: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOSubmitButton.m:150: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOSubmitButton.m:160: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOSwitchComponent.m ... Compiling file WOText.m ... WOText.m: In function '-[WOText appendToResponse:inContext:]': WOText.m:185: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:189: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:190: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:190: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:190: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:190: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:190: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:190: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:194: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:195: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOText.m:222: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOTextField.m ... WOTextField.m: In function '-[WOTextField appendToResponse:inContext:]': WOTextField.m:198: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:200: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:204: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:205: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:205: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:205: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:205: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:205: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:205: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOTextField.m:215: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOVBScript.m ... WOVBScript.m: In function '-[WOVBScript appendToResponse:inContext:]': WOVBScript.m:75: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOVBScript.m:79: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOVBScript.m:82: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOVBScript.m:92: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOVBScript.m:110: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness WOVBScript.m:111: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOEntity.m ... Compiling file WOSetCursor.m ... Compiling file _WOConstResourceImage.m ... Compiling file _WOResourceImage.m ... Compiling file _WOComplexHyperlink.m ... _WOComplexHyperlink.m: In function '-[_WOComplexHyperlink _addImageToResponse:inContext:]': _WOComplexHyperlink.m:228: warning: pointer targets in passing argument 3 of '_resp->addCStr' differ in signedness _WOComplexHyperlink.m:254: warning: pointer targets in passing argument 3 of '_resp->addCStr' differ in signedness _WOComplexHyperlink.m: In function '-[_WOComplexHyperlink appendToResponse:inContext:]': _WOComplexHyperlink.m:269: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOComplexHyperlink.m:290: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOComplexHyperlink.m:314: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file _WOTemporaryHyperlink.m ... _WOTemporaryHyperlink.m:150: warning: method possibly missing a [super dealloc] call Compiling file _WOCommonStaticDAHyperlink.m ... _WOCommonStaticDAHyperlink.m: In function '-[_WOCommonStaticDAHyperlink appendToResponse:inContext:]': _WOCommonStaticDAHyperlink.m:95: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOCommonStaticDAHyperlink.m:140: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOCommonStaticDAHyperlink.m:162: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file _WOSimpleActionHyperlink.m ... _WOSimpleActionHyperlink.m: In function '-[_WOSimpleActionHyperlink appendToResponse:inContext:]': _WOSimpleActionHyperlink.m:106: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOSimpleActionHyperlink.m:124: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOSimpleActionHyperlink.m: In function '-[_WOSimpleStringActionHyperlink appendToResponse:inContext:]': _WOSimpleActionHyperlink.m:164: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness _WOSimpleActionHyperlink.m:184: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Linking subproject DynamicElements ... Making all for subproject WOHttpAdaptor... Compiling file WOHttpAdaptor.m ... Compiling file WORecordRequestStream.m ... Compiling file WOHttpTransaction.m ... WOHttpTransaction.m: In function '-[WOHttpTransaction generateMissingResponse]': WOHttpTransaction.m:328: warning: pointer targets in initialization differ in signedness WOHttpTransaction.m:330: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOHttpTransaction.m: In function '-[WOHttpTransaction _reasonForStatus:]': WOHttpTransaction.m:630: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:631: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:632: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:633: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:635: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:637: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:638: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:639: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:640: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:641: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:642: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:643: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:644: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:645: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:647: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:651: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m:653: warning: pointer targets in assignment differ in signedness WOHttpTransaction.m: In function '-[WOHttpTransaction deliverResponse:toRequest:onStream:]': WOHttpTransaction.m:713: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOHttpTransaction.m:715: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness WOHttpTransaction.m:716: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOHttpTransaction.m:717: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOHttpTransaction.m:731: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOHttpTransaction.m:732: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOHttpTransaction.m:795: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness WOHttpTransaction.m: In function 'monthAbbr': WOHttpTransaction.m:857: warning: pointer targets in return differ in signedness WOHttpTransaction.m:857: warning: pointer targets in return differ in signedness WOHttpTransaction.m:857: warning: pointer targets in return differ in signedness WOHttpTransaction.m:858: warning: pointer targets in return differ in signedness WOHttpTransaction.m:858: warning: pointer targets in return differ in signedness WOHttpTransaction.m:858: warning: pointer targets in return differ in signedness WOHttpTransaction.m:859: warning: pointer targets in return differ in signedness WOHttpTransaction.m:859: warning: pointer targets in return differ in signedness WOHttpTransaction.m:859: warning: pointer targets in return differ in signedness WOHttpTransaction.m:860: warning: pointer targets in return differ in signedness WOHttpTransaction.m:860: warning: pointer targets in return differ in signedness WOHttpTransaction.m:860: warning: pointer targets in return differ in signedness WOHttpTransaction.m:861: warning: pointer targets in return differ in signedness Compiling file WORequest+Adaptor.m ... Compiling file WORequestParser.m ... WORequestParser.m: In function '-[WORequestParser parseMethod]': WORequestParser.m:135: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness WORequestParser.m: In function '-[WORequestParser parseURI]': WORequestParser.m:166: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness WORequestParser.m: In function '-[WORequestParser parseVersion]': WORequestParser.m:200: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness Linking subproject WOHttpAdaptor ... Making all for subproject SoObjects... Compiling file NSException+HTTP.m ... Compiling file SoApplication.m ... Compiling file SoClass.m ... Compiling file SoClassRegistry.m ... Compiling file SoClassSecurityInfo.m ... Compiling file SoControlPanel.m ... Compiling file SoDefaultRenderer.m ... Compiling file SoHTTPAuthenticator.m ... Compiling file SoObjCClass.m ... Compiling file SoObject+Traversal.m ... Compiling file SoObject.m ... Compiling file SoObjectMethodDispatcher.m ... Compiling file SoObjectRequestHandler.m ... Compiling file SoObjectXmlRpcDispatcher.m ... Compiling file SoObjectSOAPDispatcher.m ... Compiling file SoPageInvocation.m ... Compiling file SoActionInvocation.m ... Compiling file SoPermissions.m ... Compiling file SoProduct.m ... Compiling file SoProductClassInfo.m ... Compiling file SoProductRegistry.m ... Compiling file SoProductResourceManager.m ... Compiling file SoSecurityManager.m ... Compiling file SoSelectorInvocation.m ... Compiling file SoUser.m ... Compiling file SoLookupAssociation.m ... Compiling file WOContext+SoObjects.m ... Compiling file WODirectAction+SoObjects.m ... Compiling file WOComponent+SoObjects.m ... Compiling file WODirectActionRequestHandler+SoObjects.m ... Compiling file WORequest+So.m ... Compiling file SoTemplateRenderer.m ... Compiling file SoSubContext.m ... Compiling file SoSecurityException.m ... Compiling file SoComponent.m ... Linking subproject SoObjects ... Making all for subproject WebDAV... Compiling file EOFetchSpecification+SoDAV.m ... Compiling file SaxDAVHandler.m ... Compiling file SoDAVLockManager.m ... Compiling file SoObject+SoDAV.m ... Compiling file SoObject+SoDAVQuery.m ... SoObject+SoDAVQuery.m: In function '-[NSObject(SoObjectDAVQueries) davQueryOnSelf:inContext:]': SoObject+SoDAVQuery.m:77: warning: conflicting types for '-(NSArray *)davQueryOnSelf:(EOFetchSpecification *)_fs inContext:(id)_ctx' SoObject+SoDAV.h:49: warning: previous declaration of '-(id)davQueryOnSelf:(EOFetchSpecification *)_fs inContext:(id)_ctx' Compiling file SoObjectDataSource.m ... Compiling file SoObjectWebDAVDispatcher.m ... Compiling file SoWebDAVRenderer.m ... SoWebDAVRenderer.m: In function '-[SoWebDAVRenderer renderObjectBodyResult:inContext:onlyHead:]': SoWebDAVRenderer.m:176: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness SoWebDAVRenderer.m:177: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness SoWebDAVRenderer.m:189: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness SoWebDAVRenderer.m:190: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file SoWebDAVValue.m ... Compiling file SoObjectResultEntry.m ... Compiling file SoSubscriptionManager.m ... Compiling file SoSubscription.m ... Compiling file SoDAVSQLParser.m ... SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseToken:from:length:consume:]': SoDAVSQLParser.m:151: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseIdentifier:from:length:consume:]': SoDAVSQLParser.m:222: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:227: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseContainsQualifier:from:length:]': SoDAVSQLParser.m:322: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:325: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:331: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseQualifier:from:length:]': SoDAVSQLParser.m:361: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:367: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseScope::from:length:]': SoDAVSQLParser.m:426: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:428: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:430: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:437: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:438: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseSELECT:from:length:strict:]': SoDAVSQLParser.m:481: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:496: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:503: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:531: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:534: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:548: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:549: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:564: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m:565: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness SoDAVSQLParser.m: In function '-[SoDAVSQLParser parseSQL:from:length:strict:]': SoDAVSQLParser.m:625: warning: pointer targets in passing argument 1 of 'parseToken:from:length:consume:' differ in signedness Linking subproject WebDAV ... Making all for library libNGObjWeb... Compiling file NSObject+WO.m ... NSObject+WO.m: In function '_getSetSel': NSObject+WO.m:132: warning: pointer targets in passing argument 1 of '_getSetSelName' differ in signedness NSObject+WO.m: In function 'WOSetKVCValueUsingMethod': NSObject+WO.m:182: warning: pointer targets in passing argument 1 of '_getSetSel' differ in signedness Compiling file WOApplication+defaults.m ... Compiling file WOApplication.m ... WOApplication.m: In function '-[WOApplication createSessionIDForSession:]': WOApplication.m:546: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOApplication.m:547: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WOApplication.m: In function '-[WOApplication createSessionForRequest:]': WOApplication.m:551: warning: conflicting types for '-(WOSession *)createSessionForRequest:(WORequest *)_request' ./NGObjWeb/WOApplication.h:78: warning: previous declaration of '-(id)createSessionForRequest:(WORequest *)_request' WOApplication.m: In function '-[WOApplication restoreSessionWithID:inContext:]': WOApplication.m:569: warning: conflicting types for '-(WOSession *)restoreSessionWithID:(NSString *)_sid inContext:(WOContext *)_ctx' ./NGObjWeb/WOApplication.h:79: warning: previous declaration of '-(id)restoreSessionWithID:(NSString *)_id inContext:(WOContext *)_ctx' WOApplication.m: In function '-[WOApplication session]': WOApplication.m:740: warning: conflicting types for '-(WOSession *)session' ./NGObjWeb/WOApplication.h:150: warning: previous declaration of '-(id)session' WOApplication.m: In function '-[WOApplication pageWithName:]': WOApplication.m:995: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name' ./NGObjWeb/WOApplication.h:164: warning: previous declaration of '-(id)pageWithName:(NSString *)_name' WOApplication.m: In function '-[WOApplication pageWithName:inContext:]': WOApplication.m:1054: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name inContext:(WOContext *)_ctx' ./NGObjWeb/WOApplication.h:138: warning: previous declaration of '-(id)pageWithName:(NSString *)_name inContext:(WOContext *)_ctx' WOApplication.m: In function '-[WOApplication pageWithName:forRequest:]': WOApplication.m:1057: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name forRequest:(WORequest *)_req' ./NGObjWeb/WOApplication.h:139: warning: previous declaration of '-(id)pageWithName:(NSString *)_name forRequest:(WORequest *)_req' Compiling file WOCoreApplication.m ... Compiling file WOComponent.m ... WOComponent.m: In function '-[WOComponent application]': WOComponent.m:371: warning: conflicting types for '-(WOApplication *)application' ./NGObjWeb/WOComponent.h:73: warning: previous declaration of '-(id)application' WOComponent.m: In function '-[WOComponent session]': WOComponent.m:386: warning: conflicting types for '-(WOSession *)session' ./NGObjWeb/WOComponent.h:74: warning: previous declaration of '-(id)session' WOComponent.m: In function '-[WOComponent pageWithName:]': WOComponent.m:437: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name' ./NGObjWeb/WOComponent.h:96: warning: previous declaration of '-(id)pageWithName:(NSString *)_name' WOComponent.m: In function '-[WOComponent parent]': WOComponent.m:513: warning: conflicting types for '-(WOComponent *)parent' ./NGObjWeb/WOComponent.h:110: warning: previous declaration of '-(id)parent' Compiling file WOComponent+Sync.m ... Compiling file WOComponentDefinition.m ... Compiling file WOComponentFault.m ... Compiling file WOContext.m ... WOContext.m: In function '-[WOContext initWithRequest:]': WOContext.m:94: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOContext.m:95: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOContext.m: In function '-[WOContext session]': WOContext.m:281: warning: conflicting types for '-(WOSession *)session' ./NGObjWeb/WOPageGenerationContext.h:32: warning: previous declaration of '-(id)session' WOContext.m: In function '-[WOContext component]': WOContext.m:353: warning: conflicting types for '-(WOComponent *)component' ./NGObjWeb/WOPageGenerationContext.h:36: warning: previous declaration of '-(id)component' WOContext.m: In function '-[WOContext page]': WOContext.m:363: warning: conflicting types for '-(WOComponent *)page' ./NGObjWeb/WOPageGenerationContext.h:35: warning: previous declaration of '-(id)page' WOContext.m: In function '-[WOContext(DeprecatedMethodsInWO4) application]': WOContext.m:952: warning: conflicting types for '-(WOApplication *)application' ./NGObjWeb/WOContext.h:153: warning: previous declaration of '-(id)application' Compiling file WOElement.m ... Compiling file WOMessage.m ... WOMessage.m: In function '-[WOMessage appendContentCString:]': WOMessage.m:449: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOMessage.m:465: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness Compiling file WORequest.m ... Compiling file WOResourceManager.m ... WOResourceManager.m: In function '-[WOResourceManager loggingPrefix]': WOResourceManager.m:207: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOResourceManager.m:208: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WOResourceManager.m: In function '-[WOResourceManager pageWithName:languages:]': WOResourceManager.m:1061: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name languages:(NSArray *)_langs' ./NGObjWeb/WOResourceManager.h:89: warning: previous declaration of '-(id)pageWithName:(NSString *)_name languages:(NSArray *)_langs' Compiling file WOResponse.m ... WOResponse.m: In function 'weekdayName': WOResponse.m:87: warning: pointer targets in return differ in signedness WOResponse.m:87: warning: pointer targets in return differ in signedness WOResponse.m:87: warning: pointer targets in return differ in signedness WOResponse.m:88: warning: pointer targets in return differ in signedness WOResponse.m:88: warning: pointer targets in return differ in signedness WOResponse.m:88: warning: pointer targets in return differ in signedness WOResponse.m:89: warning: pointer targets in return differ in signedness WOResponse.m:89: warning: pointer targets in return differ in signedness WOResponse.m:90: warning: pointer targets in return differ in signedness WOResponse.m: In function 'monthName': WOResponse.m:95: warning: pointer targets in return differ in signedness WOResponse.m:95: warning: pointer targets in return differ in signedness WOResponse.m:95: warning: pointer targets in return differ in signedness WOResponse.m:96: warning: pointer targets in return differ in signedness WOResponse.m:96: warning: pointer targets in return differ in signedness WOResponse.m:96: warning: pointer targets in return differ in signedness WOResponse.m:97: warning: pointer targets in return differ in signedness WOResponse.m:97: warning: pointer targets in return differ in signedness WOResponse.m:97: warning: pointer targets in return differ in signedness WOResponse.m:98: warning: pointer targets in return differ in signedness WOResponse.m:98: warning: pointer targets in return differ in signedness WOResponse.m:98: warning: pointer targets in return differ in signedness WOResponse.m:99: warning: pointer targets in return differ in signedness WOResponse.m: In function '-[WOResponse disableClientCaching]': WOResponse.m:133: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOResponse.m:136: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness Compiling file WORunLoop.m ... Compiling file WOSession.m ... WOSession.m: In function '-[WOSession application]': WOSession.m:203: warning: conflicting types for '-(WOApplication *)application' ./NGObjWeb/WOSession.h:140: warning: previous declaration of '-(id)application' WOSession.m: In function '-[WOSession restorePageForContextID:]': WOSession.m:232: warning: conflicting types for '-(WOComponent *)restorePageForContextID:(NSString *)_contextID' ./NGObjWeb/WOSession.h:110: warning: previous declaration of '-(id)restorePageForContextID:(NSString *)_idx' Compiling file WOSessionStore.m ... WOSessionStore.m: In function '-[WOSessionStore checkOutSessionWithSessionID:request:]': WOSessionStore.m:54: warning: conflicting types for '-(WOSession *)checkOutSessionWithSessionID:(NSString *)_sid request:(WORequest *)_request' ./NGObjWeb/WOSessionStore.h:44: warning: previous declaration of '-(id)checkOutSessionWithSessionID:(NSString *)_id request:(WORequest *)_request' WOSessionStore.m: In function '-[WOSessionStore restoreSessionWithID:]': WOSessionStore.m:90: warning: conflicting types for '-(WOSession *)restoreSessionWithID:(NSString *)_sid' ./NGObjWeb/WOSessionStore.h:57: warning: previous declaration of '-(id)restoreSessionWithID:(NSString *)_id' WOSessionStore.m: In function '-[WOSessionStore restoreSessionWithID:request:]': WOSessionStore.m:102: warning: conflicting types for '-(WOSession *)restoreSessionWithID:(NSString *)_sid request:(WORequest *)_request' ./NGObjWeb/WOSessionStore.h:50: warning: previous declaration of '-(id)restoreSessionWithID:(NSString *)_id request:(WORequest *)_request' Compiling file WOStatisticsStore.m ... WOStatisticsStore.m:53: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:54: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:54: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:54: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:54: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:54: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:54: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:55: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:55: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:55: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:55: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:55: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m:56: warning: pointer targets in initialization differ in signedness WOStatisticsStore.m: In function 'mkdbl': WOStatisticsStore.m:104: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOStatisticsStore.m:105: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WOStatisticsStore.m: In function '-[WOStatisticsStore formatDescription:forResponse:inContext:]': WOStatisticsStore.m:405: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOStatisticsStore.m:406: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOStatisticsStore.m:429: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WOStatisticsStore.m:430: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness Compiling file _WOStringTable.m ... Compiling file WOElementID.m ... Compiling file NGHttp+WO.m ... NGHttp+WO.m: In function '-[NGHttpRequest(WOSupport) _decodeFormContentURLParameters:]': NGHttp+WO.m:365: warning: pointer targets in passing argument 1 of 'NGDecodeUrlFormParameters' differ in signedness Compiling file NGObjWeb.m ... Compiling file OWViewRequestHandler.m ... Compiling file OWResourceManager.m ... OWResourceManager.m: In function '-[OWResourceManager pageWithName:languages:]': OWResourceManager.m:1115: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name languages:(NSArray *)_languages' ./NGObjWeb/OWResourceManager.h:95: warning: previous declaration of '-(id)pageWithName:(NSString *)_name languages:(NSArray *)_langs' Compiling file SNSConnection.m ... Compiling file UnixSignalHandler.m ... Compiling file WEClientCapabilities.m ... WEClientCapabilities.m: In function '-[WEClientCapabilities initWithRequest:]': WEClientCapabilities.m:108: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:111: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:116: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:116: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:125: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:126: warning: pointer targets in passing argument 1 of 'index' differ in signedness WEClientCapabilities.m:126: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:128: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:131: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:132: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:133: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:138: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:138: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:143: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:154: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:158: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:162: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:166: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:170: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:174: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:174: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:183: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:184: warning: pointer targets in passing argument 1 of 'index' differ in signedness WEClientCapabilities.m:184: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:186: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:189: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:189: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:193: warning: pointer targets in passing argument 1 of 'index' differ in signedness WEClientCapabilities.m:193: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:195: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:196: warning: pointer targets in passing argument 1 of 'index' differ in signedness WEClientCapabilities.m:196: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:198: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:202: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:202: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:206: warning: pointer targets in passing argument 1 of 'index' differ in signedness WEClientCapabilities.m:206: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:208: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:209: warning: pointer targets in passing argument 1 of 'index' differ in signedness WEClientCapabilities.m:209: warning: pointer targets in assignment differ in signedness WEClientCapabilities.m:211: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WEClientCapabilities.m:215: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:219: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:223: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:227: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:231: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:235: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:235: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:239: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:239: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:243: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:247: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:251: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:255: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:259: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:263: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:267: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:271: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:275: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:279: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:283: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:287: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:291: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:295: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:299: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:303: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:307: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:309: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:313: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:324: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:327: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:330: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:333: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:336: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:339: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:342: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:358: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:358: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:360: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:362: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:364: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:371: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:373: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:373: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:375: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:375: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WEClientCapabilities.m:375: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness Compiling file WOAdaptor.m ... Compiling file WOApplicationMain.m ... Compiling file WOChildComponentReference.m ... Compiling file WOComponentRequestHandler.m ... Compiling file WOCookie.m ... Compiling file WOCoreApplication+Bundle.m ... Compiling file WODirectAction.m ... WODirectAction.m: In function '-[WODirectAction session]': WODirectAction.m:74: warning: conflicting types for '-(WOSession *)session' ./NGObjWeb/WODirectAction.h:42: warning: previous declaration of '-(id)session' WODirectAction.m: In function '-[WODirectAction existingSession]': WODirectAction.m:78: warning: conflicting types for '-(WOSession *)existingSession' ./NGObjWeb/WODirectAction.h:43: warning: previous declaration of '-(id)existingSession' WODirectAction.m: In function '-[WODirectAction pageWithName:]': WODirectAction.m:182: warning: conflicting types for '-(WOComponent *)pageWithName:(NSString *)_name' ./NGObjWeb/WODirectAction.h:56: warning: previous declaration of '-(id)pageWithName:(NSString *)_name' Compiling file WODirectActionRequestHandler.m ... Compiling file WODisplayGroup.m ... Compiling file WODynamicElement.m ... WODynamicElement.m: In function '-[WODynamicElement template]': WODynamicElement.m:221: warning: conflicting types for '-(WOElement *)template' ./NGObjWeb/WODynamicElement.h:62: warning: previous declaration of '-(id)template' WODynamicElement.m: In function '-[WODynamicElement appendExtraAttributesToResponse:inContext:]': WODynamicElement.m:263: warning: pointer targets in passing argument 3 of '_response->addCStr' differ in signedness Compiling file WOFileSessionStore.m ... Compiling file WOHTTPConnection.m ... Compiling file WOHTTPURLHandle.m ... Compiling file WOMailDelivery.m ... Compiling file WOMessage+XML.m ... Compiling file WOMessage+Validation.m ... Compiling file WOPageRequestHandler.m ... Compiling file WOProxyRequestHandler.m ... WOProxyRequestHandler.m: In function '-[WOProxyRequestHandler logMessage:prefix:ext:]': WOProxyRequestHandler.m:104: warning: pointer targets in assignment differ in signedness WOProxyRequestHandler.m:111: warning: pointer targets in assignment differ in signedness Compiling file WORequestHandler.m ... Compiling file WOResourceRequestHandler.m ... Compiling file WOServerSessionStore.m ... Compiling file WOSimpleHTTPParser.m ... WOSimpleHTTPParser.m: In function 'stringForHeaderName': WOSimpleHTTPParser.m:180: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOSimpleHTTPParser.m:189: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:190: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:193: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:194: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:195: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:200: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:203: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:206: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:209: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:212: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:217: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:218: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:219: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:220: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:221: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:226: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:229: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:232: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:235: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:238: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:241: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:251: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:252: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:253: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:254: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:256: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:264: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:267: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:268: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:269: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:271: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:273: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:276: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:278: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:281: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:285: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:286: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:291: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:292: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:296: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:297: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:301: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:303: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:305: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:310: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:314: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:315: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:316: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:320: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:321: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:327: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:329: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:337: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:344: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:351: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:358: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:362: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:366: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:373: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:374: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:375: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:376: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:380: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:384: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:385: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:390: warning: pointer targets in passing argument 1 of 'strstr' differ in signedness WOSimpleHTTPParser.m:392: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:394: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:396: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:398: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:400: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:402: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:404: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness WOSimpleHTTPParser.m:409: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:413: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:416: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:418: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:420: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:422: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:438: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOSimpleHTTPParser.m: In function '-[WOSimpleHTTPParser parseHeader]': WOSimpleHTTPParser.m:453: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOSimpleHTTPParser.m:469: warning: pointer targets in passing argument 1 of 'index' differ in signedness WOSimpleHTTPParser.m:469: warning: pointer targets in assignment differ in signedness WOSimpleHTTPParser.m:483: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOSimpleHTTPParser.m:492: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOSimpleHTTPParser.m:495: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness WOSimpleHTTPParser.m: In function '-[WOSimpleHTTPParser processContinueExpectation]': WOSimpleHTTPParser.m:639: warning: pointer targets in initialization differ in signedness WOSimpleHTTPParser.m:643: warning: pointer targets in initialization differ in signedness WOSimpleHTTPParser.m:659: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness WOSimpleHTTPParser.m: In function '-[WOSimpleHTTPParser parseRequest]': WOSimpleHTTPParser.m:700: warning: pointer targets in passing argument 1 of 'index' differ in signedness WOSimpleHTTPParser.m:700: warning: pointer targets in assignment differ in signedness WOSimpleHTTPParser.m:709: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:710: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:712: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:713: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:714: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:716: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:718: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:720: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:722: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:724: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:725: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:727: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:729: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:731: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:732: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:733: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:734: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:735: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:737: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:739: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:740: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:742: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:743: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:744: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:746: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:754: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WOSimpleHTTPParser.m:769: warning: pointer targets in passing argument 1 of 'index' differ in signedness WOSimpleHTTPParser.m:769: warning: pointer targets in assignment differ in signedness WOSimpleHTTPParser.m:773: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WOSimpleHTTPParser.m:777: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WOSimpleHTTPParser.m:787: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:789: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:793: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOSimpleHTTPParser.m: In function '-[WOSimpleHTTPParser parseResponse]': WOSimpleHTTPParser.m:868: warning: pointer targets in passing argument 1 of 'index' differ in signedness WOSimpleHTTPParser.m:868: warning: pointer targets in assignment differ in signedness WOSimpleHTTPParser.m:874: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:876: warning: pointer targets in passing argument 1 of 'strcasecmp' differ in signedness WOSimpleHTTPParser.m:879: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WOSimpleHTTPParser.m:890: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness Compiling file WOStats.m ... Compiling file WOWatchDogApplicationMain.m ... Linking library libNGObjWeb ... Making all for bundle SoCore... Creating SoCore.sxp/Contents/MacOS... Compiling file SoCoreProduct.m ... Linking bundle SoCore ... Creating SoCore.sxp/Contents/Resources... Creating SoCore.sxp/Contents/Info.plist... Copying resources into the bundle wrapper... Making all in subprojects of tool wod... Making all for subproject Templates... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject Associations... make[4]: Nothing to be done for `internal-subproject-all'. Making all for tool wod... Compiling file wod.m ... Linking tool wod ... Making all in WEExtensions... Making all in subprojects of library libWEExtensions... Making all for subproject WETableView... Compiling file WETableCell.m ... Compiling file WETableData.m ... Compiling file WETableHeader.m ... Compiling file WETableView.m ... Compiling file WETableView+Grouping.m ... WETableView+Grouping.m: In function '-[WETableView(Grouping) _appendGroupTitle:inContext:infos:actionUrl:rowSpan:groupId:]': WETableView+Grouping.m:71: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness Compiling file WETableViewState.m ... Compiling file WETableViewConfigObject.m ... Compiling file WETableViewColorConfig.m ... Compiling file WETableViewIconConfig.m ... Compiling file WETableViewLabelConfig.m ... Compiling file WETableViewButtonMode.m ... Compiling file WETableViewFooterMode.m ... Compiling file WETableViewGroupMode.m ... Compiling file WETableViewTitleMode.m ... Linking subproject WETableView ... Making all for library libWEExtensions... Compiling file JSClipboard.m ... Compiling file JSShiftClick.m ... Compiling file WEBrowser.m ... Compiling file WECalendarField.m ... Compiling file WECollapsibleComponentContent.m ... Compiling file WEComponentValue.m ... Compiling file WEContextConditional.m ... Compiling file WEContextKey.m ... Compiling file WEDateField.m ... Compiling file WEDragContainer.m ... Compiling file WEDropContainer.m ... Compiling file WEMonthOverview.m ... WEMonthOverview.m: In function '-[WOContext(WEMonthOverview) monthOverviewQueryObjects]': WEMonthOverview.m:149: warning: conflicting types for '-(NSArray *)monthOverviewQueryObjects' WEMonthOverview.m:107: warning: previous declaration of '-(NSMutableArray *)monthOverviewQueryObjects' WEMonthOverview.m: In function 'retStrForInt': WEMonthOverview.m:193: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WEMonthOverview.m:194: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WEMonthOverview.m: In function '-[WEMonthOverview takeValuesFromRequest:inContext:]': WEMonthOverview.m:900: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WEMonthOverview.m:901: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness WEMonthOverview.m:911: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WEMonthOverview.m:912: warning: pointer targets in passing argument 1 of 'initWithCString:' differ in signedness WEMonthOverview.m:922: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WEMonthOverview.m:923: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file WEPageView.m ... WEPageView.m: In function '-[WEPageView appendToResponse:inContext:]': WEPageView.m:553: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WEPageView.m: In function '-[WEPageItem appendHead:toResponse:inContext:]': WEPageView.m:756: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WEPageView.m:757: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file WEPageLink.m ... WEPageLink.m: In function '-[WEPageLink appendToResponse:inContext:]': WEPageLink.m:166: warning: pointer targets in passing argument 1 of 'appendContentCString:' differ in signedness WEPageLink.m:179: warning: pointer targets in passing argument 1 of 'appendContentCString:' differ in signedness Compiling file WERichString.m ... Compiling file WESwitch.m ... Compiling file WETabItem.m ... Compiling file WETabView.m ... Compiling file WETableCalcMatrix.m ... WETableCalcMatrix.m: In function '-[WETableCalcMatrix spansOfRow:]': WETableCalcMatrix.m:725: warning: conflicting types for '-(id)spansOfRow:(unsigned int)_y' WETableCalcMatrix.h:93: warning: previous declaration of '-(NSArray *)spansOfRow:(unsigned int)_y' Compiling file WETableMatrix.m ... Compiling file WETableMatrixContent.m ... Compiling file WETableMatrixLabel.m ... Compiling file WETimeField.m ... Compiling file WETreeView.m ... Compiling file WETreeHeader.m ... Compiling file WETreeData.m ... Compiling file WETreeMatrixElement.m ... WETreeMatrixElement.m: In function '-[_WETreeMatrixElement colspanAsString]': WETreeMatrixElement.m:107: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness WETreeMatrixElement.m:108: warning: pointer targets in passing argument 1 of 'stringWithCString:' differ in signedness Compiling file WEWeekColumnView.m ... Compiling file WEWeekOverview.m ... Compiling file WExExtElemBuilder.m ... Compiling file WExCalElemBuilder.m ... Compiling file WExDnDElemBuilder.m ... Compiling file WEEpozEditor.m ... Compiling file WEQualifierConditional.m ... Compiling file WERedirect.m ... Linking library libWEExtensions ... Making all for bundle WEExtensions... Creating WEExtensions.wox/Contents/MacOS... Compiling file WEExtensionsBundle.m ... Linking bundle WEExtensions ... /usr/bin/ld: warning can't open dynamic library: libNGObjWeb_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGMime_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGStreams_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGExtensions_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libEOControl_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libXmlRpc_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libDOM_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libSaxObjC_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) Creating WEExtensions.wox/Contents/Resources... Creating WEExtensions.wox/Contents/Info.plist... Making all in WOExtensions... Making all for library libWOExtensions... Compiling file WOxExtElemBuilder.m ... Compiling file compat.m ... Compiling file WOKeyValueConditional.m ... Compiling file WORedirect.m ... Compiling file WOTabPanel.m ... Compiling file WOTable.m ... Compiling file JSAlertPanel.m ... Compiling file JSConfirmPanel.m ... Compiling file JSImageFlyover.m ... Compiling file JSTextFlyover.m ... Compiling file JSValidatedField.m ... Compiling file JSModalWindow.m ... Compiling file WOCollapsibleComponentContent.m ... Compiling file WODictionaryRepetition.m ... Compiling file WOThresholdColoredNumber.m ... Compiling file WORadioButtonMatrix.m ... Compiling file WOCheckBoxMatrix.m ... Linking library libWOExtensions ... Making all for bundle WOExtensions... Creating WOExtensions.wox/Contents/MacOS... Compiling file WOExtensionsBuilderModule.m ... Linking bundle WOExtensions ... /usr/bin/ld: warning can't open dynamic library: libNGObjWeb_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGMime_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGStreams_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGExtensions_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libEOControl_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libXmlRpc_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libDOM_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libSaxObjC_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) Creating WOExtensions.wox/Contents/Resources... Creating WOExtensions.wox/Contents/Info.plist... Making all in WOXML... Making all for library libWOXML... Compiling file WOXMLDecoder.m ... Compiling file WOXMLMapDecoder.m ... WOXMLMapDecoder.m: In function '-[WOXMLMapDecoder initWithModel:]': WOXMLMapDecoder.m:33: warning: conflicting types for '-(id)initWithModel:(id)_model' WOXMLMapDecoder.h:34: warning: previous declaration of '-(id)initWithModel:(WOXMLMappingModel *)_model' Compiling file WOXMLMappingEntity.m ... Compiling file WOXMLMappingModel.m ... Compiling file WOXMLMappingProperty.m ... Compiling file WOXMLSaxModelHandler.m ... Linking library libWOXML ... Making all in SoOFS... Making all for library libSoOFS... Compiling file OFSBaseObject.m ... Compiling file OFSFactoryContext.m ... Compiling file OFSFactoryRegistry.m ... Compiling file OFSFile.m ... Compiling file OFSFileRenderer.m ... Compiling file OFSFolder+SoDAV.m ... Compiling file OFSFolder.m ... Compiling file OFSFolderClassDescription.m ... Compiling file OFSImage.m ... Compiling file OFSPropertyListObject.m ... Compiling file OFSResourceManager.m ... Compiling file OFSWebMethod.m ... Compiling file OFSWebMethodRenderer.m ... Compiling file OFSWebTemplate.m ... Compiling file OFSWebDocument.m ... Compiling file OFSHttpPasswd.m ... Compiling file OFSChangeLog.m ... Compiling file OFSFolderDataSource.m ... Linking library libSoOFS ... Making all for bundle SoOFS... Creating SoOFS.sxp/Contents/MacOS... Compiling file SoOFSProduct.m ... Linking bundle SoOFS ... /usr/bin/ld: warning can't open dynamic library: libNGObjWeb_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGMime_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGStreams_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libNGExtensions_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libEOControl_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libXmlRpc_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libDOM_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) /usr/bin/ld: warning can't open dynamic library: libSaxObjC_d.dylib.4.4 (checking for undefined symbols may be affected) (No such file or directory, errno = 2) Creating SoOFS.sxp/Contents/Resources... Creating SoOFS.sxp/Contents/Info.plist... Copying resources into the bundle wrapper... Making all for tool sope-4.4... Compiling file sope.m ... Linking tool sope-4.4 ... Making all in NGXmlRpc... Making all for library libNGXmlRpc... Compiling file EOFetchSpecification+XmlRpcCoding.m ... Compiling file EOKeyGlobalID+XmlRpcCoding.m ... Compiling file EONull+XmlRpcCoding.m ... Compiling file EOQualifier+XmlRpcCoding.m ... Compiling file EOSortOrdering+XmlRpcCoding.m ... Compiling file NGAsyncResultProxy.m ... Compiling file NGXmlRpcAction.m ... NGXmlRpcAction.m: In function '-[NGXmlRpcAction session]': NGXmlRpcAction.m:167: warning: conflicting types for '-(WOSession *)session' ../NGXmlRpc/NGXmlRpcAction.h:49: warning: previous declaration of '-(id)session' NGXmlRpcAction.m: In function '-[NGXmlRpcAction existingSession]': NGXmlRpcAction.m:171: warning: conflicting types for '-(WOSession *)existingSession' ../NGXmlRpc/NGXmlRpcAction.h:50: warning: previous declaration of '-(id)existingSession' Compiling file NGXmlRpcClient.m ... Compiling file NGXmlRpcInvocation.m ... Compiling file NGXmlRpcMethodSignature.m ... Compiling file NGXmlRpcRequestHandler.m ... Compiling file NSObject+Reflection.m ... Compiling file WODirectAction+XmlRpc.m ... WODirectAction+XmlRpc.m: In function '-[WODirectAction(XmlRpc) RPC2Action]': WODirectAction+XmlRpc.m:291: warning: conflicting types for '-(id)RPC2Action' WODirectAction+XmlRpc.h:48: warning: previous declaration of '-(id )RPC2Action' Compiling file WODirectAction+XmlRpcIntrospection.m ... Compiling file WOMessage+XmlRpcCoding.m ... Compiling file WORequest+XmlRpcCoding.m ... Compiling file WOResponse+XmlRpcCoding.m ... Compiling file XmlRpcMethodCall+WO.m ... Compiling file XmlRpcMethodResponse+WO.m ... Compiling file NGXmlRpcAction+Registry.m ... Linking library libNGXmlRpc ... Making all in sope-ldap... Making all in NGLdap... Making all for library libNGLdap... Compiling file EOQualifier+LDAP.m ... Compiling file NSString+DN.m ... Compiling file NGLdapAttribute.m ... NGLdapAttribute.m: In function '-[NGLdapAttribute addValue:]': NGLdapAttribute.m:107: warning: conflicting types for '-(void)addValue:(id)_value' NGLdapAttribute.h:55: warning: previous declaration of '-(void)addValue:(NSData *)_value' Compiling file NGLdapEntry.m ... Compiling file NGLdapSearchResultEnumerator.m ... Compiling file NGLdapModification.m ... Compiling file NGLdapConnection.m ... Compiling file NGLdapDataSource.m ... Compiling file NGLdapURL.m ... NGLdapURL.m: In function 'NGEscapeUrlBuffer': NGLdapURL.m:116: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness NGLdapURL.m: In function 'NGEscapeUrlString': NGLdapURL.m:135: warning: pointer targets in passing argument 1 of 'NGContainsUrlInvalidCharacters' differ in signedness NGLdapURL.m:139: warning: pointer targets in passing argument 1 of 'NGEscapeUrlBuffer' differ in signedness NGLdapURL.m:139: warning: pointer targets in passing argument 2 of 'NGEscapeUrlBuffer' differ in signedness Compiling file NGLdapGlobalID.m ... Compiling file NGLdapFileManager.m ... Linking library libNGLdap ... Making all in samples... Making all for tool ldapls... Compiling file ldapls.m ... Linking tool ldapls ... Making all for tool ldap2dsml... Compiling file ldap2dsml.m ... Linking tool ldap2dsml ... Making all for tool ldapchkpwd... Compiling file ldapchkpwd.m ... Linking tool ldapchkpwd ... Making all in sope-ical... Making all in versitSaxDriver... Making all for bundle versitSaxDriver... Creating versitSaxDriver.sax/Contents/MacOS... Compiling file VSSaxDriver.m ... Compiling file VSiCalSaxDriver.m ... Compiling file VSvCardSaxDriver.m ... Compiling file VSStringFormatter.m ... Linking bundle versitSaxDriver ... Creating versitSaxDriver.sax/Contents/Resources... Creating versitSaxDriver.sax/Contents... Creating versitSaxDriver.sax/Contents/Info.plist... Copying resources into the bundle wrapper... Making all in NGiCal... Making all for library libNGiCal... Compiling file NSCalendarDate+ICal.m ... Compiling file iCalDateHolder.m ... Compiling file iCalAttachment.m ... Compiling file iCalObject.m ... Compiling file iCalEntityObject.m ... Compiling file iCalRepeatableEntityObject.m ... Compiling file iCalCalendar.m ... Compiling file iCalToDo.m ... Compiling file iCalJournal.m ... Compiling file iCalEvent.m ... Compiling file iCalFreeBusy.m ... Compiling file iCalPerson.m ... Compiling file iCalAlarm.m ... Compiling file iCalDuration.m ... Compiling file iCalTrigger.m ... Compiling file iCalDataSource.m ... Compiling file iCalEventChanges.m ... Compiling file iCalRenderer.m ... Compiling file iCalRecurrenceRule.m ... Compiling file iCalRecurrenceCalculator.m ... Compiling file NGVCard.m ... Compiling file NGVCardAddress.m ... Compiling file NGVCardStrArrayValue.m ... Compiling file NGVCardName.m ... Compiling file NGVCardOrg.m ... Compiling file NGVCardPhone.m ... Compiling file NGVCardSaxHandler.m ... Compiling file NGVCardSimpleValue.m ... Compiling file NGVCardValue.m ... Linking library libNGiCal ... Making all in sope-gdl1... Making all in GDLAccess... Making all in subprojects of library libGDLAccess... Making all for subproject FoundationExt... Compiling file DefaultScannerHandler.m ... Compiling file PrintfFormatScanner.m ... Compiling file FormatScanner.m ... In file included from ../common.h:44, from FormatScanner.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Linking subproject FoundationExt ... Making all for library libGDLAccess... Compiling file eoaccess.m ... Compiling file EOAdaptor.m ... In file included from common.h:44, from EOAdaptor.m:34: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOAdaptorChannel.m ... In file included from common.h:44, from EOAdaptorChannel.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOAdaptorContext.m ... In file included from EOAdaptorContext.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOArrayProxy.m ... In file included from common.h:44, from EOArrayProxy.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOAttribute.m ... In file included from common.h:44, from EOAttribute.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOAttribute.m: In function '-[EOAttribute(PropertyListCoding) encodeIntoPropertyList:]': EOAttribute.m:545: warning: 'NSTimeZone' may not respond to '-timeZoneName' EOAttribute.m:545: warning: (Messages without a matching method signature EOAttribute.m:545: warning: will be assumed to return 'id' and accept EOAttribute.m:545: warning: '...' as arguments.) EOAttribute.m:549: warning: 'NSTimeZone' may not respond to '-timeZoneName' Compiling file EOAttributeOrdering.m ... In file included from common.h:44, from EOAttributeOrdering.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOCustomValues.m ... In file included from common.h:44, from EOCustomValues.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EODatabase.m ... In file included from common.h:44, from EODatabase.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EODatabase.m: In function '+[EODatabase forgetObject:]': EODatabase.m:228: warning: 'EOObjectUniquer' may not respond to '+forgetObject:' EODatabase.m:228: warning: (Messages without a matching method signature EODatabase.m:228: warning: will be assumed to return 'id' and accept EODatabase.m:228: warning: '...' as arguments.) Compiling file EODatabaseChannel.m ... In file included from common.h:44, from EODatabaseChannel.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EODatabaseContext.m ... In file included from common.h:44, from EODatabaseContext.m:30: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOEntity.m ... In file included from common.h:44, from EOEntity.m:30: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOExpressionArray.m ... In file included from common.h:44, from EOExpressionArray.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOExpressionArray.m: In function '+[EOExpressionArray parseExpression:entity:replacePropertyReferences:relationshipPaths:]': EOExpressionArray.m:150: warning: pointer targets in passing argument 1 of 'getCString:' differ in signedness EOExpressionArray.m:170: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness EOExpressionArray.m:206: warning: pointer targets in passing argument 1 of 'stringWithCString:length:' differ in signedness Compiling file EOFExceptions.m ... In file included from common.h:44, from EOFExceptions.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EODatabaseFault.m ... In file included from common.h:44, from EODatabaseFault.m:37: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EODatabaseFaultResolver.m ... In file included from common.h:44, from EODatabaseFaultResolver.m:30: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOKeySortOrdering.m ... In file included from common.h:44, from EOKeySortOrdering.m:31: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOModel.m ... In file included from common.h:44, from EOModel.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOModel.m: In function '-[EOModel initWithPropertyList:]': EOModel.m:131: warning: conflicting types for '-(id)initWithPropertyList:(NSDictionary *)propertyList' EOModel.h:59: warning: previous declaration of '-(id)initWithPropertyList:(id)propertyList' Compiling file EOObjectUniquer.m ... In file included from common.h:44, from EOObjectUniquer.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOPrimaryKeyDictionary.m ... In file included from common.h:44, from EOPrimaryKeyDictionary.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EORelationship.m ... In file included from common.h:44, from EORelationship.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOGenericRecord.m ... In file included from common.h:44, from EOGenericRecord.m:31: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOModelGroup.m ... In file included from common.h:44, from EOModelGroup.m:31: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOEntityClassDescription.m ... In file included from common.h:44, from EOEntityClassDescription.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOAdaptorDataSource.m ... In file included from common.h:44, from EOAdaptorDataSource.m:40: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOAdaptorDataSource.m: In function '-[EOAdaptorDataSource deleteObject:]': EOAdaptorDataSource.m:881: warning: conflicting types for '-(void)deleteObject:(NSDictionary *)_obj' ../GDLAccess/EOAdaptorDataSource.h:94: warning: previous declaration of '-(void)deleteObject:(id)_obj' EOAdaptorDataSource.m: In function '-[EOAdaptorDataSource(Private) _mapAttrsWithValues:tableName:channel:]': EOAdaptorDataSource.m:1150: warning: conflicting types for '-(NSDictionary *)_mapAttrsWithValues:(id)_keyValues tableName:(NSString *)_tableName channel:(EOAdaptorChannel *)_adChan' EOAdaptorDataSource.m:71: warning: previous declaration of '-(NSDictionary *)_mapAttrsWithValues:(NSDictionary *)_keyValues tableName:(NSString *)_tableName channel:(EOAdaptorChannel *)_adChan' Compiling file EOAdaptorChannel+Attributes.m ... In file included from common.h:44, from EOAdaptorChannel+Attributes.m:27: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOAdaptorOperation.m ... In file included from common.h:44, from EOAdaptorOperation.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOAdaptorGlobalID.m ... In file included from common.h:44, from EOAdaptorGlobalID.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file NSObject+EONullInit.m ... In file included from common.h:44, from NSObject+EONullInit.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOEntity+Factory.m ... In file included from common.h:44, from EOEntity+Factory.m:31: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EORecordDictionary.m ... Compiling file EOFault.m ... In file included from common.h:44, from EOFault.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOFault.m:43:4: warning: #warning TODO: implement for NeXT/Apple runtime! EOFault.m:132:4: warning: #warning TODO: add complete implementation for NeXT/Apple runtime! EOFault.m:159:4: warning: #warning TODO: add complete implementation for Apple/NeXT runtime! EOFault.m:170:4: warning: #warning TODO: add complete implementation for Apple/NeXT runtime! Compiling file EOFaultHandler.m ... In file included from common.h:44, from EOFaultHandler.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOFaultHandler.m:72:4: warning: #warning TODO: add complete implementation for Apple/NeXT runtime! EOFaultHandler.m:85:4: warning: #warning TODO: add implementation for NeXT/Apple runtime! EOFaultHandler.m:93:4: warning: #warning TODO: use NeXT/Apple runtime function EOFaultHandler.m:113:4: warning: #warning TODO: implement on NeXT/Apple runtime! EOFaultHandler.m:132:4: warning: #warning TODO: add implementation for NeXT/Apple runtime! EOFaultHandler.m:143:4: warning: #warning TODO: add implementation for NeXT/Apple runtime! Compiling file EOAndQualifier+SQL.m ... In file included from common.h:44, from EOAndQualifier+SQL.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOKeyComparisonQualifier+SQL.m ... In file included from common.h:44, from EOKeyComparisonQualifier+SQL.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOKeyValueQualifier+SQL.m ... In file included from common.h:44, from EOKeyValueQualifier+SQL.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EONotQualifier+SQL.m ... In file included from common.h:44, from EONotQualifier+SQL.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOOrQualifier+SQL.m ... In file included from common.h:44, from EOOrQualifier+SQL.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOQualifier+SQL.m ... In file included from common.h:44, from EOQualifier+SQL.m:30: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOSQLQualifier.m ... In file included from common.h:44, from EOSQLQualifier.m:30: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOSQLExpression.m ... In file included from common.h:44, from EOSQLExpression.m:28: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. EOSQLExpression.m: In function '-[EOSQLExpression joinExpressionForRelationshipPaths:]': EOSQLExpression.m:425: warning: conflicting types for '-(id)joinExpressionForRelationshipPaths:(NSArray *)relationshipPaths' EOSQLExpression.h:107: warning: previous declaration of '-(NSString *)joinExpressionForRelationshipPaths:(NSArray *)relationshipPaths' Compiling file EOSelectSQLExpression.m ... In file included from common.h:44, from EOSelectSQLExpression.m:30: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOQuotedExpression.m ... In file included from common.h:44, from EOQuotedExpression.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Compiling file EOQualifierScanner.m ... In file included from common.h:44, from EOQualifierScanner.m:29: /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:6:2: warning: #warning This header file is obsolete. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:7:2: warning: #warning #import the individual headers (that you need) listed in this header instead. /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:8:2: warning: #warning This header may soon have different content which may be bad for your project, /System/Library/Frameworks/Foundation.framework/Headers/NSUtilities.h:9:2: warning: #warning or this header will be removed completely December 1, 2002. Linking library libGDLAccess ... Making all for tool load-EOAdaptor... Compiling file load-EOAdaptor.m ... Linking tool load-EOAdaptor ... Making all for tool connect-EOAdaptor... Compiling file connect-EOAdaptor.m ... Linking tool connect-EOAdaptor ... Making all in PostgreSQL... Making all for bundle PostgreSQL... Creating PostgreSQL.gdladaptor/Contents/MacOS... Compiling file PGConnection.m ... Compiling file PostgreSQL72Expression.m ... Compiling file PostgreSQL72Adaptor.m ... Compiling file PostgreSQL72Context.m ... Compiling file PostgreSQL72Channel.m ... Compiling file PostgreSQL72Channel+Model.m ... Compiling file PostgreSQL72Exception.m ... Compiling file PostgreSQL72Values.m ... Compiling file NSString+PostgreSQL72.m ... Compiling file EOAttribute+PostgreSQL72.m ... Compiling file NSString+PGVal.m ... Compiling file NSData+PGVal.m ... Compiling file NSCalendarDate+PGVal.m ... NSCalendarDate+PGVal.m: In function '+[NSCalendarDate(PostgreSQL72Values) valueFromCString:length:postgreSQLType:attribute:adaptorChannel:]': NSCalendarDate+PGVal.m:46: warning: pointer targets in passing argument 1 of 'strncpy' differ in signedness NSCalendarDate+PGVal.m:53: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:58: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:61: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:65: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:66: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:67: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:68: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:69: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness NSCalendarDate+PGVal.m:70: warning: pointer targets in passing argument 1 of 'atoi' differ in signedness Compiling file NSNumber+PGVal.m ... Linking bundle PostgreSQL ... Creating PostgreSQL.gdladaptor/Contents/Resources... Creating PostgreSQL.gdladaptor/Contents... Creating PostgreSQL.gdladaptor/Contents/Info.plist... Copying resources into the bundle wrapper... Making all in xmlrpc_call... Making all for tool xmlrpc_call... Compiling file xmlrpc_call.m ... Linking tool xmlrpc_call ... ps:/usr/local/sope sysadmin$ ###################################### ps:/usr/local/sope sysadmin$ sudo make install Password: Making all in sope-xml... Making all in SaxObjC... Making build-headers for framework SaxObjC... Making all for library libSaxObjC... make[3]: Nothing to be done for `internal-library-all'. Making all for framework SaxObjC... make[3]: Nothing to be done for `internal-framework-all'. Making all in DOM... Making build-headers for framework DOM... Making all for library libDOM... make[3]: Nothing to be done for `internal-library-all'. Making all for framework DOM... Linking framework DOM ... ld: can't locate framework for: -framework SaxObjC /usr/bin/libtool: internal link edit command failed Making all in libxmlSAXDriver... Making all for bundle libxmlSAXDriver... Copying resources into the bundle wrapper... Making all in STXSaxDriver... Making all in subprojects of bundle STXSaxDriver... Making all for subproject ExtraSTX... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject Model... make[4]: Nothing to be done for `internal-subproject-all'. Making all for bundle STXSaxDriver... Copying resources into the bundle wrapper... Copying resources from subprojects into the bundle wrapper... Making all in XmlRpc... Making build-headers for framework XmlRpc... Making all for library libXmlRpc... make[3]: Nothing to be done for `internal-library-all'. Making all for framework XmlRpc... Linking framework XmlRpc ... ld: can't locate framework for: -framework SaxObjC /usr/bin/libtool: internal link edit command failed Making all in samples... Making all for tool saxxml... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool xmln... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool rss2plist1... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool rss2plist2... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool rssparse... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool domxml... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool testqp... make[3]: Nothing to be done for `internal-tool-all'. Making all in sope-core... Making all in EOControl... Making all for library libEOControl... make[3]: Nothing to be done for `internal-library-all'. Making all in NGExtensions... Making all in subprojects of library libNGExtensions... Making all for subproject FdExt... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject EOExt... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject XmlExt... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject NGRuleEngine... make[4]: Nothing to be done for `internal-subproject-all'. Making all for library libNGExtensions... make[3]: Nothing to be done for `internal-library-all'. Making all in NGStreams... Making all for library libNGStreams... make[3]: Nothing to be done for `internal-library-all'. Making all in sope-mime... Making all in subprojects of library libNGMime... Making all for subproject NGMime... make[3]: Nothing to be done for `internal-subproject-all'. Making all for subproject NGMail... make[3]: Nothing to be done for `internal-subproject-all'. Making all for subproject NGImap4... make[3]: Nothing to be done for `internal-subproject-all'. Making all for library libNGMime... make[2]: Nothing to be done for `internal-library-all'. Making all in sope-appserver... Making all in NGObjWeb... Making all in subprojects of library libNGObjWeb... Making all for subproject NGHttp... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject Associations... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject Templates... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject DynamicElements... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject WOHttpAdaptor... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject SoObjects... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject WebDAV... make[4]: Nothing to be done for `internal-subproject-all'. Making all for library libNGObjWeb... make[3]: Nothing to be done for `internal-library-all'. Making all for bundle SoCore... Copying resources into the bundle wrapper... Making all in subprojects of tool wod... Making all for subproject Templates... make[4]: Nothing to be done for `internal-subproject-all'. Making all for subproject Associations... make[4]: Nothing to be done for `internal-subproject-all'. Making all for tool wod... make[3]: Nothing to be done for `internal-tool-all'. Making all in WEExtensions... Making all in subprojects of library libWEExtensions... Making all for subproject WETableView... make[4]: Nothing to be done for `internal-subproject-all'. Making all for library libWEExtensions... make[3]: Nothing to be done for `internal-library-all'. Making all for bundle WEExtensions... Making all in WOExtensions... Making all for library libWOExtensions... make[3]: Nothing to be done for `internal-library-all'. Making all for bundle WOExtensions... Making all in WOXML... Making all for library libWOXML... make[3]: Nothing to be done for `internal-library-all'. Making all in SoOFS... Making all for library libSoOFS... make[3]: Nothing to be done for `internal-library-all'. Making all for bundle SoOFS... Copying resources into the bundle wrapper... Making all for tool sope-4.4... make[3]: Nothing to be done for `internal-tool-all'. Making all in NGXmlRpc... Making all for library libNGXmlRpc... make[3]: Nothing to be done for `internal-library-all'. Making all in sope-ldap... Making all in NGLdap... Making all for library libNGLdap... make[3]: Nothing to be done for `internal-library-all'. Making all in samples... Making all for tool ldapls... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool ldap2dsml... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool ldapchkpwd... make[3]: Nothing to be done for `internal-tool-all'. Making all in sope-ical... Making all in versitSaxDriver... Making all for bundle versitSaxDriver... Copying resources into the bundle wrapper... Making all in NGiCal... Making all for library libNGiCal... make[3]: Nothing to be done for `internal-library-all'. Making all in sope-gdl1... Making all in GDLAccess... Making all in subprojects of library libGDLAccess... Making all for subproject FoundationExt... make[4]: Nothing to be done for `internal-subproject-all'. Making all for library libGDLAccess... make[3]: Nothing to be done for `internal-library-all'. Making all for tool load-EOAdaptor... make[3]: Nothing to be done for `internal-tool-all'. Making all for tool connect-EOAdaptor... make[3]: Nothing to be done for `internal-tool-all'. Making all in PostgreSQL... Making all for bundle PostgreSQL... Copying resources into the bundle wrapper... Making all in xmlrpc_call... Making all for tool xmlrpc_call... make[2]: Nothing to be done for `internal-tool-all'. Making install in sope-xml... Making install in SaxObjC... Making install for library libSaxObjC... Installing library libSaxObjC... Creating /Users/sysadmin/OGoRoot/Library/Headers//SaxObjC... Installing headers... Making install for framework SaxObjC... Creating /Users/sysadmin/OGoRoot/Library/Frameworks... Installing framework SaxObjC... Stripping object file... Making install in DOM... Making install for library libDOM... Installing library libDOM... Creating /Users/sysadmin/OGoRoot/Library/Headers//DOM... Installing headers... Making install for framework DOM... Creating /Users/sysadmin/OGoRoot/Library/Frameworks... Installing framework DOM... Stripping object file... strip: can't open file: /Users/sysadmin/OGoRoot/Library/Frameworks/DOM.framework/Versions/A/libDOM.dylib.0.0.1 (No such file or directory) make[3]: *** [internal-framework-install_] Error 1 make[2]: *** [DOM.install.framework.variables] Error 2 make[1]: *** [internal-install] Error 2 make: *** [internal-install] Error 2 ps:/usr/local/sope sysadmin$ --Apple-Mail-6-579966616-- From macosx@opengroupware.org Tue Apr 18 13:08:47 2006 From: macosx@opengroupware.org (Alexander Lamb) Date: Tue, 18 Apr 2006 14:08:47 +0200 Subject: [OGo-MacOSX] Unclear about compiling on MacOSX Message-ID: <2C91CEC1-E86C-4F19-B285-429C1A07FC28@mac.com> Hello, I managed to compile SOPE 4.5 revision 1249 without any problems (Tiger, last version). Maybe because I am lazy, I used XCode. Worked fine. I then compiled the SOPEX example (WOExtTest). Worked fine and could connect to it from a browser. To compile the SOPEX example, I copied all the frameworks in /Library/ Frameworks I have postgres installed and I created a OGo database. I ran the schema importer. Now, I am wondering how to compile OGo for which I downloaded version 1.1.3 revision 1571. Indeed, In most of the subprojects, there is an XCode project (old format). But not in the main directory (to contain all projects for example). In the readme and on the web site it is basically said I have to use GNUStepMake. But for that I need to install GNUStepMake since I didn't use it for SOPE. Correct? Now, the documentation also says I don't need most of the foundations since I am using the Cocoa versions. Is there a switch to indicate this somewhere or simply doing a ./configure after GNUStepMake is installed will be enough? Thanks, Alex -- Alexander Lamb alamb@mac.com From macosx@opengroupware.org Tue Apr 18 13:16:15 2006 From: macosx@opengroupware.org (Helge Hess) Date: Tue, 18 Apr 2006 14:16:15 +0200 Subject: [OGo-MacOSX] Unclear about compiling on MacOSX In-Reply-To: <2C91CEC1-E86C-4F19-B285-429C1A07FC28@mac.com> References: <2C91CEC1-E86C-4F19-B285-429C1A07FC28@mac.com> Message-ID: <4B98B83C-65C5-4888-A787-0ACFCF947183@opengroupware.org> On 18. Apr 2006, at 14:08 Uhr, Alexander Lamb wrote: > I managed to compile SOPE 4.5 revision 1249 without any problems > (Tiger, last version). Maybe because I am lazy, I used XCode. OGo doesn't work with the Xcode build results, it requires a gstep- make build (either in FHS or with a GNUstep environment). > Now, I am wondering how to compile OGo for which I downloaded > version 1.1.3 revision 1571. Just follow the build instructions from the website *including* SOPE :-) > In the readme and on the web site it is basically said I have to > use GNUStepMake. But for that I need to install GNUStepMake since I > didn't use it for SOPE. Correct? See above, if you want to use SOPE with OGo you need to build it with gstep-make. The appropriate gstep-make is contained in the SOPE sourcetree. > Now, the documentation also says I don't need most of the > foundations since I am using the Cocoa versions. Is there a switch > to indicate this somewhere or simply doing a ./configure after > GNUStepMake is installed will be enough? This is explained here: http://sope.opengroupware.org/en/build/thirdparty.html You need the apple-apple-apple combo and you need viable settings for the GNUstep roots. After you installed gstep-make and sourced GNUstep.sh, run configure in SOPE, then make -s install. Same for OGo. Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Tue Apr 18 17:53:22 2006 From: macosx@opengroupware.org (Helge Hess) Date: Tue, 18 Apr 2006 18:53:22 +0200 Subject: [OGo-MacOSX] OGo Installation on OS X In-Reply-To: References: Message-ID: On 5. Apr 2006, at 15:23 Uhr, Peter Schraufstetter wrote: > i tried to install OGo on OS X 10.4.4 but i am stuck in the middle. > I am not a developer and have no idea what goes wrong. Try adding --disable-strip when calling 'configure' inside SOPE (and OGo). Greets, Helge -- http://docs.opengroupware.org/Members/helge/ OpenGroupware.org From macosx@opengroupware.org Wed Apr 19 08:14:38 2006 From: macosx@opengroupware.org (Alexander Lamb) Date: Wed, 19 Apr 2006 09:14:38 +0200 Subject: [OGo-MacOSX] Unclear about compiling on MacOSX In-Reply-To: <4B98B83C-65C5-4888-A787-0ACFCF947183@opengroupware.org> References: <2C91CEC1-E86C-4F19-B285-429C1A07FC28@mac.com> <4B98B83C-65C5-4888-A787-0ACFCF947183@opengroupware.org> Message-ID: <3A168CD4-A167-4DD1-AA32-A3513864C20E@mac.com> Ok, now I am confused! What is the difference between building SOPE with XCode and doing a ./ configure then make? From what I saw (I also refered to the explanations on the site: http://philippe.laval.free.fr/Programmation/SOPE/) when compiling SOPE, you get a set of .framekwork directories in your Library. I then copy them to the /Library o