-
Notifications
You must be signed in to change notification settings - Fork 67
/
ChangeLog
2862 lines (1952 loc) · 98.7 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
2013-11-07 Andreas Kupries <[email protected]>
* support/devel/sak/localdoc/localdoc.tcl (::sak::localdoc::run):
[Ticket 7c7f946046]: Pull in exclusion information from the
installer configuration, and use it to exclude the associated
man-pages from generation.
2013-11-07 Andreas Kupries <[email protected]>
* support/installation/man.macros: [Ticket 369f67aeee] Updated to
newest from Tcl/Tk.
2013-05-30 Andreas Kupries <[email protected]>
* Makefile.in: [Bug 3613973][Allura 1371]: Applied patch by
Wolfgang Kechel, fixed missing CYGPATH invokations for paths in
the installation targets.
2013-04-04 Andreas Kupries <aku@hephaistos>
* support/installation/modules.tcl (Module):
* modules/debug: debug narrator module adapted
from Colin McCormack's Debug wub utility package.
2013-03-21 Andreas Kupries <[email protected]>
* aclocal.m4: [Bug 3608581]: Extended check for executable
* configure: extension to recognize an MSYS environment as Windows
and requiring a ".exe" suffix. Regenerated configure.
2013-03-11 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: Added 'pt' (of modules/pt) to
the set of distributed applications. Note that the application
was moved to apps/ for this.
2013-03-01 Andreas Kupries <[email protected]>
* support/devel/sak/validate/syntax.tcl (::sak::validate::syntax::Setup):
* support/devel/sak/validate/testsuites.tcl (::sak::validate::testsuites::Setup):
The namespace ::tcl contains parts necessary for the proper
operation of the interpreter, since 8.6. Do not delete anymore.
2013-02-15 Andreas Kupries <[email protected]>
* New module 'string'. String/text utilities, 8.5+.
First packages:
- string::token - regex based lexing.
- string::token::shell - parsing basic shell command line syntax.
2013-02-08 Andreas Kupries <[email protected]>
* apps/dtplite: Fixed missing -ibase option in direcotry
* apps/dtplite.man: processing with -merge. Fixed sorting in
generated toc and indices. Plus new feature: -toc for external
toc to place in the output. Bumped to 1.0.4. Updated
documentation.
2013-02-01 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.15 ========================
*
2013-01-28 Andreas Kupries <[email protected]>
* modules/fileutil: New package 'fileutil::decode'.
* modules/zip: New module 'zip', with packages 'zipfile::encode'
and 'zipfile::decode'
2013-01-24 Andreas Kupries <[email protected]>
* New module and packages: clock (rfc2822, iso8601).
Tcl 8.5 only.
2013-01-08 Andreas Kupries <[email protected]>
* configure.in: [Bug 3593146]: Extended with CYGPATH usage to
allow building under cygwin.
* configure: Regenerated (autoconf 2.67).
2012-08-07 Andreas Kupries <[email protected]>
* modules/generator: Generators (via the coroutines of
Tcl 8.6). Provided by Neil Madden.
* support/installation/modules.tcl:
2011-12-13 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.14 ========================
*
2011-11-07 Andreas Kupries <[email protected]>
* sak.tcl (xcopy): Fixed bug a preventing the detection of files
in subdirectories; copied from the installer.
* sak.tcl (ipackages): Fixed bug (reuse of varname) which placed
packages into the wrong module.
2011-05-31 Andreas Kupries <[email protected]>
* New module and package: oo::util. Right now only easy
referencing of instance methods for callbacks.
* New module and package: lambda. Easy anonymous procedures for
Tcl 8.5+.
* New module and package: try. Tcl 8.5+ forward compatibility
implementation of try/catch/finally (TIP 329).
2011-04-21 Andreas Kupries <[email protected]>
* modules/struct/queue_c.tcl: Disabled the critcl debug settings used
* modules/pt/pt_rdengine_c.tcl: to work around bugs in critcl v2's
* modules/pt/pt_parse_peg_c.tcl: handling of C companion files.
* modules/pt/pt_cparam_config_critcl.tcl:
* sak.tcl (__critcl): Fixed processing of -debug, added the
forgotten handling of its argument. Plus added handling of
option -target.
* ./modules/sha1/sha256.h: Fixed the conditional definition of
uint64_t and uint32_t for aix and hpux machines.
2011-04-06 Andreas Kupries <[email protected]>
* modules/valtype: New module: Validation types. snit validation
types for various classes of numbers (ISBN, EAN, ...) and
general check-digit algorithms (luhn(5), verhoeff, ...).
2011-01-24 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.13 ========================
*
2011-01-13 Andreas Kupries <[email protected]>
* sak.tcl: Trim dross of extracted version numbers.
* support/devel/sak/note/cmd.tcl: Extended 'sak note' to accept
* support/devel/sak/note/help.txt: a file of note data.
2011-01-12 Andreas Kupries <[email protected]>
* modules/hook: New module 'hook'.
* support/installation/modules.tcl:
2010-11-25 Andreas Kupries <[email protected]>
* examples/mime/maildemo.tcl: [Patch 3117246]: Added the standard
script prologue. Thanks to Stuart Cassoff.
2010-11-23 Andreas Kupries <[email protected]>
* apps/dtplite.man: Extended with new option -exclude to specify
* apps/dtplite: exclusion patterns (glob matching). Further fixed
issues with file paths causing resolution of include file paths
to break. This uses the new option -ibase of doctools 1.4.11 to
keep include resolution and HTML cross-link generation apart
from each other. Bumped version to 1.0.3.
2010-10-26 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: [Bug 3085417]: Added the nano
nameservice applications to the installation.
2010-10-22 Kevin Kenny <[email protected]>
* support/installation/modules.tcl: Corrected installation
of grammar::aycock.
2010-10-18 Kevin Kenny <[email protected]>
* modules/grammar_aycock: New module, Aycock-Earley-Horspool
parser generator.
2010-10-08 Andreas Kupries <[email protected]>
* modules/pki: New module, public key infrastructure.
* support/installation/modules.tcl:
2010-07-09 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: [Bug 3027371]. Fixed typo
'imap' -> 'imap4'. Thanks to Larry Virden <[email protected]>
for reporting.
2010-07-08 Andreas Kupries <[email protected]>
* modules/gpx: New module 'gpx'.
* support/installation/modules.tcl:
2010-07-06 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: Module 'imap4' activated.
2010-03-25 Andreas Kupries <[email protected]>
* New module 'pt', for ParserTools. Requires Tcl 8.5. Supercedes
grammar_peg, grammar_me, and page.
2009-12-08 Andreas Kupries <[email protected]>
* support/devel/sak/test/run.tcl (CaptureFailureCollectBody,
CaptureFailureCollectError): Fixed issue with test result
capture on failure. We failed on the capture of failure due to
unexpected return codes, because the output syntax is different
for that compared to failure due to result differences. Code has
been added to recognize and capture this other syntax.
* support/devel/sak/test/run.tcl: Extended the test framework to
* support/devel/all.tcl: record time per .test file, count of
tests per file, enabling it to compute a speed (microseconds per
test), as a rough and crude benchmark of where we may have
performance problems with either packages or tests.
2009-12-07 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.12 ========================
*
2009-12-03 Andreas Kupries <[email protected]>
* support/devel/sak/readme/readme.tcl: Strip trailing whitespace
from the table formatted parts of the generated readme.
2009-12-01 Andreas Kupries <[email protected]>
* New modules 'virtchannel_{core,base,transform}' with packages
providing core services to reflected channels and
transformations, and basic reflected channels, and
transforms. This is in essence the example code for the paper I
presented at Tcl'2009 in Portland (Reflected and Transformed
Channels).
* support/installation/modules.tcl: New modules 'virtchannel_*'.
2009-11-24 Andreas Kupries <[email protected]>
* New package 'json::write' in existing module 'json'.
* support/devel/sak/note/cmd.tcl: Extended note command to show
* support/devel/sak/note/note.tcl: saved hints when called without
arguments.
2009-11-23 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: Fix issue with examples for logger,
* support/installation/actions.tcl: which did not fit the
expectations of action _exa, which assumed the module name,
which is 'log'. Instead of wrestling CVS into renaming the
directory a new action is made which takes the actual name as
argument.
* support/devel/sak/note/cmd.tcl: New sak commands 'note' and 'readme'
* support/devel/sak/note/help.txt: for semi-automatic generation of
* support/devel/sak/note/note.tcl: the release README.txt from
* support/devel/sak/note/pkgIndex.tcl: current and last package
* support/devel/sak/note/topic.txt: versions, and note'd hints.
* support/devel/sak/readme/cmd.tcl:
* support/devel/sak/readme/help.txt:
* support/devel/sak/readme/pkgIndex.tcl:
* support/devel/sak/readme/readme.tcl:
* support/devel/sak/readme/topic.txt:
2009-11-11 Andreas Kupries <[email protected]>
* apps/dtplite: Updated the requirements to force use of doctools
v1, this app is not doctools v2 ready yet.
2009-11-10 Andreas Kupries <[email protected]>
* support/devel/sak/validate/cmd.tcl: Extended argument processing
* support/devel/sak/validate/manpages.tcl: of the validation command
* support/devel/sak/validate/syntax.tcl: to enable a user to specify
* support/devel/sak/validate/testsuites.tcl: which version of Tcl
* support/devel/sak/validate/validate.tcl: to check against. Plus
* support/devel/sak/validate/versions.tcl: fix to handle modules
without manpages.
* modules/coroutine: New module 'coroutine' providing to coroutine
utility packages for easier use of channel operations. These
packages are for Tcl 8.6+.
* support/installation/modules.tcl: New module 'coroutine'.
2009-09-28 Andreas Kupries <[email protected]>
* support/devel/sak/test/run.tcl (::sak::test::run::CaptureStack):
Fix missing variable declaration, and tweak generated output a
bit.
* support/devel/sak/test/run.tcl (Do): Reworked a bit to save
captured error stacks and failed tests (body, actual, expected)
into separate log files for quick access.
2009-07-10 Andreas Kupries <[email protected]>
* README.releasemgr: Added links to important places in the
SourceForge site for managing Tcllib releases and uploading
files (WebDAV), to avoid the ever more byzantine link sequences
needed to find them on their site.
2009-06-02 Andreas Kupries <[email protected]>
* README.developer: Extended with more information about the basic
directory hierarchy and files to be found, testing and
validating modules, writing of test cases, and documentation.
2009-02-06 Andreas Kupries <[email protected]>
* support/installation/modules.tcl (Module): Put 'exif' on the
exclude list, deprecating it. Use 'jpeg' instead to access the
exif information block in images.
2009-01-29 Andreas Kupries <[email protected]>
* examples/bibtex/bibtex.tcl: Modified examples to assume that
* examples/htmlparse/webviewer.tcl: they are run by a tclsh found
* examples/irc/irc_example.tcl: on the PATH, and that this shell
* examples/mapproj/tkmap.tcl: has access to the packages of
* examples/math/bigfloat.demo.tcl: Tcllib required by the example.
* examples/ntp/rdate.tcl: Stuart Cassoff <[email protected]>
* examples/sasl/saslclient.tcl: provided by the patches as
* examples/struct/diff.tcl: part of his work on making a Tcllib
* examples/struct/diff2.tcl: OpenBSD port.
* support/installation/modules.tcl: Added the examples for a
number of modules to the installer. Patch by Stuart, see above.
2009-01-28 Andreas Kupries <[email protected]>
* apps/dtplite: Added missing EOL to last line of the generated
.toc and .idx files. Bumped version to 1.0.1
* apps/*.man: Added category information to the majority of man
* modules/*/*.man: pages.
* support/devel/sak/doc/cmd.tcl: Moved the main code for the
* support/devel/sak/doc/doc.tcl: imake/ishow commands into a
* support/devel/sak/doc/pkgIndex.tcl: separate package. Added a
* support/devel/sak/doc/doc_auto.tcl: new command 'doc index'
* support/devel/sak/doc/manpages.txt: which not only updates
* support/devel/sak/doc/kwic.txt: 'manpages.txt', but also
* support/devel/sak/doc/toc.txt: generates a keyword index
('kwic.txt'), and a table of contents ('idx.txt'). The first
result are committed as part of this change. The newly generated
files are in docidx and doctoc formats, respectively.
2008-12-12 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.11.1 ========================
*
2008-11-25 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'map' with
packages 'map::slippy::*'.
2008-11-18 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'cache' with
package 'cache::async'.
2008-10-16 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.11 ========================
*
2008-09-03 Andreas Kupries <[email protected]>
* modules/devtools/testutilities.tcl (useTcllibC): Added code to
print the location of the tcllibc used by the testsuite.
* support/devel/sak/test/run.tcl (::sak::test::run::AbortCause):
Tweaked to be more lenient and accept more error messages.
2008-07-08 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'amazon-s3' with
packages 'S3' and 'xsxp', by Darren New. Access to Amazon's
Simple Storage Service.
2008-06-30 Andreas Kupries <[email protected]>
* support/installation/actions.tcl (_manfile): Tossed two of the
three identical copies of this procedure. Thanks to Stuart
Cassoff for noticing and reporting this.
2008-06-20 Andreas Kupries <[email protected]>
* support/installation/version.tcl: Added code integrated
struct::stack's critcl implementation into the build.
2008-05-22 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: Added 'yaml' to the list
of official modules.
2008-03-26 Andreas Kupries <[email protected]>
* support/devel/sak/validate/syntax.tcl: Fix problem in pcx scan
logic, have to handle unknown commands. Like is done for
testsuites.
2008-03-25 Andreas Kupries <[email protected]>
* support/devel/sak/validate/syntax.tcl: Do not try to check TeX
files for Tcl syntax.
* support/devel/sak/validate/syntax.tcl: New code, syntax checking
via tclchecker.
* support/devel/sak/validate/validate.tcl: Activated new
validation module.
* support/devel/sak/validate/manpages.tcl: Skip tcllibc.
* support/devel/sak/validate/testsuites.tcl: Skip tcllibc.
* support/devel/sak/util/feedback.tcl: Flush log lines.
* sak.tcl (ppackages): Added code to recognize a pragma '@sak
notprovided' which we can use to mark the packages which have
provide statements yet are not really visible and thus not
indexed.
* modules/sha1/sha256c.tcl: Added notprovided pragmas to the
* modules/sha1/sha1c.tcl: critcl based package implementations
* modules/md5/md5c.tcl: and the pseudo-packages declared by
* modules/struct/graph_c.tcl: plugin management code.
* modules/struct/tree_c.tcl:
* modules/struct/sets_c.tcl:
* modules/dns/ipMoreC.tcl:
* modules/md5crypt/md5cryptc.tcl:
* modules/rc4/rc4c.tcl:
* modules/crc/crcc.tcl:
* modules/base64/base64c.tcl:
* modules/md4/md4c.tcl:
* modules/page/peg_grammar.tcl:
* modules/page/pluginmgr.tcl:
2008-03-24 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: Added 'simulation' to the list
of official modules.
* support/devel/sak/validate/versions.tcl: New code for the
comparison of indexed versus provides packages.
* support/devel/sak/validate/validate.tcl: Activated new
validation module.
* support/devel/sak/validate/testsuites.tcl: Reworked log format.
* support/devel/sak/validate/manpages.tcl: Reworked log format.
2008-03-22 Andreas Kupries <[email protected]>
* support/devel/sak/validate/help.txt: Clarified that testsuite
validation is not testsuite execution.
* support/devel/sak/validate/validate.tcl: Added testsuite
* support/devel/sak/validate/cmd.tcl: validation, using the new
entrypoints to move summaries after the checking phases, and
updated to the feedback api changes.
* support/devel/sak/validate/testsuites.tcl: New code, validation
of testsuites (= checking which packages are without).
* support/devel/sak/validate/manpages.tcl: Reworked for changed
feedback module, split summary generation from main body, and
set up proper multiple entry points.
* support/devel/sak/util/feedback.tcl: Reworked for easier use
when used from multiple packages which can be run separately and
together. Added support for summary generation.
2008-03-18 Andreas Kupries <[email protected]>
* support/devel/sak/old/help.txt: Renamed old validation command.
* sak.tcl: Renamed old validation command.
* support/devel/sak/validate/cmd.tcl: New validation code, currently
* support/devel/sak/validate/help.txt: only checking documentation.
* support/devel/sak/validate/manpages.tcl:
* support/devel/sak/validate/pkgIndex.tcl:
* support/devel/sak/validate/topic.txt:
* support/devel/sak/validate/validate.tcl:
* support/devel/sak/doc/cmd.tcl: Fixed a typo.
* support/devel/sak/doc/topic.txt: Deeper indentation.
* support/devel/sak/help/topic.txt: Deeper indentation.
* support/devel/sak/old/topic.txt: Deeper indentation.
* support/devel/sak/test/run.tcl: Replaced custom color code with
use of the new package sak::color.
* support/devel/sak/test/cmd.tcl: Fixed a typo.
* support/devel/sak/test/topic.txt: Deeper indentation.
* support/devel/sak/util/pkgIndex.tcl: Added two new sak support
* support/devel/sak/util/color.tcl: packages to handle colorization
* support/devel/sak/util/feedback.tcl: and common feedback ops (on
top of the animation).
* support/devel/sak/util/anim.tcl: Exported the public commands.
2008-03-07 Andreas Kupries <[email protected]>
* support/devel/sak/test/run.tcl (::sak::test::run::Summary):
Fixed [Bug 1909367]. Error information is now passed from the
file summary code to the counters for the whole test run.
2008-01-29 Pat Thoyts <[email protected]>
* modules/stringprep: New module 'stringprep'.
* support/installation/modules.tcl:
2007-09-12 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.10 ========================
*
2007-09-07 Andreas Kupries <[email protected]>
* support/releases/history/README-1.10.txt: Updated for modified
math package.
2007-08-30 Andreas Kupries <[email protected]>
* devdoc/critcl-tcllib.txt: Fixed [SF Tcllib Bug 1784843], applied
* devdoc/dirlayout_install.txt: Larry Virden's patches fixing typos,
* devdoc/indexing.txt: and doing other editorial changes.
* devdoc/installation.txt:
* devdoc/devguide.html:
* README.developer: Fixed [SF Tcllib Bug 1784836], applied Larry
* README: Virden's patches fixing typos, and doing other editorial
changes.
2007-08-29 Andreas Kupries <[email protected]>
* modules/tcllibc.tcl: Version of package bumped to 0.3.2 for the
bugfix in the C implementation of struct::set (v 2.2.1).
2007-08-28 Andreas Kupries <[email protected]>
* support/releases/history/README-1.10.txt: Whitespace and
formatting cleanup after various updates for modified packages.
2007-08-24 Kevin B. Kenny <[email protected]>
* support/installation/modules.tcl: New module 'mapproj' added.
2007-08-24 Andreas Kupries <[email protected]>
* README.developer: Added a section describing the basic steps of
adding a new module.
* support/releases/history/README-1.10.txt: Whitespace and
formatting cleanup.
2007-08-22 Andreas Kupries <[email protected]>
* apps/tcldocstrip (::tcldocstrip::processCmdline): Fixed handling
of arguments if there are none. The linsert construction broke
for that case. Application version bumped to 1.0.1.
2007-08-21 Andreas Kupries <[email protected]>
* README.developer: Section about testing updated for the changes
in the Makefile.
* Makefile.in (install-applications): New target, complement to
'install-libraries', for applications only.
* Makefile.in (test): The target now distinguishes interactive
invokation and batch mode, and chooses its log mode accordingly
(interactive: progress feedback, short log, batch: detailed
log). The batch mode is invoked by redirecting the stdout to a
file. Per a suggestion of Mikhail Teterin. The two modes are
also directly acessible, via the new targets 'test_batch' and
'test_interactive'.
2007-08-21 Andreas Kupries <[email protected]>
* README.developer: Added a small introduction to the testing of
modules via 'sak.tcl'. This fixes [SF Tcllib Bug 1750655] by
Larry Virden.
* support/devel/sak/test/run.tcl: Reworked the handling of setup
errors and of the various failure states to ensure that they are
properly reported as problems in the summary output instead of
giving the appearance that everything is ok. Some trouble in the
math testsuite was spotted only by reading the detailed log and
would have been missed otherwise.
2007-08-20 Andreas Kupries <[email protected]>
* support/releases/history/README-1.10.txt: README listing the
changes for the upcoming release.
2007-07-27 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'wip' added. A mini
interpreter for word lists based on ideas in 'treeql'.
2007-07-17 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'uev' added, for
the generation and handling of user events.
2007-05-04 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'nns' added, a
nano-sized name service based on and for 'comm'. Derived from
the nserver code in the Pool_Net bundle of packages.
2007-05-03 Andreas Kupries <[email protected]>
* sak.tcl: Added stronger check for 'package provided' command to
'ppackages'. Code in critcl.tcl generated for tcllibc slips past
the less strong filters.
2007-03-21 Andreas Kupries <[email protected]>
* Changed all documentation files (*.man). Replaced all deprecated
commands and list types with their new canonical names, putting
the Tcllib documentation back in line with the current
definition of the doctools language and its companions.
2006-11-15 Andreas Kupries <[email protected]>
* support/installation/version.tcl: Added critcl implementation of
struct::graph to the list of critcl supported packages.
2006-11-04 Pat Thoyts <[email protected]>
* modules/tcllibc.tcl: Silence critcl warnings. Files with no code
raise a warning message. Add an empty critcl::ccode block to avoid.
2006-10-13 Andreas Kupries <[email protected]>
* modules/tcllibc.tcl: Bumped to version 0.3.1. I believe this has
to be bumped whenever one of the contained packages changes, or
more packages are added. Keep track of this.
2006-10-08 Andreas Kupries <[email protected]>
* support/devel/all.tcl: Small comments added to clarify the
operation of the cleanup hook, and a tiny bit of code cleanup.
2006-10-03 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.9 ========================
*
2006-10-01 Andreas Kupries <[email protected]>
* Makefile.in (test): Changed to use an explicit -s TCLSH_PROG to
avoid use of the Tcllib registry.
* support/devel/sak/test/run.tcl: Flush all writes to logfiles, to
ensure that they are uptodate in case an abort is needed. Added
output of totals after the test run, and made exit status
dependent on failures (1 = Ok, 0 = Had problems).
2006-09-27 Andreas Kupries <[email protected]>
* support/devel/all.tcl: Ensure that root is absolute across all
versions of Tcl. Added code to recreate the auto_path in the
slave interps and processes after it was smashed by older
revisions of tcltest during their load.
2006-09-20 Andreas Kupries <[email protected]>
* support/releases/history/README-1.9.txt: New file. Readme file
for the upcoming release, providing an overview of the changes.
2006-09-20 Andreas Kupries <[email protected]>
* support/devel/sak/test/run.tcl: Modified to not use echo and cat
* support/devel/sak/test/help.txt: when starting a testsuite on
windows. Eliminated the use of valgrind for that platform as
well. Updated the documentation regarding the latter.
2006-09-19 Andreas Kupries <[email protected]>
* support/devel/sak/test/run.tcl: Extended testsuite logging.
* support/devel/sak/test/help.txt: Standard user feedback and
extended information (raw log, summaries) are written to a set
of files. All required information in one run, instead of two.
2006-09-18 Andreas Kupries <[email protected]>
* installer.tcl: Accepted patch by Michael Schlenker
<[email protected]> for [Tcllib SF Bug 1559489] to
divert error messages to a dialog box instead of stderr where
possible, to avoid them being silently swallowed by windows.
* support/devel/sak/test/run.tcl: Reworked output generated
* support/devel/all.tcl: by testsuites, added processing of
the modified output for progress reporting, condensed reporting,
and in preparation of placing results into a database.
* support/devel/sak/test/help.txt: Updated documentation.
* support/devel/sak/test/shell.tcl: Fixed typo in name of method
to call to remove shells from the database.
2006-09-06 Andreas Kupries <[email protected]>
* Makefile.in (test): Updated the target to the new syntax
for running testsuites accepted by sak.
2006-09-05 Andreas Kupries <[email protected]>
* support/devel/sak/test/help.txt: Added reference to the file
used to store the list of registered shells.
* support/devel/all.tcl: Changed to terminate with 'exit' instead
of 'return', to allow the testsuites to be driven by a 'wish'
without having to deal with its event loop.
* support/devel/sak/test/cmd.tcl: Replaced the existing
* support/devel/sak/test/help.txt: implementation of 'test' with a
dispatcher to an extensible set of packages. See below.
* support/devel/sak/test/pkgIndex.tcl: New implementation of the
* support/devel/sak/test/run.tcl: 'test' command and its sub-
* support/devel/sak/test/shell.tcl: commands. The 'registry', see
* support/devel/sak/test/shells.tcl: below, is used to store the
* support/devel/sak/test/test.tcl: registered shells.
* support/devel/sak/util/pkgIndex.tcl: Registered package.
* support/devel/sak/util/registry.tcl: New file, wrapper around
the pregistry, customized to SAK.
* support/devel/sak/registry/pkgIndex.tcl: Package for a small tree-
* support/devel/sak/registry/registry.man: based database similar to
* support/devel/sak/registry/registry.tcl: the windows registry. For
* support/devel/sak/registry/registry.test: now just an internal
package to support 'sak', in the future it may move and become an
official package.
2006-09-01 Pat Thoyts <[email protected]>
* support/installation/modules.tcl: New module 'otp'.
2006-08-30 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: New module 'interp'.
2006-08-17 Jeff Hobbs <[email protected]>
* support/installation/modules.tcl: added json package
2006-08-15 Michael Schlenker <[email protected]>
* sak.tcl: Added support for nagelfar (nagelfar.berlios.de) to the
static syntax checking options of sak.tcl while doing a validate
or validate_all. Fixed a slight inconsistency between validate
and validate all, tclchecker was not checked for validate.
2006-08-14 Andreas Kupries <[email protected]>
* Makefile.in (*-doc): Forgotten to update the Makefile targets
for documentation when changing the sak syntax for invoking a
doc conversion. See entry 2006-07-09. Thanks to [email protected]
for noticing and provision of a patch.
2006-08-10 Andreas Kupries <[email protected]>
* support/devel/sak/doc/doc.tcl (::sak::doc::ps): Fixed bogus
redirection argument 1>@, correct is >@.
2006-08-09 Andreas Kupries <[email protected]>
* support/devel/all.tcl: Fixed the loading of Tk into the slave
interp, before Tk 8.4 we are not a real package. Using an
explicit load for a Tk statically bound into the executable.
2006-07-27 Andreas Kupries <[email protected]>
* sak.tcl: Removed __test. Replaced with a single command
* support/devel/sak/test: with an implementation found in
the support tree. See below.
* support/devel/sak/test/cmd.tcl: New. Implementation of 'test'.
* support/devel/sak/test/help.txt: New. Help for 'test'.
* support/devel/sak/test/topic.txt: New. Topic definition for 'test'.
2006-07-12 Andreas Kupries <[email protected]>
* support/installation/modules.tcl: Fixed registration of 'term',
needs recursive install.
2006-07-10 Andreas Kupries <[email protected]>
* New module "term". Terminal control.
* support/installation/modules.tcl: Registered 'term'.
2006-07-09 Andreas Kupries <[email protected]>
* sak.tcl: Removed __nroff and all other documentation commands.
* support/devel/sak/old/help.txt: Replaced with a single command
with an implementation found in the support tree. See below.
* support/devel/sak/doc/cmd.tcl: New. Implementation of 'doc'.
* support/devel/sak/doc/doc.tcl: New. Support package for 'doc'.
* support/devel/sak/doc/pkgIndex.tcl: New. Index for support package.
* support/devel/sak/doc/help.txt: New. Help for 'doc'.
* support/devel/sak/doc/topic.txt: New. Topic definition for 'help'.
* support/devel/sak/util/util.tcl: New. General support package,
* support/devel/sak/util/pkgIndex.tcl: and index for it.
2006-07-05 Andreas Kupries <[email protected]>
* sak.tcl: Removed __help. Replaced with implementation found in
the support tree. See below.
* support/devel/sak/help/cmd.tcl: New. Implementation of 'help'
* support/devel/sak/help/help.tcl: New. Support package for 'help'.
* support/devel/sak/help/help.txt: New. Help for 'help'.
* support/devel/sak/help/pkgIndex.tcl: New. Index for support package.
* support/devel/sak/help/topic.txt: New. Topic definition for 'help'.
* support/devel/sak/old/help.txt: New. Help for old commands.
* support/devel/sak/old/topic.txt: New. Topic def. for old commands.
* sak.tcl: Added code to locate command implementations in the
support tree. This allows us to factor the commands out of the
main script, making the internal structure of sak clearer
(through the use of packages).
2006-06-30 Andreas Kupries <[email protected]>
* main.tcl: Moved, and new location
* support/installation/main.tcl: of the file.
* sak.tcl: Updated to the new location (has to be copied to the
topdir now, when generating the starkit/pack distribution).
* man.macros: Moved, and new location
* support/installation/man.macros: of the file.
* installer.tcl: Updated to the new location.
* all.tcl: Moved, and new location
* support/devel/all.tcl: of the file. Also updated to handle the
new location of the distribution relative to all.tcl, to
properly find the testsuites.
* sak.tcl: Updated to the new location of all.tcl
* package_rpm.tcl: Moved, and new location
* support/releases/package_rpm.tcl: of the file.
* package_yml.tcl: Moved, and new location
* support/releases/package_yml.tcl: of the file.
* package_tip55.tcl: Moved, and new location
* support/releases/package_tip55.tcl: of the file.
* sak.tcl: Updated to the new location of
* installer.tcl: package_rpm.tcl, package_tip55.tcl,
package_yml.tcl
* package_version.tcl: Moved, and new location
* support/installation/version.tcl: of the file.
* sak.tcl: Updated to the new location of
* installer.tcl: package_version.tcl
* install_action.tcl: Moved, and new location
* support/installation/actions.tcl: of the file.
* installed_modules.tcl: Moved, and new location
* support/installation/modules.tcl: of the file.
* sak.tcl: Updated to the new location of
* installer.tcl: install_action.tcl, installed_modules.tcl.
* README.developer: New files to introduce new developers
* README.releasemgr: and release managers to Tcllib, the tools
available to support and ease their tasks, the procedures we
have in place, etc. For now they are more or less placeholders,
to be fleshed out with actual content over time.
* installed_modules.tcl: Registered new module 'nmea'.
* PACKAGES: Moved.
* support/releases/PACKAGES: New location of PACKAGES.
* sak.tcl: Updated to the new location of PACKAGES.
2006-06-30 Andreas Kupries <[email protected]>
* installed_modules.tcl: Changed to a declarative style (more
amenable to automated processing).
2006-06-15 Andreas Kupries <[email protected]>
* sak.tcl: Extended to allow the specification of a module M as
either M or modules/M. The latter is a path relative to the
topdir and enables the entering of modules through
tab-completion in the shell.
2006-05-27 Andreas Kupries <[email protected]>
* installed_modules.tcl: New module 'base32'.
2006-05-23 Andreas Kupries <[email protected]>
* installed_modules.tcl: New module 'transfer'.
2006-04-26 Andreas Kupries <[email protected]>
* sak.tcl (gd-gen-tap): modified to strip non-version characters
out of version numbers.
2006-01-21 Andreas Kupries <[email protected]>
* all.tcl: Removed the definitions of the common test constraints,
and the emulations of the 'wrongNumArgs' and 'tooManyArgs'
commands. These have all moved into the new common test support
code found in "devtools".
2005-11-02 Andreas Kupries <[email protected]>
* sak.tcl: Removed all functionality related to execution of
.timing files. They are superceded by the benchmarks provided
through .bench files.
* modules/aes/aes.timing: Removed, superceded by .bench files.
* modules/des/des.timing:
* modules/rc4/rc4.timing:
* modules/blowfish/blowfish.timing
2005-11-02 Andreas Kupries <[email protected]>
* sak.tcl (ppackages): Added hack to exclude the package @@ from
the tap file. This is defined in template code in
page/gen_peg_cpkg.tcl, i.e. a variable.
2005-10-27 Andreas Kupries <[email protected]>
* sak.tcl (bench_mod): Modified default interp to use in
benchmarks from PATH to the interp executing SAK.
2005-10-21 Andreas Kupries <[email protected]>
* sak.tcl: Extended benchmark facility. New command for removal of
columns from results. New option to explicitly specify a single
interpreter to use.
2005-10-18 Andreas Kupries <[email protected]>
* sak.tcl: More benchmarking functionality, showing benchmark data
after the fact, implicit merging, and changing interp
information around. Now we need only some functionality to show
the data graphically, and possibly compute statistical
information.
2005-10-17 Andreas Kupries <[email protected]>
* installed_modules.tcl: New module "bench". Benchmarking support
package.
* sak.tcl: Added benchmarking functionality.
2005-10-06 Andreas Kupries <[email protected]>
*
* Released and tagged Tcllib 1.8 ========================
*
2005-10-05 Pat Thoyts <[email protected]>
* sak.tcl: Added support for passing parameters to critcl. v04
will support -debug and -clean and v034 supports -keep.
2005-09-29 Andreas Kupries <[email protected]>
* README-1.8.txt: New file. Readme file for the upcoming release.
* sak.tcl (pkg-compare): Modified the core of the 'rstatus'
functionality to sort by module, then package, and show the
module name before the packages. Easier for use in new release
README file.
* installed_modules.tcl: log module changed to use _msg for
installation.
* install_action.tcl (_msg): New action for modules having a
message catalogs in a msgs subdirectory.
* installer.tcl (xcopy): Fixed bug in the interaction of recursion
and pattern argument. It is for files, but affected directories
as well, causing page to ignore its plugin directory.
2005-09-28 Andreas Kupries <[email protected]>