-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog.txt
More file actions
4797 lines (2866 loc) · 117 KB
/
Copy pathChangeLog.txt
File metadata and controls
4797 lines (2866 loc) · 117 KB
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
2007-04-24 Tuesday 15:05 cort
* src/Maverick/Controller/LocalizedController.cs:
no message
2007-04-24 Tuesday 14:58 dustin
* src/Tax/: CertiTax/CertitaxProvider.cs, Test/CertiTaxTest.cs,
TaxJurisidictionTypeEnum.cs:
Fixed CertiTax provider so loca tax jurisidictions get parsed and
added to the tax area jurisdiction list
2007-03-22 Thursday 02:31 cort
* src/AssemblyVersionInfo.cs:
update to next version
2007-03-22 Thursday 02:28 cort
* release/: Spring2.Core.1.1.53.1-net-1.1.zip,
Spring2.Core.1.1.53.1-net-2.0.zip, Spring2.Core-1.1.53.1.chm,
ChangeLog-1.1.53.1.txt:
new release version
2007-03-22 Thursday 02:22 cort
* ChangeLog.txt:
update change log
2007-03-22 Thursday 02:16 cort
* src/Log4Net/: Appender/FastDbAppender.cs, Log.table.sql:
use the log4net hostname property instead of set machine name
property, since it is known to be always set use identity instead
of username from logging event, so that a forms authentication
identity is available instead of the user that is set to run the
app output property for application to that logging events can be
distinguished
2007-03-22 Thursday 01:02 cort
* ChangeLog.txt:
update change log
2007-03-21 Wednesday 14:19 cort
* src/Log4Net/Log.table.sql:
updated script with new UserName column
2007-03-21 Wednesday 13:59 cort
* src/AssemblyVersionInfo.cs:
update to next version
2007-03-21 Wednesday 13:58 cort
* release/: Spring2.Core.1.1.51.0-net-1.1.zip,
Spring2.Core.1.1.51.0-net-2.0.zip, Spring2.Core-1.1.51.0.chm,
ChangeLog-1.1.51.0.txt:
new release version
2007-03-21 Wednesday 13:55 cort
* ChangeLog.txt:
update change log
2007-03-21 Wednesday 13:50 cort
* ChangeLog.txt:
update change log
2007-03-21 Wednesday 13:49 cort
* src/ResourceManager/: Facade/ResourceEditor/ResourceEditor.cs,
Test/ResourceEditorTest.cs:
reflect namespace change for ResourceDictionary
2007-03-21 Wednesday 13:44 cort
* src/ResourceManager/Facade/ResourceEditor/ResourceDictionary.cs:
correct namespace to match it's location
2007-03-21 Wednesday 13:42 cort
* src/: Spring2.Core.Maverick.csproj,
Test/MockHttpWorkerRequestTest.cs:
simple, incomplete tests for mock http request
2007-03-21 Wednesday 13:41 cort
* src/: Spring2.Core.Test.csproj,
Maverick/MockHttpWorkerRequest.cs:
add an object to help facilitate testing of controllers
2007-03-21 Wednesday 13:36 cort
* src/Log4Net/Appender/FastDbAppender.cs:
add new value for username use the environments machine name if the
logging event does not find one set
2007-03-21 Wednesday 13:32 cort
* src/Maverick/Controller/LocalizedController.cs:
added some better handling of multiple values in Accept-Languange
HTTP header as well as a value that is not a language and locale
pair.
2007-03-19 Monday 17:46 jeffm
* src/AssemblyVersionInfo.cs:
update to next version
2007-03-19 Monday 17:44 jeffm
* release/: Spring2.Core.1.1.49.0-net-1.1.zip,
Spring2.Core.1.1.49.0-net-2.0.zip, Spring2.Core-1.1.49.0.chm,
ChangeLog-1.1.49.0.txt:
new release version
2007-03-19 Monday 16:57 jeffm
* src/Test/DataFormTest.cs:
Change test that was expecting null cookie when asking for cookie
by name that doesn't exist in collection to get a new cookie.
2007-02-22 Thursday 16:24 dustin
* src/: Tax/CertiTax/CertitaxProvider.cs, Tax/Test/CertiTaxTest.cs,
AssemblyVersionInfo.cs:
Fixed address validation issue in CertiTax provider when corrected
address comes back as 5 digits rather than 9
2007-02-21 Wednesday 10:39 dustin
* src/: AssemblyVersionInfo.cs, Tax/CertiTax/CertitaxProvider.cs,
Tax/Test/CertiTaxTest.cs:
Fixed calculation of tax rates for jurisdiction breakdown in the
certitax provider
2007-02-20 Tuesday 17:06 dustin
* src/: AssemblyVersionInfo.cs, Tax/CertiTax/CertitaxProvider.cs,
Tax/Test/CertiTaxTest.cs:
Fixed tax jurisdiction rate calculation for certitax provider
Updated certitax jurisdiction tests to reflect change to logic
2007-02-20 Tuesday 12:24 dustin
* src/Spring2.Core.Tax.Test.csproj:
Added post build event to copy app.config to build folder for
Tax.Test project
2007-02-20 Tuesday 12:24 dustin
* src/Tax/Test/CertiTaxTest.cs:
Added test to validate tax jurisdictions on tax area data
2007-02-20 Tuesday 11:15 dustin
* src/Tax/: TaxAreaData.cs, TaxAreaList.cs,
CertiTax/CertitaxProvider.cs, Test/TestTaxProvider.cs,
Vertex/VertexProvider.cs:
Added TaxJurisidictionList to TaxAreaData
2007-02-20 Tuesday 09:45 dustin
* src/: AssemblyVersionInfo.cs, Spring2.Core.Tax.csproj,
Tax/TaxResult.cs, Tax/CertiTax/CertitaxProvider.cs,
Tax/Test/CertiTaxTest.cs, Tax/TaxJurisdiction.cs,
Tax/TaxJurisdictionList.cs, Tax/TaxJurisidictionTypeEnum.cs:
Brought TaxJurisdiction implemtation from Spring2.Dss into
Spring2.Core
2007-02-19 Monday 10:44 cort
* src/AssemblyVersionInfo.cs:
updated version
2007-02-19 Monday 10:44 cort
* src/DAO/: BaseEntityDAO.cs, SqlEntityDAO.cs:
added support for DbConnectionScope
2007-02-19 Monday 10:43 cort
* src/Makefile:
no message
2007-02-19 Monday 10:42 cort
* src/: Spring2.Core.AddressValidation.Test.csproj,
Spring2.Core.AddressValidation.csproj,
Spring2.Core.Payment.Test.csproj, Spring2.Core.Payment.csproj,
Spring2.Core.Tax.Test.csproj, Spring2.Core.Tax.csproj:
move the test providers into the main assembly, seperate from the
actual tests
2007-02-19 Monday 10:40 cort
* src/: Maverick/DataForm/PopulatedForm.cs,
PropertyPopulator/PropertyPopulator.cs,
Test/PropertyPopulatorTest.cs:
the populator should only attempt to populate if the property as a
setter only throw an invalid type format error if the value is not
an empty string
2007-02-19 Monday 10:37 cort
* src/DAO/DbConnectionScope.cs:
updated version that supports a connection scope option
2007-02-02 Friday 17:03 cort
* ChangeLog.txt:
update change log
2007-02-02 Friday 16:52 cort
* src/ResourceManager/Facade/: ResourceLocalizer/AssemblyInfo.cs,
ResourceLocalizer/ResourceLocalizer.cs,
ResourceEditor/AssemblyInfo.cs,
ResourceEditor/ResourceDictionary.cs,
ResourceEditor/ResourceEditor.cs:
add missing ResourceManager files that had had their CVS folder
from old location copied
2007-02-02 Friday 16:44 cort
* src/: AddressValidation/AddressData.cs,
AddressValidation/AddressList.cs,
AddressValidation/AddressValidationConfigurationException.cs,
AddressValidation/AddressValidationException.cs,
AddressValidation/AddressValidationManager.cs,
AddressValidation/AddressValidationResult.cs,
AddressValidation/IAddressValidationProvider.cs,
AddressValidation/NullAddressValidationProvider.cs,
AddressValidation/ResponseTypeEnum.cs,
AddressValidation/Test/AddressValidationManagerTest.cs,
AddressValidation/Test/TestAddressValidationProvider.cs,
AddressValidation/Test/TestFailureAddressValidationProvider.cs,
AddressValidation/Test/UPSAddressValidationTest.cs,
AddressValidation/UPS/UPSAddressValidationProvider.cs,
Payment/AvsValidationException.cs,
Payment/BaseConfigurationProvider.cs,
Payment/BasePaymentProvider.cs, Payment/CvvValidationException.cs,
Payment/IPaymentProvider.cs, Payment/NullPaymentProvider.cs,
Payment/PaymentConfigurationException.cs,
Payment/PaymentConnectionException.cs, Payment/PaymentException.cs,
Payment/PaymentFailureException.cs, Payment/PaymentManager.cs,
Payment/PaymentResult.cs, Payment/EFSnet/EFSNetProvider.cs,
Payment/EFSnet/EFSNetProviderConfiguration.cs,
Payment/EFSnet/QueryTransactionsResult.cs,
Payment/Moneris/MonerisProvider.cs,
Payment/Moneris/MonerisProviderConfiguration.cs,
Payment/PayflowPro/CreditCommand.cs,
Payment/PayflowPro/InquiryCommand.cs,
Payment/PayflowPro/PayflowProCommand.cs,
Payment/PayflowPro/PayflowProProvider.cs,
Payment/PayflowPro/PayflowProProviderConfiguration.cs,
Payment/PayflowPro/SaleCommand.cs,
Payment/PayflowPro/TransactionTypeEnum.cs,
Payment/PayflowPro/VoidCommand.cs, Payment/Test/BaseTest.cs,
Payment/Test/EFSnetProviderTest.cs,
Payment/Test/MonerisProviderTest.cs,
Payment/Test/PayflowProProviderTest.cs,
Payment/Test/PaymentManagerTest.cs,
Payment/Test/TestConnectionFailurePaymentProvider.cs,
Payment/Test/TestFailurePaymentProvider.cs,
Payment/Test/TestPaymentProvider.cs, Payment/Web
References/com.concordebiz.efsnet/Reference.cs,
Reporting/BusinessLogic/Report.cs, Reporting/DAO/SqlSchemaDAO.cs,
Reporting/DataObject/SqlColumnData.cs,
Reporting/DataObject/SqlObjectData.cs,
Soap/ExposedHttpWebResponse.cs, Soap/ExposedSoapClientProtocol.cs,
Soap/Log4NetExtension.cs, Soap/Log4NetExtensionAttribute.cs,
Tax/ITaxProvider.cs, Tax/TaxAddressNotFoundException.cs,
Tax/TaxAreaData.cs, Tax/TaxAreaList.cs,
Tax/TaxConfigurationException.cs, Tax/TaxConnectionException.cs,
Tax/TaxException.cs, Tax/TaxHtmlTool.cs, Tax/TaxManager.cs,
Tax/TaxOrder.cs, Tax/TaxOrderLine.cs, Tax/TaxOrderLineList.cs,
Tax/TaxRateInfo.cs, Tax/TaxRateInfoList.cs, Tax/TaxResult.cs,
Tax/TaxResultLine.cs, Tax/TaxResultLineList.cs,
Tax/TaxSoapException.cs, Tax/CertiTax/CertitaxProvider.cs,
Tax/Test/CertiTaxTest.cs, Tax/Test/NullTaxProvider.cs,
Tax/Test/TaxManagerTest.cs, Tax/Test/TestFailureTaxProvider.cs,
Tax/Test/TestTaxProvider.cs, Tax/Test/VertexTest.cs,
Tax/Vertex/CalculateTaxWSService.cs,
Tax/Vertex/LookupTaxAreasWSService.cs,
Tax/Vertex/VertexProvider.cs, Tax/Web
References/net.esalestax.webservices1/Reference.cs:
update namespace to Spring2.Core
2007-02-02 Friday 16:43 cort
* src/: Spring2.Core.AddressValidation.csproj,
Spring2.Core.Payment.csproj,
Spring2.Core.ResourceManager.AcceptanceTest.csproj,
Spring2.Core.ResourceManager.BusinessLogic.csproj,
Spring2.Core.ResourceManager.DataObject.csproj,
Spring2.Core.ResourceManager.ResourceEditor.csproj,
Spring2.Core.ResourceManager.ResourceLocalizer.csproj,
Spring2.Core.ResourceManager.TestUtility.csproj,
Spring2.Core.Soap.csproj, Spring2.Core.Tax.csproj:
treat warnings as errors, and ignore those that are related to doc
comments
2007-02-02 Friday 16:26 cort
* ChangeLog.txt, ChangeLog.txt:
update change log
2007-02-02 Friday 12:49 cort
* src/Spring2.Core.Reporting.csproj:
correct xml doc output filename to match assembly and namespace
2007-02-02 Friday 12:48 cort
* ChangeLog.txt:
update change log
2007-02-02 Friday 12:42 cort
* lib/: net-1.1/Interop.PFPro.dll,
net-1.1/eSELECTplus_dotNet_API.dll, net-2.0/Interop.PFPro.dll,
net-2.0/eSELECTplus_dotNet_API.dll:
binary reference for payment providers
2007-02-02 Friday 12:40 cort
* src/.cvsignore:
ignore any of the spring2.core xml doc files
2007-02-02 Friday 12:38 cort
* src/default.build:
added resource manger and moved spring2.dss projects
2007-02-02 Friday 12:36 cort
* src/: Spring2.Core.AddressValidation.Test.csproj,
Spring2.Core.AddressValidation.csproj,
Spring2.Core.Payment.Test.csproj, Spring2.Core.Payment.csproj,
Spring2.Core.Reporting.csproj, Spring2.Core.Soap.csproj,
Spring2.Core.Tax.Test.csproj, Spring2.Core.Tax.csproj,
Spring2.Core.ndoc, Spring2.Core.sln, Spring2.Core.WithTypes.csproj,
AddressValidation/AddressData.cs, AddressValidation/AddressList.cs,
AddressValidation/AddressValidationConfigurationException.cs,
AddressValidation/AddressValidationException.cs,
AddressValidation/AddressValidationManager.cs,
AddressValidation/AddressValidationResult.cs,
AddressValidation/AssemblyInfo.cs,
AddressValidation/IAddressValidationProvider.cs,
AddressValidation/NullAddressValidationProvider.cs,
AddressValidation/ResponseTypeEnum.cs,
AddressValidation/Test/AddressValidationManagerTest.cs,
AddressValidation/Test/App.config,
AddressValidation/Test/TestAddressValidationProvider.cs,
AddressValidation/Test/TestFailureAddressValidationProvider.cs,
AddressValidation/Test/UPSAddressValidationTest.cs,
AddressValidation/UPS/UPSAddressValidationProvider.cs,
Payment/AssemblyInfo.cs, Payment/AvsValidationException.cs,
Payment/BaseConfigurationProvider.cs,
Payment/BasePaymentProvider.cs, Payment/CvvValidationException.cs,
Payment/IPaymentProvider.cs, Payment/NullPaymentProvider.cs,
Payment/PaymentConfigurationException.cs,
Payment/PaymentConnectionException.cs, Payment/PaymentException.cs,
Payment/PaymentFailureException.cs, Payment/PaymentManager.cs,
Payment/PaymentResult.cs, Payment/EFSnet/EFSNetProvider.cs,
Payment/EFSnet/EFSNetProviderConfiguration.cs,
Payment/EFSnet/QueryTransactionsResult.cs,
Payment/Moneris/MonerisProvider.cs,
Payment/Moneris/MonerisProviderConfiguration.cs,
Payment/PayflowPro/CreditCommand.cs,
Payment/PayflowPro/InquiryCommand.cs,
Payment/PayflowPro/PayflowProCommand.cs,
Payment/PayflowPro/PayflowProProvider.cs,
Payment/PayflowPro/PayflowProProviderConfiguration.cs,
Payment/PayflowPro/SaleCommand.cs,
Payment/PayflowPro/TransactionTypeEnum.cs,
Payment/PayflowPro/VoidCommand.cs, Payment/Test/App.config,
Payment/Test/AssemblyInfo.cs, Payment/Test/BaseTest.cs,
Payment/Test/EFSnetProviderTest.cs,
Payment/Test/MonerisProviderTest.cs,
Payment/Test/PayflowProProviderTest.cs,
Payment/Test/PaymentManagerTest.cs,
Payment/Test/TestConnectionFailurePaymentProvider.cs,
Payment/Test/TestFailurePaymentProvider.cs,
Payment/Test/TestPaymentProvider.cs, Payment/Web
References/com.concordebiz.efsnet/EFSnet2.wsdl, Payment/Web
References/com.concordebiz.efsnet/Reference.cs, Payment/Web
References/com.concordebiz.efsnet/Reference.map,
Soap/AssemblyInfo.cs, Soap/ExposedHttpWebResponse.cs,
Soap/ExposedSoapClientProtocol.cs, Soap/Log4NetExtension.cs,
Soap/Log4NetExtensionAttribute.cs, Tax/AssemblyInfo.cs,
Tax/ITaxProvider.cs, Tax/TaxAddressNotFoundException.cs,
Tax/TaxAreaData.cs, Tax/TaxAreaList.cs,
Tax/TaxConfigurationException.cs, Tax/TaxConnectionException.cs,
Tax/TaxException.cs, Tax/TaxHtmlTool.cs, Tax/TaxManager.cs,
Tax/TaxOrder.cs, Tax/TaxOrderLine.cs, Tax/TaxOrderLineList.cs,
Tax/TaxRateInfo.cs, Tax/TaxRateInfoList.cs, Tax/TaxResult.cs,
Tax/TaxResultLine.cs, Tax/TaxResultLineList.cs,
Tax/TaxSoapException.cs, Tax/CertiTax/CertitaxProvider.cs,
Tax/Test/App.config, Tax/Test/CertiTaxTest.cs,
Tax/Test/NullTaxProvider.cs, Tax/Test/TaxManagerTest.cs,
Tax/Test/TestFailureTaxProvider.cs, Tax/Test/TestTaxProvider.cs,
Tax/Test/VertexTest.cs, Tax/Vertex/CalculateTaxWSService.cs,
Tax/Vertex/LookupTaxAreasWSService.cs,
Tax/Vertex/VertexProvider.cs, Tax/Web
References/net.esalestax.webservices1/CertiCalc.disco, Tax/Web
References/net.esalestax.webservices1/CertiCalc.wsdl, Tax/Web
References/net.esalestax.webservices1/Reference.cs, Tax/Web
References/net.esalestax.webservices1/Reference.map:
move tax, payment, adddress validation and soap extensions from
Spring2.Dss to Spring2.Core
2007-02-02 Friday 12:35 cort
* src/: Spring2.Core.ResourceManager.BusinessLogic.csproj,
Spring2.Core.ResourceManager.DataObject.csproj,
Spring2.Core.ResourceManager.ResourceEditor.csproj,
Spring2.Core.ResourceManager.ResourceLocalizer.csproj:
add/correct xml documentation file for ndoc
2007-02-02 Friday 11:56 cort
* ChangeLog.txt:
update change log
2007-02-02 Friday 00:31 cort
* src/ValueTypes/IdType.cs:
implement CompareTo so that IdType can be used as a sort property
2007-02-02 Friday 00:29 cort
* src/Util/StringUtil.cs:
remove commented out code
2007-02-02 Friday 00:29 cort
* src/Security/AssemblyInfo.cs:
remove version attributes that are duplicate becuase of global
version info
2007-02-02 Friday 00:27 cort
* src/: Spring2.Core.ResourceManager.AcceptanceTest.csproj,
Spring2.Core.ResourceManager.BusinessLogic.csproj,
Spring2.Core.ResourceManager.DataObject.csproj,
Spring2.Core.ResourceManager.ResourceEditor.csproj,
Spring2.Core.ResourceManager.ResourceLocalizer.csproj,
Spring2.Core.ResourceManager.TestUtility.csproj,
Spring2.Core.ResourceManager.csproj, Spring2.Core.sln,
ResourceManager/AssemblyInfo.cs,
ResourceManager/AssemblyVersionInfo.cs,
ResourceManager/BusinessEntity.vm, ResourceManager/DAO.vm,
ResourceManager/DataTierGenerator.config.xml,
ResourceManager/dataobject-collection.vm,
ResourceManager/dataobject.vm, ResourceManager/dtg-entities.xml,
ResourceManager/dtg-enums.xml, ResourceManager/interface.vm,
ResourceManager/BusinessLogic/AssemblyInfo.cs,
ResourceManager/BusinessLogic/LocalizedResource.cs,
ResourceManager/BusinessLogic/Resource.cs,
ResourceManager/BusinessLogic/UnitTest/.cvsignore,
ResourceManager/BusinessLogic/UnitTest/App.config,
ResourceManager/BusinessLogic/UnitTest/LocalizedResourceTest.cs,
ResourceManager/BusinessLogic/UnitTest/ResourceTest.cs,
ResourceManager/BusinessLogic/UnitTest/TestUtility.cs,
ResourceManager/DAO/LocalizedResourceDAO.cs,
ResourceManager/DAO/ResourceDAO.cs,
ResourceManager/DataObject/AssemblyInfo.cs,
ResourceManager/DataObject/ILocalizedResource.cs,
ResourceManager/DataObject/IResource.cs,
ResourceManager/DataObject/LocalizedResourceData.cs,
ResourceManager/DataObject/LocalizedResourceList.cs,
ResourceManager/DataObject/ResourceList.cs,
ResourceManager/Test/AssemblyInfo.cs,
ResourceManager/Test/ResourceEditorTest.cs,
ResourceManager/sql/.cvsignore,
ResourceManager/sql/proc/.cvsignore,
ResourceManager/sql/table/.cvsignore,
ResourceManager/sql/view/.cvsignore,
ResourceManager/Test/ResourceLocalizerTest.cs,
ResourceManager/Test/TestUtil.cs:
merge resource manager changes from Spring2.ResourceManager
2007-02-02 Friday 00:20 cort
* src/DAO/spring2.snk:
no message
2007-02-02 Friday 00:18 cort
* src/Spring2.Core.Ajax.csproj:
remove files that aren't committed
2007-02-02 Friday 00:17 cort
* src/: Spring2.Core.Ajax.xml, Spring2.Core.PropertyPopulator.xml:
remove generated doc files durring compile
2007-02-02 Friday 00:17 cort
* src/Spring2.Core.Security.csproj:
reference local AssemblyInfo and global AssemblyVersionInfo
2007-02-02 Friday 00:14 cort
* src/: Spring2.Core.WithTypes.csproj, Spring2.Core.csproj,
DAO/BaseEntityDAO.cs, DAO/DbConnectionScope.cs,
DAO/OracleEntityDAO.cs, DAO/SqlEntityDAO.cs:
add DbConnectionScope for .Net 2.0 modify base entity dao classes
to expected an open connection when CreateConnection is called as
well as to use the DbConnectionScope to get the connection if there
is a current one
2007-02-02 Friday 00:06 cort
* src/: Spring2.Core.Reporting.csproj,
Spring2.Reporting.Common.csproj:
rename project to better fit namespace name
2006-12-07 Thursday 17:06 jeffm
* src/: Test/TimeTypeTest.cs, ValueTypes/TimeType.cs:
Fix issue with Add method on TimeType.
2006-10-09 Monday 15:05 jeffm
* src/: Spring2.Core.Ajax.csproj, Spring2.Core.Ajax.xml,
Spring2.Core.Mail.SendMailMessages.csproj,
Spring2.Core.Maverick.csproj,
Spring2.Core.PropertyPopulator.csproj,
Spring2.Core.PropertyPopulator.xml, Spring2.Core.Test.csproj,
Spring2.Core.Types.csproj, Spring2.Core.sln, default.build,
Maverick/Controller/AbstractController.cs, Test/GnuPG/random_seed,
Maverick/Controller/ErrorableController.cs,
Maverick/Controller/LocalizedController.cs,
Maverick/DataForm/LocalizedForm.cs,
Maverick/DataForm/PopulatedForm.cs,
PropertyPopulator/AssemblyInfo.cs,
PropertyPopulator/PropertyPopulator.cs, Test/AjaxTest.cs,
Test/DataFormTest.cs, Test/PropertyPopulatorTest.cs,
ValueTypes/RequiredAttribute.cs:
Separate population out of AbstractController and move it to it's
own namespace so it can more easily be used by other things like
AJAX commands.
2006-09-22 Friday 16:08 dustin
* src/AssemblyVersionInfo.cs:
Modified TaxManager and providers to be more configurable and to
allow passing in a serialKey for use in calculating tax for
multiple countries
2006-09-18 Monday 16:43 dustin
* src/AssemblyVersionInfo.cs:
Modified Vertex provider to use Int32.Max for the line id on the
shipping line and to use the actual line id for item lines rather
than the order id
2006-09-15 Friday 11:52 dustin
* src/AssemblyVersionInfo.cs:
no message
2006-09-12 Tuesday 14:21 cort
* src/: Makefile, default.build:
add packaging of source to package target
2006-09-12 Tuesday 13:37 cort
* src/AssemblyVersionInfo.cs:
update to next version
2006-09-12 Tuesday 13:37 cort
* release/: Spring2.Core.1.1.32.0-net-1.1.zip,
Spring2.Core.1.1.32.0-net-2.0.zip, Spring2.Core-1.1.32.0.chm,
ChangeLog-1.1.32.0.txt:
new release version
2006-09-12 Tuesday 13:34 cort
* ChangeLog.txt:
update change log
2006-09-05 Tuesday 17:18 dustin
* src/Geocode/: GecodeTestProvider.cs, GeocodeWrapper.cs,
IGeocodeProvider.cs, TeleAtlasProvider.cs:
Added ability to retrieve geocode balance to the geocode provider
2006-09-05 Tuesday 13:32 dustin
* src/Geocode/: GecodeTestProvider.cs, TeleAtlasGeocodeData.cs:
Properly handle geocode results if no match found
2006-08-30 Wednesday 08:44 dustin
* src/Test/GeocodeTest.cs:
Ignored geocoding tests that shouldn't be run on the build server
2006-08-29 Tuesday 08:06 cort
* src/AssemblyVersionInfo.cs:
no message
2006-08-29 Tuesday 08:04 cort
* src/DAO/BaseEntityDAO.cs:
remove the ( ) from around property mappings
2006-08-28 Monday 16:34 dustin
* src/: Test/GeocodeTest.cs, Geocode/GeocodeWrapper.cs,
Spring2.Core.Test.csproj, Spring2.Core.WithTypes.csproj:
Fixed default zip code issue with the tele atlas geocode provider
2006-08-28 Monday 14:56 cort
* src/Spring2.Core.csproj:
include SqlUtility
2006-07-18 Tuesday 10:41 cort
* src/: DAO/SqlEqualityPredicate.cs, DAO/SqlPredicate.cs,
DAO/SqlUtility.cs, Test/SqlEqualityPredicateTest.cs:
handle escaping object names that need it as well as replacing
special characters with underscores for variable names
2006-07-18 Tuesday 10:10 cort
* src/: ValueTypes/DateTimeType.cs, Test/DateTimeTypeTest.cs:
add property to calculate the beginning of the day with time and
the end of the day with time.
2006-07-14 Friday 08:25 cort
* src/: Mail/BusinessLogic/MailMessage.cs, Test/MailMessageTest.cs:
add version of tests for MailMessage that were part of Uppercase
and correct some of the expectations that had been refactored out
accidentally when it was refactored for attachments
2006-07-14 Friday 08:21 cort
* src/ValueDataObject/DataObject.cs:
handle exception in rendering data object ToString by using the
exception text in the output
2006-07-13 Thursday 16:08 cort
* ChangeLog.txt:
update change log
2006-07-13 Thursday 15:00 cort
* src/: Test/BooleanTypeTest.cs, ValueTypes/BooleanType.cs:
allow construction and implicit conversion from Boolean
2006-07-12 Wednesday 07:15 crandall
* src/AssemblyVersionInfo.cs:
update to next version
2006-07-12 Wednesday 07:14 crandall
* release/: Spring2.Core.1.1.29.0-net-1.1.zip,
Spring2.Core.1.1.29.0-net-2.0.zip, Spring2.Core-1.1.29.0.chm,
ChangeLog-1.1.29.0.txt:
new release version
2006-07-12 Wednesday 07:13 crandall
* ChangeLog.txt:
update change log
2006-07-11 Tuesday 15:21 cort
* src/Test/CurrencyTypeTest.cs:
fix comparision for conversion from DecimalType, although not sure
how valid it is if there is another conversion in the middle
2006-07-11 Tuesday 14:46 cort
* src/: Test/CurrencyTypeTest.cs, ValueTypes/CurrencyType.cs:
added tests to multiply by Int32 and DecimalType with types on both
sides of the operator reverted changes to remove CurrencyType *
CurrencyType until I can figure out how to be able to have the
other type on either side of the operator and still work. add
support for assigning from double and decimaltype as well as the
multiplication methods/operators
2006-07-11 Tuesday 14:33 cort
* src/Test/CRC32.cs:
comment out CLSCompliant attributes, since assembly is not marked
as compliant
2006-07-11 Tuesday 14:08 cort
* src/Mail/DAO/: MailAttachmentDAO.cs, MailMessageDAO.cs,
MailMessageRouteDAO.cs:
correct xml comments
2006-07-11 Tuesday 14:02 crandall
* src/Test/DateTimeTypeTest.cs:
Add tests for all constructors.
2006-07-11 Tuesday 14:01 crandall
* src/ValueTypes/DateTimeType.cs:
Fix constructor that was transposing minutes and seconds.
2006-07-11 Tuesday 13:39 cort
* src/Test/SqlFilterTest.cs:
added test as a reminder that adding the same column twice is not
correctly handled
2006-07-11 Tuesday 13:38 cort
* src/DAO/: DatabaseFilter.cs, SqlFilter.cs:
cleaned out remaining old style sql filter code
2006-07-11 Tuesday 13:06 cort
* src/AssemblyVersionInfo.cs:
no message
2006-06-27 Tuesday 15:39 cort
* src/: DAO/SqlBetweenPredicate.cs,
Test/SqlBetweenPredicateTest.cs:
add support for the other Int types and DateTime
2006-06-26 Monday 12:39 jeffm
* src/DAO/: SqlEqualityPredicate.cs, SqlInPredicate.cs:
Handle table.column notation for parameters
2006-06-21 Wednesday 14:16 jeffm
* src/DAO/BaseEntityDAO.cs:
Handle null filter.
2006-06-21 Wednesday 14:03 cort
* src/Spring2.Core.WithTypes.csproj:
add the new SqlFilter stuff to the Spring2.CoreWithTypes assembly
2006-06-21 Wednesday 13:39 cort
* src/: DAO/SqlEqualityPredicate.cs,
Test/SqlEqualityPredicateTest.cs:
update SqlEqualityPredicate to handle null values for equal and not
equal.
2006-06-19 Monday 16:28 cort
* src/DAO/SqlEqualityPredicate.cs:
added constructor that takes object and then checks for the
explicit types. This was to handle the dataType.ToXxx as Object :
DBNull.Value syntax in the dao classes.
2006-06-19 Monday 16:24 cort
* src/DAO/BaseEntityDAO.cs:
moved common Filter methods to base class along with the
propertyToSql mapping. Add method for mappings.
2006-06-19 Monday 16:22 cort
* src/Mail/DAO/: MailAttachmentDAO.cs, MailMessageDAO.cs,
MailMessageRouteDAO.cs:
moved common Filter methods to base class along with the
propertyToSql mapping. Use add method for mappings. Reworked
Load/Reload methods. Removed unneeded statics.
2006-06-19 Monday 15:38 cort
* src/Mail/DAO/MailMessageDAO.cs:
moved common Filter methods to base class along with the
propertyToSql mapping. Use add method for mappings. Reworked
Load/Reload methods. Removed unneeded statics.
2006-06-19 Monday 12:59 cort
* src/DAO/BaseEntityDAO.cs:
add new support methods that will take a database filter
2006-06-19 Monday 12:59 cort
* src/Test/MailMessageTest.cs:
test finder that will use SqlFilter
2006-06-19 Monday 12:58 cort
* src/Test/DAO/TestDAO.cs:
no message
2006-06-19 Monday 12:57 cort
* src/: DAO/DatabaseFilter.cs, DAO/EqualityOperatorEnum.cs,
DAO/Filter.cs, DAO/IDatabaseExpression.cs,
DAO/LogicalOperatorEnum.cs, DAO/SqlBetweenPredicate.cs,
DAO/SqlEqualityPredicate.cs, DAO/SqlFilter.cs,
DAO/SqlInPredicate.cs, DAO/SqlLiteralPredicate.cs,
DAO/SqlParameterList.cs, DAO/SqlPredicate.cs, Test/FilterTest.cs,
Test/SqlBetweenPredicateTest.cs, Test/SqlEntityDAOTest.cs,
Test/SqlEqualityPredicateTest.cs, Test/SqlFilterTest.cs,
Test/SqlInPredicateTest.cs, Test/SqlLiteralPredicateTest.cs,
Spring2.Core.Test.csproj, Spring2.Core.csproj:
add new replacement for WhereClause
2006-06-19 Monday 12:54 cort
* src/Spring2.Core.Mail.csproj:
no message
2006-06-19 Monday 12:53 cort
* src/Mail/: dtg-entities.xml, BusinessLogic/MailAttachment.cs,
BusinessLogic/MailMessage.cs, DAO/MailAttachmentDAO.cs,
DataObject/IMailAttachment.cs, DataObject/MailAttachmentData.cs,
DataObject/MailAttachmentList.cs:
consistenly use Buffer for the attachment data instead of Text
2006-06-19 Monday 12:40 cort
* src/Mail/sqltypes.xml:
reflected change to dao template that uses the ordinals from cache
instead of looking up each time
2006-06-19 Monday 12:39 cort
* src/Mail/: dtg-databases.xml, dtg-entities.xml:
change type for attachment property Text
2006-06-19 Monday 12:35 cort
* src/Mail/DAO/: MailAttachmentDAO.cs, MailMessageDAO.cs,
MailMessageRouteDAO.cs:
replace GetOrdinal with the of ColumnOrdinal cache
2006-06-19 Monday 12:05 cort
* src/Mail/DAO/: MailAttachmentDAO.cs, MailMessageDAO.cs,
MailMessageRouteDAO.cs:
updated to use SqlFilter instead of WhereClause
2006-06-19 Monday 11:59 cort
* src/Mail/BusinessLogic/MailMessage.cs:
updated to use SqlFilter instead of WhereClause
2006-06-19 Monday 09:37 cort
* src/Mail/: BusinessLogic/.cvsignore, DAO/.cvsignore,
DataObject/.cvsignore, sql/proc/.cvsignore, sql/table/.cvsignore:
no message
2006-06-12 Monday 16:11 cort
* src/AssemblyVersionInfo.cs:
update to next version
2006-06-12 Monday 16:11 cort
* release/: Spring2.Core.1.1.26.0-net-1.1.zip,
Spring2.Core.1.1.26.0-net-2.0.zip, Spring2.Core-1.1.26.0.chm,
ChangeLog-1.1.26.0.txt:
new release version
2006-06-12 Monday 16:08 cort
* ChangeLog.txt:
update change log
2006-06-12 Monday 16:04 cort