-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathChangeLog
6511 lines (5936 loc) · 247 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-12-28 David Wetzel <[email protected]>
* gsweb.make.in
* GNUmakefile
remove GSWExtensionsGSW as this is depricated now.
* GSWeb/GSWDefaultAdaptor.m
added retain/autorelease
* GSWUtils.m
removed category on NSUserDefaults
* GSWDefaultAdaptor.m
removed _workerThreadCountMax = 16
* GSWeb/GSWConfig.h
GSWOPTVALUE_WorkerThreadCountMax 256 -> 32
2017-12-25 David Wetzel <[email protected]>
* GSWDatabase/WODisplayGroup.m
fix format string and NSArray / NSMutableArray bugs
* GSWeb/GNUmakefile
* GSWeb/GSWApplication.h
* GSWeb/GSWApplication.m
replace GSWMultiKeyDictionary with GSWDictionary
* GSWeb/GSWDefaultAdaptor.m
limit _workerThreadCountMax to 16 for now
* GSWeb/GSWDeployedBundle.*, GSWResourceManager.*
replace GSWMultiKeyDictionary with GSWDictionary
* GSWeb/GSWDictionary
new class using NSMutableDictionary internally.
* GSWeb/GSWImageInfo.m
fix leak
* GSWeb/GSWRequest.m
fix leak
* GSWeb/GSWUtils.m
fix leak
* GSWeb/GSWWOCompatibility.h
remove GSWMultiKeyDictionary
* GSWeb/GSWWorkerThread.m
some cleanups but still does not run in MT on FreeBSD.
* GSWeb/NSString+Trimming.m
fix leaks
* Tests/gsweb/GNUmakefile.postamble
* Tests/gsweb/GNUmakefile.super
* Tests/gsweb/GSWDictionary/TestInfo
* Tests/gsweb/GSWDictionary/general.m
new files
2017-12-04 David Wetzel <[email protected]>
* GSWAdaptors/Apache2/mod_gsw.c
add support for /wo/showapps
return HTTP status 504 if app is unreachable
* GSWAdaptors/README.txt
update note for /wo/showapps
2017-11-19 David Wetzel <[email protected]>
* GSWAdaptors/Apache2/mod_gsw.c
compiles with Apache 2.4 now
* GSWAdaptors/README.txt
updated readme
2017-11-19 David Wetzel <[email protected]>
* GSWeb/GSWAjaxRequestHandler.*
new files
* GSWeb/GNUmakefile
add GSWAjaxRequestHandler.*, WOAjaxRequestHandler.h
* GSWeb/GSWApplication+Defaults.*
add AjaxRequestHanderKey
* GSWeb/GSWApplication.h
add +ajaxRequestHandlerKey
add +setAjaxRequestHandlerKey:
* GSWeb/GSWApplication.m
create ajax request handler in registerRequestHandlers
* GSWeb/GSWComponentRequestHandler.m
return current class instance in +handler (works in subclasses too..)
* GSWConstants.*
added ajax
* GSWContext.*
added +shouldNotStorePageInBacktrackCache
* GSWeb/GSWMessage.*
added storePageInBacktrackCache
* GSWeb/GSWRequest.*
added -isAjaxSubmit, ajaxFormSubmitKey
* GSWeb/GSWSession.m
* GSWeb/GSWeb.h
* GSWeb/GSWWOCompatibility.h
ajax adjustments
2017-11-16 David Wetzel <[email protected]>
* GSWExtensions/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html
* GSWExtensions/GSWExceptionPage.gswc/GSWExceptionPage.html
tweak CSS and Sizes for iPhone
2017-09-02 David Wetzel <[email protected]>
* GSWeb/GSWSessionTimeOutManager.m
shorten description to avoid loop
* GSWeb/GSWApplication.m
added -frameworkNameWOExtensions to make WONames work
(Session restoration error page did not work)
* GSWDatabase/WODisplayGroup.m
added <WebObjects/GSWPrivate.h> header
2015-03-11 Manuel Guesdon <[email protected]>
* GSWeb/GSWConstants.m
downcase Header keys
2015-03-11 Manuel Guesdon <[email protected]>
* GSWeb/GSWHTTPIO.m
force header keys to lowercase
2014-07-04 Manuel Guesdon <[email protected]>
* GSWeb/GSWBody.m
fix initWithName:...
2014-07-01 Manuel Guesdon <[email protected]>
* GSWeb/GSWHyperlink.m
fix -appendAttribute:... for nil href value
2014-06-11 Manuel Guesdon <[email protected]>
* GSWeb/GSWAssociation.m
fix EOValidatedObjectUserInfoKey value
2014-05-30 Sebastian Reitenbach <[email protected]>
* nearly every file
get rid of RCS_ID
2014-05-30 Manuel Guesdon <[email protected]>
* GSWeb/GSWRadioButtonList.m
Remove escapeHTML association assign (done in GSWInput)
* GSWeb/GSWCheckBoxList.m
Remove escapeHTML association assign (done in GSWInput)
* GSWeb.framework/GSWInput.m
Fix -init...
2014-05-29 Manuel Guesdon <[email protected]>
* GSWDatabase/GSWHTMLDynamicElement.[hm]
add -hasNonURLAttributes
add -hasURLAttributes
add -hasConstantAttributes
* GSWeb/GSWRadioButtonList.m
handle disabled association
handle other associations (like id, onChange, etc)
* GSWeb/GSWCheckBoxList.m
handle disabled association
handle other associations (like id, onChange, etc)
2014-05-29 Manuel Guesdon <[email protected]>
* GSWDatabase/WODisplayGroup.m
add NSArray -objectsAtIndexesArray:
add NSArray -isEqualByObjectPointer:
fix -setSelectionIndexes:
2014-05-29 Manuel Guesdon <[email protected]>
* GSWeb/GSWConstants.[hm]
add GSWClassName_Component
* GSWeb/GSWComponentDefinition.m
fix -componentClass to use GSWClassName_Component
2014-05-29 Manuel Guesdon <[email protected]>
* GSWDatabase/WODisplayGroup.m
respect GNUstep coding standard (curly brackets placement, indentation)
fix _deleteObject: (undo selectors)
fix _insertObjectWithObjectAndIndex: (NSAssert)
fix insertObject:atIndex: (undo selectors)
2014-05-22 Manuel Guesdon <[email protected]>
* GSWeb/GSWAssociation.h
replace logTakeValue: by _logPullValue:inComponent:
replace logSetValue: by logPushValue:inComponent:
* GSWeb/GSWAssociation.m
replace logTakeValue: by _logPullValue:inComponent:
replace logSetValue: by logPushValue:inComponent:
respect GNUstep coding standard (curly brackets placement, etc.)
implement -debugDescription
* GSWeb/GSWConstantValueAssociation.m
replace logTakeValue: by _logPullValue:inComponent:
replace logSetValue: by logPushValue:inComponent:
fix -debugDescription
* GSWeb/GSWKeyValueAssociation.m
replace logTakeValue: by _logPullValue:inComponent:
replace logSetValue: by logPushValue:inComponent:
simplify -description
* GSWeb/GSWKeyValueAssociation.h
remove unneedded declarations
* GSWeb/GSWConstantValueAssociation.m
remove unneedded declarations
2014-05-22 Manuel Guesdon <[email protected]>
* GSWeb/GSWUtils.m
fix rangeOfData:range:
* GSWExtensions/GSWCollapsibleComponentContent.gswc/GSWCollapsibleComponentContent.gswd
set framework binding
* GSWExtensions/GSWCollapsibleComponentContent.[hm]
handle framework binding
* GSWExtensions/GSWPageRestorationErrorPage.gswc/GSWPageRestorationErrorPage.gswd
set framework binding
* GSWExtensions/GSWSessionCreationErrorPage.gswc/GSWSessionCreationErrorPage.gswd
set framework binding
* GSWExtensions/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.gswd
set framework binding
* GSWeb/GSWApplication.[hm]
add -frameworkNameGSWExtensions
* GSWeb/GSWPasswordField.m
respect GNUstep coding standard (curly brackets placement, etc.)
* GSWeb/GSWPasswordField.h
remove unneeded declarations
* GSWeb/GSWHiddenField.m
fix
* GSWeb/GSWHiddenField.h
remove unneeded declarations
* GSWeb/GSWString.m
fix appendToResponse:inContext: when formattedValue is nil
respect GNUstep coding standard (curly brackets placement, etc.)
* GSWeb/GSWTemplateParser.m:
fix exception error messages
* GSWeb/GSWPopUpButton.m
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
* GSWeb/GSWRepetition.m
respect GNUstep coding standard (curly brackets placement, etc.)
reimplement startIndex and stopIndex bindings
clean code
* GSWeb/GSWCheckBoxList.m
fix -initWithName:...: prefix__Key duplicate, _value
* GSWeb.framework/GSWRadioButtonList.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
Fix bug in -initWithName (valueAssoc)
Fix bug in _slowTakeValuesFromRequest: (call NSStringWithObject())
* GSWeb/GSWTextField.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
Fix bug (call NSStringWithObject())
* GSWeb/GSWText.m
respect GNUstep coding standard (curly brackets placement, etc.)
clean code
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
Fix bug (call NSStringWithObject())
* GSWeb/GSWCheckBox.m
respect GNUstep coding standard (curly brackets placement, etc.)
clean code
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
* GSWeb/GSWRadioButton.m
respect GNUstep coding standard (curly brackets placement, etc.)
clean code
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
* GSWeb.framework/GSWInput.h
remove initWithName:associations:contentElements:
* GSWeb.framework/GSWInput.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
ensure name is a string in -nameInContext:
fix name escaping in -_appendNameAttributeToResponse:
ensure value is a string in _appendValueAttributeToResponse:
remove initWithName:associations:contentElements:
* GSWeb/GSWHTMLDynamicElement.m
respect GNUstep coding standard (curly brackets placement, etc.)
ensure string conversion in -_finishInitialization
rename variables to make code understandable
* GSWeb/GSWConditional.m
respect GNUstep coding standard (curly brackets placement, etc.)
* GSWeb/GSWActionImage.m
respect GNUstep coding standard (curly brackets placement, etc.)
fix secure stuff
ensure string conversion
* GSWeb/GSWActionURL.m
respect GNUstep coding standard (curly brackets placement, etc.)
ensure string conversion
* GSWeb/GSWBody.h
remove uneeded declarations
* GSWeb/GSWBody.m
remove uneeded stuff
fix initWithName:...
* GSWeb.framework/GSWBrowser.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
rename variables to make code understandable
Fix bugs
* GSWeb.framework/GSWFileUpload.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
* GSWeb/GSWFrame.h
remove uneeded declarations
* GSWeb/GSWFrame.m
respect GNUstep coding standard (curly brackets placement, etc.)
clean code
* GSWeb/GSWGenericContainer.h
remove uneeded declarations
change inheritence
* GSWeb/GSWGenericContainer.m
respect GNUstep coding standard (curly brackets placement, etc.)
clean code
* GSWeb/GSWGenericElement.h
remove uneeded declarations
change inheritence
* GSWeb/GSWGenericElement.m
respect GNUstep coding standard (curly brackets placement, etc.)
clean code
* GSWeb/GSWForm.h
remove uneeded declarations
* GSWeb/GSWForm.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
ensure string conversion
* GSWeb/GSWHTMLURLValuedElement.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
ensure string conversion
finish appendAttributesToResponse:inContext implementation
* GSWeb/GSWHyperlink.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
ensure string conversion
* GSWeb/GSWImage.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
* GSWeb/GSWClientSideScript.h
remove uneeded declarations
change inheritence
add -setLanguage
* GSWeb/GSWJavaScript.m
clean and update code
* GSWeb/GSWSubmitButton.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
clean code
* GSWeb/GSWImageButton.m
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
* GSWeb/GSWSwitchComponent.m
clean and update code
* GSWeb/GSWJavaScript.m
clean and update code
* GSWeb/GSWContext.m
clean & fix -computeQueryDictionaryWithPath:queryDictionary:otherQueryDictionary:
fix componentActionURL... methods
* GSWeb/GSWHTTPIO.m:
use GSWeb_appendStringWithImpPtr()
* GSWeb/GSWActionURL.h
remove uneeded declarations
* GSWeb/GSWPrivate.h
add GSWeb_objectAtIndexWithImpPtr
* GSWDatabase/WODisplayGroup.m
Don't raise validation exceptions in _qualifierForKey:value:operatorSelector:
2014-05-06 Manuel Guesdon <[email protected]>
* GSWeb/GSWCheckBoxList.m
fix appendToResponse:inContext:
respect GNUstep coding standard (curly brackets placement, etc.)
use GSWAssignAndRemoveAssociation() in initWithName:associations:template:
* GSWeb/GSWElement.[hm]
add GSWAssignAndRemoveAssociation() to make controls code simplier
w2014-04-29 Manuel Guesdon <[email protected]>
* GSWeb/GSWApplication.m:
fix -baseURL
* GSWeb/GSWResourceManager.m:
fix urlForResourceNamed:... when using web server
2014-04-17 Manuel Guesdon <[email protected]>
* GSWeb/GSWPopUpButton.m
fix _slowTakeValuesFromRequest:inContext:
(convert valueValue before isEqual:)
replace while loop by a simplier for loop
respect GNUstep coding standard (curly brackets placement)
rename variable to make code more understandable
* GSWeb/GSWComponent.m
respect GNUstep coding standard (curly brackets placement)
fix validateTakeValue:forKeyPath: (set value if only if different)
remove non standard and unused methods validation stuff:
-setValidationFailureMessage:forElement:
-validationFailureMessageForElement:
-handleValidationExceptionDefault
-isValidationFailure
-validationFailureMessages
-allValidationFailureMessages
fix -path
remove context -setIsValidate: calls
remove _uniqueID
clean code
* GSWeb/GSWComponent.h
remove _validationFailureMessages
remove non standard and unused methods validation stuff
remove _uniqueID
* GSWeb/GSWUtils.[hm]
remove non standard -isValidationException
remove -ValidationExceptionRaise*
* GSWeb/GSWContext.[hm]
remove -setValidate
remove -isValidate
* GSWeb/GSWApplication.m
remove context -setIsValidate: calls
2014-04-11 Manuel Guesdon <[email protected]>
* GSWeb/GSWHyperlink.m
fix generateRelativeURLs/generateRelativeURLs
rename variables to make code easier to understand
respect GNUstep coding standard (curly brackets placement)
* GSWeb/GSWApplication.m
set _isMultiThreaded when adaptor dispatchesRequestsConcurrently
remove -lockRequestHandling
remove -lockedDecrementActiveSessionCount
remove -lockedIncrementActiveSessionCount
* GSWeb/GSWApplication.h
remove -lockRequestHandling
remove _globalLockn
remove _globalLock_thread_id
remove -dealloc
remove -init
remove duplicate declarations
remove -lockedDecrementActiveSessionCount
remove -lockedIncrementActiveSessionCount
* GSWeb/GSWActionRequestHandler.m
copy lock code from GSWComponentRequestHandler
* GSWeb/GSWSessionTimeOutManager.m
use -requestHandlingLock instead of -lockRequestHandling
2014-04-11 Manuel Guesdon <[email protected]>
* GSWDatabase/WODisplayGroup.m
remove -objectsAtIndexes: (implemented in core/NSArray)
* GSWeb/GSWComponent.m
implement -baseURL
* GSWeb/GSWComponentDefinition.m
comment unused defaultFileManager
* GSWeb/GSWUtils.m
* GSWeb/GSWMessage.m
fix encoding output in logs/messages
* GSWeb/GSWString.[hm]
fix -initWithName:associations:template: definition
* GSWeb/GSWRequest.m
fix misnaming (s/WODynamicURLString/GSWDynamicURLString/)
fix encoding output in logs/messages
* GSWeb/GSWRadioButton.m
remove [_value isValueSettable] test: this value is not set
* GSWeb/GSWImage.m
fix framework name computing
* GSWeb/GSWHTTPIO.m
allow custom request class
fix warning
* GSWeb/GSWApplication.m
fix GSWFPutSL (there was no \0 at end of string)
fix -sessionIdKey
fix -instanceIdKey
remove unused -createRequestWithMethod:...
* GSWeb/GSWApplication.h
remove unused -createRequestWithMethod:...
* config.mak.in
define EOCONTROL_LIBRARY_NAME and EOACCESS_LIBRARY_NAME
* GSWeb/GSWConstants.[hm]
add GSWKey_QuestionMarkSessionID
add border__Key
* GSWeb/GSWActiveImage.h
add _border association
* GSWeb/GSWActiveImage.m
fix SessionID stuff in initWithName:...
add _border association
fix associations tests
respect GNUstep coding standard (curly brackets placement)
* GSWeb/GSWContext.m
fix -sessionID
* GSWeb/GSWForm.m
fix _appendHiddenFieldsToResponse:inContext: (convert value to string)
* GSWeb/GSWHTMLDynamicElement.m
fix _frameworkNameForAssociation:inComponent:
fix computeQueryDictionaryWithActionClassAssociation: (wosid hadcoding and
other values tests)
respect GNUstep coding standard (curly brackets placement)
rename variables to make code easier to understand
fix _appendAttributesFromAssociationsToResponse:
* GSWeb/GSWHTMLRawParser.m
fix warning
* GSWExtensions/GNUmakefile
fix FRAMEWORK_NAME for gswnames=gsw
* GSWExtensionsGSW/GSWFileUploadComponent.m
removed uneeded method
* GSWExtensionsGSW/GSWFileUploadComponent.gswc/GSWFileUploadComponent.gswd
quick fix FileLinkWithPath (investigate this later)
* config.mak.in
fix gswnames problem for ./configure --with-gswnames=gsw
* README
add original developper name
2013-12-21: Sebastian Reitenbach <[email protected]>
* GSWeb/GSWSession.m
do not include linux/sys.h
patch by Graham Lee
2013-06-22: Sebastian Reitenbach <[email protected]>
* GSWeb/GSWComponentRequestHandler.m
* GSWeb/GSWComponent.m
* GSWeb/GSWConstants.[h|m]
* GSWeb/GSWFileUpload.m
* GSWeb/GSWRequest.m
* GSWeb/GSWResourceRequestHandler.m
* GSWeb/GSWResponse.m
introduce some new string constants to GSWConstants
and use them more consistently
2013-06-12: David Wetzel <[email protected]>
* GSWAdaptors/Apache2/mod_gsw.c
use strncasecmp to be more tolerant with header case
update x-webobjects-adaptor-version (old WO uses lowercase, I think)
2013-06-11: David Wetzel <[email protected]>
* GSWAdaptors/Apache2/mod_gsw.c
print 'never' and not the epoch time if there was never a response
2013-06-09: Sebastian Reitenbach <[email protected]>
* GSWAdaptors/Apache/mod_gsweb.c
* GSWAdaptors/common/GNUmakefile
* GSWAdaptors/common/GSWConfig.[h|c]
* GSWAdaptors/common/GSWLock.h
* GSWAdaptors/common/GSWStats.c
* GSWAdaptors/common/GSWUtil.[h|c]
* GSWAdaptors/common/config.h
remove #ifdefs of Netscape, Apache and Apache2, only
leave parts of Apache
* GSWAdaptors/Apache/GNUmakefile.in
* GSWAdaptors/Apache/mod_gsweb.c
do not reference the common directory anymore
* move files needed by the Apache adaptor from
common into the Apache directory
* remove GSWAdaptors/common and remaining stuff in there
* GSWeb/GSWUtils.m
do not use deprecated method, replace as suggested by warning
* GSWeb/GSWApplication+Defaults.m
* GSWeb/GSWApplication.h
make the defaultUndoStackLimit NSUInteger
2013-06-06: Sebastian Reitenbach <[email protected]>
* GSWAdaptors/common/GSWAppConnectSocket.c
* GSWAdaptors/common/GSWUtil.c
make the old Apache Adaptor work on OpenBSD
* GSWAdaptors/Apache/mod_gsweb.c
* GSWAdaptors/Apache/GNUmakefile-Apache[1|2]x
remove all #ifdef Apache2, and remove old GNUmakefiles
* GSWAdaptors/README.txt
note about Apache adaptor to work with OpenBSD Apache
delete GSWAdaptors/netscape
2013-06-02: David Wetzel <[email protected]>
* GSWeb/GSWMessage.m
Remove warning
* README
Change maintainer
2013-05-31: Sebastian Reitenbach <[email protected]>
* GSWeb/GSWMessage.[h|]
get rid of bogus #ifndef NO_GNUSTEP
* GSWeb/GSWHTTPIO.m
use the file handle in non-blocking mode in GNUstep
environment, uses a private GSFileHandle class
* GSWeb/GSWApplication.[h|m]
* GSWeb/GSWComponentRequestHandler.m
make _globalLock a NSRecursiveLock to fix problem
I introduced with SVN rev 36250, fixes bug 39092
* GSWeb/GSWMultiKeyDictionary.m
Explicitly create a NSMutableDicitonary, see bug
39088
* GSWeb/GSWProcFS.m
fix a format string
* GSWDatabase/WODisplayGroup.m
uncomment the right method, and use an NSIndexSet
where needed instead of NSArray
* GSWAdaptors/Apache/INSTALL
add a missing semicolon, and remove deprecated documentation
* GSWAdaptors/Apache/mod_gsweb.c
make it compile with OpenBSD Apache 1.X
* GSWAdaptors/common/GSWConfig.c
fix output
2013-05-30: Sebastian Reitenbach <[email protected]>
* GSWeb/GSWElement.h
@class not needed after including full header of that class
2013-05-30: Graham Lee <[email protected]>
* GSWeb/GSWContext.m
remove useless comparison
* GSWeb/GSWDeclarationParser.m
fix some format strings and variables used in there
* Add method to interface and remove a cast
from bug report 39088
2013-05-29: Sebastian Reitenbach <[email protected]>
* GSWeb/GNUmakefile
* GSWeb/GSWProcFS.m
* GSWeb/GSWUtils.m
* GSWeb/GSWHTMLStaticElement.m
* GSWeb/GSWRecording.m
* GSWeb/NSString+HTML.m
* GSWeb/GSWMessage.m
* GSWeb/GSWRequest.m
* GSWeb/WOKeyValueUnarchiver.m
* GSWeb/GSWMultiKeyDictionary.m
* GSWeb/GSWTemporaryElement.m
fix some format strings, patch based on submission from
Graham Lee to bug report 39087
2013-05-27: Sebastian Reitenbach <[email protected]>
* GSWeb/NSString+HTML.m
* GSWeb/GSWDeclarationParser.m
make inline functions static to please clang
2013-03-04 David Wetzel <[email protected]>
* GSWExtensions/GSWLongResponsePage.m
* GSWDatabase/WODisplayGroup.m
* GSWeb/GSWHTMLStaticElement.m
* GSWeb/GSWDynamicURLString.m
fix some warnings
2013-03-03 Sebastian Reitenbach <[email protected]>
* GSWDatabase/WODisplayGroup.h
* GSWDatabase/WODisplayGroup.m
* GSWExtensions/GSWCollapsibleComponentContent.h
* GSWExtensions/GSWCollapsibleComponentContent.m
* GSWExtensions/GSWDictionaryRepetition.m
* GSWeb/GSWRequest.m
make the methods in the interface match the
methods in the implementation
2013-03-02 Sebastian Reitenbach <[email protected]>
* GSWeb/GSWSessionTimeOutManager.h
GSWSessionTimeOutManager conforms to NSLocking protocol
* GSWeb/GSWComponentDefinition.m
* GSWeb/GSWComponentReference.m
* GSWeb/GSWContext.m
* GSWeb/GSWHTMLDynamicElement.m
* GSWeb/GSWHyperlink.m
* GSWeb/GSWResourceManager.m
* GSWeb/GSWResourceRequestHandler.m
get rid of extaneous parentheses on equality tests
* GSWeb/GSWUtils.m
NS(U)Integer conversions
* GSWeb/GSWResourceManager.m
* GSWeb/GSWHTMLStaticElement.m
do not use redundant stringWithString:
* GSWeb/GSWContext.m
move @interface before @implementation
* GSWDatabase/WODisplayGroup.[h|m]
* GSWeb/GSWUtils.[h|m]
no need for categories to reimplement things
already defined in their primary class
* GSWeb/GSWPngImageInfo.m
remove useless #warning
* GSWeb/GSWApplication.m
_globalLock is NSLock, not NSRecursiveLock
2013-03-02 Sebastian Reitenbach <[email protected]>
* regenerate configure from configure.ac
2013-03-02 David Wetzel <[email protected]>
add GSWDatabase/Makefile.preamble patch from Sebastian Reitenbach
2013-03-01 David Wetzel <[email protected]>
* configure.ac
* GSWeb/GSWUtils.m
* GSWeb/GSWApplication+Defaults.m
* GSWeb/GSWHTTPIO.m
Fixed for non-Apple platforms, patch from Sebastian Reitenbach.
2013-02-26 David Wetzel <[email protected]>
* added GSWeb/GSWApplication+Defaults.h
* GSWeb/GNUmakefile: use -Werror
* GSWeb/GSWFileUpload.* added multiple file support
* Testing/DynamicElements/FileUpload1Page.wo added multiple file support
* GSWeb/* fixed warnings on Mountain Lion
2011-05-13 David Wetzel <[email protected]>
* GSWAdaptors/Apache2/mod_gsw.c
modified find_app_by_name() wen dealing with single instances
include image
include some css
2010-10-24 David Wetzel <[email protected]>
* GSWeb/GSWContext.h
add @class GSWResourceManager
add WOMarkupType
add _markupType;
reformat
* GSWeb/GSWContext.m
add - (WOMarkupType) markupType
* GSWeb/GSWComponent.h
add - (WOMarkupType) markupType
* GSWeb/GSWComponent.m
add - (WOMarkupType) markupType
2010-06-25 David Wetzel <[email protected]>
* GSWeb/GSWResourceManager.m
+ GSLanguageFromISOLanguage:
use 2 steps to find language, first supplied one 'ja-jp'
if that fails, use 'ja'
2010-06-23 David Wetzel <[email protected]>
* GSWeb/GSWResourceManager.m
reformat statics, add TheStringsTableLock
add _cachedStringsTable()
add _cachedStringForKey()
rewrote -stringForKey:inTableNamed:withDefaultValue:inFramework:languages:
use NONESTR, not @"NONE"
* Testing/DynamicElements/ImagePage.h
* Testing/DynamicElements/Resources/Chinese.lproj/Localizable.strings
* Testing/DynamicElements/Resources/Russian.lproj/Localizable.strings
* Testing/DynamicElements/Resources/French.lproj/Localizable.strings
* Testing/DynamicElements/Resources/English.lproj/Localizable.strings
* Testing/DynamicElements/Resources/German.lproj/Localizable.strings
* Testing/DynamicElements/ImagePage.m
* Testing/DynamicElements/ImagePage.wo
add test for GSWResourceManager's -stringForKey:inTableNamed:withDefaultValue:inFramework:languages:
* Testing/DynamicElements/DynamicElements.m
set UTF8 encoding
* Testing/DynamicElements/GNUmakefile
add new files
2010-06-22 David Wetzel <[email protected]>
* GSWeb/GSWResponse.m
* GSWeb/GSWHTTPIO.m
do not add ETag
* GSWeb/GSWResourceRequestHandler.h
add request: argument to _responseForDataAtPath:
* GSWeb/GSWResourceRequestHandler.m
add request: argument to _responseForDataAtPath:
_responseForDataAtPath:request:
generate Last-Modified header
generate ETag header
use hash of modification date and size
(faster than over a large NSData object)
check for if-none-match header
2010-06-22 David Wetzel <[email protected]>
* GSWeb/GSWResourceManager.m
make url prefix dynamic based on [request _applicationURLPrefix]
2010-06-22 David Wetzel <[email protected]>
* GSWExtensions/Resources/Info-gnustep.plist
delete
* GSWExtensions/GNUmakefile
let makefiles generate Info-gnustep.plist
2010-06-22 David Wetzel <[email protected]>
* GSWExtensions/Resources/Info-gnustep.plist
* GSWExtensions/GNUmakefile
fix framework name to be able to load files from the right bundle
2010-06-22 David Wetzel <[email protected]>
* GSWeb/GSWResourceManager.m
split names into pathExtension and name before feeding it into NSBundle.
This is not needed on OSX, but on current -base
2010-06-22 David Wetzel <[email protected]>
* GSWeb/GSWResourceManager.h
* GSWeb/GSWComponent.h
disable GS_ATTRIB_DEPRECATED until a solution is found
2010-06-21 David Wetzel <[email protected]>
* GSWExtensions/GSWPageRestorationErrorPage.gswc/GSWPageRestorationErrorPage.gswd
* GSWExtensions/GSWSessionCreationErrorPage.gswc/GSWSessionCreationErrorPage.gswd
* GSWExtensions/GNUmakefile
* GSWExtensions/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.gswd
* GSWExtensions/GSWExceptionPage.gswc/GSWExceptionPage.gswd
use exclamation.png. exclamation.svg is not displayed inline in mozilla
due to a bug in mozilla.
* GSWExtensions/WebServerResources/exclamation.png
* GSWExtensions/WebServerResources/exclamation.svg
new file
* GSWExtensions/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html
* GSWExtensions/GSWExceptionPage.gswc/GSWExceptionPage.html
better web design
* GSWeb/GSWApplication.m
-path
get path from _resourceManager
_resetCache
do not call _clearCache, maybe we should trash the _componentDefinitionCache?
_finishInitializingSession:
make empty, still seems to work
+_applicationClass
don not use _applicationGSWBundle
* GSWeb/GSWResourceManager.h
* GSWeb/GSWResourceManager.m
major redesign with WO 4.5 docs in mind.
* GSWeb/GSWImageButton.m
refactor resourceManager code
* GSWeb/GSWeb.h
remove GSWBundle class
* Testing/DynamicElements
added Image test.
2010-06-18 David Wetzel <[email protected]>
* GSWeb/GSWContext.m
- computeQueryDictionaryWithPath:queryDictionary:otherQueryDictionary
use boolValue.
This fixes ?wosid in links where it not has to be.
* GSWeb/GSWMessage.h
remove _contentEncodingIMP, GSWMessage_contentEncoding
* GSWeb/GSWMessage.m
remove contentEncodingSEL, GSWMessage_contentEncoding()
* GSWeb/GSWUtils.h
remove NSStringEncoding
remove + encodingNamed:
* GSWeb/GSWUtils.m
remove encodingsByName
remove + encodingNamed:
* GSWeb/GSWResponse.h
remove GSWResponse_contentEncoding
* GSWeb/GSWBundle.m
use [GSMimeDocument encodingFromCharset:encodingObject]
not + encodingNamed (which we trashed above)
* GSWeb/NSDictionary+HTML.m
use [GSMimeDocument encodingFromCharset:]
2010-06-17 David Wetzel <[email protected]>
* GSWAdaptors/Apache2/mod_gsw.c
minor cleanups, avoid missing filename message to logs
2010-06-16 David Wetzel <[email protected]>
* GSWeb/Resources/languages.plist
add more languages
* GSWeb/GSWHyperlink.m
_appendQueryStringToResponse:inContext:requestHandlerPath:htmlEscapeURL:
use encodeAsCGIFormValuesEscapeAmpersand: not encodeAsCGIFormValues
appendAttributesToResponse:inContext:
use _appendQueryStringToResponse:inContext:requestHandlerPath:htmlEscapeURL:
not _appendQueryStringToResponse:inContext:
* GSWeb/GSWSession.m
do not dealloc _autoreleasePool in dealloc
This seems to fix
* GSWeb/NSDictionary+HTML.h
* GSWeb/NSDictionary+HTML.m
fix typo in method name encodeAsCGIFormValuesEscapeAmpersand
* GSWeb/GSWActionURL.m
use _appendQueryStringToResponse:inContext:requestHandlerPath:htmlEscapeURL:
not _appendQueryStringToResponse:inContext:
* GSWeb/GSWDynamicURLString.m
disable NSLog
* GSWeb/GSWSessionStore.m
_checkInSessionForContext:
enable [session _releaseAutoreleasePool]
add comment
2010-06-13 David Wetzel <[email protected]>
* GSWeb/GSWDeployedBundle.m
remove local NSAutoreleasePool
* configure.ac
GSWeb.framework -> GSWeb
* configure
regenerate
2010-06-13 David Wetzel <[email protected]>
rename all *.framework top level directories to their basename.
* GSWDatabase/WODisplayGroup.m
remove local NSAutoreleasePool
adjust makefiles
2010-06-13 David Wetzel <[email protected]>
* Examples/hello/Main.m
add DirectAction to avoid error messages
* GSWeb.framework/GSWEmbeddedObject.m
include NSObject+GNUstepBase.h
* GSWeb.framework/GSWConfig.h
remove GSWOPTVALUE_AcceptedContentEncoding
* GSWeb.framework/GSWResponse.h
remove acceptedEncodings
add + compressableContentTypes
add + setCompressableContentTypes:
remove usesless @interface/@end
* GSWeb.framework/GSWResponse.m
add compressableContentTypesCache
add + compressableContentTypes
add + setCompressableContentTypes:
remove acceptedEncodings
remove usesless @implementation/@end
add _browserSupportsCompression:
refactor _finalizeContentEncodingInContext:
* GSWeb.framework/GSWConstants.h
* GSWeb.framework/GSWConstants.m
remove GSWOPT_AcceptedContentEncoding
* GSWeb.framework/GSWComponent.m
do not call setAcceptedEncodings on response.
* GSWeb.framework/GSWApplication.h
* GSWeb.framework/GSWApplication+Defaults.m
remove + acceptedContentEncoding
remove + acceptedContentEncodingArray
remove + setAcceptedContentEncoding:
2010-06-11 David Wetzel <[email protected]>
* Testing/DynamicElements
Ported to WO names.
2010-06-10 David Wetzel <[email protected]>
* GSWeb.framework/GNUmakefile
* GSWeb.framework/WOKeyValueUnarchiver.m/h
add WOKeyValueUnarchiver
* GSWeb.framework/GSWComponentDefinition.m
add check, reformat
* GSWeb.framework/GSWBundle.m
add WOKeyValueUnarchiver
initializeObject: fromArchive:
use WOKeyValueUnarchiver to create objects
* GSWeb.framework/GSWComponent.m
validateTakeValue:forKeyPath:
fix path problem on multiple "." like foo.bar.test
add unarchiver: objectForReference:
* Examples/WebBookStore1/Main.wo/Main.woo
fix class of authorDG WODisplayGroup
2010-06-09 David Wetzel <[email protected]>
* GSWDatabase/WODisplayGroup.m
compiles without warning
cleanup, removed logs,
added exceptions
* GSWDatabase/WODisplayGroup.h
cleanup includes
* Examples/WebBookStore1/Main.m
removed create and drop tables.
* Examples/WebBookStore1/WebBookStore1_main.m
adapt to WO naming
* Examples/WebBookStore1/Main.gswc -> Main.wo
* Examples/WebBookStore1/GNUmakefile
updated
* Examples/WebBookStore1/Application.h
* Examples/WebBookStore1/DirectAction.h
* Examples/WebBookStore1/DirectAction.m
* Examples/WebBookStore1/Session.h
* Examples/WebBookStore1/Main.h
WO naming
* Examples/WebBookStore1/README
new file
* Examples/WebBookStore1/BookStore.eomodeld/index.eomodeld
added more sample data to connection dictionary
* GNUmakefile
add GSWDatabase to main project makefile
2010-06-09 David Wetzel <[email protected]>
* Examples/hello/Main.m
GSW* -> WO*
* Examples/hello/HelloPage.h
* Examples/hello/Main.h
wrap headers in #ifdef
2010-06-07 David Wetzel <[email protected]>
* GSWeb.framework/GSWComponent.m
validateTakeValue: forKeyPath:
fix for paths where an object in the path is nil
2010-06-05 David Wetzel <[email protected]>
* GSWeb.framework/GSWApplication.m
fixed typo in include
* GSWeb.framework/GSWString.m
removed unused IMP caching
2010-06-05 David Wetzel <[email protected]>
* GSWExtensionsGSW.framework/GSWFileUploadComponent.m
* GSWExtensionsGSW.framework/GSWLogin.m
removed logs
* GSWExtensionsGSW.framework/GNUmakefile
added ADDITIONAL_OBJCFLAGS = -Werror-implicit-function-declaration
* GSWExtensionsGSW.framework/GSWCacheElement.m
removed logs, use object_getClassName
* GSWExtensionsGSW.framework/GSWValidationFailureComponent.m
* GSWExtensionsGSW.framework/GSWTabComponent.m
* GSWExtensionsGSW.framework/GSWFileUploadFormComponent.m
* GSWExtensionsGSW.framework/GSWSimpleFormComponent.m
* GSWeb.framework/GSWApplication.m
removed logs, _validateAPI
ClassIsKindOfClass -> GSObjCIsKindOf
* GSWeb.framework/GSWAction.m
include <GNUstepBase/NSObject+GNUstepBase.h>
removed logs and unused (commented) code
* GSWeb.framework/GSWResourceManager.h
removed _validateAPI
* GSWeb.framework/GSWImageButton.m
added #include <GNUstepBase/NSObject+GNUstepBase.h>
removed logs and unused (commented) code
* GSWeb.framework/NSString+HTML.h
changed int to NSUInteger / NSInteger
* GSWeb.framework/GSWResourceManager.m
removed logs, _validateAPI
* GSWeb.framework/GSWContext.m
LOGObjectFnNotImplemented(); -> [self notImplemented: _cmd];
* GSWeb.framework/GSWRequestHandler.m
include <GNUstepBase/NSObject+GNUstepBase.h>
LOGObjectFnNotImplemented(); -> [self notImplemented: _cmd];
* GSWeb.framework/NSString+HTML.m
include <GNUstepBase/NSString+GNUstepBase.h>
changed int to NSUInteger
use memmove in GSWMemMove macro
disabled testStringByConvertingHTML
removed logs
fixed warnings
* GSWeb.framework/GSWMultiKeyDictionary.m
removed logs
* GSWeb.framework/GSWVBScript.m
removed logs
* GSWeb.framework/NSNonBlockingFileHandle.m
removed logs
* GSWeb.framework/GSWStatisticsStore.h
removed useless @interface / @end for the same class
* GSWeb.framework/GSWLifebeatThread.m
removed include <GNUstepBase/GSCategories.h>
removed logs
* GSWeb.framework/GSWStatisticsStore.m
removed logs
include <GNUstepBase/NSObject+GNUstepBase.h>
include <GNUstepBase/NSString+GNUstepBase.h>
implement _purgePathsStatistics, _updatePathsStatisticsWithPaths
removed useless @implementation / @end for the same class
* GSWeb.framework/GSWCookie.m
removed logs
* GSWeb.framework/GNUmakefile
added ADDITIONAL_OBJCFLAGS = -Werror-implicit-function-declaration
* GSWeb.framework/GSWRecording.m
removed logs
* GSWeb.framework/GSWToggle.m
removed logs
* GSWeb.framework/GSWMessage.m
include <GNUstepBase/NSObject+GNUstepBase.h>
globalDefaultEncoding = [NSString defaultCStringEncoding];
(see http://wiki.gnustep.org/index.php/GSWebFAQ )
use NSUInteger for index
LOGObjectFnNotImplemented(); -> [self notImplemented: _cmd];
* GSWeb.framework/GSWDefaultAdaptor.m