]> err.no Git - sope/blob - sope-appserver/NGObjWeb/ChangeLog
d8b90510e6dd0b855605802fb3164544955f4be3
[sope] / sope-appserver / NGObjWeb / ChangeLog
1 2005-04-04  Marcus Mueller  <znek@mulle-kybernetik.com>
2
3         * SoObjects/SoObjectRequestHandler.m: properly setup NGLogging so
4           logging works again. (v4.5.148)
5
6 2005-03-31  Helge Hess  <helge.hess@opengroupware.org>
7
8         * v4.5.147
9
10         * DynamicElements/WOCheckBox.m, DynamicElements/WOCheckBoxList.m,
11           DynamicElements/WORadioButton.m, DynamicElements/WORadioButtonList.m:
12           added support for empty 'disabled' and 'checked' attributes, removed
13           '\n' after generated tag
14
15         * DynamicElements/WOBrowser.m, DynamicElements/WOPopUpButton.m: added
16           support for empty "selected" attribute
17
18         * WOContext.m: added new flag/accessor 'generateEmptyAttributes' to
19           put elements into a mode where they do not render XHTML style
20           attributes (just 'selected' instead of 'selected="selected"')
21
22 2005-03-30  Stephane Corthesy  <stephane@sente.ch>
23
24         * DynamicElements/WOPopUpButton.m, DynamicElements/WOPopUpButton.api: 
25           added new binding 'itemGroup' which allows generation of the
26           <optgroup> element in a <select> element. Fixed a bug where 
27           displayed value '<nil>' was not HTML-escaped, in some cases
28           (v4.5.146)
29         
30 2005-03-28  Stephane Corthesy  <stephane@sente.ch>
31
32         * added NSString category NSString+JavaScriptEscaping (v4.5.145)
33
34 2005-03-28  Helge Hess  <helge.hess@opengroupware.org>
35
36         * WOComponentDefinition.m: moved WONoContentElement and
37           _WOStaticHTMLElement classes to own files in DynamicElements
38           (v4.5.144)
39
40 2005-03-25  Helge Hess  <helge.hess@opengroupware.org>
41
42         * WebDAV/SoObjectDataSource.m: fixed a small memory leak (v4.5.143)
43
44         * SoObjects/SoObject+Traversal.m, WebDAV/SoObjectWebDAVDispatcher.m: 
45           minor code cleanups (v4.5.142)
46
47 2005-03-23  Marcus Mueller  <znek@mulle-kybernetik.com>
48
49         * OWResourceManager.m, WOResourceManager.m: changed table name for
50           default strings lookups from "default.strings" to
51           "Localizable.strings" in order to be compatible to WebObjects 4.51.
52           (v4.5.141)
53
54 2005-03-21  Helge Hess  <helge.hess@skyrix.com>
55
56         * DynamicElements/WOJavaScript.m: added support for extra attributes,
57           generate script 'type' field as 'text/javascript' instead of
58           'language', as suggested by Mont (v4.5.140)
59
60 2005-03-20  Helge Hess  <helge.hess@opengroupware.org>
61
62         * v4.5.139
63         
64         * DynamicElements/WOCheckboxList.m, DynamicElements/WOBrowser.m,
65           DynamicElements/WOCheckbox.m, DynamicElements/WOPopUpButton.m,
66           DynamicElements/WORadioButton.m, DynamicElements/WORadioButtonList.m,
67           DynamicElements/WOSubmitButton.m, DynamicElements/WOText.m,
68           DynamicElements/WOTextField.m: code cleanups, minor perf
69           improvements, generate 'disabled' <input> attribute
70         
71         * DynamicElements/WOImageButton.m: generate <img> instead of <input>
72           if 'disabled' binding evaluates to true
73         
74         * WOContext.m: changed default query parameter separator to &amp; as
75           suggested by Stephane (v4.5.138)
76         
77 2005-03-15  Marcus Mueller  <znek@mulle-kybernetik.com>
78
79         * NGObjWeb.xcode: added WOWatchDogApplicationMainOSX.m and removed
80           WOWatchDogApplicationMain.m from Xcode build. Added
81           SOPE_SUBMINOR_VERSION build flag for Xcode.
82
83 2005-03-14  Helge Hess  <helge.hess@opengroupware.org>
84
85         * WOApplication.m: added some ObjC runtime profiling support (moved in
86           from OGo main object) (v4.5.137)
87
88 2005-03-14  Helge Hess  <helge.hess@opengroupware.org>
89
90         * SoObjects/SoSubContext.m: updated superclass version check (v4.5.136)
91
92 2005-03-12  Helge Hess  <helge.hess@opengroupware.org>
93
94         * v4.5.135
95         
96         * WOHTTPConnection.m: deliver proper SOPE version in 'user-agent'
97         
98         * SoWebDAVRenderer.m: deliver proper SOPE version in 'server' header
99         
100         * WOStats.m, SoWebDAVRenderer.m: explicitly specify charset of text/xml
101           result
102
103 2005-03-11  Helge Hess  <helge.hess@opengroupware.org>
104
105         * WebDAV/SoWebDAVRenderer.m: fixed ordering of propstat result elements
106           (<status/> must come after <prop/>) (v4.5.134)
107
108 2005-03-08  Helge Hess  <helge.hess@skyrix.com>
109
110         * DynamicElements/common.h, DynamicElements/*.m: renamed to decommon.h
111           to avoid issues with Xcode, fixed broken compile due to missing
112           header file (v4.5.133)
113
114 2005-03-07  Marcus Mueller  <znek@mulle-kybernetik.com>
115
116         * DynamicElements/common.h: added missing #include's for
117           Xcode build (v4.5.132)
118
119 2005-03-07  Helge Hess  <helge.hess@opengroupware.org>
120
121         * v4.5.131
122
123         * WOElementID.h: lowered max element nesting to 126 due to limited
124           scope of ivar (hopefully doesn't trigger #1281)
125         
126         * DynamicElements: added support for empty non-XML tags (generate
127           empty tags without the " />")
128
129         * WOContext.m: changed ivars (bumped class version to 8), added a flag
130           for generating XML empty elements (to be checked by dynamic elements)
131
132         * DynamicElements/WOForm.m: consume 'multipleSubmit' association for
133           WO compatibility as requested by Stephane (v4.5.130)
134
135         * WOHttpAdaptor/WOHttpAdaptor.m: added the ability to fork multiple
136           child servers listing on the same passive socket. The OS will
137           distribute the load between such processes. Note that this only
138           works for session less processes (like ZideStore) and that automatic
139           restarts are not yet implemented. The number of processes can be
140           controlled using the 'WOHttpAdaptorForkCount' default (v4.5.129)
141
142 2005-03-06  Helge Hess  <helge.hess@opengroupware.org>
143         
144         * WOWatchDogApplicationMainOSX.m: fixed some minor issues, still need
145           a fix to allow for starts without a full path (v4.5.128)
146
147 2005-03-06  Mont Rothstein  <mont_rothstein@yahoo.com>
148
149         * added an MacOSX specific WOWatchDogApplicationMain, this fixes some
150           issue when linking against the AJR libraries (see OGo bug #1175)
151           (v4.5.127)
152
153 2005-03-04  Helge Hess  <helge.hess@opengroupware.org>
154
155         * WOElementID.h (NGObjWeb_MAX_ELEMENT_ID_COUNT): bumped max element
156           nesting to 128 wrt bug #1281 (v4.5.126)
157
158         * WOContext.m: added -setQueryPathSeparator:/-queryPathSeparator
159           methods as requested by Stephane (v4.5.125)
160
161         * WOComponent.m: protect component against duplicate -awake in the
162           same context as suggested by Stephane (v4.5.124)
163
164 2005-03-03  Helge Hess  <helge.hess@opengroupware.org>
165
166         * DynamicElements/WOMetaRefresh.m: added support for 'seconds' binding
167           as available in WO and suggested by Stephane (v4.5.123)
168
169 2005-03-01  Helge Hess  <helge.hess@opengroupware.org>
170
171         * SoObjects/SoProductResourceManager.m: fixed to use the changed lookup
172           in NGBundleManager.m (v4.5.122)
173
174 2005-02-25  Marcus Mueller  <znek@mulle-kybernetik.com>
175
176         * WOResourceManager.m: Fixed condition in -resourcesPathForFramework:,
177           this needs to consider the rapidTurnAroundPath as a special case.
178           RAD in SOPE:X will once again work with this fix applied. (v4.5.121)
179
180 2005-02-23  Helge Hess  <helge.hess@opengroupware.org>
181
182         * SoObjects/SoProductResourceManager.m: major fixes in resource
183           processing, properly relay URL requests to the fallback or product
184           resource managers (v4.5.120)
185
186 2005-02-22  Helge Hess  <helge.hess@opengroupware.org>
187
188         * v4.5.119
189
190         * Templates/WOxTagClassElemBuilder.m: added some API to improve support
191           for subclassing
192
193         * DynamicElements/WOxHTMLElemBuilder.m: added <html:container> tag
194           which is suitable as a root tag for template, it only generates its
195           contents
196
197 2005-02-17  Helge Hess  <helge.hess@opengroupware.org>
198
199         * v4.5.118
200         
201         * SoObjects/SoProductResourceManager.m:
202           - if a resource could not be found, continue lookup using
203             WOApplication resource manager instead of calling super
204           - fixed a major issue in the bundle resource lookup code
205           - use resource manager of other product when looking up a file of
206             that (instead of directly querying the bundle)
207         
208         * WOResourceManager.m: minor code cleanups
209         
210         * SoObjects/SoComponent.m: fixed a typo
211
212 2005-02-17  Helge Hess  <helge.hess@skyrix.com>
213
214         * WOApplication.m: the resource manager class to be used for a SOPE
215           application can now be choosen using the 'WODefaultResourceManager'
216           default (defaults to WOResourceManager) (v4.5.117)
217
218 2005-02-14  Helge Hess  <helge.hess@opengroupware.org>
219
220         * Associations/WOResourceURLAssociation.m: added support for
221           framework resources (can be specified as "fwname/resource")
222           (v4.5.116)
223
224         * SoObjects/SoObjectRequestHandler.m: added a safety limit on the URL
225           to avoid excessive redirects to view URLs, the "stop suffix" can be
226           configured using the 'WORedirectURISafetySuffix' default (v4.5.115)
227
228 2005-02-12  Helge Hess  <helge.hess@opengroupware.org>
229
230         * DynamicElements/WOxHTMLElemBuilder.m: create a WOGenericElement
231           instead of WOSubmitButton for "input type='button'" (v4.5.114)
232
233 2005-02-04  Helge Hess  <helge.hess@opengroupware.org>
234
235         * WOApplication.m: added a warning if the default component request
236           handler key is not set (v4.5.113)
237
238 2005-02-06  Helge Hess  <helge.hess@opengroupware.org>
239
240         * DynamicElements/WOBrowser.m: fixed a warning if neither selection
241           nor selections is set (fixes OGo bug #1231) (v4.5.112)
242
243         * Defaults.plist: added "127.0.0.1" to WOHttpAllowHost (v4.5.111)
244
245 2005-02-02  Helge Hess  <helge.hess@opengroupware.org>
246
247         * WOHttpAdaptor/WOHttpAdaptor.m: allow WOPort bind addresses with IPs,
248           eg "192.168.0.1:7900", this was previously parsed incorrectly as
249           just the port, eg "7900" (which still works) (v4.5.110)
250
251 2005-01-08  Helge Hess  <helge.hess@opengroupware.org>
252
253         * Associations/WOKeyPathAssociation.m: fixed a type coercion issue on
254           YellowDog Linux (v4.5.109)
255
256 2005-01-07  Marcus Mueller  <znek@mulle-kybernetik.com>
257
258         * _WOStringTable.m: changed strings file encoding from ISO-Latin-1
259           to UTF-8, so this is now en par with libFoundation, gnustep-base
260           and Mac OS X 10.3. Fixed a minor bug that affected gnustep-base
261           only. (v4.5.108)
262
263 2005-01-06  Marcus Mueller  <znek@mulle-kybernetik.com>
264
265         * SoObjects/SoProductResourceManager.m: changed resource lookup to use
266           'older' NGExtension category to NSBundle instead of newer one which
267           uses more recent API currently not supported in gnustep-base
268           (v4.5.107)
269
270 2005-01-04  Marcus Mueller  <znek@mulle-kybernetik.com>
271
272         * v4.5.106
273
274         * Defaults.plist: added new default "WOContextClass".
275
276         * WOContext.[hm]: Factory method +contextWithRequest: observes new user
277           default "WOContextClass" to chose proper class for new contexts.
278           New method -resourceLookupLanguages, aggregates the
279           current lookup strategy in one place. Ideal place for overriding the
280           lookup behaviour in conjunction with new WOContextClass default.
281
282         * WOApplication.m, WOComponentDefinition.m, WOStats.m, WOComponent.m,
283           DynamicElements/{_WOComplexHyperlink.m, WOImageButton.m,
284           _WOConstResourceImage.m, WOJavaScript.m, WOResourceURL.m,
285           WOEmbeddedObject.m, WOBody.m}, SoObjects/{SoPageInvocation.m,
286           SoProductResourceManager.m},
287           Associations/{WOResourceURLAssociation.m, WOLabelAssociation.m}:
288           use new -resourceLookupLanguages API.
289
290         * v4.5.105
291
292         * NGObjWeb.xcode: removed target "SoProducts" from "all". By using a
293           minor hack we can avoid having to build products for SoCore and
294           SoOFS (new framework) altogether.
295
296         * SoObjects/SoObjects.xcode: version updated, minor changes to build
297           process
298
299         * SoObjects/SoProductRegistry.m: if compiled as framework, a project
300           named "SoObjects" will be registered as "SoCore" - this is
301           necessary to retain dependency tracking
302
303 2004-12-21  Helge Hess  <helge.hess@opengroupware.org>
304
305         * WOMessage.m: added 'WOMessageUseUTF8' bool default to enable UTF-8
306           as the default message encoding (v4.5.104)
307
308 2004-12-19  Marcus Mueller  <znek@mulle-kybernetik.com>
309
310         * v4.5.103
311
312         * WOContext.m: fixed bug in -pushCursor:, first element in newly
313           allocated stack was never set
314
315         * DynamicElements/WORepetition.m: reverted use of -pushCursor/
316           -popCursor for ComplexRepetition, but only in case index is not used.
317
318 2004-12-18  Marcus Mueller  <znek@mulle-kybernetik.com>
319
320         * DynamicElements/WORepetition.m: bugfix in -appendToResponse:... for
321           case when only "count" and "index" are set (this didn't work because
322           of erroneous use of -pushCursor/-popCursor) (v4.5.102)
323
324 2004-12-14  Marcus Mueller  <znek@mulle-kybernetik.com>
325
326         * NGObjWeb.xcode: minor changes and updated
327
328         * WebDAV/WebDAV.xcode: minor changes and updated
329
330         * SoObjects/SoObjects.xcode: minor changes and updated
331
332         * NGHttp/NGHttp.xcode: minor changes and updated
333
334 2004-11-25  Helge Hess  <helge.hess@skyrix.com>
335
336         * Defaults.plist: set WOHttpAllowHost per default to ( localhost,
337           localhost.localdomain ) (v4.5.101)
338
339 2004-11-24  Helge Hess  <helge.hess@opengroupware.org>
340
341         * DynamicElements/WOForm.m: minor code cleanups (v4.5.100)
342
343 2004-11-23  Helge Hess  <helge.hess@opengroupware.org>
344
345         * WORequestHandler.m: properly check whether logger is available
346           prior running debugWithFormat: to avoid excessive logging in OGo
347           (v4.5.99)
348
349 2004-11-23  Helge Hess  <helge.hess@skyrix.com>
350
351         * WOComponent.m: reapplied change in v4.2.423 which got lost in some
352           4.5 logging change (v4.5.98)
353
354 2004-11-22  Helge Hess  <helge.hess@skyrix.com>
355
356         * v4.5.97
357
358         * WOContext.m: move some categories into main class implementation
359
360         * WORequestHandler.m: bind default logger to WODebuggingEnabled
361
362 2004-11-21  Helge Hess  <helge.hess@opengroupware.org>
363
364         * WODirectActionRequestHandler.m: minor code cleanups (v4.5.96)
365
366 2004-11-19  Marcus Mueller  <znek@mulle-kybernetik.com>
367
368         * v4.5.95
369
370         * Defaults.plist: new defaults for NGLogging
371
372         * WOHttpAdaptor/WOHttpAdaptor.m: rewrote transaction logging to use
373           NGLogging. Configuration for transActionLogger is stored in
374           Defaults.plist.
375           NOTE: no profiling has been done, yet - thus the profiling
376           information needs to be updated (a TODO has been placed at the
377           appropriate place).
378
379         * DynamicElements/_WOTemporaryHyperlink.m: added correct cast to
380           circumvent gcc bug (false warning).
381
382 2004-11-19  Helge Hess  <helge.hess@opengroupware.org>
383
384         * v4.5.94
385
386         * NGHttp+WO.m: minor improvements to cookie handling
387
388         * WORequestHandler.m: cleaned up cookie adder
389
390         * v4.5.93
391         
392         * WOApplication.m: print a note if debug logging is enabled
393
394         * WOComponentRequestHandler.m: removed usage of unavailabel
395           -logInfoWithFormat: (replaced with logWithFormat:)
396
397         * WOStatisticsStore.m: fixed a new warning due to incompatible pointer
398           types
399         
400         * WOComponentRequestHandler.m: append session-id cookies to response,
401           reject favicon requests, added some logs, minor cleanups (v4.5.92)
402
403 2004-11-18  Marcus Mueller  <znek@mulle-kybernetik.com>
404
405         * v4.5.91
406
407         * Associations/{WOKeyPathAssociation.m, WOLabelAssociation.m,
408           WOResourceURLAssociation.m, common.h},
409           DynamicElements/{WOForm.m, WOGenericElement.m, WOImage.m,
410           WOPopUpButton.m, WOString.m, WOxHTMLElemBuilder.m,
411           WOxMiscElemBuilder.m, _WOTemporaryHyperlink.m},
412           NGObjWeb/WOxElemBuilder.h,
413           SoObjects/{SoActionInvocation.m, SoClassSecurityInfo.m,
414           SoComponent.m, SoObject+Traversal.m, SoObject.m,
415           SoObjectRequestHandler.m, SoObjectSOAPDispatcher.m,
416           SoObjectXmlRpcDispatcher.m, SoPageInvocation.m, SoProduct.m,
417           SoProductClassInfo.m, SoProductRegistry.m,
418           SoProductResourceManager.m, SoSelectorInvocation.m},
419           Templates/{WOApplication+Builders.m, WOComponentScriptPart.m,
420           WODParser.m, WOHTMLParser.m, WOWrapperTemplateBuilder.m,
421           WOxComponentElemBuilder.m, WOxElemBuilder.m, common.h},
422           WebDAV/{SaxDAVHandler.m, SoDAVSQLParser.m, SoObject+SoDAV.m,
423           SoObject+SoDAVQuery.m, SoObjectWebDAVDispatcher.m,
424           SoWebDAVRenderer.m},
425           WOHttpAdaptor/{WOHttpAdaptor.m, WOHttpTransaction.m,
426           WORequestParser.m},
427           NGHttp+WO.m, OWResourceManager.m, SNSConnection.m,
428           WEClientCapabilities.m, WOApplication.m, WOChildComponentReference.m,
429           WOComponent.m, WOComponentDefinition.m, WOComponentRequestHandler.m,
430           WOContext.m, WOCoreApplication+Bundle.m, WOCoreApplication.m,
431           WODirectAction.m, WODirectActionRequestHandler.m, WODisplayGroup.m,
432           WODynamicElement.m, WOElementID.m, WOFileSessionStore.m,
433           WOMessage.m, WOPageRequestHandler.m, WORequest.m, WORequestHandler.m,
434           WOResourceManager.m, WORunLoop.m, WOServerSessionStore.m,
435           WOSimpleHTTPParser.m, _WOStringTable.m, common.h:
436           changed to use new logging API, various code cleanup.
437
438         * NGObjWeb.xcode, SoObjects/SoObjects.xcode, WebDAV/WebDAV.xcode:
439           bumped framework version
440
441 2004-11-18  Helge Hess  <helge.hess@opengroupware.org>
442
443         * WORequestHandler.m: removed double click hack, not necessary anymore
444           (v4.5.90)
445
446 2004-11-17  Helge Hess  <helge.hess@opengroupware.org>
447
448         * WORequestHandler.m: added 'WOUseGlobalCookiePath' default to
449           configure whether the application URL (NO) or "/" (YES) should be
450           used as the path for the session-id cookie (related to OGo bug #914
451           (v4.5.89)
452
453 2004-11-15  Helge Hess  <helge.hess@skyrix.com>
454
455         * WOSimpleHTTPParser.m: set a default file boundary size and max upload
456           size if the Defaults.plist was not loaded (eg in xmlrpc_call with
457           WOHTTPConnectionUseSimpleParser) (v4.5.88)
458
459 2004-11-15  Marcus Mueller  <znek@mulle-kybernetik.com>
460
461         * v4.5.87
462
463         * WOCoreApplication.m: needed to define a private +logger to enable
464           proper logging in class methods.
465
466         * WOHttpAdaptor/common.h: add new logging API to common includes
467
468         * WOHttpAdaptor/WOHttpAdaptor.m: rewrote logging to use new logging
469           API. Added an own (conditional) logger for performance logging.
470
471 2004-11-13  Helge Hess  <helge.hess@opengroupware.org>
472
473         * WOApplication.m: changed wrapper-missing-log from warn to debug
474           (v4.5.86)
475
476 2004-11-13  Helge Hess  <helge@groove.local>
477
478         * WOApplication.m, WOCoreApplication.m: do not use deprecated logger
479           API (v4.5.85)
480
481 2004-11-12  Marcus Mueller  <znek@mulle-kybernetik.com>
482
483         * WOApplication.m, WOCoreApplication.m: use new NGLogging API from
484           NGExtensions (v4.5.84)
485
486 2004-11-07  Marcus Mueller  <znek@mulle-kybernetik.com>
487
488         * NGObjWeb.xcode: declared several So* headers as public - these were
489           already public in the GNUmakefiles but declared as project headers
490           in Xcode - fixed this incompatibility.
491
492         * NGObjWeb.xcode: fixed incorrect SOPE_MINOR_VERSION
493
494         * NGObjWeb.xcode, WebDAV/WebDAV.xcode, SoObjects/SoObjects.xcode:
495           bumped the framework version
496
497 2004-11-04  Helge Hess  <helge.hess@skyrix.com>
498
499         * use Version file for install directory location
500
501 2004-11-03  Marcus Mueller  <znek@mulle-kybernetik.com>
502
503         * DynamicElements/*.api: provided formal specifications for all
504           dynamic elements in a format borrowed from WebObjects 4.51.
505           (v4.5.83)
506
507 2004-11-03  Helge Hess  <helge.hess@skyrix.com>
508
509         * branched 4.3 into 4.4 and 4.5
510         
511 2004-11-03  Helge Hess  <helge.hess@skyrix.com>
512
513         * WOWatchDogApplicationMain.m: disable warning on /etc server defaults
514           (v4.3.82)
515
516 2004-11-02  Marcus Mueller  <znek@mulle-kybernetik.com>
517
518         * v4.3.81
519
520         * NGObjWeb.xcode: added new targets to the build process to make
521           embedding of SoProducts within the framework's wrapper possible.
522
523         * SoObjects/SoProductRegistry.m: fixed crash bug on Cocoa Foundation
524           that occurred during product registration. As a new feature added
525           search for products within framework's "SoProducts" resource
526           directory. This can be used as a fallback, suitable for wrapper
527           targets that want to use "SoObjects" functionality.
528
529 2004-11-01  Helge Hess  <helge.hess@opengroupware.org>
530
531         * WebDAV/SoWebDAVRenderer.m: added support for multiple resource type
532           tags (v4.3.80)
533
534 2004-10-31  Helge Hess  <helge.hess@opengroupware.org>
535
536         * WebDAV/SoWebDAVRenderer.m: preserve etag in response if set (v4.3.79)
537
538         * SoObjects/SoDefaultRenderer.m: fixed typo, check exceptions for 200
539           HTTP codes and do not return them as an error (v4.3.78)
540
541 2004-10-27  Marcus Mueller  <znek@mulle-kybernetik.com>
542
543         * DynamicElements/{WOResetButton.m, WOText.m, WOFileUpload.m,
544           WOGenericElement.m, _WOComplexHyperlink.m, WOHiddenField.m,
545           WOImageButton.m, WOCheckBoxList.m, _WOCommonStaticDAHyperlink.m,
546           WORadioButton.m, WOForm.m, WOMetaRefresh.m, WOJavaScript.m,
547           WOEmbeddedObject.m, WOImage.m, WOBrowser.m, WOVBScript.m, WOIFrame.m,
548           WOPasswordField.m, _WOSimpleActionHyperlink.m, WOGenericContainer.m,
549           WOCheckBox.m, WORadioButtonList.m, WOTextField.m, WOFrame.m,
550           WOBody.m, WOSubmitButton.m}:
551           fixed rendering of otherTagString, which was appended without
552           leading space before. (v4.3.77)
553
554 2004-10-26  Helge Hess  <helge.hess@opengroupware.org>
555
556         * DynamicElements/WOxHTMLElemBuilder.m: select WOSubmitButton for
557           <input type="button"> in .wox files (should be fixed) (v4.3.76)
558
559 2004-10-25  Helge Hess  <helge.hess@opengroupware.org>
560
561         * SoObjects/SoUser.m: just return nil for unsupported KVC keys
562           (v4.3.75)
563
564 2004-10-23  Helge Hess  <helge.hess@opengroupware.org>
565         
566         * v4.3.74
567         
568         * WODirectAction.m: ignore requests on unbound KVC keys on non-lF
569           libraries
570
571         * SoObjects/SoObjectXmlRpcDispatcher.m: do not call -setUserInfo: to
572           annotate NSException's on Cocoa Foundation
573
574         * SoObjects/SoActionInvocation.m: added support for calling actions
575           and pages with positional parameters (eg from XML-RPC)
576
577         * SoObjects/SoObjectXmlRpcDispatcher.m: when looking up a SoMethod for
578           an XML-RPC method name containing a dot (like system.listmethods),
579           first check the fully qualified name prior traversing the package
580           namespaces
581         
582         * SoObjects/SoObjectXmlRpcDispatcher.m: print a warning if server was
583           not linked against libNGXmlRpc
584
585 2004-10-22  Marcus Mueller  <znek@mulle-kybernetik.com>
586
587         * WOElement.m: fixed unwanted behaviour introduced in v4.3.72 (v4.3.73)
588
589         * WOElement.m: queryParameters override keys from queryDictionary in
590           case of conflicts (v4.3.72)
591
592         * WOElement.m: if both queryDictionary and queryParameters were set on
593           an element, the '&' seperator wasn't rendered when it should in fact
594           (v4.3.71)
595
596 2004-10-22  Helge Hess  <helge.hess@opengroupware.org>
597
598         * Defaults.plist: only use single char prefixes for Exchange namespaces
599           (Connector bug #68682) (v4.3.70)
600
601 2004-10-21  Helge Hess  <helge.hess@skyrix.com>
602
603         * DynamicElements/WOImage.m: minor code cleanup (v4.3.69)
604
605 2004-10-19  Helge Hess  <helge.hess@skyrix.com>
606         
607         * SoObjects/SoHTTPAuthenticator.m: return 401 instead of 400 if the
608           authentication method was not recognized (eg if Evo attempts an NTLM
609           connect) (v4.3.68)
610
611 2004-10-17  Helge Hess  <helge.hess@opengroupware.org>
612
613         * include config.make if available (v4.3.67)
614
615 2004-10-16  Marcus Mueller  <znek@mulle-kybernetik.com>
616
617         * NGObjWeb.xcode: added WOxTagClassElemBuilder.m and
618           SoActionInvocation.m to the xcode build, bumped the framework 
619           version
620           
621         * SoObjects/SoObjects.xcode: added SoActionInvocation.h as a public
622           header, bumped the framework version.
623
624 2004-10-16  Helge Hess  <helge.hess@opengroupware.org>
625
626         * sope-ngobjweb-defaults.5: added more default descriptions to man page
627
628 2004-10-13  Helge Hess  <helge.hess@opengroupware.org>
629
630         * SoObjects/SoObjectMethodDispatcher.m: fixed an issue when the
631           clientObject is a WOResponse object. In this case, just return the
632           response instead of starting method processing (v4.3.66)
633
634         * DynamicElements/WOInput.m: minor code cleanups, be tolerant on
635           missing value binding (previously printed a warning) (v4.3.65)
636
637 2004-10-12  Helge Hess  <helge.hess@opengroupware.org>
638
639         * v4.3.64
640
641         * Associations/WOValueAssociation.m: small tweak for bool values of nil
642
643         * SoObjects/SoObject.m: added baseURL support for appnames which end
644           with a slash
645
646         * SoObjects/SoObjectMethodDispatcher.m: do not call default methods in
647           place, but rather redirect to the method URL (can be disabled with
648           the SoRedirectToDefaultMethods default)
649
650         * SoObjects/SoObjectMethodDispatcher.m, SoObjects/SoApplication.m:
651           minor improvements to logging
652
653 2004-10-12  Helge Hess  <helge.hess@skyrix.com>
654
655         * _WOStringTable.m: always open .strings files in ISO-Latin-1 encoding
656           (will be changed to UTF-8 later) (v4.3.63)
657
658 2004-10-11  Helge Hess  <helge.hess@opengroupware.org>
659
660         * SoObjects/SoObjCClass.m: fixed a bug in "Action" selector processing
661           (v4.3.62)
662
663         * v4.3.61
664
665         * SoObjects/product.plist: properly export SoActionInvocation
666
667         * SoObjects/SoProductClassInfo.m: fixed product.plist class name entry
668           for action invocations
669
670         * SoObjects/SoPageInvocation.h: fixed header file (install include and
671           compile include differ :-|) (v4.3.60)
672
673         * v4.3.59
674         
675         * SoObjects/SoProductClassInfo.m: added support for action invocations
676           (triggered by either 'actionClass' or 'directActionName' key in
677           product.plist)
678         
679         * SoObjects/SoPageInvocation.m: moved most of the implementation to a
680           new SoActionInvocation class which can invoke WODirectAction objects
681
682 2004-10-10  Helge Hess  <helge.hess@opengroupware.org>
683
684         * NGHttp: fixed umlaut decoding on MacOSX, removed some unused code
685           (v4.3.58)
686
687 2004-10-08  Helge Hess  <helge.hess@opengroupware.org>
688
689         * WebDAV/SoObjectDataSource.m: ensure that the child key used for
690           lookup is a string (eg if toOneRelationshipKeys returns NSNumber's
691           as values) (v4.3.57)
692
693         * WebDAV/SoObjectDataSource.m: minor optimization to URL generation
694           (v4.3.56)
695
696         * v4.3.55
697
698         * WebDAV/SoObjectResultEntry.m, WebDAV/SoWebDAVRenderer.m: improved
699           debugging and error detection facilities
700
701         * WebDAV/SoObjectDataSource.m: fixed URL construction on Cocoa
702           Foundation (you cannot use NSPathUtilities to work on URLs with that
703           Foundation)
704
705         * WEClientCapabilities.m: added Goliath as a known (WebDAV) user agent,
706           added -isRSSClient method
707
708 2004-10-07  Helge Hess  <helge.hess@opengroupware.org>
709
710         * v4.3.54
711
712         * WebDAV/SoObject+SoDAV.m: -isCollection now also checks whether
713           objects are contained in the toManyRelationshipKeys collection
714
715         * WebDAV/SoObject+SoDAVQuery.m: -davChildKeys now returns the values of
716           both, -toOneRelationshipKeys and -toManyRelationshipKeys
717
718 2004-10-07  Helge Hess  <helge.hess@skyrix.com>
719
720         * WebDAV/SoObjectWebDAVDispatcher.m: added more debug output (v4.3.53)
721
722 2004-10-04  Helge Hess  <helge.hess@opengroupware.org>
723
724         * Templates/WOxElemBuilder.m: moved WOxTagClassElemBuilder to own file
725           (v4.3.52)
726
727 2004-10-04  Marcus Mueller  <znek@mulle-kybernetik.com>
728
729         * NGObjWeb.xcode: updated to current build version
730
731 2004-10-03  Helge Hess  <helge.hess@opengroupware.org>
732
733         * DynamicElements/_WOComplexHyperlink.m: minor code cleanups (v4.3.51)
734
735 2004-09-30  Helge Hess  <helge.hess@skyrix.com>
736
737         * WOHttpAdaptor/WOHttpAdaptor.m: print listen address as a string value
738           (v4.3.50)
739
740         * WebDAV/SoWebDAVRenderer.m: set lock-token header on LOCK requests
741           (v4.3.49)
742
743 2004-09-27  Helge Hess  <helge.hess@opengroupware.org>
744
745         * DynamicElements/WONestedList.m: minor code cleanups (v4.3.48)
746
747 2004-09-26  Helge Hess  <helge.hess@opengroupware.org>
748
749         * WEClientCapabilities.m: added the NewsFire RSS reader as a known
750           user-agent (v4.3.47)
751
752         * OWResourceManager.m: removed a warning on a missing path on MacOSX
753           (v4.3.46)
754
755 2004-09-24  Helge Hess  <helge.hess@skyrix.com>
756
757         * SoObjects/SoProductRegistry.m: do not abort scanning for SOPE
758           products if GNUSTEP_PATHPREFIX_LIST is not set (to continue
759           searching in FHS locations) (v4.3.45)
760
761         * SoObjects/SoSecurityManager.m: improved reason string of security
762           exceptions (v4.3.44)
763
764 2004-09-23  Helge Hess  <helge.hess@skyrix.com>
765
766         * v4.3.43
767         
768         * WOCoreApplication.m: improved handling of WOPort default (detect
769           numeric ports)
770
771         * Defaults.plist: changed default WOPort value from '"*:20000"' to
772           just 20000 (which is the same like *:20000' but compatible to WO)
773
774         * WOHttpAdaptor/WOHttpAdaptor.m: for numberic WOPort's, retrieve the
775           port from the WOApplication object
776
777         * WOCoreApplication.m: use NGResourceLocator to determine search pathes
778           (v4.3.42)
779         
780 2004-09-22  Marcus Mueller  <znek@mulle-kybernetik.com>
781
782         * NGObjWeb.xcode: added WOServerDefaults.m to the build
783
784 2004-09-21  Helge Hess  <helge.hess@skyrix.com>
785
786         * v4.3.41
787
788         * WOWatchDogApplicationMain.m: added new function
789           WOWatchDogApplicationMainWithServerDefaults() which installs the
790           WOServerDefaults class as the default NSUserDefaults class
791
792         * added WOServerDefaults class (not implemented yet)
793
794 2004-09-21  Marcus Mueller  <znek@mulle-kybernetik.com>
795
796         * v4.3.41
797
798         * Templates/common.h, SoObjects/common.h: fixed duplicate interface
799           declarations by renaming them. I believe this only affected Xcode
800           builds.
801
802         * NGObjWeb.xcode: Fixed dependencies to resemble the make process
803           more closely. Our aim should be to stick to the make process
804           as closely as possible, so we shouldn't introduce dependencies in
805           non-toplevel projects.
806
807 2004-09-20  Marcus Mueller  <znek@mulle-kybernetik.com>
808
809         * v4.3.40
810
811         * SoObjects/SoProductResourceManager.m: changed method
812           -pathForResourceNamed:inFramework:languages: to use new NGExtensions
813           addition to NSBundle for proper localized resource lookup
814
815         * NGObjWeb.xcode: added SOPE_MAJOR_VERSION and SOPE_MINOR_VERSION to
816           the build defines
817
818 2004-09-14  Helge Hess  <helge.hess@skyrix.com>
819
820         * WOMessage.m, WOCoreApplication.m, SoProductRegistry.m, 
821           WOApplication+Builders.m: use makefile provided SOPE version for
822           resource lookup (v4.3.39)
823
824 2004-09-13  Helge Hess  <helge.hess@opengroupware.org>
825
826         * OWResourceManager.m: deprecated -pathToComponentNamed:inFramework:
827           in favor of -pathToComponentNamed:inFramework:languages (v4.3.38)
828
829         * v4.3.37
830
831         * Templates/WOWrapperTemplateBuilder.m: added ability to load wod
832           templates without a .wo wrapper (but from an arbitary path). You need
833           to pass in the .html file of the template to enable that. Used in OGo
834           for FHS support.
835
836         * OWResourceManager.m: do not look for templates in WebServerResources,
837           major cleanups in resource lookup code
838         
839 2004-09-11  Marcus Mueller  <znek@mulle-kybernetik.com>
840
841         * GNUmakefile.preamble: minor changes for inline compilation with
842           GNUSTEP_BUILD_DIR set elsewhere (v4.3.36)
843
844 2004-09-11  Helge Hess  <helge.hess@opengroupware.org>
845
846         * removed JavaScript function support (v4.3.35)
847
848 2004-09-10  Helge Hess  <helge.hess@skyrix.com>
849
850         * v4.3.34
851
852         * SoObjects/SoProductResourceManager.m: added an implementation of
853           -pathForResourceNamed:inFramework:languages: which checks the 
854           product bundle resources (also required to make the URL lookup work),
855           improved debug logging
856
857         * Associations/WOResourceURLAssociation.m, Defaults.plist: added
858           WOResourceURLAssociationDebugEnabled default and a set of debug
859           logs
860
861 2004-09-09  Helge Hess  <helge.hess@opengroupware.org>
862
863         * DynamicElements/WOBrowser.m: deprecated 'selection' binding and
864           activated 'selections' as requested in OGo bug #894 (v4.3.33)
865         
866         * DynamicElements/WOBrowser.m: deprecated 'string' binding and
867           activated 'displayString' as requested in OGo bug #888 (v4.3.32)
868
869 2004-09-09  Frank Reppin  <frank@opengroupware.org>
870
871         * GNUmakefile.postamble: added patch for installing in different
872           install roots (INSTALL_ROOT_DIR prefix variable) (v4.3.31)
873
874 2004-09-08  Helge Hess  <helge.hess@opengroupware.org>
875
876         * WOHttpAdaptor/WOHttpTransaction.m: check whether the simple HTTP
877           parser is to be used using the
878           -shouldUseSimpleHTTPParserForTransaction: method on
879           WOCoreApplication. That way applications which require the parser
880           (like xmlrpcd/ZideStore) can override the default
881           WOHttpTransactionUseSimpleParser default (v4.3.30)
882
883 2004-09-07  Helge Hess  <helge.hess@skyrix.com>
884
885         * Defaults.plist: disable WODebugging per default (v4.3.29)
886
887         * WOContext.m: minor code cleanup (v4.3.28)
888         
889 2004-09-06  Helge Hess  <helge.hess@skyrix.com>
890
891         * Defaults.plist: enable watch dog per default (use WOUseWatchDog
892           default to disable the watch dog) (v4.3.27)
893
894 2004-09-06  Helge Hess  <helge.hess@opengroupware.org>
895
896         * WOResourceManager.m: minor code cleanups (v4.3.26)
897
898 2004-09-05  Helge Hess  <helge.hess@opengroupware.org>
899
900         * WOResourceRequestHandler.m: added some debug logging, send a 404
901           instead of a 500 if a resource could not be found (v4.3.25)
902
903 2004-09-02  Helge Hess  <helge.hess@opengroupware.org>
904
905         * wo*.make: when copying bundles to the install location, ensure that
906           .svn directories (Subversion tracking dirs) are excluded (v4.3.24)
907
908 2004-09-01  Helge Hess  <helge.hess@skyrix.com>
909
910         * WOApplication.m: added a fix to find the appwrapper in flattened
911           environments (v4.3.23)
912
913         * WOCoreApplication.m: search for libNGObjWeb resources in
914           Library/Libraries for compatibility with gstep-make 1.9.2 (Note:
915           this version does _not_ work with the old gstep-make fork anymore!)
916           (v4.3.22)
917
918 2004-09-01  Helge Hess  <helge.hess@opengroupware.org>
919
920         * fhs.make (move-headers-to-fhs): moved NGHttp headers to FHS root
921           (v4.3.21)
922
923 2004-08-31  Helge Hess  <helge.hess@skyrix.com>
924
925         * GNUmakefile.preamble: fixed sope-mime library location for gstep-make
926           1.9.2 (v4.3.20)
927
928 2004-08-29  Marcus Mueller  <znek@mulle-kybernetik.com>
929
930         * NGObjWeb.xcode: new Xcode project
931
932         * SoObjects/SoObjecs.xcode, SoObjects/SoObjects-Info.plist: new Xcode
933           project and accompanied files.
934
935         * WebDAV/WebDAV.xcode: new Xcode project
936
937 2004-08-29  Helge Hess  <helge.hess@opengroupware.org>
938
939         * GNUmakefile: properly setup bundle path (v4.3.19)
940
941         * v4.3.18
942         
943         * Templates/WOApplication+Builders.m: also look in
944           /usr/local/lib/sope-4.3/wox-builders/ and
945           /usr/lib/sope-4.3/wox-builders/ for SOPE WOx element builder bundles
946
947         * SoObjects/SoProductRegistry.m: also look in
948           /usr/local/share/sope-4.3/products and /usr/share/sope-4.3/products
949           for SOPE product bundles
950
951         * WORequest.m, WebDAV/SoObject+SoDAV.m: use new WOCoreApplication
952           method to lookup Languages.plist / DAVPropMap.plist resource
953
954         * WOCoreApplication.m: use GNUSTEP_PATHPREFIX_LIST and GNUSTEP_PATHLIST
955           to find libNGObjWeb resources, also look in
956           /usr/local/share/sope-4.3/ngobjweb/ and
957           /usr/share/sope-4.3/ngobjweb/. Added a method
958           +findNGObjWebResource:ofType: to locate library resources
959         
960         * WOCoreApplication+Bundle.m: use GNUSTEP_PATHPREFIX_LIST and
961           GNUSTEP_PATHLIST to load application bundles
962         
963         * added hack to install the project in FHS locations - the library,
964           its headers, the tools and the resources will be installed in
965           FHS_INSTALL_ROOT if specified (eg make FHS_INSTALL_ROOT=/usr/local),
966           SOPE products are installed in lib/sope-4.3/products/
967         
968 2004-08-27  Helge Hess  <helge.hess@skyrix.com>
969
970         * GNUmakefile: export WOComponentDefinition.h as a public header
971           (v4.3.17)
972
973 2004-08-26  Helge Hess  <helge.hess@skyrix.com>
974
975         * WOComponent: added ivar for clientObject, _without_ increasing class
976           version (so that we don't need to touch every component in OGo :-| ),
977           moved SoObjects methods to own category file in SoObjects (v4.3.16)
978         
979         * WOComponentScript.m, WOComponentScriptPart.m: removed dependency on
980           NGScripting (disables WOx scripting due to missing backend) (v4.3.15)
981
982         * v4.3.14
983
984         * WOComponent.m, WOContext.m: added ivar for _ODCycleCtx, _without_
985           increasing class version (so that we don't need to touch every
986           component in OGo :-| )
987
988         * DynamicElements/WOHtml.m, WOBody.m: minor code cleanups
989
990 2004-08-25  Helge Hess  <helge.hess@opengroupware.org>
991
992         * v4.3.13
993
994         * removed dependency on NGScripting (disabled WOScriptedComponent)
995
996         * WOComponent.m: added baseURL ivar, _without_ increasing class
997           version (so that we don't need to touch every component in OGo :-| )
998
999         * v4.3.12
1000
1001         * Templates/WOxTemplateBuilder.m: properly select a DOM builder based
1002           on the template extension
1003
1004         * Templates/WOTemplateBuilder.m, WOComponentDefinition.m: moved
1005           builder factory to WOComponentDefinition
1006
1007 2004-08-24  Helge Hess  <helge.hess@opengroupware.org>
1008
1009         * changed bundles to install in "xxx-4.3" pathes instead of "xxx/4.3"
1010           to be consistent with OGo (v4.3.11)
1011
1012         * v4.3.10
1013
1014         * GNUmakefile: install SoCore.sxp in Library/SoProducts/4.3/
1015
1016         * Templates/WOxTemplateBuilder.m: moved WOApplication category to an
1017           own file, preload builder bundles in Library/WOxElemBuilders/4.3
1018         
1019         * SoObjects/SoProductRegistry.m: look for products in
1020           Library/SoProducts/4.3
1021
1022         * v4.3.9
1023
1024         * DynamicElements/WOConditional.m: added specific WOx initializer to
1025           support negative conditionals (if-not)
1026
1027         * DynamicElements/WOxControlElemBuilder.m: mapped "if-not"/"ifnot" to
1028           WOConditional
1029
1030         * SoObjects/WOContext+SoObjects.m: added missing
1031           -setObjectPermissionCache: method (v4.3.8)
1032
1033 2004-08-23  Helge Hess  <helge.hess@opengroupware.org>
1034
1035         * GNUmakefile.preamble: removed libjs linking path (v4.3.7)
1036
1037         * moved NGXmlRpc/xmlrpc_call to a separate project (v4.3.6)
1038
1039         * v4.3.5
1040
1041         * WOContext.m, WOComponent.m: modified component awake handling, should
1042           fix some awake-in-context logs
1043
1044         * WOComponentRequestHandler.m: use _setCurrentContext: method
1045
1046         * WOApplication.m: added -_setCurrentContext: method to set the global
1047           context (should be avoided, but not always possible ..)
1048
1049         * SoObjects/SoProductClassInfo.m: improved error handling (v4.3.4)
1050
1051 2004-08-22  Helge Hess  <helge.hess@opengroupware.org>
1052
1053         * v4.3.3
1054         
1055         * moved the SoOFS library/sope tool to a separate project
1056
1057         * WORequest, WOMessage, WOContext: added new ivars to avoid user-info
1058           dictionary
1059
1060 2004-08-20  Helge Hess  <helge.hess@opengroupware.org>
1061
1062         * v4.3.2
1063
1064         * removed dependency on NGJavaScript
1065
1066         * DynamicElements/WOFileUpload.m: code cleanups
1067
1068         * fixed for SOPE 3.3 directory layout
1069
1070         * moved to SOPE 4.3, restarted subminor version to 1 to remove special
1071           MacOSX version (v4.3.1)
1072
1073 2004-08-15  Helge Hess  <helge.hess@skyrix.com>
1074
1075         * SoObjects/SoProductResourceManager.m: added html, xml, txt and js as 
1076           known product resource extensions (v4.2.431)
1077
1078 2004-08-11  Helge Hess  <helge.hess@opengroupware.org>
1079
1080         * SoObjects/SoObject.m: improved a debug log, improved root URL 
1081           processing (v4.2.430)
1082
1083 2004-08-05  Helge Hess  <helge.hess@opengroupware.org>
1084         
1085         * v4.2.429
1086         
1087         * OWResourceManager.m: major changes to resource lookup. When scanning
1088           language lproj directories contained inside .wo wrappers, the lproj
1089           themselves will be checked whether they contain an component.html 
1090           file.
1091
1092         * Templates/WOWrapperTemplateBuilder.m: minor improvement to logging
1093           code
1094         
1095         * WOComponentDefinition.m: added WODebugComponentDefinition default to
1096           enable debug logs
1097         
1098 2004-08-04  Helge Hess  <helge.hess@opengroupware.org>
1099
1100         * added OWResourceManager as a copy of WOResourceManager so that we
1101           can apply Stephane's patches without breaking OGo. OWResourceManager
1102           will be kept as a legacy until its ensured that OGo is compatible
1103           with the WO resource manager (v4.2.428)
1104
1105 2004-08-03  Helge Hess  <helge.hess@opengroupware.org>
1106
1107         * SoObjects/SoProductRegistry.m: register product bundles loaded by
1108           other code sections (using the NSBundleDidLoadNotification)
1109           (v4.2.427)
1110
1111 2004-08-01  Helge Hess  <helge.hess@opengroupware.org>
1112
1113         * v4.2.426
1114
1115         * WOHttpAdaptor/WOHttpTransaction.m: added some debug logs
1116
1117         * WOHttpAdaptor/WOHttpAdaptor.m: minor code cleanups
1118
1119 2004-07-29  Helge Hess  <helge.hess@opengroupware.org>
1120
1121         * SoObjects/SoObject.m(-baseURLInContext:): if the object implements 
1122           -isFolderish and returns YES, a slash will be added to the baseURL
1123           (v4.2.425)
1124
1125 2004-07-26  Helge Hess  <helge.hess@opengroupware.org>
1126
1127         * v4.2.424
1128
1129         * Templates/WOxComponentElemBuilder.m: improved debug logs
1130
1131         * Associations/WOValueAssociation.m: improved description
1132
1133 2004-07-22  Helge Hess  <helge.hess@skyrix.com>
1134
1135         * WOComponent.m: made "missing context in component" warning log a
1136           debug log (v4.2.423)
1137
1138 2004-07-21  Helge Hess  <helge.hess@opengroupware.org>
1139
1140         * Associations/WOValueAssociation.m: added a great premature 
1141           optimization to speed up value access for objects as ints, unsigned
1142           ints and bools ;-), added a small optimization to access bool
1143           objects as strings (v4.2.422)
1144
1145 2004-07-20  Helge Hess  <helge.hess@skyrix.com>
1146
1147         * v4.2.421
1148
1149         * WOValueAssociation.m: minor code cleanups
1150
1151         * Defaults.plist(WOxAssociationClassMapping): registered new 
1152           WOLabelAssociation for 'OGo:label' namespace
1153         
1154         * added new WOLabelAssociation for resolving labels
1155
1156 2004-07-17  Helge Hess  <helge.hess@opengroupware.org>
1157
1158         * v4.2.420
1159
1160         * WebDAV/SoObjectWebDAVDispatcher.m: improved error handling if the
1161           target object does not implement a specific method (returns 501,
1162           not implemented)
1163         
1164         * DAVPropMap.plist: added some DAV properties which are new with 
1165           OOo 1.9 UCB
1166
1167 2004-07-15  Helge Hess  <helge.hess@skyrix.com>
1168
1169         * WOCoreApplication.m: added ability to filter out some "expected"
1170           validation issues (by overwriting the -hideValidationIssue: method)
1171           (v4.2.419)
1172
1173 2004-07-14  Helge Hess  <helge.hess@skyrix.com>
1174
1175         * Languages.plist: added mapping from 'nb' code to NorwegianBokmaal
1176           (v4.2.418)
1177
1178 2004-07-14  Helge Hess  <helge.hess@opengroupware.org>
1179
1180         * WOContext.m, WOComponent.m, Defaults.plist: added new 
1181           'WODebugComponentAwake' default to enable component -awake/-sleep 
1182           logging (v4.2.417)
1183
1184 2004-07-08  Helge Hess  <helge.hess@skyrix.com>
1185
1186         * v4.2.416
1187         
1188         * SoObjects/SoPageInvocation.m, SoObjects/SoProductClassInfo.m: added 
1189           support for extracting SOAP parameters as KVC keys for the 
1190           WOComponent (SOAP parameters will be extracted and applied using
1191           KVC)
1192
1193         * SoObjects/SoObjectSOAPDispatcher.m, 
1194           SoObjects/SoObjectXmlRpcDispatcher.m: added an own logging prefix
1195
1196 2004-07-07  Helge Hess  <helge.hess@opengroupware.org>
1197
1198         * v4.2.415
1199         
1200         * SoObjects/SoSelectorInvocation.m: added support for SOAP parameter
1201           extractions
1202
1203         * SoObjects/SoObjectSOAPDispatcher.m: added SOAP envelope in context
1204         
1205         * SoObjects/SoProductClassInfo.m: added support for 'arguments' key
1206           in selector invocation declarations to specify request type specific
1207           argument extractions
1208
1209 2004-07-07  Marcus Mueller  <znek@mulle-kybernetik.com>
1210
1211         * DynamicElements/WOString.m: new attribute "style" appends
1212           surrounding <span> tag bearing the styleclass. Doesn't get set if
1213           no string value will be printed. (v4.2.414)
1214
1215 2004-07-07  Helge Hess  <helge.hess@skyrix.com>
1216
1217         * v4.2.413
1218         
1219         * SoObjects: started SOAP dispatcher for SOPE objects
1220         
1221         * Defaults.plist: added SOAP configuration to SOPE dispatcher selection
1222
1223         * SoObjects/WORequest+So.m: added -isSoSOAPRequest to detect SOAP 
1224           requests based on the SOAPAction HTTP header
1225
1226 2004-07-05  Helge Hess  <helge.hess@opengroupware.org>
1227
1228         * WEClientCapabilities.m: report Mozilla browsers starting with major
1229           version 5 as <iframe/> capable browsers, this should fix OGo bug 
1230           #634 (v4.2.412)
1231
1232 2004-07-04  Helge Hess  <helge.hess@opengroupware.org>
1233
1234         * v4.2.411
1235
1236         * DynamicElements/WOForm.m: print a debug log if a session ID is to be
1237           embedded in a direct action form, but no session is active
1238
1239         * DynamicElements/WOPopUpButton.m: minor improvement to 
1240           WONoSelectionString generation code
1241
1242         * Templates/WOxTemplateBuilder.m: added WOxLogBuilderQueue default to
1243           log the builder queue setup being used by the application
1244
1245 2004-06-30  Helge Hess  <helge.hess@opengroupware.org>
1246
1247         * SoObjects/NSException+HTTP.m: subminor fix to 404 reason (v4.2.410)
1248
1249 2004-06-29  Stephane Corthesy  <stephane@sente.ch>
1250
1251         * Associations/WOKeyPathAssociationSystemKVC.m: fixed bool value 
1252           processing (return YES for NO NSNumber's) (v4.2.409)
1253
1254 2004-06-27  Helge Hess  <helge.hess@opengroupware.org>
1255
1256         * various makefile fixes to allow in-place compilation of the whole
1257           SOPE frameworks (v4.2.408)
1258
1259         * WOComponent.m: removed a superflous log on MacOSX (v4.2.407)
1260
1261 2004-06-22  Helge Hess  <helge.hess@opengroupware.org>
1262
1263         * DynamicElements/_WOConstResourceImage.m: added some debugging code
1264           (v4.2.406)
1265
1266 2004-06-21  Helge Hess  <helge.hess@opengroupware.org>
1267
1268         * WOCoreApplication.m: fixed a gstep-base warning (v4.2.405)
1269
1270 2004-06-21  Helge Hess  <helge.hess@skyrix.com>
1271
1272         * SoObjects/SoClass.m: added slot access logging (v4.2.404)
1273
1274         * SoApplication.m, SoObject+Traversal.m, SoObject.m,
1275           SoObjectMethodDispatcher.m, SoPageInvocation.m, SoProductClassInfo.m,
1276           SoSecurityManager.m: fixed some gcc 3.4 warnings (v4.2.403)
1277
1278 2004-06-20  Helge Hess  <helge.hess@opengroupware.org>
1279
1280         * v4.2.402
1281
1282         * DynamicElements/WOPopUpButton.m: moved in .h file
1283
1284         * DynamicElements/WOBrowser.m: do not include WOPopUpButton.h (does not
1285           inherit from that dynamic element anymore)
1286         
1287 2004-06-20  Stephane Corthesy  <stephane@sente.ch>
1288         
1289         * DynamicElements/WOPopUpButton.[hm]: 
1290           - removed the singleSelection binding (now is fixed to YES [Note: 
1291             will break compatibility with very old WO versions])
1292           - added 'displayString' as an alias for the 'string' binding
1293           - added 'selectedValue' and 'escapeHTML' bindings
1294           - 'value' is not longer set to selected value in 
1295             -takeValuesFromRequest:inContext:. Use 'selectedValue' instead.
1296           - uses WONoSelectionString variable instead of hardcoded "$" for 
1297             empty selections
1298           - 'item' binding is reset after use
1299           - added missing space in generated HTML when 'otherTagString' is set
1300           - 'value' is now escaped
1301         
1302 2004-06-17  Helge Hess  <helge.hess@opengroupware.org>
1303
1304         * v4.2.401
1305
1306         * SoObjects/SoObjectMethodDispatcher.m: only lookup HTTP methods in the
1307           SoClass, not in the object itself to avoid clashes with contained
1308           objects
1309
1310         * DynamicElements/_WOComplexHyperlink.m: added 
1311           'WODebugStaticLinkProcessing' default to debug URL processing in
1312           static hyperlinks
1313
1314 2004-06-16  Helge Hess  <helge.hess@opengroupware.org>
1315
1316         * v4.2.400
1317
1318         * WOContext.m ([WOContext -urlWithRequestHandlerKey:path:queryString:]):
1319           fixed processing of application name for '/' request URLs
1320
1321         * SoObjectMethodDispatcher.m: minor code cleanups
1322
1323         * SoObjects/SoObject.h: exposed -defaultMethodNameInContext: method
1324           (v4.2.399)
1325
1326         * SoObjects/SoHTTPAuthenticator.m: added +parseCredentials: method
1327           to reuse the HTTP authorization parsing (v4.2.398)
1328
1329 2004-06-15  Helge Hess  <helge.hess@opengroupware.org>
1330
1331         * SoObjects/SoApplication.m: fixed lookup for appname.woa which is
1332           generated since the changes in v4.2.385 (v4.2.397)
1333
1334         * WOPageRequestHandler.m: fixed a bug in the new request methods 
1335           (v4.2.396)
1336
1337         * v4.2.395
1338         
1339         * NGObjWeb/WOComponent.h: added prototypes for direct action methods
1340
1341         * WOPageRequestHandler.m: added direct action like form-value methods
1342           to WOComponent category (-takeFormValuesForKeys:)
1343
1344         * SoObjects/SoProductRegistry.m: improved bundle based product lookup
1345           (first checks using the bundle path)
1346         
1347         * SoObjects/SoPageInvocation.m: use application context for page
1348           instantiation if none was passed in
1349
1350         * SoObjects/SoObject.m: use application context when looking up the
1351           default method
1352
1353 2004-06-14  Helge Hess  <helge.hess@opengroupware.org>
1354
1355         * woapp-gs.make, wobundle-gs.make: patches to use Contents/Resources 
1356           as the resources directory on MacOSX (v4.2.394)
1357         
1358         * v4.2.393
1359         
1360         * WOComponentRequestHandler.m: properly generate content-type if none
1361           is set in the response
1362
1363         * ngobjweb.make: added static linking flags for Mach linker
1364
1365         * Templates/WODParser.m (_parseProperty): now correctly parses key
1366           pathes starting with a boolean substring like "true" or "NO"
1367           (eg 'trueFlag') (v4.2.392)
1368
1369         * WORequestHandler.m: added KVC support for MacOSX (v4.2.391)
1370
1371 2004-06-11  Helge Hess  <helge.hess@opengroupware.org>
1372
1373         * SoObjects/SoPageInvocation.m: added KVC support for MacOSX (v4.2.390)
1374
1375 2004-06-10  Stephane Corthesy  <stephane@sente.ch>
1376
1377         * v4.2.389
1378
1379         * WOResourceURLAssociation.m, WOStats.m: explicitly use 
1380           -browserLanguages for resource lookup if there is no session
1381
1382         * WOBody.m, WOEmbeddedObject.m, WOImageButton.m, WOJavaScript.m,
1383           WOResourceURL.m, _WOConstResourceImage.m, _WOResourceImage.m:
1384           [hm, what was the change here?]
1385         
1386 2004-06-10  Helge Hess  <helge.hess@opengroupware.org>
1387
1388         * SoObjects/SoObjectRequestHandler.m: improved handling of NSNull
1389           objects in the traversal stack, avoids coredumps in some edge
1390           condition (v4.2.388)
1391
1392 2004-06-10  Helge Hess  <helge.hess@skyrix.com>
1393
1394         * WOApplication.m, WORequest.m, WORequestHandler.m: fixed gcc 3.4
1395           warnings (v4.2.387)
1396
1397 2004-06-10  Helge Hess  <helge.hess@opengroupware.org>
1398
1399         * v4.2.386
1400
1401         * GNUmakefile.preamble: added prebinding
1402
1403         * SoObjects/SoPageInvocation.m: fixed code formatting
1404
1405 2004-06-09  Stephane Corthesy  <stephane@sente.ch>
1406         
1407         * v4.2.385
1408         
1409         * Defaults.plist: added "WONoSelectionString" default (defaults to
1410           "WONoSelectionString")
1411         
1412         * WORequest.[hm]: fixed parsing of URIs without request handler pathes 
1413           (like /x.woa/wr?abc), added WONoSelectionString variable and default
1414
1415         * WOContext.[hm]: added -queryStringFromDictionary: method, rewrote
1416           -directActionURLForActionNamed:queryDictionary: to use that. Fixed
1417           -urlWithRequestHandlerKey:path:queryString: to append to application
1418           extension
1419
1420         * Templates/WODParser.m: allow keypath strings which contain a slash 
1421           ('/') (eg "src = urlKVC/path/to/file.html;")
1422
1423 2004-06-09  Helge Hess  <helge.hess@skyrix.com>
1424
1425         * DynamicElements/WOString.m: fixed default (YES) for 'escapeHTML' 
1426           binding in cluster subclasses (was correct in _WOComplexString, but
1427           wrong in the other ones). This might fix OGo bug #625 (v4.2.384)
1428         
1429         * DynamicElements/WOString.m: never escape value of 'valueWhenEmpty'
1430           binding as suggested by Stephane (v4.2.383)
1431         
1432         * DynamicElements/WOPopUpButton.m: some code cleanups, properly close
1433           the <option> tag for the 'nilValue' (v4.2.382)
1434
1435         * v4.2.381
1436                 
1437         * _WOStringTable.m: added -description method
1438
1439         * WOComponent.m: changed -description to be more consistent with the
1440           rest of the system
1441
1442 2004-06-09  Stephane Corthesy  <stephane@sente.ch>
1443         
1444         * _WOStringTable.m: support .strings files in NSDictionary plist format
1445         
1446         * Associations/WOKeyPathAssociationSystemKVC.m: now properly supports
1447           caret (^) notation
1448         
1449         * WOCoreApplication.m: added -setPrintsHTMLParserDiagnostics: and
1450           -printsHTMLParserDiagnostics for enabling/disabling the output
1451           validation
1452
1453 2004-06-08  Helge Hess  <helge.hess@opengroupware.org>
1454
1455         * v4.2.380
1456
1457         * SoObjects/SoComponent.m: minor logging improvement
1458
1459         * SoObjects/SoProductResourceManager.m, Defaults.plist: added default 
1460           SoProductResourceManagerDebugEnabled to enable logging
1461
1462         * WOResourceManager.m (RSRCDIR_CONTENTS): this was only defined for
1463           Xcode builds, it is now also enabled for gstep-make on OSX (which
1464           also places resources in Contents/Resources) (this change makes
1465           UI-X work on OSX)
1466
1467         * v4.2.379
1468         
1469         * GNUmakefile.preamble (libNGObjWeb_LIB_DIRS): fixed relative search
1470           pathes
1471
1472         * SoObjects/SoProductRegistry.m: use bundle manager to get bundle 
1473           objects, fixed a bug which lead to duplicate product registration
1474           (and a set of resulting other issues), on MacOSX. Apparently
1475           bundle uniquing is broken on MacOSX
1476         
1477         * SoObjects/SoClassSecurityInfo.m: be more tolerant about NSNull 
1478           values, improved error logging
1479
1480         * NGObjWeb/WOCoreApplication.h: fixed for MacOSX compilation 
1481           (NSTimeInterval was missing)
1482
1483 2004-06-07  Helge Hess  <helge.hess@skyrix.com>
1484
1485         * WOResourceManager.m: fixed a gcc 3.4 warnings (v4.2.378)
1486
1487 2004-06-05  Helge Hess  <helge.hess@opengroupware.org>
1488
1489         * DynamicElements/WOString.m: added 'valueWhenEmpty' as suggested by
1490           Stephane, various code cleanups (v4.2.377)
1491
1492 2004-06-04  Stephane Corthesy  <stephane@sente.ch>
1493
1494         * WODisplayGroup.m: added special KVC support for "queryMatch.",
1495           "queryMax.", "queryMin." and "queryOperator." keys (v4.2.376)
1496
1497 2004-06-02  Marcus Mueller  <znek@mulle-kybernetik.com>
1498
1499         * SoObjects/SoObjectRequestHandler.m: added support for
1500           rapidTurnAround (v4.2.375)
1501
1502 2004-06-02  Helge Hess  <helge.hess@skyrix.com>
1503
1504         * v4.2.374
1505         
1506         * DynamicElements/WOxHTMLElemBuilder.m: use WOGenericContainer for
1507           generating <a name=""> anchors instead of silently dropping the 
1508           element
1509         
1510         * DynamicElements/WOGenericElement.m: some code cleanups
1511
1512 2004-06-01  Stephane Corthesy  <stephane@sente.ch>
1513
1514         * v4.2.373
1515
1516         * WOApplication.h, WODirectAction.h, WOComponent.h: added prototypes
1517           for logging methods, so that those are available in case NGExtensions
1518           is not included
1519
1520         * WOCoreApplication.[hm]: added implementation of 
1521           -terminateAfterTimeInterval:
1522
1523         * WOApplication+defaults.m, Defaults.plist: added: 
1524           WOApplicationBaseURL, WOAutoOpenInBrowser, WOCGIAdaptorURL, 
1525           WOFrameworksBaseURL
1526
1527 2004-05-27  Helge Hess  <helge.hess@skyrix.com>
1528
1529         * WOResponse.m: minor code cleanups (v4.2.372)
1530
1531 2004-05-19  Helge Hess  <helge.hess@skyrix.com>
1532
1533         * WOMessage+Validation.m: do not trigger validation for text/plain
1534           (v4.2.371)
1535
1536 2004-05-16  Marcus Mueller  <znek@mulle-kybernetik.com>
1537
1538         * SoOFS/SoOFS-SXP-Info.plist, SoObjects/SoCore-SXP-Info.plist: new
1539           entries for Xcode build (v4.2.370)
1540
1541 2004-05-13  Helge Hess  <helge.hess@opengroupware.org>
1542
1543         * WOCoreApplication.m: fixed a typo (v4.2.369)
1544
1545 2004-05-11  Helge Hess  <helge.hess@opengroupware.org>
1546
1547         * SoObjects/SoObjectRequestHandler.m: minor tweak for MacOSX Foundation
1548           (v4.2.368)
1549
1550 2004-05-07  Helge Hess  <helge.hess@skyrix.com>
1551
1552         * v4.2.367
1553         
1554         * WOMessage+Validation.m: added validation functionality for XML and 
1555           HTML
1556         
1557         * WOCoreApplication.m: validation of generated output can be turned on
1558           using the WOOutputValidationEnabled default
1559
1560 2004-05-06  Helge Hess  <helge.hess@skyrix.com>
1561
1562         * DynamicElements/WOJavaScript.m: minor code cleanups (v4.2.366)
1563
1564 2004-05-05  Marcus Mueller  <znek@mulle-kybernetik.com>  
1565
1566         * GNUmakefile.preamble: added support for building with
1567           GNUSTEP_BUILD_DIR environment variable set for recent
1568           gnustep-make package. (v4.2.365)
1569
1570 2004-05-05  Helge Hess  <helge.hess@skyrix.com>
1571
1572         * WORequest.m: if a browser language region code (like de-ch) cannot be
1573           found, retry the lookup with the major language code (in this case 
1574           'de') (as suggested by Stephane Corthesy) (v4.2.364)
1575
1576         * WOApplication.m: removed old license check, added 
1577           "WOLogDefaultsOnStartup" default to enable logging of the default
1578           configuration on server startup (as suggested by Stephane Corthesy)
1579           (v4.2.363)
1580
1581 2004-05-04  Helge Hess  <helge.hess@opengroupware.org>
1582
1583         * NGObjWeb/NGObjWeb.h: include WOMailDelivery.h and WOStatisticsStore.h
1584           as suggested by Stephane Corthesy (thanks!) (v4.2.362)
1585
1586 2004-05-04  Helge Hess  <helge.hess@skyrix.com>
1587         
1588         * DynamicElements/_WOComplexHyperlink.m: added special handling for
1589           mailto: and javascript: URLs in href links (not processed using
1590           NSURL) (v4.2.361)
1591
1592 2004-05-03  Helge Hess  <helge.hess@skyrix.com>
1593
1594         * DynamicElements/WOString.m: fixed a typo (v4.2.360)
1595
1596 2004-05-01  Helge Hess  <helge.hess@opengroupware.org>
1597
1598         * v4.2.359
1599         
1600         * WOMessage: added +setDefaultEncoding:/+defaultEncoding class methods
1601           as suggested by Stephane Corthesy (thanks!) and as available in 
1602           WO 4.5.
1603         
1604         * WOCookie: added missing set accessors as suggested by Stephane
1605           Corthesy (thanks!) and as available in WO 4.5. Deprecated -expireDate
1606           methods in favor of the WO 4.5 -expires/-setExpires: methods,
1607           since WOCookie objects are not immutable anymore, changed the
1608           NSCopying implementation to return a real copy
1609
1610 2004-04-30  Helge Hess  <helge.hess@opengroupware.org>
1611
1612         * some minor cleanups to log messages
1613
1614         * WOComponent.m, Defaults.plist: added debugging default
1615           'WOCoreOnAwakeComponentInCtxDealloc'
1616
1617 2004-04-30  Marcus Mueller  <znek@mulle-kybernetik.com>
1618
1619         * SoOFS/OFSFolderDataSource.m: didn't work at all when no qualifier
1620           was set (v4.2.358)
1621
1622 2004-04-30  Helge Hess  <helge.hess@skyrix.com>
1623
1624         * DynamicElements/WOBrowser.m: improved XHTML compatibility for bool
1625           attributes (v4.2.357)
1626
1627 2004-04-21  Helge Hess  <helge.hess@skyrix.com>
1628
1629         * DynamicElements/WORadioButton.m: code cleanups (v4.2.356)
1630
1631 2004-04-20  Jean-Alexis Montignies <ja@sente.ch>
1632         
1633         * WOResourceManager: added
1634           -stringForKey:inTableNamed:withDefaultValue:inFramework:languages:
1635           method, simplified implementation (v4.2.355)
1636         
1637 2004-04-19  Jean-Alexis Montignies <ja@sente.ch>
1638         
1639         * WOKeyPathAssociation.m: added support for float and double (v4.2.354)
1640
1641 2004-04-19  Helge Hess  <helge.hess@skyrix.com>
1642
1643         * WOHyperlink.m: moved the cluster subclasses to separate files 
1644           (v4.2.353)
1645
1646         * v4.2.352
1647
1648         * DynamicElements/WOJavaScript.m: code cleanups
1649
1650         * Templates/WOWrapperTemplateBuilder.m: fixed for Linux compilation
1651
1652 2004-04-17  Marcus Mueller  <znek@mulle-kybernetik.com>
1653
1654         * v4.2.351
1655
1656         * WOApplication.m: fixed generated HTML in -handleException:inContext.
1657           If application is in RAD mode, extracts templateURL from exception's
1658           userInfo and sets "x-sope-template-path" header appropriately.
1659         
1660         * Templates/WOWrapperTemplateBuilder.m: exceptions during template
1661           parsing are being caught now before being re-raised.
1662           During exceptions some necessary cleanup will be performed and the
1663           templateURL will be added to the exception's userInfo for later
1664           extraction.
1665
1666         * WOApplication.m, WOCoreApplication.m, WOHTTPConnection.m,
1667           WOSimpleHTTPParser.m, WOWatchDogApplicationMain.m,
1668           WOHttpAdaptor/WOHttpAdaptor.m: replaced all occurrences of "catched"
1669           with "caught" in log statements and comments.
1670
1671 2004-04-16  Helge Hess  <helge.hess@opengroupware.org>
1672
1673         * WOComponent.m: print a warning if the component name is set to nil
1674           (v4.2.350)
1675
1676 2004-04-16  Helge Hess  <helge.hess@skyrix.com>
1677
1678         * Templates/WOxTemplateBuilder.m: minor code cleanups (v4.2.349)
1679
1680 2004-04-16  Jean-Alexis Montignies  <ja@sente.ch>
1681
1682         * v4.2.348
1683         
1684         * WOComponent.m: resolve plist unarchiver references using KVC pathes
1685         
1686         * WOComponentDefinition.m: set component as delegate for plist 
1687           unarchiver
1688         
1689 2004-04-15  Helge Hess  <helge.hess@opengroupware.org>
1690         
1691         * WOComponentDefinition.m: fixed use of incorrect variable in .woo
1692           initializer, as reported by Jean-Alexis (v4.2.347)
1693
1694         * WOComponent.m, WOComponentDefinition.m: .woo postprocessing is
1695           now triggered by WOComponent -init, the component definition is 
1696           passed in the wocVariables ivar (HACK CD!) (v4.2.346)
1697
1698 2004-04-14  Helge Hess  <helge.hess@opengroupware.org>
1699
1700         * v4.2.345
1701         
1702         * WOComponentDefinition.m: minor code cleanups, implement
1703           -_finishInitializingComponent: which loads the .woo and does some
1704           other postprocessing
1705         
1706         * WOComponent.m: added -_setContext: private method and use that
1707           instead of assigning to self->context
1708
1709         * WOApplication.m: added -_pageWithName:inContext: private method
1710           (which is wrapped by -pageWithName:inContext:)
1711
1712 2004-04-12  Helge Hess  <helge.hess@opengroupware.org>
1713         
1714         * WOContext.m: improved -applicationURL to handle empty adaptor
1715           prefixes (v4.2.344)
1716
1717 2004-04-11  Helge Hess  <helge.hess@opengroupware.org>
1718
1719         * Languages.plist: added de-lu, en-gb, fr-be and fr-lu mappings
1720           (v4.2.343)
1721
1722 2004-04-09  Marcus Mueller  <znek@mulle-kybernetik.com>
1723
1724         * Templates/WOHTMLParser.m: -[NSException setUserInfo:] does
1725           not exist on MacOSX (v4.2.342)
1726
1727 2004-04-07  Jean-Alexis Montignies   <ja@sente.ch>
1728
1729         * v4.2.341 (requires libNGExtensions v4.2.77)
1730
1731         * WOApplication: Added +eoEditingContextClass and 
1732           +implementsEditingContexts dependant on the
1733           availability of EOEditingContext in EOControl.
1734
1735         * WOSession: Implemented -defaultEditingContext, bumped class version
1736           because an ivar was added
1737         
1738         * WORequest: Implemented -formValues.
1739
1740 2004-04-07  Helge Hess  <helge.hess@opengroupware.org>
1741         
1742         * Templates/WOWrapperTemplateBuilder.m: use 
1743           -stringEncodingForEncodingNamed: on Cocoa (v4.2.340)
1744
1745 2004-04-06  Helge Hess  <helge.hess@opengroupware.org>
1746         
1747         * WOHTMLParser.m, WODParser.m: fixed a missing return statement, 
1748           introduced in v4.2.338 (thanks Jean-Alexis for reporting :-) 
1749           (v4.2.339)
1750         
1751 2004-04-06  Helge Hess  <helge.hess@skyrix.com>
1752
1753         * v4.2.338
1754
1755         * WODParser.m, WOHTMLParser.m, WOWrapperTemplateBuilder.m: added 
1756           support for using UTF-8 as the parsing encoding, can be enabled 
1757           using the WOParsersUseUTF8 bool default (Note: this slows the parser
1758           down).
1759         
1760         * WODParser.m: added support for parsing 'true' and 'false'
1761
1762 2004-04-05  Helge Hess  <helge.hess@skyrix.com>
1763
1764         * v4.2.337
1765
1766         * WOComponentDefinition.m: added support for woo variables stored in 
1767           the template
1768
1769         * WOWrapperTemplateBuilder.m: parse .woo file, remember .woo variables
1770           in template and add a hack to support .woo file encodings
1771
1772         * WOTemplate.m: added ability to store extra, KVC encoded, component
1773           variables, as contained in .woo files
1774
1775         * WOComponentDefinition.m, WOComponent.m: moved .woo loading from
1776           WOComponent to WOComponentDefinition as suggested by ja@sente.ch 
1777           (v4.2.336)
1778
1779 2004-04-04  Helge Hess  <helge.hess@opengroupware.org>
1780
1781         * WOComponent.m: use just the component name as the login prefix
1782           (without <>), properly deal with components without a name
1783           (v4.2.335)
1784
1785 2004-04-01  Helge Hess  <helge.hess@opengroupware.org>
1786
1787         * Languages.plist: added mapping of fr-fr to French (v4.2.334)
1788
1789 2004-03-30  Helge Hess  <helge.hess@skyrix.com>
1790
1791         * Associations/WOAssociation.m: minor fix to cache log message 
1792           (v4.2.333)
1793
1794 2004-03-29  Helge Hess  <helge.hess@opengroupware.org>
1795
1796         * DynamicElements/WORadioButtonList.m: code cleanups (v4.2.332)
1797
1798 2004-03-26  Helge Hess  <helge.hess@opengroupware.org>
1799
1800         * WOComponentDefinition.m: fixed support for components without 
1801           classes, some related warnings can be disabled by setting the
1802           WOEnableComponentsWithoutClasses default (v4.2.331)
1803
1804 2004-03-24  Helge Hess  <helge.hess@skyrix.com>
1805
1806         * DynamicElements/WOConditional.m, WOTextField.m: subminor code 
1807           cleanups (v4.2.330)
1808
1809 2004-03-22  Helge Hess  <helge.hess@skyrix.com>
1810
1811         * SoObjects/SoSelectorInvocation.m: fixed a typo (v4.2.329)
1812
1813 2004-03-21  Helge Hess  <helge.hess@opengroupware.org>
1814
1815         * v4.2.328
1816         
1817         * WEClientCapabilities.m: added Ecto as a known client (BLog, XML-RPC)
1818         
1819         * SoObjectXmlRpcDispatcher.m, Defaults.plist: added default to enable
1820           debug logs 'SoObjectXmlRpcDispatcherDebugEnabled', implemented first
1821           working version of SOPE XML-RPC invocation using positional 
1822           parameters
1823         
1824         * SoProductClassInfo.m: enhanced manifests for selector invocations
1825         
1826         * SoSecurityManager.m: minor improvements on the debug logs
1827         
1828         * SoSelectorInvocation.m: added ability to call methods with 
1829           positional parameters as submitted by the XML-RPC dispatcher
1830         
1831 2004-03-18  Helge Hess  <helge.hess@opengroupware.org>
1832
1833         * WOComponent.m: added empty default implementation of 
1834           -unableToSetNilForKey: to support Cocoa KVC (v4.2.327)
1835
1836 2004-03-17  Helge Hess  <helge.hess@skyrix.com>
1837
1838         * Languages.plist: added "es-es" language mapping (v4.2.326)
1839
1840 2004-03-11  Marcus Mueller  <znek@mulle-kybernetik.com>
1841
1842         * v4.2.325
1843
1844         * WOApplication.m: If in RAD mode sets new HTTP header bearing the path
1845           to the current page template.
1846         
1847         * WOComponent+private.h: Expose private method
1848           - (WOElement *)_woComponentTemplate;
1849         
1850         * WOTemplate.[hm]: New accessor - (NSURL *)url
1851
1852 2004-03-16  Helge Hess  <helge.hess@opengroupware.org>
1853
1854         * WOComponent: fixed (the new) KVC extravar handling on gstep-base and
1855           MacOSX (v4.2.324)
1856
1857 2004-03-15  Helge Hess  <helge.hess@opengroupware.org>
1858
1859         * v4.2.323
1860
1861         * SoObjects/SoSelectorInvocation.m: minor improvement to response 
1862           generation (if GET is called directly on the method object)
1863
1864         * v4.2.322
1865
1866         * WOComponent.m, WOSession.m: improved KVC handling on Cocoa and 
1867           gstep-base, uses "-handleQueryWithUnboundKey:" for extra variables
1868
1869         * SoObjects/SoProductClassInfo.m, NGXmlRpc: fixed a warning
1870
1871         * WOApplicationMain.m, WOWatchDogApplicationMain.m, xmlrpc_call.m: use 
1872           explicit NSProcessInfo initialization if GS_PASS_ARGUMENTS is defined
1873           (for some gstep-base setups) (v4.2.321)
1874
1875 2004-03-11  Marcus Mueller  <znek@mulle-kybernetik.com>
1876
1877         * v4.2.320
1878
1879         * Associations/WOKeyPathAssociation.m: new approach for fixing the
1880           CoreFoundation related issue of possible immutability of
1881           NSMutableDictionary.
1882
1883         * DynamicElements/WOxHTMLElemBuilder.m: Do not create WOHyperlink
1884           element if <a /> tag has a name attribute (anchor). Also, do not
1885           create WOHtml element at all.
1886         
1887         * DynamicElements/WOHtml.m: Minor fixes for obvious copy/paste
1888           mistakes.
1889
1890 2004-03-09  Helge Hess  <helge.hess@skyrix.com>
1891
1892         * DynamicElements/WOComponentReference.m: removed inclusion of
1893           private WOKeyPathAssociation header file (no reason for that) 
1894           (v4.2.319)
1895
1896 2004-03-09  Helge Hess  <helge.hess@opengroupware.org>
1897
1898         * v4.2.319
1899
1900         * WOComponent.m, WOSession.m: improved KVC handling on Cocoa and 
1901           gstep-base
1902
1903 2004-03-09  Helge Hess  <helge.hess@opengroupware.org>
1904
1905         * v4.2.318
1906
1907         * NGObjWeb/WebDAV/SoWebDAVRenderer.m: fixed a minor compilation
1908           warning with gstep-base
1909
1910         * SoObjects/SoObjCClass.m: changed not use -stringWithoutSuffix:
1911
1912 2004-03-07  Helge Hess  <helge.hess@opengroupware.org>
1913
1914         * v4.2.317
1915
1916         * NGXmlRpc/NGXmlRpcClient.m: generate capitalized "Basic" authorization
1917           header, required by eGroupware, improved processing of HTML
1918           responses to XML-RPC calls (usually webserver error pages)
1919         
1920         * WOHttpAdaptor/WOHttpTransaction.m, WOContext.m, SoObjects/SoObject.m:
1921           check for :0 ports
1922
1923         * WORequest.m: make language codes lowercase prior mapping
1924
1925         * WOMessage.m(-setHeaders:): properly process array values
1926
1927         * Languages.plist: map de-at to German
1928
1929         * SoObjects/SoProductClassInfo.m: added support for "valueClass"
1930           slots which do not have a value (an instance of the class is created
1931           using just -init)
1932
1933 2004-03-03  Helge Hess  <helge.hess@opengroupware.org>
1934
1935         * WebDAV/SoObjectWebDAVDispatcher.m, WebDAV/SoDAVSQLParser.m: fixed 
1936           not to use deprecated EOControl API (v4.2.316)
1937
1938 2004-03-02  Helge Hess  <helge.hess@opengroupware.org>
1939
1940         * v4.2.315
1941
1942         * Languages.plist: mapped "de-ch" to German, fixes OGo bug #666
1943
1944         * NGXmlRpc: improved NGXmlRpcClient class to allow more HTTP tweaking
1945
1946 2004-03-02  Helge Hess  <helge.hess@skyrix.com>
1947
1948         * v4.2.314
1949         
1950         * Associations/WOAssociation.m: the association class used for 
1951           keypathes can now be configured using the WOKeyPathAssociationClass
1952           default
1953
1954         * Associations/WOKeyPathAssociation.m: moved KVC category on 
1955           NSUserDefaults to a separate file
1956         
1957         * Associations: added WOKeyPathAssociationSystemKVC association, which
1958           uses the Foundation KVC implementation for improved WO compatibility
1959
1960         * WebDAV: removed dependency on EOSQLParser, added own SoDAVSQLParser
1961           classes (different SQL dialect anyway) - should help with GDL2
1962           compatibility
1963         
1964 2004-03-01  Helge Hess  <helge.hess@opengroupware.org>
1965
1966         * WOHTTPConnection.m: write default "accept" and "user-agent" HTTP 
1967           headers in case none are specified in a WORequest. Improves 
1968           compatibility with the Roxen HTTP server (v4.2.313)
1969
1970 2004-03-01  Helge Hess  <helge.hess@skyrix.com>
1971
1972         * WOComponent.m: components can now load .woo files as emitted by
1973           WebObjects Builder - you need to set the default 
1974           WOComponentLoadWOOFiles to enable that (v4.2.312)
1975
1976 2004-03-01  Helge Hess  <helge.hess@opengroupware.org>
1977
1978         * Templates/WOHTMLParser.m: allow for lowercase WO tags (v4.2.311)
1979
1980 2004-02-29  Helge Hess  <helge.hess@opengroupware.org>
1981
1982         * Templates/WOHTMLParser.m: added ability to parse templates containing
1983           <WEBOBJECT> tags, as requested by ZNeK for rapid turnaround support
1984           with WebObjects Builder (v4.2.310)
1985
1986 2004-02-27  Helge Hess  <helge.hess@opengroupware.org>
1987
1988         * v4.2.309
1989
1990         * WOSession.m: fixed a small issue in the content-type processing,
1991           thanks chunsj for pointing that out!
1992
1993         * WOHTTPConnection.m: subminor code cleanup
1994
1995         * v4.2.308
1996         
1997         * Templates/WOxElemBuilder.m: log a note if debugging is turned on,
1998           ensure that +initialize is only called once (on MacOSX)
1999         
2000         * WOResourceManager.m: fixed resource lookup in MacOSX rapid 
2001           turnaround mode
2002
2003 2004-02-25  Helge Hess  <helge.hess@skyrix.com>
2004
2005         * v4.2.307
2006
2007         * WOResourceManager.m: improved error logging (backport from SX5)
2008
2009         * Associations/WOKeyPathAssociation.m: do not protected keypath 
2010           evaluation using exception handlers - major slowdown and only really
2011           useful in debugging contexts. Exception handlers can be reactivated
2012           by passing "WOAssociationExceptionHandlers=yes" to make when 
2013           compiling NGObjWeb
2014
2015 2004-02-23  Helge Hess  <helge.hess@opengroupware.org>
2016
2017         * v4.2.306
2018
2019         * WOApplication.m(-shouldTerminate): subminor cleanups
2020
2021         * WebDAV/SaxDAVHandler.m: ensure that a local variable is initialized
2022         
2023 2004-02-19  Helge Hess  <helge.hess@opengroupware.org>
2024
2025         * Associations/WOKeyPathAssociation.m: added a hack to workaround
2026           to find out whether a dictionary is immutable - even immutable
2027           dictionaries have a -setObject:forKey: on Cocoa (v4.2.305)
2028
2029         * WOComponent.m, WOApplication.m: added KVC default handlers for Cocoa
2030           Foundation (avoids some exceptions, libFoundation is much more 
2031           tolerant regarding missing KVC keys than Cocoa) (v4.2.304)
2032
2033 2004-02-19  Helge Hess  <helge.hess@skyrix.com>
2034
2035         * Languages.plist: map pt-br to ptBR instead of "Portuguese-Brazil" 
2036           (the .lproj's are ptBR.lproj) (v4.2.303)
2037
2038 2004-02-19  Helge Hess  <helge.hess@opengroupware.org>
2039
2040         * v4.2.302
2041
2042         * SoObjects/SoObject.m: ensure that no port ":0" is attached to object
2043           URLs
2044
2045         * SoObjects/SoHTTPAuthenticator.m: return a proper 401/www-authenticate
2046           response if an empty password is passed in
2047
2048 2004-02-18  Helge Hess  <helge.hess@opengroupware.org>
2049
2050         * v4.2.301
2051
2052         * Defaults.plist: explicitly list some adaptor defaults
2053
2054         * Languages.plist: mapped bt-br browser lang-code to Portuguese-Brazil
2055           (fixes OGo bug 631)
2056
2057 2004-02-17  Helge Hess  <helge.hess@skyrix.com>
2058
2059         * v4.2.300
2060
2061         * WOSimpleHTTPParser.m: added very simple support for 100-continue to
2062           make the Mono HTTP client happy
2063
2064         * WOSimpleHTTPParser.m: trims trailing spaces in header lines
2065
2066         * WOSimpleHTTPParser.m, Defaults.plist: added defaults to configure
2067           the WOSimpleHTTPParser: WOSimpleHTTPParserDebugEnabled,
2068           WOSimpleHTTPParserHeavyDebugEnabled, 
2069           WOSimpleHTTPParserFileIOBoundary, WOSimpleHTTPParserMaxUploadSizeInKB
2070
2071 2004-02-16  Helge Hess  <helge.hess@skyrix.com>
2072
2073         * v4.2.299
2074
2075         * WORequest.m: missing browser-mapping log is now a debug-level log
2076
2077         * Languages.plist: added "es-cl" to Spanish mapping
2078
2079 2004-02-14  Helge Hess  <helge.hess@opengroupware.org>
2080
2081         * DAVPropMap.plist: added mappings for {DAV:} source, executable, 
2082           supportedlock, lockdiscovery properties as submitted by Konqueror
2083           (v4.2.298)
2084
2085         * Languages.plist: added "pt-pt" to Portuguese mapping (v4.2.297)
2086
2087 2004-02-13  Marcus Mueller  <znek@mulle-kybernetik.com>
2088
2089         * v4.2.296
2090
2091         * README: documented new -WOProjectDirectory default
2092
2093         * WOResourceManager.m, WOApplication.m: added support for new
2094           -WOProjectDirectory default. If set, resources will be looked
2095           up there instead of using the default mechanism.
2096
2097         * SNSConnection.m: wrapped all safeWrite: methods to raise exceptions.
2098           Not doing so breaks the existing checks. At least on OSX this did
2099           prevent SNSConnection from running as expected.
2100
2101 2004-02-13  Helge Hess  <helge.hess@skyrix.com>
2102
2103         * DynamicElements/WOImage.m: moved some cluster subclasses to separate
2104           source files, properly create a _WOConstResourceImage for constant
2105           'filename' bindings (v4.2.295)
2106
2107 2004-02-12  Helge Hess  <helge.hess@opengroupware.org>
2108
2109         * v4.2.294
2110         
2111         * Languages.plist: add some country/language codes (as submitted by
2112           Safari)
2113         
2114         * WORequest: rewrote to parse the accept-language header on its own
2115           (instead of relying on the deprecated NGHttpRequest methods), print
2116           a warning if the browser language map could not be found
2117         
2118         * GNUmakefile: another fix to the Version for the MacOSX linker
2119         
2120         * WEClientCapabilities.m: added new -ignoresCSSOnFormElements probe
2121           for detecting browsers like Safari which do not apply stylesheets
2122           on form elements (v4.2.293)
2123
2124 2004-02-11  Helge Hess  <helge.hess@skyrix.com>
2125
2126         * Templates: minor code cleanups in various files (v4.2.292)
2127
2128 2004-02-10  Helge Hess  <helge.hess@opengroupware.org>
2129
2130         * v4.2.291
2131
2132         * SoOFS/OFSFileRenderer.m: do not use -initWithTimeIntervalSince1970:
2133           on MacOSX (deprecated in Cocoa)
2134
2135         * Templates/WOWrapperTemplateBuilder.m, 
2136           WOHttpAdaptor/WOHttpTransaction.m: fixed compilation warnings on
2137           MacOSX
2138
2139 2004-02-10  Helge Hess  <helge.hess@skyrix.com>
2140
2141         * DynamicElements/WOString.m: added support for 'format' binding (used
2142           in conjunction with the 'formatterClass' binding for creation of
2143           custom formatters) (v4.2.290)
2144
2145 2004-02-09  Helge Hess  <helge.hess@skyrix.com>
2146
2147         * NGXmlRpc: deprecated some API in NGXmlRpcClient (v4.2.289)
2148           (what happened to 4.2.288?)
2149
2150 2004-02-01  Helge Hess  <helge.hess@opengroupware.org>
2151
2152         * v4.2.287
2153
2154         * SoObjects/SoObject+Traversal.m: modified key traversal so that
2155           path-info is correctly set if a key right *after* a callable could
2156           not be found (eg /object/myMethod/junk)
2157
2158         * SoObjects/SoProductRegistry.m, SoProduct.m: generate a simple 
2159           registry representation
2160
2161 2004-01-29  Helge Hess  <helge.hess@skyrix.com>
2162
2163         * WOHttpAdaptor/WOHttpAdaptor.m: minor cleanups (v4.2.287)
2164
2165         * v4.2.286
2166         
2167         * NGHttp: removed an unnecessary debug log
2168         
2169         * GNUmakefile, Version: moved the MacOSX version hack to GNUmakefile
2170           since the SKYRiX 5 migration tool will break on that otherwise
2171
2172 2004-01-25  Helge Hess  <helge.hess@opengroupware.org>
2173
2174         * DynamicElements/WOGenericElement.m: minor cleanups (v4.2.285)
2175
2176 2004-01-22  Marcus Mueller  <znek@mulle-kybernetik.com>
2177
2178         * GNUmakefile, SoApplication.m: provided include of -I../WebDAV/
2179           and removed #include "WebDAV/..." because this breaks stupid
2180           Xcode.
2181           (v4.2.284)
2182
2183 2004-01-16  Helge Hess  <helge.hess@skyrix.com>
2184
2185         * NGHttp+WO.m: fixed a log (always logged the _decodeMultiPart.. stuff)
2186           (v4.2.283) 
2187
2188 2004-01-15  Helge Hess  <helge.hess@skyrix.com>
2189
2190         * WOComponent.m, SoApplication.m, SaxDAVHandler.m: fixed some 
2191           compilation warnings (v4.2.282)
2192
2193 2004-01-03  Helge Hess  <helge.hess@opengroupware.org>
2194
2195         * v4.2.281
2196
2197         * WOHttpAdaptor/WOHttpTransaction.m: fixed logging of response zipping
2198           information
2199         
2200         * WOStatisticsStore.m: minor speed improvements and cleanups
2201
2202         * WOResponse.m: added default to debug 'zipping' of response contents,
2203           fixed detection of the clients ability to process zipped responses
2204           (in other words: pages should now (again) be zipped automatically)
2205
2206 2003-12-31  Helge Hess  <helge.hess@opengroupware.org>
2207
2208         * v4.2.280
2209
2210         * DynamicElements/WOConditional.m: code cleanups
2211
2212         * WOElementID.m: subminor cleanups
2213
2214         * Associations/WOKeyPathAssociation.m: minor cleanups
2215
2216 2003-12-23  Helge Hess  <helge.hess@skyrix.com>
2217
2218         * v4.2.279
2219         
2220         * WebDAV/SoWebDAVRenderer.m: fixed rendering of propertyname-only
2221           WebDAV queries (fixes OGo bug 503), use appendContentXMLString
2222         
2223         * WOMessage.m: added default WOProfileResponse for collecting append 
2224           statistics, make more use of cached selectors
2225         
2226 2003-12-19  Helge Hess  <helge.hess@skyrix.com>
2227
2228         * DAVPropMap.plist: added mappings for two OOo DAV properties 
2229           (v4.2.278)
2230
2231 2003-12-12  Helge Hess  <helge.hess@skyrix.com>
2232
2233         * WEClientCapabilities.m: added Kung-Log as a known user-agent, added
2234           new typing checks "isXmlRpcClient" and "isBLogClient" (v4.2.277)
2235
2236 2003-12-11  Helge Hess  <helge.hess@opengroupware.org>
2237
2238         * WebDAV/SoObjectWebDAVDispatcher.m: allow delete properties during
2239           object creation for iSync (v4.2.276)
2240
2241         * SoObjects/SoObject.m: added methods to calculate containment pathes
2242           (-pathArrayToSoObject, -reversedPathArrayToSoObject) and a method to
2243           calculate the containment stack (objectContainmentStack) (v4.2.275)
2244
2245         * v4.2.274
2246
2247         * DynamicElements/WOxHTMLElemBuilder.m: only create WOMetaRefresh 
2248           elements for "http-equiv=refresh" (was previously used for anything
2249           which has a "http-equiv" attribute)
2250
2251         * added new "WOResourceURLAssociation", only available in XML templates
2252         
2253         * added new - shorter - namespace mappings. "OGo:bind", "OGo:value",
2254           "OGo:script" and "OGo:url" (only for associations!)
2255         
2256         * Templates/WOxElemBuilder.m: made namespace->association mapping a
2257           default
2258
2259 2003-12-10  Helge Hess  <helge.hess@skyrix.com>
2260
2261         * WOComponent.m: subminor cleanups to some logging messages (v4.2.273)
2262
2263 2003-12-10  Helge Hess  <helge.hess@opengroupware.org>
2264
2265         * SoObjects/SoObjectMethodDispatcher.m: ensure that the method-object 
2266           which was looked-up, is indeed callable. If not, return the object
2267           itself (relates to OGo Bug #480) (v4.2.272)
2268
2269         * WEClientCapabilities.m: added Apple CoreFoundation user-agent as a
2270           known one (v4.2.271)
2271
2272 2003-12-09  Helge Hess  <helge.hess@skyrix.com>
2273         
2274         * SoObjects/SoHTTPAuthenticator.m: fixed an authentication bug 
2275           introduced in v4.2.268 (v4.2.270)
2276         
2277 2003-12-08  Helge Hess  <helge.hess@skyrix.com>
2278
2279         * GNUmakefile.postamble: install woapp-gs.make and wobundle-gs.make
2280           in all but gstep-make 1.3.0 (which is the local OGo version) 
2281           (v4.2.269)
2282
2283 2003-12-07  Helge Hess  <helge.hess@opengroupware.org>
2284
2285         * v4.2.268
2286
2287         * SoObjects/SoObjectXmlRpcDispatcher.m: made a bit more tolerant
2288           regarding invalid input
2289
2290         * SoObjects/SoHTTPAuthenticator.m: fixed parsing of basic auth 
2291           credentials
2292
2293         * NGHttp+WO.m: major cleanups in form decoding code (v4.2.267)
2294
2295 2003-12-03  Helge Hess  <helge.hess@skyrix.com>
2296
2297         * WEClientCapabilities.m: marked Safari as CSS and fast-table browser
2298           (v4.2.266)
2299
2300 2003-11-30  Helge Hess  <helge.hess@opengroupware.org>
2301
2302         * v4.2.265
2303
2304         * GNUmakefile: added principal classes to the product bundles
2305
2306         * Templates/GNUmakefile: include project makefile from 
2307           GNUSTEP_MAKEFILES (as suggested by chunsj@embian.com)
2308
2309 2003-11-29  Helge Hess  <helge.hess@opengroupware.org>
2310
2311         * WEClientCapabilities.m: added Morgul as a known (WebDAV) user agent
2312           (v4.2.264)
2313
2314 2003-11-28  Helge Hess  <helge.hess@skyrix.com>
2315
2316         * v4.2.263
2317
2318         * WebDAV/SoWebDAVRenderer.m: subminor cleanups
2319
2320         * WebDAV/SoObjectWebDAVDispatcher.m: unescape destination URL pathes
2321           for MOVE/COPY operations (related to bug 456)
2322
2323 2003-11-25  Helge Hess  <helge.hess@opengroupware.org>
2324
2325         * WODirectActionRequestHandler.m: check whether class being used for
2326           direct action actually responds to -initWithContext: - if not, no
2327           object will be activated (v4.2.262)
2328
2329 2003-11-24  Helge Hess  <helge.hess@skyrix.com>
2330
2331         * WOMessage.m(-setHTTPVersion:): log a message if the version passed in
2332           doesn't start with "HTTP/" (fixes OGo Bug 434) (v4.2.261)
2333
2334 2003-11-23  Helge Hess  <helge.hess@opengroupware.org>
2335
2336         * v4.2.260
2337         
2338         * SoObjects/SoObject.m: added some tweaks to generate a proper URL
2339           even if x-webobjects-server-url reports a wrong port (mismatch of
2340           host port and URL port)
2341
2342         * WOContext.m: replaced some defines with regular BOOL configurations
2343
2344         * SoObjects/SoProduct.m: fixed -description
2345
2346 2003-11-21  Helge Hess  <helge.hess@opengroupware.org>
2347
2348         * WebDAV/SoWebDAVRenderer.m: generate a preliminary etag to keep
2349           WebFolders happy (v4.2.259)
2350
2351         * v4.2.258
2352         
2353         * WebDAV/SoObjectWebDAVDispatcher.m: added proper depth generation for
2354           IE WebFolders (do not use flat+self on IE and Evo)
2355
2356         * WebDAV/SoObject+SoDAVQuery.m: do not include self in resultsets when
2357           accessing with IE webfolders
2358
2359         * WebDAV/SoWebDAVRenderer.m: do not deliver content in the DELETE
2360           response if the status is set to 204 (no content) ...
2361
2362         * WOSimpleHTTPParser.m: added "destroy" as a known header (sent by
2363           IE 6)
2364         
2365         * WebDAV/SoWebDAVRenderer.m: improved debug logging
2366
2367 2003-11-21  Helge Hess  <helge.hess@skyrix.com>
2368
2369         * v4.2.257
2370
2371         * SoWebDAVRenderer.m: minor improvements to GET/HEAD rendering
2372
2373         * SoObjects/WORequest+So.m: added ability to detect "break-DAV"
2374           (/servlet/webdav. URIs), small fix to login code
2375
2376         * DAVPropMap.plist: mapped seven new WebDAV properties submitted by
2377           WebFolders (IE 6)
2378
2379 2003-11-21  Helge Hess  <helge.hess@opengroupware.org>
2380
2381         * v4.2.256
2382
2383         * WebDAV/SoObjectWebDAVDispatcher.m: more tweaks for MOVE/COPY
2384
2385         * SoObjects/SoObject+Traversal.m: properly differentiate between
2386           MOVE/COPY source and target pathinfo handling
2387         
2388         * WebDAV/SoWebDAVRenderer.m: added ability to render MOVE and COPY
2389           result codes
2390
2391 2003-11-20  Helge Hess  <helge.hess@opengroupware.org>
2392
2393         * v4.2.255
2394
2395         * SoObject+Traversal.m: necessary tweaks for MOVE/COPY
2396         
2397         * SoWebDAVDispatcher.m: added initial implementation for WebDAV
2398           MOVE and COPY operations
2399         
2400         * SoObject+SoDAV.[hm]: added method prototypes for WebDAV move and
2401           copy operations
2402
2403         * WOSimpleHTTPParser.m: added "overwrite" as a known header
2404
2405         * SoObjects/SoObject.m, SoObjects/SoProduct.m, 
2406           WebDAV/SoObjectDataSource.m: properly URL escape object names prior
2407           adding them to URLs! (v4.2.254)
2408
2409 2003-11-19  Helge Hess  <helge.hess@skyrix.com>
2410
2411         * WebDAV/SoWebDAVRenderer.m: properly XML escape URLs which are part 
2412           of a WebDAV response (fixed SX 1896), added a default to trigger
2413           the generation of "good looking" WebDAV (inserts newlines in the
2414           output for debugging) (v4.2.253)
2415
2416 2003-11-19  Helge Hess  <helge.hess@opengroupware.org>
2417
2418         * WOApplication+defaults.m: comment the use of some default (v4.2.252)
2419
2420 2003-11-18  Helge Hess  <helge.hess@opengroupware.org>
2421
2422         * v4.2.251
2423
2424         * NGAsyncResultProxy: fixed the header file, replaced some retain
2425           macros with methods
2426
2427         * WOGenericContainer.m: fixed a minor bug with an edge case where the
2428           tag may not be defined
2429
2430         * WOAssociation.m, WOActionURL.m: minor tweak for OSX
2431
2432 2003-11-15  Helge Hess  <helge.hess@opengroupware.org>
2433
2434         * v4.2.250
2435
2436         * WebDAV/SoWebDAVRenderer.m: be smart about PUTAction return values
2437
2438         * WOSimpleHTTPParser.m: added "timeout" as a known header
2439
2440         * v4.2.249
2441         
2442         * WebDAV/SoObjectWebDAVDispatcher.m: minor cleanups
2443
2444         * WOSimpleHTTPParser.m: added "lock-token", "if" and "destination" as 
2445           known headers
2446
2447 2003-11-14  Helge Hess  <helge.hess@skyrix.com>
2448
2449         * v4.2.248
2450
2451         * SoObjects/SoProductClassInfo.m: improved logging of SoClasses
2452           incorrectly declared in product.plist files (eg a product bundle
2453           exporting a class it does not contain ...)
2454
2455 2003-11-14  Helge Hess  <helge.hess@opengroupware.org>
2456
2457         * xmlrpc_call.m: added ability to force authentication (intended for
2458           services which do not return a 401 on a protected resource, like
2459           Zope) (v4.2.247)
2460
2461 2003-11-04  Helge Hess  <helge.hess@opengroupware.org>
2462
2463         * v4.2.246
2464         
2465         * WEClientCapabilities.m: added new MacOSX davfs user agent
2466         
2467         * DAVPropMap.plist: added WebDAV mappings for {DAV:}quota, quotaused
2468           and {...}appledoubleheader, which are submitted by the Apple davfs
2469
2470 2003-11-02  Helge Hess  <helge.hess@opengroupware.org>
2471
2472         * WOResponse.m: always use HTTP/1.0 as the response HTTP version
2473           (before we just copied the version used in the request which
2474           obviously is nonsense ...) (v4.2.245)
2475
2476 2003-11-01  Helge Hess  <helge.hess@opengroupware.org>
2477
2478         * WOSimpleHTTPParser.m: added x-forwarded-host, x-forwarded-server
2479           and max-forwards as known headers (v4.2.244)
2480
2481 2003-10-31  Helge Hess  <helge.hess@opengroupware.org>
2482
2483         * v4.2.243
2484         
2485         * DynamicElements/WOMetaRefresh.m: properly add the session-id to the
2486           query-string
2487         
2488         * DynamicElements/WOForm.m: code cleanups
2489
2490         * v4.2.242
2491
2492         * DynamicElements/WOHyperlink.m: smaller cleanups
2493
2494         * WOFileSessionStore.m: small code cleanups
2495
2496         * SoOFS/OFSFolder+SoDAV.m: fixed a warning
2497
2498         * WOServerSessionStore.m: small code cleanups
2499
2500 2003-10-29  Helge Hess  <helge.hess@skyrix.com>
2501
2502         * SoObjects/SoApplication.m: fixed a bug in new lookup code (did not
2503           work with ZideStore, sigh), added lookup logging code (triggered by
2504           SoDebugKeyLookup) (v4.2.241)
2505
2506         * v4.2.240
2507
2508         * SoObjects/SoObject.m: added SoDebugBaseURL default to enable debug
2509           logs for SoObject base-url processing
2510
2511         * SoOFS/OFSFolder+SoDAV.m: added capability to create collections
2512
2513         * WebDAV/SoWebDAVRenderer.m: added ability to render MKCOL results
2514
2515         * WebDAV/SoObject+SoDAV.m: added default implementations for DAV
2516           creation methods (which just return 405 exceptions ..)
2517
2518         * SoObjects/SoApplication.m: now forwards WebDAV resource creation 
2519           requests to root folder. Further the application is now able to
2520           lookup its own name (for /MyApp style path resolution)
2521
2522         * SoObjects/WORequest+So.m, Defaults.plist: added 
2523           SoDebugRequestClassification default to control logging of request
2524           classification (as WebDAV, XML-RPC, etc)
2525
2526 Mon Oct 27 15:05:13 2003  Jan Reichmann  <jr@skyrix.com>
2527
2528         * WOHttpAdaptor/WOHttpTransaction.m: if x-webobjects-server-port < 1
2529           set x-webobjects-server-port to the [woRequest host] port (Apache 
2530           2.x adaptor returns empty x-webobjects-server-port) (v4.2.239)
2531
2532 2003-10-27  Thomas Schild  <ts@skyrix.com>
2533
2534         * Defaults.plist: added Dutch to WODefaultLanguages (v4.2.238)
2535
2536 2003-10-23  Helge Hess  <helge.hess@skyrix.com>
2537
2538         * WOResourceManager.m: improved lookup logging (v4.2.237)
2539
2540         * WOContext.m: changed serverURL (the base for most other URLs)
2541           generation. Sometimes the mod_ngobjweb seems to report wrong ports
2542           - so, if a 'host' header is available, we consider *that* as being
2543           primary (v4.2.236)
2544
2545 2003-10-21  Helge Hess  <helge.hess@skyrix.com>
2546
2547         * WEClientCapabilities.m: properly detect version of Safari 1.1 -
2548           this is a bit weird (Safari 1.1 reports v100 as its version ...)
2549           (v4.2.235)
2550
2551         * v4.2.234
2552
2553         * WOResourceManager.m (-urlForResourceNamed:): avoid generation of two
2554           slashes in URL (was triggered when WOResourcePrefix is set)
2555
2556         * DynamicElements/WOInput.m, DynamicElements/WOText.m: smaller cleanups
2557
2558 2003-10-20  Helge Hess  <helge.hess@skyrix.com>
2559
2560         * GNUmakefile.preamble: explicitly link tools against libNGJavaScript
2561           (v4.2.233)
2562
2563 2003-10-20  Thomas Schild  <ts@skyrix.com>
2564
2565         * Defaults.plist: added ptBR to WODefaultLanguages
2566
2567 2003-10-20  Helge Hess  <helge.hess@opengroupware.org>
2568
2569         * v4.2.232
2570
2571         * GNUmakefile.preamble: mark when doing a gstep-make environment
2572           compilation ...
2573
2574         * WOResourceManager.m: some modifications to support gstep-make on
2575           MacOSX, added debugging defaults
2576
2577 2003-10-16  Helge Hess  <helge.hess@skyrix.com>
2578
2579         * WOHTTPConnection.m: improved request logging (v4.2.231)
2580
2581 2003-10-15  Helge Hess  <helge.hess@opengroupware.org>
2582
2583         * GNUmakefile.postamble (after-install): properly install NGObjWeb 
2584           makefiles with gstep-make 1.7.4 (this is currently a fix makefile 
2585           version check)
2586
2587 2003-10-15  Helge Hess  <helge.hess@skyrix.com>
2588
2589         * v4.2.230
2590
2591         * WOHTTPConnection.m: added -description, added a lot of debug logs
2592         
2593         * SoObjects/SoProductRegistry.m: fixed a warning (v4.2.229)
2594         
2595         * Associations/WOKeyPathAssociation.m: patches to compile on MacOSX
2596           without FoundationExt (adopted for the Apple runtime) (v4.2.228)
2597
2598 2003-10-15  Helge Hess  <helge.hess@opengroupware.org>
2599
2600         * v4.2.227
2601
2602         * SoOFS/OFSFolder.m: generalized authenticator lookup
2603
2604         * SoOFS/OFSBaseObject.m: avoid endless recursions in 
2605           -authenticatorInContext:
2606
2607         * lots of fixes for compilation using gstep-make on MacOSX 
2608
2609 2003-10-12  Helge Hess  <helge.hess@skyrix.com>
2610
2611         * v4.2.226
2612
2613         * WOPageRequestHandler.m, Defaults.plist: some code cleanups, added 
2614           the WOPageRequestHandlerDebugEnabled log default
2615
2616         * WODirectActionRequestHandler.m: when a WOComponent class is used as
2617           a direct-action, the code now applies the request on the component 
2618           if it responds YES to shouldTakeValuesFromRequest:..
2619
2620         * NGObjWeb/WODirectAction.h: added -context method to public interface
2621
2622 2003-10-11  Helge Hess  <helge.hess@skyrix.com>
2623
2624         * common.h, NGObjWeb.h: minor fixes for MacOSX compilation (the port
2625           is not finished yet) (v4.2.225)
2626
2627         * v4.2.224
2628
2629         * SoOFS: added a folder datasource class for querying contents of an
2630           OFS folder and a "contentDataSource" method
2631         
2632         * SoObjects/SoTemplateRenderer.m: name the wrapper component of custom
2633           components like the custom objects themselves
2634
2635         * SoObjects/SoObject+Traversal.m: improved debug logs
2636
2637         * v4.2.223
2638         
2639         * SoObjects/SoTemplateRenderer.m: added ability to render *any* 
2640           object, not just WOComponent results
2641
2642         * SoObjects/SoObject.m: added -soClassName method to any SoObject
2643
2644         * SoOFS/OFSFile.m: moved renderer selection to 
2645           SoRequestDispatcherRules
2646
2647         * Defaults.plist: added some renderer selections to the 
2648           SoRequestDispatcherRules
2649
2650         * SoOFS/product.plist: set default access of OFSImage and 
2651           OFSPropertyListObject to allow, so that acquisition works when we
2652           lookup a template on the object
2653
2654         * SoOFS/OFSResourceManager.m: improved debug logging in error cases
2655
2656         * SoObjects/SoSubContext.m: fixed a bug in the description (parent
2657           ctx was not properly logged)
2658         
2659         * SoObjects/SoSecurityManager.m: improved private key access exception
2660
2661 2003-10-10  Helge Hess  <helge.hess@skyrix.com>
2662
2663         * WEClientCapabilities.m (WEUA_xmlrpclib_py): added Python XML-RPC
2664           library as a known user-agent, smaller cleanups (v4.2.222)
2665
2666 2003-10-09  Helge Hess  <helge.hess@skyrix.com>
2667
2668         * WEClientCapabilities.m: detect NetNewsWire as a user-agent 
2669           (v4.2.221)
2670
2671 2003-10-07  Helge Hess  <helge.hess@skyrix.com>
2672
2673         * WEClientCapabilities.m: added a new iCal.app user-agent (reports 
2674           DAVKit instead of DAVAccess) (v4.2.220)
2675
2676 2003-09-06  Helge Hess  <helge.hess@skyrix.com>
2677
2678         * fixed some MacOSX warnings (v4.2.219)
2679
2680 2003-09-06  Marcus Mueller <znek@mulle-kybernetik.com>
2681
2682         * v4.2.218
2683
2684         * SoOFS/OFSFolder.m, SoObjects/SoObject+Traversal.m,
2685           SoObjects/SoPageInvocation.m, SoObjects/SoProductResourceManager.m,
2686           WebDAV/SoObject+SoDAVQuery.m: Casts for _ctx because of multiple
2687           definitions of - response.
2688           NOTE: I probably should have changed the interface,
2689           but didn't know exactly if that was appropriate. However it seems
2690           likely that this SHOULD be changed
2691
2692         * SoOFS/OFSHttpPasswd.m: Include <unistd.h> for crypt if on Apple
2693           or FreeBSD. A quick glimpse revealed that the system gcc (3.2) on
2694           FreeBSD 5.x doesn't define __FreeBSD__ which is most likely a bug
2695           and should be reported. On FreeBSD 4.x everything's as expected.
2696
2697         * SoObjects/SoClass.h: class forward declarations include NSArray now
2698
2699 2003-08-28  Helge Hess  <helge.hess@skyrix.com>
2700
2701         * GNUmakefile (RESOURCES_DIR): use GNUSTEP_RESOURCES instead of hard-
2702           coded $(GNUSTEP_LOCAL_ROOT)/Libraries/Resources, do not pass the
2703           RESOURCES_DIR to sourcecode (v4.2.217)
2704
2705 2003-08-26  Helge Hess  <helge.hess@skyrix.com>
2706
2707         * NGXmlRpc: small cleanup to exception handling (v4.2.216)
2708
2709 2003-08-20  Helge Hess  <helge.hess@skyrix.com>
2710
2711         * WOComponent.m, WOResourceManager.m: added some comments on the
2712           -initWithContext: issue (v4.2.215)
2713
2714 2003-08-19  Helge Hess  <helge.hess@skyrix.com>
2715
2716         * v4.2.214
2717
2718         * WOSimpleHTTPParser.m: added 'content-class' and 'if-none-match'
2719           as known headers, both submitted by Entourage/X
2720
2721         * SoObjects/SoHTTPAuthenticator.m: split off domain names in login
2722           strings (separated by backslash)
2723
2724         * v4.2.213
2725
2726         * WEClientCapabilities.m: added Entourage as a known user agent
2727
2728         * WOSimpleHTTPParser.m: added 'extension', 'ua-cpu' and 'ua-os',
2729           all submitted by Entourage/X
2730
2731 2003-08-07  Helge Hess  <helge.hess@skyrix.com>
2732
2733         * v4.2.212
2734                 
2735         * WebDAV/SoWebDAVRenderer.m: added some very basic support for 
2736           Exchange row range headers
2737
2738         * WebDAV/SoWebDAVRenderer.m, SoWebDAVValue.m: do not format XML output 
2739           with newlines, this is good for improving WebStore compatibility
2740
2741 2003-08-06  Helge Hess  <helge.hess@skyrix.com>
2742
2743         * WEClientCapabilities.m: added detection of SOUP WebDAV library
2744           (v4.2.211)
2745
2746 2003-08-04  Helge Hess  <helge.hess@skyrix.com>
2747
2748         * v4.2.210
2749
2750         * GNUmakefile.preamble: do not link against libcrypt on OpenBSD
2751
2752         * SoOFS/OFSHttpPasswd.m: include des.h instead of crypt.h on OpenBSD
2753           (pointed out by Max Berger, thanks!)
2754
2755 2003-07-31  Helge Hess  <helge.hess@skyrix.com>
2756
2757         * v4.2.209
2758
2759         * DynamicElements/WOMetaRefresh.m: small cleanups
2760
2761         * DynamicElements/WOHTMLDynamicElement.m: ensure that components
2762           returned by actions are awake in the current context, added a
2763           debugging default to track action execution
2764
2765 2003-07-29  Helge Hess  <helge.hess@skyrix.com>
2766
2767         * SoObjects/SoObject.m: added a log if the hard coded default for
2768           the broken SOUP library is used (v4.2.208)
2769
2770 2003-07-28  Helge Hess  <helge.hess@skyrix.com>
2771
2772         * applied rangeOfString patches provided by Filip Van Raemdonck for 
2773           improved compilation with gstep-base (v4.2.207)
2774
2775         * applied GNUstep patches provided by Filip Van Raemdonck for improved
2776           compilation with gstep-base (v4.2.206)
2777
2778 2003-07-23  Helge Hess  <helge.hess@skyrix.com>
2779
2780         * v4.2.205
2781
2782         * SoObjects: improved the debug output
2783         
2784         * Defaults.plist: added some more default languages
2785
2786 2003-07-14  Helge Hess  <helge.hess@skyrix.com>
2787
2788         * Defaults.plist, WORequest.m, WOSession.m: made default language array
2789           configurable using the WODefaultLanguages array default (v4.2.204)
2790
2791 Fri Jul  4 17:55:15 2003  Helge Hess  <helge.hess@skyrix.com>
2792
2793         * moved to OpenGroupware.org CVS repository
2794
2795         * removed old (pre-SOPE) ChangeLogs, uninteresting for OGo development
2796
2797 2003-06-30  Helge Hess  <helge.hess@skyrix.com>
2798
2799         * fixed some gcc 3.3 signed/unsigned warnings (v4.2.203)
2800
2801         * v4.2.202
2802         
2803         * WOResourceManager.m: major change in template lookup: consider the
2804           bundle-path of a component class (shouldn't break anything, but who
2805           knows ...)
2806         
2807         * SoObjects/SoProductRegistry.m: added a product lookup based on the
2808           bundle (to be completed, right now only the last path component is
2809           checked as the name ...)
2810         
2811         * WOResourceManager.m: replaced some RELEASE macros with methods
2812         
2813         * WOComponent.m: small cleanups, +initialize did not properly use the
2814           didInit flag
2815         
2816         * SoObjects: added SoComponent, a WOComponent subclass which uses the
2817           SoProductResourceManager for resource lookup (useful with product
2818           bundles)
2819         
2820 2003-06-27  Helge Hess  <helge.hess@skyrix.com>
2821
2822         * v4.2.201
2823         
2824         * SoObjects/SoObjects.h: included WORequest+So
2825         
2826         * SoObjects/product.plist: add SoApplication definition
2827         
2828         * SoObjects/SoProductClassInfo.m, SoObjects/SoProduct.m: improved 
2829           handling of SoObject categories
2830         
2831         * SoObjects/SoClass.m: added -allKeys and -slotNames reflection methods
2832         
2833         * WOSimpleHTTPParser.m: added ms-webstorage as a known HTTP header
2834           (v4.2.200)
2835
2836 2003-06-20  Helge Hess  <helge.hess@skyrix.com>
2837
2838         * WOContext.m: moved cursor tracking to WOComponent category, so that
2839           custom subclasses (SkyPubComponent) can override it (v4.2.199)
2840         
2841 2003-06-19  Helge Hess  <helge.hess@skyrix.com>
2842
2843         * WOComponent.m: added a method which can be replaced to decide whether
2844           extra variables are created (intendend for components which rely on
2845           extra vars, like SkyPubComponent [News: not true, SkyPubComponent 
2846           uses a JS shadow !]) (v4.2.198)
2847
2848 2003-06-16  Helge Hess  <helge.hess@skyrix.com>
2849
2850         * WEClientCapabilities.m: added -doesSupportUTF8Encoding to check for
2851           UTF-8 capable browsers, properly recognize Apple's Safari browser
2852           (previously detected as Mozilla) (v4.2.197)
2853
2854 2003-06-02  Helge Hess  <helge.hess@skyrix.com>
2855
2856         * SoObjects/WORequest+So.m: added -isSoWCAPRequest (v4.2.196)
2857
2858 2003-05-31  Helge Hess  <helge.hess@skyrix.com>
2859
2860         * SoOFS/OFSFolder.m: fixed calculation of default-method URI when
2861           given a URI with a query-string (v4.2.195)
2862
2863 2003-05-30  Helge Hess  <helge.hess@skyrix.com>
2864         
2865         * v4.2.194
2866                 
2867         * SoOFS/OFSWebMethod.m: added support for POSTs (calls takeValues on
2868           the component before returning it)
2869         
2870         * DynamicElements/WOComponentReference.m, Defaults.plist: added a
2871           default (WOCoreOnRecursiveSubcomponents) to produce a coredump if
2872           a component embeds itself (which is not necessarily an error, but
2873           often it is)
2874         
2875         * SoObjects/SoObjectRequestHandler.m: added support for "XXX:method"
2876           form values which are used with submit-buttons
2877
2878         * WOElementID.m: ensure element-id size constraints
2879         
2880         * v4.2.193
2881         
2882         * sope.m: modified to work with SMI
2883
2884         * SoObjects/product.plist: updated permissions
2885
2886 2003-05-29  Helge Hess  <helge.hess@skyrix.com>
2887
2888         * v4.2.192
2889
2890         * Templates: improved error handling for WOx templates
2891
2892         * WOApplication.m ([WOApplication -handleException:inContext:]): fixed
2893           a bug, the -handleException: method triggered a session creation in
2894           session-less sites (when trying to output to session-id)
2895         
2896         * more fixes to compile and run on MacOSX
2897
2898 2003-05-28  Helge Hess  <helge.hess@skyrix.com>
2899         
2900         * v4.2.191
2901         
2902         * SoObjects/WOContext+SoObjects.m: added -parentContext and 
2903           -rootContext methods
2904
2905         * added UnixSignalHandler for compilation without FoundationExt on 
2906           MacOSX
2907
2908 2003-05-27  Helge Hess  <helge.hess@skyrix.com>
2909
2910         * various fixes to compile on MacOSX (v4.2.190)
2911
2912 2003-05-26  Helge Hess  <helge.hess@skyrix.com>
2913
2914         * SoObjects/SoObject+Traversal.m: do not stop at executable objects
2915           during traversal, so that we can call methods on methods (eg manage)
2916           (v4.2.189)
2917
2918         * v4.2.188
2919
2920         * WOComponent+JS.m: fixed -initialize ... (the category also
2921           declared an own +initialize method
2922
2923         * SoObjects/SoSubContext.m: fixed a bug with the SubContext's ID being
2924           the same like the parent ctx-id, causing problems with the awake
2925           state of a component
2926
2927         * SoObjects/SoOFS: major fixes to "clientObject" handling
2928         
2929         * WOComponent.m: only log extra-variable creation if we have a 
2930           WOComponent subclass (since with components without an own class we
2931           can only use extra variables ...)
2932         
2933         * SoOFS: added OFSWebDocument, map 'xhtml' extension to OFSWebDocument
2934         
2935         * SoOFS: prepared classes for ChangeLog files and htpasswd files
2936
2937         * SoObjects/SoClassRegistry.m: added support for exact names
2938
2939         * SoOFS/OFSFactoryRegistry.m: allow file extensions to determine 
2940           folder factory, added exact-name support
2941
2942         * SoObjects: moved SoSecurityException to own file
2943
2944         * SoObjects/SoSecurityManager.m: various cleanups
2945
2946 2003-05-23  Helge Hess  <helge.hess@skyrix.com>
2947         
2948         * SoOFS: added methods to detect version control systems (v4.2.187)
2949         
2950         * v4.2.186
2951                 
2952         * WOComponentDefinition.m: small cleanups
2953
2954         * Templates/WOTemplateBuilder.m: select WOxTemplateBuilder based on
2955           the WOxFileExtensions default (default: wox, xtmpl, xhtml)
2956
2957         * SoOFS: added OFSWebTemplate handler for xtmpl templates
2958
2959         * SoOFS/OFSResourceManager.m: uses -traverseKey with a subcontext to
2960           acquire resources, added logging (SoOFSResourceManagerDebugEnabled)
2961         
2962         * SoObjects/SoObject.m(-lookupName:): added capability to acquire from
2963           the container (should we add context-acquisition ?, see NOTES)
2964         
2965         * SoTemplateRenderer.m: allows selection of template using the 
2966           "template" query parameter
2967
2968         * SoSubContext.m: copy traversal stack, keep clientObject,
2969           set request-type to "INTERNAL" - all this is required to keep the
2970           context
2971         
2972 2003-05-22  Helge Hess  <helge.hess@skyrix.com>
2973
2974         * v4.2.185
2975
2976         * Defaults.plist: used template-renderer for OFSWebMethod's
2977
2978         * SoObjects/SoTemplateRenderer.m: first working version ! locates
2979           templates with name "Main"
2980
2981         * WOxComponentElemBuilder.m: added support for <var:component value="">
2982           to embed components by value instead of reference (eg if you keep
2983           a WOComponent object in an ivar)
2984         
2985         * WOContext.m: explicitly ensure that the page is put to sleep, even
2986           if the page is not marked as awake in the context. Also ensure that
2987           the page is awaked in the context if it's set via -setPage:.
2988         
2989         * WOComponent.m: fixed a bug in _contextWillDealloc, a context mismatch
2990           was reported even though the context was correct (the context-*id*
2991           references was compared to the context object ...)
2992         
2993         * SoObjects: added SoSubContext for nested SOPE lookups (v4.2.184)
2994
2995 2003-05-21  Helge Hess  <helge.hess@skyrix.com>
2996
2997         * v4.2.183
2998
2999         * SoOFS/OFSFileRenderer.m: changed to be a fully compliant renderer,
3000           now also does the actual rendering (moved in code from OFSFile)
3001         
3002         * SoOFS/OFSWebMethod.m: moved OFSWebMethodRenderer to separate file
3003         
3004         * v4.2.182
3005         
3006         * SoOFS/OFSWebMethod.m: added specialized renderer for OFSWebMethod
3007         
3008         * modified renderer API to return an NSException instead of just a
3009           bool (so that not all renderers need to implement NSException
3010           rendering)
3011         
3012         * started SoTemplateRenderer
3013         
3014         * WebDAV/SoWebDAVRenderer.m: do not crash when a SOPE app is called
3015           on a root URI '/', fixes bug 1592 (v4.2.181)
3016         
3017         * v4.2.180
3018         
3019         * SoObjects/SoObjectRequestHandler.m: 
3020           - do not add empty path components to traversal path
3021           - use default renderer if a renderer rejected an object (important 
3022             for rendering exceptions)
3023
3024         * SoObjects/SoObjectRequestHandler.m: fixed a bug, SoRequestType was
3025           not properly set in context resulting in wrong renderer for WebDAV
3026           requests (v4.2.179)
3027
3028 2003-05-19  Helge Hess  <helge.hess@skyrix.com>
3029
3030         * v4.2.178
3031
3032         * SoObjects: improved logging
3033
3034         * WORequest.m: added debug-logging
3035
3036         * SoObjectRequestHandler.m: use new NGExtension rules system to select
3037           dispatcher, renderer and acquisition - requires NGExtension 4.2.33 !
3038           (v4.2.177)
3039
3040 2003-05-15  Helge Hess  <helge.hess@skyrix.com>
3041
3042         * v4.2.176
3043
3044         * SoObjects/SoProduct.m: added -description
3045
3046         * SoObjects/SoObjectRequestHandler.m: moved request classification into
3047           category of WORequest (new files WORequest+So)
3048
3049         * GNUmakefile: added Version file to SoOFS and SoCore products
3050
3051 2003-05-12  Helge Hess  <helge.hess@skyrix.com>
3052
3053         * sope.m: the tool can now load a site-local defaults file located in
3054           ".sope.plist". the defaults are loaded into the registration domain
3055           (should become an own domain)
3056
3057         * WOSimpleHTTPParser.m, OFSFolder.m: fixed signed/unsigned warning 
3058           (v4.2.175)
3059
3060 2003-05-10  Helge Hess  <helge.hess@skyrix.com>
3061
3062         * v4.2.174
3063
3064         * SoOFS/OFSFile.m: return self on GET, use a renderer
3065
3066         * SoObjects/SoObjectRequestHandler.m: use traversal stack to find the
3067           renderer for an object
3068         
3069         * v4.2.173
3070
3071         * SoOFS/OFSFile.m: added support for HEAD, cleaned up rendering (still
3072           needs more work ...)
3073
3074         * NGHttp: smaller cleanups
3075
3076         * SoObjects/SoObjectRequestHandler.m: some cleanups, does consider the
3077           appname part of the URI traversal path if the request handler key is
3078           not detected as a registered one
3079
3080         * v4.2.172
3081
3082         * WOApplication.m: cleaned up login
3083
3084         * SoOFS/OFSWebMethod.m: added OFSWebMethodDebugEnabled default to
3085           trigger debug logging, fixed a bug in component caching
3086
3087 2003-04-30  Helge Hess  <helge.hess@skyrix.com>
3088
3089         * Templates/WOHTMLParser.m: fixed a gcc 3.3 warning
3090
3091         * WOHTMLParser: added support for "hash tags" (eg <#name/>) (v4.2.171)
3092
3093 2003-04-24  Helge Hess  <helge.hess@skyrix.com>
3094
3095         * SoObjects/SoSecurityManager.m: disabled buggy permission cache, needs
3096           to be fixed (v4.2.170)
3097
3098         * WOWatchDogApplicationMain.m: do not log signal code for SIGCHLD
3099           (v4.2.169)
3100
3101 2003-04-23  Helge Hess  <helge.hess@skyrix.com>
3102
3103         * WebDAV: added support for MKCOL for creating collections (v4.2.168)
3104
3105 2003-04-22  Helge Hess  <helge.hess@skyrix.com>
3106
3107         * WEClientCapabilities.m: recognize ZideLook 0.9.5 plugin (changed user
3108           agent identifier) (v4.2.167)
3109
3110 2003-04-15  Helge Hess  <helge.hess@skyrix.com>
3111
3112         * v4.2.166
3113         
3114         * SoObjectRequestHandler.m: does request path aquisition per default,
3115           fixed a retain bug (the path traversal array), added a facility to
3116           put objects to sleep (they must implement either _sleepWithContext:
3117           or just sleep and will be called after all processing is done)
3118         
3119         * SoObject+Traversal.m: fixed a bug in the name of the logging default
3120         
3121         * OFSFolder.m: added code to some negotiation of the object to be
3122           located (eg you can lookup 'index.html' by looking up 'index')
3123         
3124         * OFSWebMethod.m: smaller cleanups
3125         
3126         * WOApplication.m: smaller cleanups
3127         
3128         * SoClassSecurityInfo, SoClass: added more logging, keeps associated 
3129           class name
3130         
3131         * added 'sope' tool for hosting SoOFS based SOPE applications
3132         
3133         * DAVPropMap.plist: added {DAV:}status (v4.2.165)
3134         
3135 2003-04-11  Helge Hess  <helge.hess@skyrix.com>
3136         
3137         * SoObjects/SoObjectRequestHandler.m: made WebDAV methods to check
3138           for determining the SOPE handler a userdefault (v4.2.164)
3139           
3140 2003-04-01  GNUstep User  <helge.hess@skyrix.com>
3141
3142         * DynamicElements/WOText.m: use -rangeOfString: instead of 
3143           -indexOfString: (v4.2.163)
3144
3145 Fri Mar 28 17:19:33 2003  Martin Hoerning  <mh@skyrix.com>
3146
3147         * WebDAV/SoObjectWebDAVDispatcher.m: fixed bulk target pathes where 
3148           the base uri path was not properly unescaped (v4.2.162)
3149
3150 2003-03-22  Helge Hess  <helge.hess@skyrix.com>
3151
3152         * WebDAV/GNUmakefile: export SoObjectResultEntry.h as a public header
3153
3154 2003-03-19  Helge Hess  <helge.hess@skyrix.com>
3155         
3156         * WebDAV/SoObjectWebDAVDispatcher.m: fixed a bug with _range queries
3157           (an empty ID was added for the first _) (v4.2.161)
3158
3159         * v4.2.160
3160
3161         * WOHttpTransaction.m, WOResponse.m: moved body zipping code to 
3162           response, so that it can be used in different adaptors
3163
3164         * WOHttpTransaction.m: removed unused (#if 0) code
3165
3166         * WOSimpleHTTPParser.m: added if-match as a known header (v4.2.159)
3167
3168 2003-03-18  Helge Hess  <helge.hess@skyrix.com>
3169
3170         * v4.2.158
3171
3172         * SoObjects/SoControlPanel.m: added -appendToResponse:inContext:
3173           for rendering a HTML representation (a GET should be bound by SMI)
3174         
3175         * SoObjects/SoSecurityManager.m: add support for special "<public>"
3176           permission
3177
3178 2003-03-15  Helge Hess  <helge.hess@skyrix.com>
3179
3180         * v4.2.157
3181
3182         * WebDAV/SoObject+SoDAVQuery.m: caught traversal exceptions in
3183           bulk-path queries
3184           
3185         * SoObjects/SoSecurityManager.m: initialize security exceptions with
3186           name and reason
3187         
3188 2003-03-13  Helge Hess  <helge.hess@skyrix.com>
3189
3190         * WebDAV/SoObject+SoDAVQuery.m: use traversePath for bulk targets that
3191           contain slashes
3192
3193         * SoObjects/SoObjectRequestHandler.m, 
3194           WebDAV/SoObjectWebDAVDispatcher.m: handle empty range queries
3195           (v4.2.156)
3196
3197 2003-03-12  Helge Hess  <helge.hess@skyrix.com>
3198
3199         * WebDAV/SoObject+SoDAVQuery.m: always query davURL (v4.2.155)
3200
3201         * Defaults.plist: added {DAV:}href as default property
3202
3203 2003-03-11  Helge Hess  <helge.hess@skyrix.com>
3204         
3205         * WebDAV/SoObjectWebDAVDispatcher.m: added support for ZideLook range
3206           queries (transformed into bulk-queries) (v4.2.153)
3207         
3208 2003-03-07  Helge Hess  <helge.hess@skyrix.com>
3209         
3210         * WebDAV/SaxDAVHandler.m: hopefully fixed the <prop> set vs <prop>
3211           response the last time (v4.2.152)
3212
3213 2003-03-06  Helge Hess  <helge.hess@skyrix.com>
3214
3215         * WOSimpleHTTPParser.m: added "x-forwarded-for" as a known header
3216           (v4.2.151)
3217
3218 2003-03-03  Helge Hess  <helge.hess@skyrix.com>
3219
3220         * SoObjects/SoObjectRequestHandler.m: fixed bug, query parameters were
3221           not properly cut off when doing the URI processing in the handler,
3222           added support for ASP ?Cmd style methods (v4.2.150)
3223
3224         * WebDAV/SaxDAVHandler.m: added a DAVParserDebugProp and 
3225           DAVParserHeavyLog defaults for improved debugging, fixed yet another
3226           bug in the property "set" handler (if each property was enclosed in
3227           an individual "set" tag, only the last was delivered) (v4.2.149)
3228
3229 2003-03-02  Helge Hess  <helge.hess@skyrix.com>
3230
3231         * SaxDAVHandler: fixed another bug in prop-patch parsing (if the prop-
3232           patch contained a "delete" section, no values were returned 
3233           (v4.2.148)
3234
3235 2003-02-27  Helge Hess  <helge.hess@skyrix.com>
3236
3237         * v4.2.147
3238
3239         * SaxDAVHandler: fixed a bug in property-patch parsing
3240
3241         * SoObjects/SoSecurityManager.m: allow operations on objects which
3242           are not owned
3243
3244         * SoObjects/SoObjectRequestHandler.m: set a HTTP header for the
3245           SxNewObjectID context variable
3246
3247         * WOSimpleHTTPParser.m: added x-zidestore-name as known header
3248
3249 2003-02-24  Helge Hess  <helge.hess@skyrix.com>
3250
3251         * WOSimpleHTTPParser.m: added 'if-modified-since' as a known header
3252           (v4.2.146)
3253
3254 2003-02-19  Helge Hess  <helge.hess@skyrix.com>
3255
3256         * WebDAV/SaxDAVHandler.m: fixed a bug with properties in the DAV: 
3257           namespaces not being parsed in property-update and prop tags,
3258           added a delegate for parsing results (v4.2.145)
3259           
3260 2003-02-18  Helge Hess  <helge.hess@skyrix.com>
3261
3262         * SoObjects/SoObject.m(lookupName:inContext:acquire:): if a key
3263           is contained in the toOneRelationshipKeys array, lookupName will
3264           now use -valueForKey: to find a name
3265         
3266         * WebDAV/SoObject+SoDAV.m: an object now becomes a DAV collection
3267           marker if it the toOneRelationshipKeys array is not empty
3268
3269         * SoObjects/SoApplication.m(hasName:inContext:): fixed a bug with
3270           name-lookup when the root object is the application itself
3271
3272 2003-02-17  Helge Hess  <helge.hess@skyrix.com>
3273
3274         * NGObjWeb/WOComponent.h: added missing declaration of NSException
3275
3276         * NGObjWeb/WODynamicElement.h: removed unnecessary declaration of
3277           NSMutableArray and WOComponent
3278
3279         * NGObjWeb/WOElement.h: removed unnecessary declaration of NSException
3280
3281 2003-02-14  Helge Hess  <helge.hess@skyrix.com>
3282         
3283         * WebDAV/SaxDAVHandler.m: added basic DASL query capabilities,
3284           orderings still missing (v4.2.144)
3285
3286         * WOSimpleHTTPParser.m: added version control HTTP methods as known
3287           methods (v4.2.143)
3288
3289 2003-02-12  Helge Hess  <helge.hess@skyrix.com>
3290
3291         * SoObjects/SoClass.m: added -copyWithZone: for OSX (v4.2.142)
3292
3293 2003-01-31  Helge Hess  <helge.hess@skyrix.com>
3294
3295         * WEClientCapabilities.m: added ZideLook detection (v4.2.141)
3296
3297 2003-01-30  Helge Hess  <helge.hess@skyrix.com>
3298         
3299         * WebDAV: subscription manager almost complete (v4.2.140)
3300         
3301         * v4.2.139
3302         
3303         * WOSimpleHTTPParser.m: added UNSUBSCRIBE as a known HTTP method
3304         
3305         * WebDAV: started subscription manager
3306         
3307         * NGXmlRpc: added reflection support on MacOSX (v4.2.138)
3308
3309 2003-01-29  Helge Hess  <helge.hess@skyrix.com>
3310
3311         * NGXmlRpc bugfix by bs@skyrix.com (v4.2.137)
3312
3313 2003-01-28  Helge Hess  <helge.hess@skyrix.com>
3314
3315         * NGXmlRpcClient.m: abstracted HTTP connection and request in abstract
3316           class factories (-connectionClass and -requestClass), removed 
3317           dependency on XmlRpcMethodResponse+WO and XmlRpcMethodCall+WO
3318           (v4.2.136)
3319
3320 2003-01-27  Helge Hess  <helge.hess@skyrix.com>
3321
3322         * WOSimpleHTTPParser.m: added 'p3p', 'set-cookie' and 'x-powered-by' 
3323           as known headers (v4.2.135)
3324
3325 2003-01-22  Helge Hess  <helge.hess@skyrix.com>
3326
3327         * v4.2.134
3328         
3329         * WOProxyRequestHandler.m: added facility to log to files
3330         
3331         * WOMessage.m: added -headersAsString method (useful for debugging)
3332         
3333         * WOSimpleHTTPParser.m: added 'server', 'x-cache', 'proxy-connection'
3334           and 'subscription-id' as known headers
3335         
3336         * SoObjects/SoObjectRequestHandler.m: if the request-handler-key in the
3337           request does not match a registered one, process the request URI
3338           in this class (v4.2.133)
3339         
3340         * NGHttp: check superclass version (v4.2.132)
3341         
3342 2003-01-16  Helge Hess  <helge.hess@skyrix.com>
3343
3344         * v4.2.131
3345
3346         * NGXmlRpc: bugfix with parameter counts
3347
3348         * Templates/WOHTMLParser.m (_isWOCloseTag): fixed a bug with parsing
3349           tags (in files were the ">" of the close tag is the
3350           last char of the file)
3351
3352 2003-01-14  Helge Hess  <helge.hess@skyrix.com>
3353
3354         * WebDAV/SoObjectWebDAVDispatcher.m: fixed an Evo bug with unsafe
3355           chars in BPROPFIND target URLs (v4.2.130)
3356
3357         * v4.2.129
3358         
3359         * SoOFS/OFSPropertyListObject.m: improved factory and -saveObject to be
3360           able to deal with new objects
3361         
3362         * SoOFS/OFSFactoryContext, OFSFolder: added a context creation method
3363           for objects that do not yet exist in the store
3364
3365         * WebDAV: added handling for bulk queries to NSObject+SoDAV (v4.2.128)
3366
3367         * v4.2.127
3368
3369         * WebDAV: changed implementation of BPROPFIND. BPROPFIND doesn't use
3370           individual queries for each target anymore, but passes relative
3371           target names in the "bulkTargetKeys" fetch hint, this way it can be
3372           processed by a SQL based datasource much faster.
3373         
3374         * WOSimpleHTTPParser.m: improved processing of content-length
3375
3376 2003-01-13  Helge Hess  <helge.hess@skyrix.com>
3377
3378         * WebDAV/SoObjectWebDAVDispatcher.m: fixed a bug in the BPROPFIND
3379           implementation (v4.2.126)
3380
3381         * WORequest.m: added parsing of query parameters and form content in
3382           query-parameter format (v4.2.125), multipart-formdata is not yet
3383           processed
3384
3385         * WORequest.m: print a warning if the form parameters could not be
3386           calculated (eg if you use the current WOSimpleHTTPParser)
3387
3388         * NGHttp+WO.m: replaced some RETAIN macros
3389
3390         * WOSimpleHTTPParser.m: added support for streamed uploads (large 
3391           HTTP request bodies are streamed into a temporary file which is 
3392           mapped into memory) (v4.2.124)
3393
3394         * v4.2.123
3395
3396         * WOHttpAdaptor/WOHttpTransaction.m: use request logging method for
3397           WOSimpleHTTPParser (method became independed from NGHttpRequest)
3398
3399         * WOHttpAdaptor/WOHttpAdaptor.m: replaced RETAIN macros with methods
3400
3401         * WOSimpleHTTPParser.m: added some missing headers, added parsing of
3402           content-length
3403
3404         * WebDAV fixes (v4.2.122)
3405
3406         * v4.2.121
3407
3408         * WebDAV/SoObject+SoDAVQuery.m: fixed typo
3409
3410         * WebDAV/SoObject+SoDAV.m: added default -dav* methods for 
3411           WOCoreApplication, WOApplication and WORequestHandler
3412
3413         * SoObjects/SoApplication.m: added -toOneRelationshipKeys
3414
3415         * DynamicElements/WOPopUpButton.m: properly close option tag (v4.2.120)
3416
3417         * v4.2.119
3418         
3419         * WOHttpAdaptor/WOHttpTransaction.m: added a faster logging (does not
3420           use -descriptionWithCalendarFormat:), replaced some RETAIN macros,
3421           use gettimeofday() for calculating request-duration, use char* 
3422           instead of NSString for reason, added a deliverResponse that uses
3423           less NGTextStream operations and more direct buffer writes
3424         
3425         * WOSimpleHTTPParser.m: added "cookie" as a known header
3426         
3427         * v4.2.118 (results of NGObjWeb raw-performance "weekend", after
3428           profiling on OSX
3429         
3430         * Templates/WOxElemBuilder.m: created WOSimpleStaticASCIIString for
3431           ASCII strings (ASCII detection speed needs to be improved !)
3432         
3433         * DynamicElements/WOGenericElement.m, WOGenericContainer.m: added code
3434           to handle constant tag-names efficiently
3435
3436         * DynamicElements: use WOResponse_AddCString if possible
3437         
3438         * DynamicElements/WOCompoundElement.m: replaced some RETAIN macros
3439         
3440         * DynamicElements/WOString.m: added WOSimpleStaticASCIIString subclass
3441           (this class uses -appendContentCString: for a quick addition), 
3442           replaced some RETAIN macros
3443         
3444         * WORequestHandler.m: return 404 on calls to /favicon.ico
3445         
3446         * WOHTTPConnection.m: fixed an OSX compiler warning
3447
3448         * SoObjects/SoApplication.m: fixed a bug, lookup always returned a
3449           WORequestHandler (since requestHandlerForKey: returns the default
3450           handler if the key did not match)
3451
3452         * WOElementTrackingContext.h: added -appendIntElementIDComponet:
3453
3454         * WOResponse+private.h: use macros for direct WOMessage access, added
3455           macros for adding integers
3456
3457         * WOSession.m: replaced some RETAIN macros
3458
3459         * WOResponse.m: improved speed of -disableClientCaching, caches
3460           GMT timezone, does not use -descriptionWithCalendarFormat: for
3461           speed and locale-indepedence
3462
3463         * WODynamicElement.m: use -appendContentCString:
3464
3465         * WOCoreApplication.m: replaced some retain macros, cache some defaults
3466
3467         * WOCookie.m: cache GMT timezone during generation, replaced some
3468           RETAIN macros
3469
3470         * WOApplication.m: generate session-id using sprintf for speed, 
3471           replaced some RETAIN macros
3472
3473         * WOApplication+defaults.m: cache request-handler key defaults
3474
3475         * added WOElementID class for fast element-id tracking and
3476           generation (more than twice as fast)
3477         
3478         * WOMessage.m: added -appendContentCString: for adding ASCII strings
3479           (much faster than using -dataUsingEncoding: if we know that a string
3480           is ASCII since most other encodings are "ASCII-compatible")
3481         
3482         * WOContext.m: caches URL prefixes (faster URL generation), moved 
3483           element-id processing to WOElementID, several minor changes for speed
3484
3485 2003-01-10  Helge Hess  <helge.hess@skyrix.com>
3486         
3487         * added generation of SoProduct bundles for SoCore and SoOFS (v4.2.117)
3488
3489 2003-01-09  Helge Hess  <helge.hess@skyrix.com>
3490
3491         * WOHttpAdaptor/WOHttpTransaction.m: cleaned up default initialization,
3492           added default to enable WOSimpleHTTPParser (v4.2.116)
3493
3494         * Templates/WOHTMLParser.m (_makeHtmlException): only add parser to
3495           exception userinfo if the parser is passed to _makeHtmlException
3496           (v4.2.115)
3497
3498         * NGXmlRpc, xmlrpc_call: completed Unix domain sockets (v4.2.114)
3499
3500         * WOHTTPConnection.m: rewrote to base connections on NSURL (in 
3501           preparation for HTTP-over-Unix-Domain-Sockets) (v4.2.113)
3502
3503         * NGXmlRpcClient, xmlrpc_call: started support for HTTP digest auth
3504
3505         * WOSimpleHTTPParser.m: added request parsing (v4.2.112)
3506
3507 2003-01-08  Helge Hess  <helge.hess@skyrix.com>
3508
3509         * v4.2.111
3510
3511         * WOHTTPConnection.m: added support for WOSimpleHTTPParser (must be 
3512           turned on using a default)
3513
3514         * started WOSimpleHTTPParser
3515
3516 2003-01-07  Helge Hess  <helge.hess@skyrix.com>
3517
3518         * WOHTTPConnection, NGXmlRpcClient, xmlrpc_call: added SSL support 
3519           (v4.2.109)
3520         
3521         * v4.2.108
3522
3523         * SoOFS/OFSFactoryRegistry.m: added some code to allow SoClass'es 
3524           behave as factories (located using the extension manifest key)
3525
3526         * SoOFS/OFSFolder.m: move factory method to a separate category
3527
3528         * WOHttpAdaptor/WORecordRequestStream.m: use defines for buffer sizes
3529
3530         * SoObjects/SoSecurityManager.m: some little code cleanups
3531
3532         * SoObjects/SoProductClassInfo.m: some code cleanups, process the
3533           SoClass->extension mapping of the manifest
3534
3535         * SoObjects/SoObjCClass.m: added the -objcClass method to find the
3536           implementation of a SoClass
3537
3538         * SoObjects/SoApplication.m: allow lookup of request-handlers
3539
3540         * replaced RETAIN macros with method calls in several places
3541
3542         * WOApplication.m: fixed a bug in the -path method, if the app wrapper
3543           could not be found, the application retain count was broken
3544
3545 2003-01-03  Helge Hess  <helge.hess@skyrix.com>
3546
3547         * SoObjects/SoProductClassInfo.h: fixed header (NSArray was missing)
3548           (v4.2.107)
3549
3550 2003-01-02  Helge Hess  <helge.hess@skyrix.com>
3551
3552         * SoObjects/SoProductClassInfo.m: parse extensions code from manifest
3553           (v4.2.106)
3554
3555 Thu Jan  2 11:07:43 2003  Helge Hess  <helge.hess@skyrix.com>
3556
3557         * v4.2.105
3558         
3559         * Templates/WOxComponentElemBuilder.m: fixed a compiler warning (added
3560           a informal protocol for -line)
3561         
3562         * WOApplication.m: now reports a missing app-path (.woa wrapper) only
3563           once
3564
3565 Fri Dec 27 11:18:34 2002  Helge Hess  <helge.hess@skyrix.com>
3566
3567         * v4.2.104
3568
3569         * WOMessage.m: some modifications to -appendContentCharacter: which
3570           breaks if optimization is turned on in MacOSX Dec2002 devtools !,
3571           also prints a warning if NSString is ever used to add a character
3572           (performance warning ...)
3573         
3574         * WOPageRequestHandler.m: fixed a warning
3575
3576         * WOCoreApplication.m: allow capitalized keys on MacOSX (this usually
3577           prints warnings on OSX), check for "COMPILE_AS_FRAMEWORK" instead of
3578           "NGOBJWEB_AS_FRAMEWORK"
3579         
3580         * WOComponentRequestHandler.m: fixed a warning
3581
3582         * Templates/WOxElemBuilder.m: small code cleanups
3583
3584         * Templates/WOxTemplateBuilder.m: disabled logging on OSX too
3585
3586         * Templates/WOxComponentElemBuilder.m: fixed a bug, 'className' was
3587           passed to the created component as a binding
3588
3589         * SoOFS/OFSResourceManager.m: fixed some compilation warnings
3590         
3591         * SoOFS/OFSBaseObject.m: return nil for unbound keys (OSX)
3592
3593         * NGXmlRpc: small code cleanups
3594         
3595         * SoObjects/WOContext+SoObjects.m: do not use -removeObjectForKey: on
3596           WOContext anymore (use -setObject:nil forKey: instead)
3597         
3598         * SoObjects/SoSecurityManager.m: small logging improvement
3599         
3600         * SoObjects/SoProductRegistry.m: check for COCOA_Foundation_LIBRARY
3601           instead of APPLE_Foundation_LIBRARY, do not fail product loading
3602           of the MAIN bundle (eg if the main program is a tool)
3603
3604         * SoObjects/SoPageInvocation.m: fixed a warning
3605
3606         * SoObject.m, SoProduct.m, SoProductResourceManager.m: use basic
3607           string methods for URL construction since 
3608           -stringByAppendingPathComponent: doesn't work for URLs on
3609           MacOSX
3610
3611         * SoObjects/SoHTTPAuthenticator.m: removed empty -dealloc
3612
3613         * SoObjects/NSException+HTTP.m: return nil for unbound keys (OSX)
3614         
3615         * WebDAV/SoObjectDataSource.m: check whether lookupName: returned an
3616           exception
3617         
3618         * WebDAV/SoObject+SoDAV.m: added an exception handler for some key 
3619           lookup on OSX, since OSX throws unbound key exceptions per default
3620           (to be changed, OSX behaviour should be standard in libFoundation)
3621         
3622         * WOTextField.m, WOText.m, WOQuickTime.m: fixed a warning
3623         
3624 Mon Dec 23 15:57:27 2002  Helge Hess  <helge.hess@skyrix.com>
3625
3626         * v4.2.103 (results of OSX compilation)
3627
3628         * SoObjects/WODirectActionRequestHandler+SoObjects.m: fixed a bug, if
3629           no context was available the lookup sent -context to the 
3630           WOApplication class instead of the instance
3631
3632         * SoObjects/SoSelectorInvocation.m: does not rebind bound invocations
3633
3634         * SoObjects/SoSecurityManager.m, WOContext+SoObjects.m: fixed some
3635           warnings
3636
3637         * SoObjects/SoProductRegistry.m: print log if main-bundle could not be
3638           determined
3639
3640         * SoObjects/SoObjectRequestHandler.m: improved handling of root object
3641
3642         * SoObjects/SoObject.m: removed lookupKey completly (was still
3643           available for compatibility reasons), added _initialize for 
3644           initialization of category globals
3645
3646         * SoObjects/SoObjCClass.m: fixed invalid number of args in NSAssert
3647
3648         * SoClassSecurityInfo.h, SoObject.h, SoProductRegistry.h, 
3649           WOContext+SoObjects.h: added NSArray which was missing in the header
3650           file (for MacOSX)
3651         
3652         * SoObjects/SoApplication.m: only check for EnableDoubleReleaseCheck
3653           on libFoundation
3654
3655         * Templates/WOWrapperTemplateBuilder.m: fixed a bug, when no root 
3656           element was available the parsing result was undefined
3657
3658         * WODisplayGroup.m: fixed a bug, used -objectForKey: with the wrong
3659           variable
3660         
3661         * OWViewRequestHandler.m, WOComponent.m, WOCoreApplication.m, 
3662           WOHTTPURLHandle.m, WORequestHandler.m, WORepetition.m, 
3663           SaxDAVHandler.m, SoObjectDataSource.m, SoProductClassInfo.m:
3664           fixed gcc 3.2 warnings
3665         
3666 2002-12-19  Helge Hess  <helge.hess@skyrix.com>
3667
3668         * SoObjects/SoClassRegistry.m: added a file-extension=>SoClass registry
3669           (v4.2.102)
3670
3671 2002-12-18  Helge Hess  <helge.hess@skyrix.com>
3672
3673         * SoOFS/OFSFolder.m: fixed a typo
3674
3675         * WebDAV/SoObject+SoDAVQuery.m: fixed a bug with WebDAV deep queries
3676           (v4.2.101)
3677
3678         * Defaults.plist: added a preferred WebDAV prefix for the Cadaver
3679           namespace
3680
3681 2002-12-11  Helge Hess  <helge.hess@skyrix.com>
3682         
3683         * SoOFS/OFSFile.m: added a generic "writeState:" method
3684
3685 2002-12-08  Helge Hess  <helge.hess@skyrix.com>
3686         
3687         * WOComponent.m: improved -description
3688
3689         * WOComponentFault.m: reenabled usage of parent-resourcemanager, this
3690           was #ifdef'ed out, why (problems with SKYRiX Forms) ?
3691         
3692         * WOResourceManager.m: added a -resourceNameForComponentNamed: to map
3693           component names to resource names (previously this was fixed to .wox
3694           files)
3695         
3696         * WOComponentDefinition.m: do not search for classes if the component
3697           name contains a "."
3698
3699         * SoObjects: - fixed a problem with the default renderer returning an
3700           empty result when the SoHTTPAuthenticator refused to render a 
3701           security exception 
3702           - added a GETAction: to OFSFolder which does a redirect to uri+/view
3703           (v4.2.100)
3704
3705 2002-12-02  Helge Hess  <helge.hess@skyrix.com>
3706
3707         * moved to skyrix-sope-42 (v4.2.99)
3708           - removed WOExtensions, WEExtensions (moved to Skyrix41e/WebUI)
3709
3710 2002-11-30  Helge Hess  <helge.hess@skyrix.com>
3711
3712         * SoObjects: renamed -lookupKey:inContext: to 
3713           -lookupName:inContext:acquire: (v4.2.98)
3714
3715 2002-11-28  Helge Hess  <helge.hess@skyrix.com>
3716         
3717         * WebDAV.subproj: pass a context into DAV PROPPATCH methods (v4.2.97)
3718         
3719 2002-11-25  Helge Hess  <helge.hess@skyrix.com>
3720         
3721         * WebDAV.subproj: fixed a bug in SoObjectDataSource,
3722           -toOneRelationshipKeys of the object is checked, if the brief header
3723           is set, no null properties are encoded (correct ???)
3724           (v4.2.96)
3725         
3726         * SoObjects.subproj/SoHTTPAuthenticator.h: added public API (v4.2.95)
3727
3728         * Defaults.plist (WOxBuilderClasses): added WOxXULElemBuilder
3729
3730         * DynamicElements.subproj/WOxXULElemBuilder.m: started XULElemBuilder
3731
3732 2002-11-22  Helge Hess  <helge.hess@skyrix.com>
3733         
3734         * SoOFS: cleanup of OFS storage system (v4.2.94)
3735         
3736 2002-11-21  Helge Hess  <helge.hess@skyrix.com>
3737
3738         * DynamicElements.subproj/WOForm.m, WOComponent.m: added a 
3739           -shouldTakeValuesFromRequest:inContext: to check whether a form
3740           should take the values even though it's href or element-id doesn't
3741           match the request (v4.2.93)
3742         
3743         * WOComponent.m: added -redirectToLocation: for easy redirection in
3744           response to an action of any kind (v4.2.92)
3745         
3746         * SoObjects.subproj/SoProductClassInfo.m: added support for non-method
3747           slots (v4.2.91)
3748
3749 2002-11-20  Helge Hess  <helge.hess@skyrix.com>
3750
3751         * Associations.subproj/WOKeyPathAssociation.m: added faster number to
3752           string conversions by using static strings for numbers < 50,
3753           added a HEAVY_DEBUG define (v4.2.90)
3754
3755         * WebDAV: improved object datasource and DAV datasource handling
3756           (v4.2.89)
3757         
3758         * Templates.subproj/WOxElemBuilder.m: added association for so-lookup
3759           namespace (v4.2.88)
3760
3761         * SoObjects: added a SoApplication (v4.2.87)
3762
3763 2002-11-19  Helge Hess  <helge.hess@skyrix.com>
3764
3765         * WOResourceManager.m: added more bundle sensitivity (v4.2.86)
3766         
3767         * SoObjects: added product management system (v4.2.85)
3768         
3769 2002-11-18  Helge Hess  <helge.hess@skyrix.com>
3770
3771         * WOHttpAdaptor.subproj/WOHttpTransaction.m: ensure that 
3772           x-webobjects-server-name and x-webobjects-server-port are always
3773           set (v4.2.84)
3774
3775         * WebDAV.subproj/SoObjectWebDAVDispatcher.m: properly check permissions
3776           of WebDAV methods (previously only WebDAV access was checked) 
3777           (v4.2.83)
3778
3779         * SoObjects: added SoHTTPAuthenticator (v4.2.82)
3780
3781 2002-11-17  Helge Hess  <helge.hess@skyrix.com>
3782
3783         * SoObjects, SoOFS: authenticator object is now local to the object and
3784           acquired using the container (v4.2.81)
3785
3786 2002-11-15  Helge Hess  <helge.hess@skyrix.com>
3787
3788         * WebDAV.subproj/SoWebDAVRenderer.m: added SoWebDAVValue for rendering
3789           complex WebDAV properties (v4.2.80)
3790
3791         * WOHTTPConnection.m: added -initWithURL:
3792
3793         * GNUmakefile: fixed includes (v4.2.79)
3794
3795         * WebDAV.subproj/SoObjectWebDAVDispatcher.m: added support for 
3796           BPROPFIND (v4.2.78)
3797
3798         * WOContext: moved protocols from WOContext.h into separate header
3799           files, added ivars for SOPE (clientObject, traversalStack),
3800           increased version (v4.2.77)
3801
3802 2002-11-14  Helge Hess  <helge.hess@skyrix.com>
3803
3804         * WOMessage.m: prepared for content streaming, increased class version
3805           (v4.2.76)
3806                 
3807         * added first version of SoOFS (v4.2.75)
3808
3809 2002-11-13  Helge Hess  <helge.hess@skyrix.com>
3810
3811         * Associations.subproj/WOAssociation.m: support objects as values
3812           which do not implement NSCopying (previously disallowed because
3813           associations were cached) (v4.2.74)
3814
3815         * SoObjects: moved traversal code from SoObjectRequestHandler to
3816           SoObject category (traversal is required in several environments)
3817           (v4.2.73)
3818         
3819 2002-11-11  Helge Hess  <helge.hess@skyrix.com>
3820
3821         * SoObject: fixed validation, added debugkey for SoObjectDataSource
3822           (v4.2.72)
3823
3824         * WOComponentDefinition.m ([WOComponent -instantiateChildComponentsInTemplate:languages:]):
3825           fixed a bug with components not passing down languages to child
3826           components (v4.2.71)
3827
3828         * WOContext.m: fixed a small bug with the cursor debugging (cursor
3829           pops were not reported correctly) (v4.2.70)
3830
3831 2002-11-10  Helge Hess  <helge.hess@skyrix.com>
3832
3833         * WebDAV.subproj/SaxDAVHandler.m: started support for DASL (SQL 
3834           with XML syntax)
3835
3836         * added special SoClass subclass for ObjC classes (v4.2.69)
3837
3838 2002-11-07  Helge Hess  <helge.hess@skyrix.com>
3839
3840         * NGHttp: do not parse requests without clen in HTTP/1.1 (v4.2.68)
3841
3842         * started a new HTTP parser in NGHttpAdaptor (not used yet)
3843         
3844         * WebDAV: moved the query methods to a SoObjectDataSource class, which
3845           is retrieved from the object using -davDataSourceInContext: (v4.2.67)
3846
3847 2002-11-06  Helge Hess  <helge.hess@skyrix.com>
3848
3849         * SoObjects: first version supporting components as SoClass methods
3850           (SoPageInvocation) (v4.2.66)
3851
3852 2002-11-05  Helge Hess  <helge.hess@skyrix.com>
3853
3854         * SoObjects.subproj/SoSecurityManager.m: first version that actually
3855           denies access to objects ;-) (v4.2.65)
3856
3857         * WEClientCapabilities.m: detect the GNOME-VFS (Nautilus) and mark
3858           it as a WebDAV client (v4.2.64)
3859
3860 2002-11-04  Helge Hess  <helge.hess@skyrix.com>
3861
3862         * v4.2.63
3863
3864         * WebDAV: added parsing of PROPPATCH queries, mapped some additional
3865           DAV standard properties and provide a default implementation, added
3866           PROPPATCH processing, use exceptions for most error responses, 
3867
3868         * SoObjects.subproj/SoSelectorInvocation.m: added a description and
3869           -appendToResponse:inContext: in case the object is to be delivered
3870           to the browser instead of being called
3871
3872         * SoObjects.subproj/SoObjectRequestHandler.m: added PROPPATCH as an
3873           object creation method, create a PATH_INFO
3874
3875         * DAVPropMap.plist: added some classes
3876
3877 2002-11-01  Helge Hess  <helge.hess@skyrix.com>
3878         
3879         * WebDAV.subproj: DAV property name->key mapping is now done in
3880           NGObjWeb (v4.2.62)
3881         
3882         * WOComponentFault.m: added -setParent:, this fixes a bug introduced
3883           in v4.2.57.
3884
3885         * started support for "renderer" objects, added SoDefaultRenderer and
3886           SoWebDAVRenderer (v4.2.61)
3887         
3888         * moved WebDAV related SoObject stuff into a separate subproject,
3889           WebDAV.subproj
3890
3891 2002-10-30  Helge Hess  <helge.hess@skyrix.com>
3892
3893         * SoObjects.subproj/SoObjectWebDAVDispatcher.m: started subscribe/
3894           unsubscribe support, uses attributes for search result generation
3895           if available (v4.2.60)
3896
3897         * Defaults.plist: added SoPreferredNamespacePrefixes defaults to
3898           configure default-prefixes for XML namespace generation
3899
3900         * NGHttp: added SUBSCRIBE/UNSCRIBE to the request methods were no body
3901           parsing is performed (v4.2.59)
3902
3903 2002-10-29  Helge Hess  <helge.hess@skyrix.com>
3904
3905         * WEClientCapabilities.m: fixed Outlook detection (was recognized as
3906           IE, not as Outlook ...).
3907         
3908         * SoObjects.subproj/EOFetchSpecification+SoDAV.m: changed to use the
3909           new EOControl/EOSQLParser (v4.2.58)
3910
3911 2002-10-28  Helge Hess  <helge.hess@skyrix.com>
3912
3913         * WOComponent.m(-dealloc): reset parent pointers of subcomponents 
3914           (v4.2.57)
3915
3916         * SoObjects: started security infrastructure (v4.2.56)
3917
3918         * Defaults.plist: added SoSecurityManagerDebugEnabled, 
3919           SoLogSecurityDeclarations
3920
3921 2002-10-25  Helge Hess  <helge.hess@skyrix.com>
3922         
3923         * SoObjects: abstracted DAV queries (PROPFIND, SEARCH) in
3924           EOFetchSpecification (v4.2.55)
3925         
3926         * SoObjects: working dispatcher selection based on request (v4.2.54)
3927
3928 2002-10-24  Helge Hess  <helge.hess@skyrix.com>
3929
3930         * SoObjects: started to add dispatcher and WebDAV support (v4.2.53)
3931
3932 2002-10-23  Helge Hess  <helge.hess@skyrix.com>
3933
3934         * NGHttp: added some WebDAV/HTTP methods (v4.2.52)
3935
3936         * WEClientCapabilities.m (WEUA_IE): recognizes Microsoft Outlook 
3937           Express when used to access mailboxes over HTTP (v4.2.51)
3938
3939         * WOProxyRequestHandler.m: can act as a (non-transparent) HTTP proxy
3940           (v4.2.50)
3941
3942         * WORequest.m: added -isProxyRequest to check whether we got a
3943           proxy request ;-) (whether the URI passed is a full URL)
3944
3945         * WOHTTPConnection.m: filter out host headers during sending of request
3946           headers (because host: is set by WOHTTPConnection itself)
3947
3948         * added the WOProxyRequestHandler for forwarding requests to other
3949           HTTP servers (v4.2.49)
3950         
3951         * WEClientCapabilities.m: recognizes Microsoft Outlook 2002 when used
3952           to access mailboxes over HTTP (v4.2.48)
3953
3954 2002-10-22  Helge Hess  <helge.hess@skyrix.com>
3955
3956         * WEClientCapabilities.m: added the Evolution WebDAV connector as a
3957           known host (v4.2.47)
3958
3959 2002-10-21  Helge Hess  <helge.hess@skyrix.com>
3960
3961         * WOContext.m: disabled the new context-URL style (DnD should work 
3962           again) (v4.2.47)
3963
3964         * some SoObject fixes (v4.2.46)
3965
3966         * v4.2.45
3967
3968         * a lot of work on the SoObject system (added classes, registry, 
3969           selector invocation)
3970
3971         * WOHttpAdaptor.subproj/WOHttpTransaction.m: some code cleanup, added
3972           some status-code=>reason mapping
3973
3974         * WEClientCapabilities.m: recognizes the curl program
3975
3976 Fri Oct 18 10:59:16 2002  Helge Hess  <helge.hess@skyrix.com>
3977
3978         * added SoObject support for WODirectActionRequestHandler and
3979           WODirectAction (v4.2.44)
3980         
3981         * started SoObject support (object based request handling) (v4.2.43)
3982
3983 1998-10-09  Helge Hess  <helge@trex.mdlink.de>
3984
3985         * added OWContext
3986
3987         * OWApplication.m: session cookie added
3988
3989         * created ChangeLog