-
Notifications
You must be signed in to change notification settings - Fork 32
/
Changes.txt
2785 lines (1892 loc) · 80.6 KB
/
Changes.txt
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
# NVelocity Changelog
## 1.2.0 (2018-12-17)
- Upgraded project to .NET Standard 2.0 (@phillip-haydon, #5)
## 1.1.1 (2010-10-12)
- Included the NET40 (CP) binaries on the release package
## 1.1.0 (2009-09-28)
- Applied Rasmus Toftdahl Olesen's patch fixing NVELOCITY-ISSUE-24
"Improved enum support"
- Applied Enzo Lombardi's patch fixing NVELOCITY-ISSUE-36
"LRUMap Collection is not correctly synchronized"
- Fixed the AssemblyResourceLoader so that it allows the loader assembly to be passed as a string
instead of a List<string> to match the previous behaviour.
- Applied Chris Ortman's patch fixing NVELOCITY-ISSUE-11
"NVelocity swallows Ambiguous matches"
- Applied Ashish Kulkarni's patch fixing NVELOCITY-ISSUE-28
"handle divide-by-zero exception when performing arithmetic operations"
- Added ArithmeticExpressionTestCase.
- Applied Matthew Robinson's patch fixing NVELOCITY-ISSUE-33
"uberinspectimp nullref exception"
- Applied Anders Waglund's patch fixing NVELOCITY-ISSUE-30
"NVelocity foreach EventCartridge patch"
- Applied Sean Carpenter's patch fixing NVELOCITY-ISSUE-32
"Bug in StringTokenizer for repeated tokens"
- Applied Simon Cropp's patch fixing NVELOCITY-22
"remove some unused code"
- Applied Simon Cropp's patch fixing NVELOCITY-19
"Clean up more code in nvelocity"
- Applied Ashish Kulkarni's patch that adds a new loader. Fixes NVELOCITY-20
"add AssemblyRelativeResourceLoader for loading resources using with relative template names"
- Applied Simon Cropp's patch fixing NVELOCITY-18
"Clean up more code in nvelocity"
- Applied Simon Cropp's patch fixing NVELOCITY-17
"Clean up string concatenation, variable naming and spelling errors"
- Applied patch by Simon Cropp fixing NVELOCITY-16
"Exception handling in character parsing is not optimal"
- Fixed NVELOCITY-15
"Fix thread safety issue in ASTMethod.Execute()"
- Added escape support for the dictionary strings
For example: #{onclick='alert(\'hello\')'}
- Added to_quote and to_squote identifiers special treatment
usage:
$message.to_quote returns "message contents"
$message.to_squote returns 'message contents'
Note that this is not a method invocation.
- Added Duck typing support
If an instance implements IDuck, methods and properties (get/set) will be dispatched
to the IDuck interface instead of going the normal flow
- Fixed NVELOCITY-7
"Dictionary support should support interpolation"
Now it works the following way
key='value' -> value is treated as String
key=1 -> value is converted to int
key=1.2 -> value is converted to single
key='1' -> value is treated as String
Interpolation:
The following is supported:
$key='value' -> $key will be evaluated (cannot be evaluated to null)
key=$value -> value is evaluated and the object is added (not converted to string)
key='some$value' -> value is evaluated and concatenated with the literal value
- Fixed NVELOCITY-5
"Property name look up should not be case sensitive"
- Added support for calling methods and properties defined on the interfaces a class implements.
The interface member will have lower priority when deciding against plain class members.
- Add support to Math operations on context variables of the types
. Double
. Single
. Decimal
. Int64,32,16
. SByte
. Byte
2005-01-01 Saturday 10:35 corts
* ChangeLog.txt:
update change log
2005-01-01 Saturday 09:32 corts
* src/Test/CommonsExtPropTestCase.cs:
remove update todo comment that was handled
2005-01-01 Saturday 09:31 corts
* src/Commons/Collections/ExtendedProperties.cs:
Handle commas found in already parsed properties files when using
the convert method
2004-12-26 Sunday 23:27 corts
* java/: readme.txt, velocity.zip:
updated with some of the changes for version 1.4, mainly the
changes for Uberspect so far.
2004-12-26 Sunday 23:21 corts
* www/.cvsignore:
no message
2004-12-26 Sunday 23:16 corts
* src/NVelocity.csproj:
updates to support Uberspect (Velocity 1.4)
2004-12-26 Sunday 23:16 corts
* src/NVelocity.sln:
no message
2004-12-26 Sunday 23:14 corts
* src/.cvsignore:
ignore resharper add in files
2004-12-26 Sunday 23:12 corts
* src/IO/VelocityWriter.cs:
handle possible null string
2004-12-26 Sunday 23:11 corts
* src/App/VelocityEngine.cs:
add new constructors that will also initialize the instance
2004-12-26 Sunday 23:09 corts
* src/Test/VTLTest.cs:
tests for stange VTL problems -- currently has a failing test that
identifies a problem in Velocity as well as NVelocity
2004-12-26 Sunday 23:07 corts
* src/Test/Commons/: KeyedListTest.cs, LRUMapTest.cs:
tests for new Commons.Collections classes
2004-12-26 Sunday 23:06 corts
* src/Test/ContextTest.cs:
test to make sure that case insensative contexts could be created
2004-12-26 Sunday 23:05 corts
* src/NVelocity.Test.csproj:
add new tests
2004-12-26 Sunday 23:01 corts
* src/Test/TemplateTestCase.cs:
reformatting
2004-12-26 Sunday 22:59 corts
* src/: Runtime/RuntimeInstance.cs, Runtime/RuntimeServices.cs,
Runtime/RuntimeSingleton.cs, SupportClass.cs:
updates to support Uberspect (Velocity 1.4)
2004-12-26 Sunday 22:55 corts
* src/: Util/ArrayIterator.cs, Util/EnumerationIterator.cs,
Util/Introspection/ClassMap.cs, Util/Introspection/Info.cs,
Util/Introspection/Introspector.cs,
Util/Introspection/MethodMap.cs, Util/Introspection/Uberspect.cs,
Util/Introspection/UberspectImpl.cs,
Util/Introspection/UberspectLoggable.cs,
Util/Introspection/VelMethod.cs,
Util/Introspection/VelPropertyGet.cs,
Util/Introspection/VelPropertySet.cs,
Runtime/Parser/Node/ASTIdentifier.cs,
Runtime/Parser/Node/AbstractExecutor.cs,
Runtime/Parser/Node/BooleanPropertyExecutor.cs,
Runtime/Parser/Node/GetExecutor.cs,
Runtime/Parser/Node/PropertyExecutor.cs:
updates to support Uberspect (Velocity 1.4)
2004-12-26 Sunday 22:50 corts
* src/Runtime/Parser/Node/ASTMap.cs:
minor reformatting
2004-12-26 Sunday 22:48 corts
* src/Runtime/Parser/Node/ASTMap.cs:
add new node type for creating maps (part of Velocity 1.4)
2004-12-23 Thursday 01:15 corts
* src/Runtime/Defaults/nvelocity.properties:
minor reformatting
2004-12-23 Thursday 01:14 corts
* src/Runtime/Resource/ResourceCacheImpl.cs:
change internal cache to use a least recently used dictionary where
a max cache size can be enforced
2004-12-23 Thursday 01:10 corts
* src/: Commons/Collections/IOrderedDictionary.cs,
Commons/Collections/KeyedList.cs,
Commons/Collections/KeyedListEnumerator.cs,
Commons/Collections/LRUMap.cs, Commons.csproj:
add collections needed for a limited (max size) ResourceCache
2004-12-22 Wednesday 09:16 corts
* examples/SimpleHttp/Web.config:
correct assembly name for NVelocityHandlerFactory
2004-12-22 Wednesday 08:54 corts
* examples/SimpleHttp/SimpleHttp.csproj:
modifications made by VS2003 ide
2004-12-22 Wednesday 08:33 corts
* src/Template.cs:
fix problem with correctly creating an encoded stream reader
causing anything but UTF-8 to work
2004-12-22 Wednesday 08:32 corts
* src/Test/EncodingTestCase.cs:
update test so that it can be added to the project as an active
test
2004-11-27 Saturday 11:36 corts
* examples/ViewHandler/Global.asax.cs:
reformatting
2004-07-12 Monday 17:32 corts
* src/nvelocity.build:
reflect change in location of DAO classes when updating projects
2004-07-11 Sunday 21:10 corts
* src/Http/HandlerSkeleton.cs:
minor reformatting
2004-02-09 Monday 13:06 corts
* src/Runtime/Resource/Loader/ResourceLocator.cs:
avoid trying to get the resource filenames from dynamic assemblies
(derived from AssemblyBuilder) as that is not supported. Fix per
bug #893569 reported by Daniel Cazzulino (dcazzulino).
2004-02-09 Monday 12:38 corts
* src/Runtime/RuntimeConstants.cs:
change constants for default runtime directives and properties to
use resource name format (dotted). remove unused log4net constants
add constant that will be needed for defining the uberspect class
2004-02-09 Monday 12:35 corts
* src/Runtime/RuntimeInstance.cs:
load default runtime properties and directives directly from
assembly resource
2004-01-19 Monday 13:33 corts
* src/Runtime/Resource/: ResourceManager.cs,
ResourceManagerImpl.cs:
update of comments
2004-01-19 Monday 13:24 corts
* src/Test/CommonsTest.cs:
text fix to Combine so that strings with the delimeter character
are not converted to a list
2004-01-19 Monday 13:23 corts
* src/Commons/Collections/ExtendedProperties.cs:
add fix to Combine so that strings with the delimeter character are
not converted to a list
2004-01-01 Thursday 17:13 corts
* src/Runtime/Resource/Resource.cs:
reformatting
2004-01-01 Thursday 17:12 corts
* src/Runtime/Log/LogManager.cs:
change logging level of message when a logger class can't be
found...configuration continues
2004-01-01 Thursday 17:09 corts
* src/Runtime/Resource/ContentResource.cs:
documentation fixes make sure reader is closed
2004-01-01 Thursday 17:07 corts
* src/NAnt/Anakia/AnakiaTask.cs:
add comments for future work
2004-01-01 Thursday 17:06 corts
* src/NVelocity.sln:
add NAnt build file to solution
2004-01-01 Thursday 17:04 corts
* src/: NVelocity.csproj, Runtime/RuntimeLogger.cs:
add RuntimeLogger interface
2003-11-04 Tuesday 21:57 corts
* src/: Commons.csproj, NVelocity.Http.csproj,
NVelocity.NAnt.csproj, NVelocity.Test.csproj, NVelocity.csproj:
VS IDE added subtype to AssemblyVersionInfo.cs files added
previously (why now, I don't know)
2003-11-04 Tuesday 21:54 corts
* src/IO/VelocityWriter.cs:
simplfy min evaluation
2003-11-04 Tuesday 21:53 corts
* src/App/Velocity.cs:
make TemplateExists obsolete in favor of ResourceExists (change in
terminology)
2003-11-04 Tuesday 21:16 corts
* src/Runtime/Defaults/nvelocity.properties:
default introspector
2003-11-04 Tuesday 21:15 corts
* src/App/Tools/VelocityFormatter.cs:
minor refactoring change use of ArrayList to IList
2003-11-04 Tuesday 20:57 corts
* src/Util/SimplePool.cs:
fix get() so that it removes the instance when retrieved
2003-11-04 Tuesday 20:56 corts
* src/Runtime/RuntimeInstance.cs:
use assembly version instead of relying on this being changed for
each version
2003-10-29 Wednesday 00:37 corts
* src/Makefile:
only package stuff that really needs to be in the package (i.e. no
need for previous dist packages or the java source)
2003-10-28 Tuesday 23:54 corts
* src/dist.sh:
missed binaries that needed to be made executable
2003-10-28 Tuesday 23:51 corts
* src/AssemblyVersionInfo.cs:
update to next version
2003-10-28 Tuesday 23:33 corts
* src/dist.sh:
use make release instead of make package (from testing)
2003-10-28 Tuesday 23:32 corts
* xdocs/index.xml:
announce 0.4.2 release as well as Velocity 1.4-rc1 release.
2003-10-28 Tuesday 23:12 corts
* xdocs/changelog.xml:
add changes since 0.4.1 release
2003-10-28 Tuesday 22:51 corts
* ChangeLog.txt:
update change log
2003-10-28 Tuesday 22:50 corts
* src/dist.sh:
updated to use make targets to get most of work done
2003-10-28 Tuesday 22:34 corts
* src/AssemblyVersionInfo.cs:
set version to last released version
2003-10-28 Tuesday 22:12 corts
* src/Makefile:
add targets to help with versioning and release process
2003-10-28 Tuesday 21:50 corts
* src/nvelocity.build:
use binary from /build directory
2003-10-28 Tuesday 19:02 corts
* bin/MSDN.css:
moved to /bin/NDoc
2003-10-28 Tuesday 18:39 corts
* src/getversion.sh:
shell script to extract the version number from
AssemblyVersionInfo.cs
2003-10-28 Tuesday 18:32 corts
* src/: Commons.csproj, NVelocity.Http.csproj,
NVelocity.NAnt.csproj, NVelocity.Test.csproj, NVelocity.csproj,
Commons/AssemblyInfo.cs, Http/AssemblyInfo.cs,
NAnt/AssemblyInfo.cs, Test/AssemblyInfo.cs:
seperate version information from the rest of the assembly
information so that the version can be shared across projects
2003-10-28 Tuesday 18:27 corts
* src/: AssemblyInfo.cs, AssemblyVersionInfo.cs:
seperate version information from the rest of the assembly
information so that the version can be shared across projects
2003-10-28 Tuesday 14:01 corts
* ChangeLog.txt:
update change log
2003-10-28 Tuesday 13:57 corts
* ChangeLog.txt:
update change log
2003-10-28 Tuesday 08:28 corts
* java/: .cvsignore, readme.txt, velocity.zip:
This folder contains the source and comparable files from the
Apache Jakarta Velocity project that the NVelocity source is based
on. The goal of the NVelocity project is to keep as close to the
original project as possible. I use this source to compare to the
current CVS head to help know what has changed. As source is
matched, this zip will be updated. The contents of this zip may or
may not match a known Velocity version and may not contain released
code.
The current zip contains the original source that was used to
create NVelocity - it is prior to version 1.3.1.
2003-10-27 Monday 08:37 corts
* src/Runtime/VelocimacroFactory.cs:
fix formatting of comments
2003-10-27 Monday 07:35 corts
* ChangeLog.txt:
update change log
2003-10-27 Monday 07:14 corts
* src/Makefile:
modify paths to /bin stuff to reflect changes in structure add
target to style cs source files add targets to convert project
files between VS2002 and VS2003 formats
2003-10-27 Monday 07:13 corts
* examples/App/App-Examples.sln,
examples/App/Example1/Example1.csproj,
examples/App/Example2/Example2.csproj,
examples/SimpleHttp/SimpleHttp.csproj,
examples/SimpleHttp/SimpleHttp.sln,
examples/ViewHandler/ViewHandler.csproj,
examples/ViewHandler/ViewHandler.sln, src/NVelocity.Http.csproj,
src/NVelocity.NAnt.csproj, src/NVelocity.Tools.Dvsl.csproj,
src/NVelocity.Tools.csproj, src/NVelocity.csproj:
update to VS2003 project/solution files
2003-10-27 Monday 07:12 corts
* examples/ViewHandler/Global.asax.cs:
formatting done by style
2003-10-27 Monday 07:11 corts
* bin/style.sh:
shell script to style source code using astyle and unexpand
2003-10-27 Monday 07:10 corts
* src/updatechangelog.sh:
ignore of ChangeLog.txt.bak is missing (probably because cvs2cl.pl
failed to connect - which seems to happen a lot lately)
2003-10-27 Monday 06:54 corts
* examples/App/Example1/AssemblyInfo.cs,
examples/App/Example1/Example1.cs,
examples/App/Example2/AssemblyInfo.cs,
examples/App/Example2/Example2.cs,
examples/SimpleHttp/AssemblyInfo.cs,
examples/SimpleHttp/Default.aspx.cs,
examples/SimpleHttp/SimpleNVelocityHandler.cs,
examples/ViewHandler/AssemblyInfo.cs,
examples/ViewHandler/Default.aspx.cs,
examples/ViewHandler/Global.asax.cs,
examples/ViewHandler/ToyTool.cs, src/AssemblyInfo.cs,
src/SupportClass.cs, src/Template.cs, src/VelocityContext.cs,
src/App/AppSupportClass.cs, src/App/FieldMethodizer.cs,
src/App/Velocity.cs, src/App/VelocityEngine.cs,
src/App/Events/EventCartridge.cs, src/App/Events/EventHandler.cs,
src/App/Events/MethodExceptionEventHandler.cs,
src/App/Events/NullSetEventHandler.cs,
src/App/Events/ReferenceInsertionEventHandler.cs,
src/App/Tools/VelocityFormatter.cs, src/Commons/AssemblyInfo.cs,
src/Commons/Collections/CollectionsUtil.cs,
src/Commons/Collections/ExtendedProperties.cs,
src/Commons/Collections/PropertiesReader.cs,
src/Commons/Collections/PropertiesTokenizer.cs,
src/Commons/Collections/StringTokenizer.cs,
src/Context/AbstractContext.cs, src/Context/IContext.cs,
src/Context/InternalContextAdapter.cs,
src/Context/InternalContextAdapterImpl.cs,
src/Context/InternalContextBase.cs,
src/Context/InternalEventContext.cs,
src/Context/InternalHousekeepingContext.cs,
src/Context/InternalWrapperContext.cs, src/Context/VMContext.cs,
src/Dvsl/Dvsl.cs, src/Dvsl/DvslContext.cs, src/Dvsl/DvslNode.cs,
src/Dvsl/DvslNodeContext.cs, src/Dvsl/DvslNodeImpl.cs,
src/Dvsl/TemplateHandler.cs, src/Dvsl/TransformTool.cs,
src/Dvsl/Transformer.cs, src/Dvsl/Directive/MatchDirective.cs,
src/Dvsl/Directive/NameDirective.cs,
src/Exception/MethodInvocationException.cs,
src/Exception/ParseErrorException.cs,
src/Exception/ResourceNotFoundException.cs,
src/Exception/VelocityException.cs, src/Http/AssemblyInfo.cs,
src/Http/HandlerSkeleton.cs, src/Http/NVelocityHandler.cs,
src/Http/NVelocityHandlerFactory.cs,
src/Http/NVelocityViewHandler.cs,
src/Http/Context/ChainedContext.cs,
src/Http/Context/IViewContext.cs,
src/Http/Context/ToolboxContext.cs,
src/Http/Resource/Loader/IWebappLoaderAppContext.cs,
src/Http/Resource/Loader/WebappLoadAppContext.cs,
src/Http/Resource/Loader/WebappLoader.cs,
src/Http/Tool/IToolboxManager.cs, src/Http/Tool/IViewTool.cs,
src/Http/Tool/MultiViewsTool.cs, src/Http/Tool/ServletToolInfo.cs,
src/Http/Tool/ServletToolboxManager.cs,
src/Http/Tool/ViewToolInfo.cs, src/Http/Tool/XMLToolboxManager.cs,
src/IO/VelocityWriter.cs, src/NAnt/AssemblyInfo.cs,
src/NAnt/Anakia/AnakiaTask.cs,
src/NAnt/Anakia/AnakiaXmlDocument.cs,
src/NAnt/Anakia/AnakiaXmlElement.cs, src/NAnt/Anakia/Escape.cs,
src/NAnt/Anakia/NodeList.cs, src/NAnt/Anakia/OutputWrapper.cs,
src/NAnt/Anakia/TreeWalker.cs, src/NAnt/Anakia/XPathTool.cs,
src/NAnt/Dvsl/DvslTask.cs, src/NAnt/Texen/FileUtil.cs,
src/NAnt/Texen/Generator.cs, src/NAnt/Texen/PropertiesUtil.cs,
src/NAnt/Texen/SupportClass.cs, src/NAnt/Texen/TexenTask.cs,
src/Runtime/RuntimeConstants.cs, src/Runtime/RuntimeInstance.cs,
src/Runtime/RuntimeServices.cs, src/Runtime/RuntimeSingleton.cs,
src/Runtime/VelocimacroFactory.cs,
src/Runtime/VelocimacroManager.cs,
src/Runtime/Directive/Directive.cs,
src/Runtime/Directive/DirectiveConstants.cs,
src/Runtime/Directive/Foreach.cs, src/Runtime/Directive/Include.cs,
src/Runtime/Directive/Literal.cs, src/Runtime/Directive/Macro.cs,
src/Runtime/Directive/Parse.cs,
src/Runtime/Directive/ParseDirectiveException.cs,
src/Runtime/Directive/VMProxyArg.cs,
src/Runtime/Directive/VelocimacroProxy.cs,
src/Runtime/Exception/NodeException.cs,
src/Runtime/Exception/ReferenceException.cs,
src/Runtime/Log/AvalonLogSystem.cs,
src/Runtime/Log/Log4JLogSystem.cs,
src/Runtime/Log/Log4NetExtensionLogSystem.cs,
src/Runtime/Log/LogManager.cs, src/Runtime/Log/LogSystem.cs,
src/Runtime/Log/NullLogSystem.cs,
src/Runtime/Log/PrimordialLogSystem.cs,
src/Runtime/Log/SimpleLog4NetLogSystem.cs,
src/Runtime/Log/VelocityFormatter.cs,
src/Runtime/Parser/CharStream.cs,
src/Runtime/Parser/JJTParserState.cs,
src/Runtime/Parser/ParseException.cs, src/Runtime/Parser/Parser.cs,
src/Runtime/Parser/ParserConstants.cs,
src/Runtime/Parser/ParserTokenManager.cs,
src/Runtime/Parser/ParserTreeConstants.cs,
src/Runtime/Parser/Token.cs, src/Runtime/Parser/TokenMgrError.cs,
src/Runtime/Parser/VelocityCharStream.cs,
src/Runtime/Parser/Node/ASTAddNode.cs,
src/Runtime/Parser/Node/ASTAndNode.cs,
src/Runtime/Parser/Node/ASTAssignment.cs,
src/Runtime/Parser/Node/ASTBlock.cs,
src/Runtime/Parser/Node/ASTComment.cs,
src/Runtime/Parser/Node/ASTDirective.cs,
src/Runtime/Parser/Node/ASTDivNode.cs,
src/Runtime/Parser/Node/ASTEQNode.cs,
src/Runtime/Parser/Node/ASTElseIfStatement.cs,
src/Runtime/Parser/Node/ASTElseStatement.cs,
src/Runtime/Parser/Node/ASTEscape.cs,
src/Runtime/Parser/Node/ASTEscapedDirective.cs,
src/Runtime/Parser/Node/ASTExpression.cs,
src/Runtime/Parser/Node/ASTFalse.cs,
src/Runtime/Parser/Node/ASTGENode.cs,
src/Runtime/Parser/Node/ASTGTNode.cs,
src/Runtime/Parser/Node/ASTIdentifier.cs,
src/Runtime/Parser/Node/ASTIfStatement.cs,
src/Runtime/Parser/Node/ASTIncludeStatement.cs,
src/Runtime/Parser/Node/ASTIntegerRange.cs,
src/Runtime/Parser/Node/ASTLENode.cs,
src/Runtime/Parser/Node/ASTLTNode.cs,
src/Runtime/Parser/Node/ASTMethod.cs,
src/Runtime/Parser/Node/ASTModNode.cs,
src/Runtime/Parser/Node/ASTMulNode.cs,
src/Runtime/Parser/Node/ASTNENode.cs,
src/Runtime/Parser/Node/ASTNotNode.cs,
src/Runtime/Parser/Node/ASTNumberLiteral.cs,
src/Runtime/Parser/Node/ASTObjectArray.cs,
src/Runtime/Parser/Node/ASTOrNode.cs,
src/Runtime/Parser/Node/ASTParameters.cs,
src/Runtime/Parser/Node/ASTReference.cs,
src/Runtime/Parser/Node/ASTSetDirective.cs,
src/Runtime/Parser/Node/ASTStringLiteral.cs,
src/Runtime/Parser/Node/ASTSubtractNode.cs,
src/Runtime/Parser/Node/ASTText.cs,
src/Runtime/Parser/Node/ASTTrue.cs,
src/Runtime/Parser/Node/ASTVariable.cs,
src/Runtime/Parser/Node/ASTWord.cs,
src/Runtime/Parser/Node/ASTprocess.cs,
src/Runtime/Parser/Node/AbstractExecutor.cs,
src/Runtime/Parser/Node/BooleanPropertyExecutor.cs,
src/Runtime/Parser/Node/GetExecutor.cs,
src/Runtime/Parser/Node/INode.cs,
src/Runtime/Parser/Node/NodeUtils.cs,
src/Runtime/Parser/Node/ParserVisitor.cs,
src/Runtime/Parser/Node/PropertyExecutor.cs,
src/Runtime/Parser/Node/SimpleNode.cs,
src/Runtime/Resource/ContentResource.cs,
src/Runtime/Resource/Resource.cs,
src/Runtime/Resource/ResourceCache.cs,
src/Runtime/Resource/ResourceCacheImpl.cs,
src/Runtime/Resource/ResourceFactory.cs,
src/Runtime/Resource/ResourceManager.cs,
src/Runtime/Resource/ResourceManagerImpl.cs,
src/Runtime/Resource/Loader/DataSourceResourceLoader.cs,
src/Runtime/Resource/Loader/FileResourceLoader.cs,
src/Runtime/Resource/Loader/ResourceLoader.cs,
src/Runtime/Resource/Loader/ResourceLoaderFactory.cs,
src/Runtime/Resource/Loader/ResourceLocator.cs,
src/Runtime/Visitor/BaseVisitor.cs,
src/Runtime/Visitor/NodeViewMode.cs,
src/Runtime/Visitor/VMReferenceMungeVisitor.cs,
src/Test/AnakiaTestCase.cs, src/Test/AssemblyInfo.cs,
src/Test/BaseTestCase.cs, src/Test/ClassloaderChangeTest.cs,
src/Test/ClasspathResourceTest.cs,
src/Test/CommonsExtPropTestCase.cs, src/Test/CommonsTest.cs,
src/Test/ConfigurationTestCase.cs,
src/Test/ContextSafetyTestCase.cs, src/Test/EncodingTestCase.cs,
src/Test/EventHandlingTestCase.cs, src/Test/ExternalLoggerTest.cs,
src/Test/InlineScopeVMTestCase.cs,
src/Test/IntrospectorTestCase.cs,
src/Test/IntrospectorTestCase2.cs,
src/Test/MethodInvocationExceptionTest.cs,
src/Test/MiscTestCase.cs, src/Test/MultiLoaderTestCase.cs,
src/Test/MultipleFileResourcePathTest.cs, src/Test/ParserTest.cs,
src/Test/TemplateTestCase.cs, src/Test/TexenClasspathTestCase.cs,
src/Test/TexenTestCase.cs, src/Test/VelocimacroTestCase.cs,
src/Test/VelocityAppTestCase.cs, src/Test/VelocityTest.cs,
src/Test/Dvsl/TransformTest.cs, src/Test/Dvsl/XPathTest.cs,
src/Test/Misc/Test.cs, src/Test/Provider/BoolObj.cs,
src/Test/Provider/Child.cs, src/Test/Provider/Person.cs,
src/Test/Provider/TestProvider.cs,
src/Test/View/TemplateNodeView.cs, src/Tool/DataInfo.cs,
src/Tool/IToolInfo.cs, src/Tool/ToolLoader.cs,
src/Tools/AssemblyInfo.cs, src/Tools/DataInfo.cs,
src/Tools/IToolInfo.cs, src/Tools/SupportClass.cs,
src/Tools/ToolLoader.cs, src/Util/ArrayIterator.cs,
src/Util/EnumerationIterator.cs, src/Util/Iterator.cs,
src/Util/SimplePool.cs, src/Util/StringUtils.cs,
src/Util/Introspection/AmbiguousException.cs,
src/Util/Introspection/ClassMap.cs,
src/Util/Introspection/IntrospectionCacheData.cs,
src/Util/Introspection/Introspector.cs,
src/Util/Introspection/IntrospectorBase.cs,
src/Util/Introspection/MethodMap.cs,
src/Util/Introspection/Twonk.cs:
formatting done by style
2003-10-26 Sunday 06:21 corts
* src/ToDo.txt:
mark upgrade of NUnit as done
2003-10-26 Sunday 06:21 corts
* src/Makefile:
remove the last of the references to NUnitRunner and add a target
for running all of the tests
2003-10-26 Sunday 06:18 corts
* test/: configuration/.cvsignore, templates/.cvsignore:
ignore results output directories
2003-10-26 Sunday 06:16 corts
* lib/: NUnitConsole.dll, NUnitCore.dll, nunit.framework.dll:
update to version 2.0 of NUnit
2003-10-26 Sunday 06:10 corts
* bin/: NAnt/.cvsignore, NAnt/NAnt.Console.Tests.dll,
NAnt/NAnt.Console.Tests.pdb, NAnt/NAnt.Core.Tests.dll,
NAnt/NAnt.Core.Tests.pdb, NAnt/NAnt.Core.dll, NAnt/NAnt.Core.pdb,
NAnt/NAnt.DotNetTasks.Tests.dll, NAnt/NAnt.DotNetTasks.Tests.pdb,
NAnt/NAnt.DotNetTasks.dll, NAnt/NAnt.DotNetTasks.pdb,
NAnt/NAnt.NUnit1Tasks.dll, NAnt/NAnt.NUnit1Tasks.pdb,
NAnt/NAnt.NUnit2Tasks.dll, NAnt/NAnt.NUnit2Tasks.pdb,
NAnt/NAnt.NUnitFormatters.dll, NAnt/NAnt.NUnitFormatters.pdb,
NAnt/NAnt.VisualCppTasks.dll, NAnt/NAnt.VisualCppTasks.pdb,
NAnt/NAnt.ZipTasks.Tests.dll, NAnt/NAnt.ZipTasks.Tests.pdb,
NAnt/NAnt.ZipTasks.dll, NAnt/NAnt.ZipTasks.pdb, NAnt/NAnt.exe,
NAnt/NAnt.exe.config, NAnt/NAnt.pdb, NAnt/NDoc.Core.dll,
NAnt/NDoc.Documenter.Msdn.dll, NAnt/NDoc.Documenter.NAnt.dll,
NAnt/NDoc.Documenter.NAnt.pdb, NAnt/NUnitCore.dll,
NAnt/SharpZipLib.dll, NAnt/nunit.framework.dll,
NAnt/taskdef.Tasks.dll, NAnt/taskdef.Tasks.pdb, NUnit/NUnit V2.0
ReadMe.pdf, NUnit/mock-assembly.dll,
NUnit/nonamespace-assembly.dll, NUnit/nunit-console.exe,
NUnit/nunit-console.exe.config, NUnit/nunit-gui.exe,
NUnit/nunit-gui.exe.config, NUnit/nunit.extensions.dll,
NUnit/nunit.framework.dll, NUnit/nunit.tests.dll,
NUnit/nunit.tests.dll.config, NUnit/nunit.uikit.dll,
NUnit/nunit.util.dll, NUnit/timing-tests.dll:
add that binaries for NUnit and NAnt this project are expected to
work with - make it easier for people dealing with the source
2003-10-26 Sunday 06:09 corts
* bin/UpdateVersion.exe:
utility that will update version numbers in AssemblyInfo.cs files
2003-10-26 Sunday 06:08 corts
* bin/VSConvert.exe:
utility to convert VS projects between 2002 and 2003 formats
2003-10-26 Sunday 06:07 corts
* bin/: NDoc.Core.dll, NDoc.Documenter.JavaDoc.dll,
NDoc.Documenter.Latex.dll, NDoc.Documenter.Msdn.dll,
NDoc.Documenter.Xml.dll, NDoc.VisualStudio.dll, NDocConsole.exe,
NDocGui.exe, NDocGui.exe.manifest, tags.html, NDoc/MSDN.css,
NDoc/NDoc.Core.dll, NDoc/NDoc.Documenter.JavaDoc.dll,
NDoc/NDoc.Documenter.Latex.dll, NDoc/NDoc.Documenter.Msdn.dll,
NDoc/NDoc.Documenter.Xml.dll, NDoc/NDoc.VisualStudio.dll,
NDoc/NDocConsole.exe, NDoc/NDocGui.exe, NDoc/NDocGui.exe.manifest,
NDoc/tags.html:
move NDoc to it's own directory
2003-10-09 Thursday 05:02 corts
* src/NVelocity.Test.csproj:
change to use NUnit 2.x framework assembly remove unneeded classes
and suites
2003-10-09 Thursday 05:01 corts
* src/NVelocity.sln:
removal of NUnitRunner
2003-10-09 Thursday 05:00 corts
* src/Test/Provider/TestProvider.cs:
cleanup
2003-10-09 Thursday 04:57 corts
* src/Test/: BaseTestCase.cs, CommonsExtPropTestCase.cs,
CommonsTest.cs, IntrospectorTest.cs, ParserTest.cs,
TemplateTestBase.cs, TemplateTestCase.cs, TestSupportClass.cs,
VelocimacroTestCase.cs, VelocityAppTestCase.cs, VelocityTest.cs,
Dvsl/TransformTest.cs, Dvsl/XPathTest.cs:
update test for NUnit 2.x cleanup of test
2003-10-09 Thursday 04:48 corts
* src/Test/: AllTests.cs, TemplateTestSuite.cs:
remove suites that will no longer be needed with NUnit 2.x
2003-10-09 Thursday 04:47 corts
* src/Runtime/Log/SimpleLog4NetLogSystem.cs:
use most common interface between using category and creating new
logger in new domain of log4net.spi.ILogger
2003-10-09 Thursday 04:43 corts
* src/: NUnitRunner.csproj, Test/App.ico, Test/NUnitRunner.cs:
remove old NUnit runner app (use NUnitAddin or connecting with
NUnit GUI)
2003-08-30 Saturday 05:01 corts
* src/Runtime/Resource/Loader/ResourceLocator.cs:
ignore problems loading an assembly (i.e. ADODB is not the expected
version)
2003-08-30 Saturday 05:01 corts
* src/Runtime/Log/PrimordialLogSystem.cs:
wihile messages are being queued, write to DefaultTraceListener
incase there is a problem getting a logger going
2003-08-30 Saturday 05:00 corts
* src/Runtime/RuntimeInstance.cs:
write to DefaultTraceListener instead of relying on console.out
2003-08-29 Friday 17:43 corts
* src/Runtime/VelocimacroFactory.cs:
minor reformatting
2003-08-29 Friday 17:42 corts
* src/Runtime/Log/SimpleLog4NetLogSystem.cs:
update finalizer method to use Repository shutdown method
2003-08-29 Friday 17:41 corts
* src/Runtime/Log/LogManager.cs:
handle case where no logger classes are defined
2003-08-28 Thursday 00:12 corts
* src/: AssemblyInfo.cs, Commons/AssemblyInfo.cs:
remove UseDefaultDomain attribute since that is now the log4net
default add strong name key so that assemblies will be signed
2003-08-28 Thursday 00:11 corts
* examples/ViewHandler/AssemblyInfo.cs, src/Http/AssemblyInfo.cs:
remove UseDefaultDomain attribute since that is now the log4net
default
2003-08-28 Thursday 00:10 corts
* src/Runtime/Log/SimpleLog4NetLogSystem.cs:
reflect changes found in log4net 1.2.0 beta 8
2003-08-28 Thursday 00:09 corts
* lib/log4net.dll:
upgrade to 1.2.0 beta 8, net 1.1, release version
2003-08-28 Thursday 00:07 corts