-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog.SCMBUG_RELEASE_0-26-22
18944 lines (15982 loc) · 812 KB
/
ChangeLog.SCMBUG_RELEASE_0-26-22
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
2011-02-06 Sunday 16:19 mkgnu
* configure.in (1.338), packaging/debian/changelog (1.143) (utags:
SCMBUG_RELEASE_0-26-22): bug 1517: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-22
2011-02-06 Sunday 16:16 mkgnu
* src/lib/product/Daemon/Process.pm.in (1.25,
SCMBUG_RELEASE_0-26-22): bug 1516: %mail should be set to a
reference, not to a hash, because it is treated as a hash
reference. This corrects the problem observed by Raghavendra
Achar, and has been tested to work.
2011-02-05 Saturday 22:13 mkgnu
* src/lib/product/Daemon/Integration.pm.in (1.42), doc/AUTHORS
(1.36) (utags: SCMBUG_RELEASE_0-26-22): bug 1187: Applied a patch
by Hans-Emil Skogh that keeps the handling of tag deletions
consistent with the handling of tag additions when
valid_product_name is disabled. Extended the patch to also log
that valid_product_name is enabled on the corresponding code
path.
2010-11-08 Monday 19:51 mkgnu
* src/lib/product/Daemon/Trapper.pm.in (1.6,
SCMBUG_RELEASE_0-26-22): bug 1496: Correct the call to binmode()
to accept all arguments, and also account for the $self class
instance.
2010-11-08 Monday 17:01 mkgnu
* src/lib/product/Daemon/Trapper.pm.in (1.5): bug 1496: As
suggested by Thorsten Schöning <[email protected]>, implement
the BINMODE function as implemented in Tie::StdHandle to avoid
encoding errors in the logging.
2010-11-07 Sunday 23:02 mkgnu
* src/lib/product/Daemon/Trapper.pm.in (1.4): bug 1496: Applied a
patch by Yavor Nikolov <[email protected]> that corrects
the Trapper.pm module from exiting with an error when Util.pm in
Bugzilla 4rc1 issues a:
binmode STDERR, ":encoding($encoding)";
2010-09-27 Monday 19:01 mkgnu
* configure.in (1.337), packaging/debian/changelog (1.142) (utags:
SCMBUG_RELEASE_0-26-21): bug 1494: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-21
2010-09-27 Monday 18:59 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.86,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21): bug 1493: It
seems that Bugzilla::Version is now a class, not a function,
hence we should call the create() function with a '->'
2010-09-19 Sunday 20:09 mkgnu
* doc/manual/content/bugtracking-backends.sgml (1.27,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21): bug 66:
Documented the fact that the Mantis backend has been reported to
work against version 1.2.1.
2010-09-19 Sunday 20:02 mkgnu
* configure.in (1.336), packaging/debian/changelog (1.141) (utags:
SCMBUG_RELEASE_0-26-20): bug 1492: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-20
2010-09-19 Sunday 16:50 mkgnu
* src/lib/product/Daemon/Mantis.pm.in (1.59,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20): bug 1461: Convert the dates supplied in
integration_get_vdd to unix timestamp format for Mantis 1.2.x
2010-09-06 Monday 18:26 mkgnu
* doc/manual/content/design.sgml (1.4, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20): bug 66: Arch is
not a popular free SCM system; mention Git instead
2010-08-18 Wednesday 15:50 mkgnu
* doc/manual/content/bugtracking-backends.sgml (1.26,
SCMBUG_RELEASE_0-26-20): bug 1466: Report that integration with
Bugzilla 3.6.1 has been reported to work.
2010-08-18 Wednesday 15:49 mkgnu
* src/: daemon/etc/daemon.conf.template.in (1.34),
lib/product/Daemon/Daemon.pm.in (1.100) (utags:
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-22): bug 1487: Require users to explicitly
specify the version in daemon.conf. It seems that they
occasionally forget to change the default.
2010-07-20 Tuesday 20:55 mkgnu
* src/lib/product/Daemon/Mantis.pm.in (1.58): bug 1461: Document in
the source code that the time() is used since Mantis 1.2.0.
2010-07-20 Tuesday 20:53 mkgnu
* src/lib/product/Daemon/Mantis.pm.in (1.57): bug 1461: Use the
Perl time() function for receiving and supplying to Mantis the
unix timestamp, which appears to be necessary since Mantis 1.2.0.
2010-07-19 Monday 15:24 mkgnu
* configure.in (1.335), packaging/debian/changelog (1.140) (utags:
SCMBUG_RELEASE_0-26-19): bug 1484: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-19.
2010-07-19 Monday 15:20 mkgnu
* src/lib/product/Daemon/Trapper.pm.in (1.3,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19): bug 1073: Provide a FILENO method which
is needed by Perl/lib/CGI.pm for log4perl to work properly, after
remarkable feedback from [email protected].
2010-07-12 Monday 05:44 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.85,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19): bug 1473:
up_to_3_4 should not include the minor version 6. Pointed out by
Yavor Nikolov <[email protected]>.
2010-07-11 Sunday 17:58 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.84): bug 1473: Must call
Bugzilla::Version::create, not Bugzilla::Version->create
2010-07-11 Sunday 06:17 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.83): bug 1466 :
integration_change_bug_resolution: removing what appears to be
unreachable code.
2010-07-11 Sunday 06:04 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.82): bug 1473:
Introduce an is_version_up_to_3_4 to distinguish between the two
ways to call Bugzilla::Version::create in 3.4 and 3.6
2010-07-10 Saturday 23:34 mkgnu
* src/lib/product/Daemon/Integration.pm.in (1.41,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19): bug 1479: add_comment_to_all: Check the
individual return values to the call to integration_add_comment
and concatenate the error strings if there are errors. Allow
checking for errors among all bugs supplied in
add_comment_to_all, not just checking for error of the last bug.
2010-06-24 Thursday 16:24 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.81): bug 1466 : Applying
Michal's patch again. It seems that tag integration was broken in
Bugzilla 3.4 without his patch.
2010-06-24 Thursday 16:18 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.80): bug 1466: Reverted
r1.79 by Michal because it breaks Bugzilla 3.4.5
2010-06-24 Thursday 16:07 mkgnu
* doc/AUTHORS (1.35, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19): bug 1466:
Mention Michal Kašpar <[email protected]> in the list of
contributors.
2010-06-24 Thursday 16:05 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.79): bug 1466: Applying
a patch by Michal Kašpar <[email protected]> that corrects
integration_add_tag which apparrently was broken in the rework
for supporting status changes for Bugzilla 3.6.
2010-06-09 Wednesday 22:01 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.78): bug 1466: Also
allow using Bugzilla 3.6 when checking for version numbers.
2010-06-08 Tuesday 05:51 mkgnu
* doc/manual/content/tools.sgml (1.34, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19): bug 66: Clarified in the documentation
that the scmbug_install_glue tool should be executed only once
per SCM repository, and that it will automatically establish
integration with all bugs in the bug-tracker for that repository.
2010-06-03 Thursday 19:01 mkgnu
* configure.in (1.334), packaging/debian/changelog (1.139) (utags:
SCMBUG_RELEASE_0-26-18): bug 1476: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-18
2010-06-03 Thursday 18:59 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.77,
SCMBUG_RELEASE_0-26-18): bug 1466: Applying a patch from Yavor
Nikolov <[email protected]> that changes the support for
status resolution for Bugzilla 3.2 and 3.4, one of the changes
beeing the added support for Bugzilla 3.6.
2010-06-03 Thursday 18:51 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.76): bug 1466 : Applying
a patch by Yavor Nikolov <[email protected]> that supports
adding comments in Bugzilla 3.6 and catching possible exceptions.
Modified the patch to be more descriptive in its error messages.
2010-06-03 Thursday 18:44 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.75): bug 1473: Syntax,
and type-o correction when supplying the product name that
resulted in the daemon failing to start.
2010-06-03 Thursday 18:19 mkgnu
* src/lib/product/Daemon/: Bugzilla.pm.in (1.74), Integration.pm.in
(1.40, SCMBUG_RELEASE_0-26-18): bug 1473: Merging a patch
submitted by Yavor Nikolov <[email protected]> about
checking if adding a user existis before they can add a tag. The
patch has been modified to NOT check if the user is also able to
administer products. We *want* users to be able to add private
tags as versions in Bugzilla.
If this should be a configurable policy, it should be developed
under another bug.
2010-06-03 Thursday 17:58 mkgnu
* packaging/windows/prepare.sh.in (1.16, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18): bug 1475 : When
packaging for windows, remove the entire DRIVE directory, to
ensure that if there were errors in uninstalling files duplicate
files won't go into other packages.
2010-06-03 Thursday 17:55 mkgnu
* Makefile.in (1.151, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18): bug 1475: Use
the @DEVEL_CONFIG_DAEMON_SERVICE_DEPLOYED@ variable for removing
the rc script
2010-06-03 Thursday 17:38 mkgnu
* packaging/windows/prepare.sh.in (1.15): bug 1474: Do not use
fakeroot anymore when packaging for Windows, because running
fakeroot within fakeroot now reports a nested error.
2010-06-03 Thursday 17:04 mkgnu
* configure.in (1.333): bug 1474: Require zip as a tool needed to
release, and also report its version number
2010-04-14 Wednesday 20:17 mkgnu
* packaging/debian/init.d.in (1.13, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18): bug 644: Applied
a patch by Yavor Nikolov <[email protected]> that always
removes the daemon pid file on Debian systems. This corrects the
problem of the daemon failing to stop and to restart properly.
2010-03-20 Saturday 18:15 mkgnu
* doc/AUTHORS (1.34, SCMBUG_RELEASE_0-26-18),
src/lib/product/Daemon/Bugzilla.pm.in (1.73): bug 1465: Applied a
patch by Yavor Nikolov <[email protected]> that corrects a
bug in committing changes against private bugs in Bugzilla 3.2.x
and 3.4.x.
2010-03-08 Monday 15:50 mkgnu
* configure.in (1.332), doc/AUTHORS (1.33): bug 1462: Change the
primary email of the maintainer of this project.
2010-03-08 Monday 01:03 mkgnu
* doc/manual/content/bugtracking-backends.sgml (1.25,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17): bug 66: Document the fact that Bugzilla
3.4.5 was been successfully tested to work.
2010-03-08 Monday 01:02 mkgnu
* configure.in (1.331), packaging/debian/changelog (1.138) (utags:
SCMBUG_RELEASE_0-26-17): bug 1462: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-17
2010-03-08 Monday 00:52 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.72,
SCMBUG_RELEASE_0-26-17): bug 1422: Reorganized the parts of the
source code that referred to Bugzilla versions prior to 3.x so
that extending future Bugzilla integration code will not require
continuously specifying which particular version of 3.x the
integration works for if it works for all of them.
2010-03-08 Monday 00:32 mkgnu
* src/lib/product/Daemon/Bugzilla.pm.in (1.71): bug 1422:
Integrated more of the work of Elias Balasis in supporting
Bugzilla 3.4, such as the ability to change the status resolution
of bugs.
2010-03-07 Sunday 23:45 mkgnu
* packaging/debian/init.d.in (1.12),
src/daemon/etc/daemon.conf.template.in (1.33,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18),
src/lib/product/Daemon/Daemon.pm.in (1.99,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18),
src/scripts/rc.in (1.11, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18),
src/tests/product.test/config/testers/mkgnu/daemon.conf.bugzilla.in
(1.17, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18),
src/tests/product.test/config/testers/mkgnu/daemon.conf.mantis.in
(1.16, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18),
src/tests/product.test/config/testers/mkgnu/daemon.conf.requesttracker.in
(1.14, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18) (utags: SCMBUG_RELEASE_0-26-17): bug 279:
Added the capability of specifying in the daemon.conf file the
path to the pidfile. Also extended the startup scripts to read
the daemon.conf file for retrieving the pidfile. This will allow
running multiple daemons with different configurations.
2009-12-20 Sunday 07:40 mkgnu
* doc/manual/content/bugtracking-backends.sgml (1.24): bug 66:
Reflect in the documentation the fact that Bugzilla 3.2 is
supported.
2009-10-28 Wednesday 16:35 mkgnu
* doc/AUTHORS (1.32, SCMBUG_RELEASE_0-26-17): bug 1246: Give credit
to Elias Balasis <[email protected]> and Uditha Atukorala
<[email protected]> since their work helped finish the patch for
Bugzilla 3.2
2009-10-26 Monday 20:02 mkgnu
* Makefile.in (1.150, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16): bug 1193: Do not remove the templates of
the webreports when cleaning the sources
2009-10-26 Monday 19:51 mkgnu
* configure.in (1.330), packaging/debian/changelog (1.137) (utags:
SCMBUG_RELEASE_0-26-16): bug 1436: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-16
2009-10-26 Monday 19:47 mkgnu
* doc/manual/content/bugtracking-backends.sgml (1.23),
src/lib/product/Daemon/Bugzilla.pm.in (1.70) (utags:
SCMBUG_RELEASE_0-26-16): bug 1246: Added support for Bugzilla
3.2.x. This does not yet implement the support for changing the
status of a bug.
2009-08-21 Friday 14:56 mkgnu
* Makefile.in (1.149): bug 1193: Correct a defect in the Makefile
when the template files are installed -- supply and ending '/' at
the directory name.
2009-08-21 Friday 14:52 mkgnu
* doc/AUTHORS (1.31), src/lib/product/Daemon/Integration.pm.in
(1.39, SCMBUG_RELEASE_0-26-17) (utags: SCMBUG_RELEASE_0-26-16):
bug 1421: Applied a patch by Petr SmrÄka <[email protected]> that
corrects the way the policy variable
resolution_status_case_sensitive_verification is referred to.
Also correct this wrong referencing everywhere for this variable.
2009-06-30 Tuesday 18:39 mkgnu
* doc/manual/content/resources.sgml (1.30, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17, SCMBUG_RELEASE_0-26-16): bug 1193:
Documented how the Template module can be installed, needed by
the WebReports.
2009-06-30 Tuesday 17:51 mkgnu
* Makefile.in (1.148), src/WebReports/cgi-bin/CustomData.pm.in
(1.2, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/WebReportUtilities.pm.in (1.3,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/affected_files.pl.in (1.9,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16), src/WebReports/cgi-bin/bug_report.pl.in
(1.12, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/bug_report_document.pl.in (1.4,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/bug_report_input_form.pl.in (1.2,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16), src/WebReports/cgi-bin/email_users.pl.in
(1.2, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/affected_files.input.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/affected_files.results.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/bug_report.input.html.tmpl (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/bug_report.results.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/bug_report_doc.input.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/bug_report_doc.results.content.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/bug_report_doc.results.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/email_users.input.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/email_users.results.html.tmpl
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/footer.html.tmpl (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16),
src/WebReports/cgi-bin/templates/header.html.tmpl (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16): bug 1193: Applying a patch by Robert
Hudson <[email protected]> that completely converts all to
WebReport pages to use the Template Toolkit.
2009-06-25 Thursday 13:49 mkgnu
* doc/AUTHORS (1.30), src/lib/product/Daemon/Process.pm.in (1.24,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17, SCMBUG_RELEASE_0-26-16): bug 1370:
Applied a patch by Stuart Auchterlonie <[email protected]>
that allows mappings using mapping_values to be used if
mapping_ldap mappings are not found. Also extended this patch to
allow in a similar manner mappings using mapping_regexes.
2009-05-14 Thursday 17:05 mkgnu
* src/WebReports/: cgi-bin/affected_files.pl.in (1.8),
cgi-bin/bug_report.pl.in (1.11),
cgi-bin/bug_report_document.pl.in (1.3), html/index.html (1.2,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16): bug 1118: Applied a patch by Robert
Hudson <[email protected]> that changes the Web Reports to use a
POST action instead of a GET. Also, the default page now shows
the input form rather than an error when no parameters are
passed.
A bug was found where if there were a lot of data passed between
each Web Report page Internet Explorer failed (Firefox worked).
This was due to the use of GET with the action (the default).
Changing all form actions to POST solves the problem.
2009-05-12 Tuesday 17:22 mkgnu
* Makefile.in (1.147, SCMBUG_RELEASE_0-26-15): bug 1214: This is
not working out. DEbian packaging fails.
2009-05-12 Tuesday 17:17 mkgnu
* Makefile.in (1.146): bug 1214: Call distclean_most in the
appropriate Makefile rule -- when we are building the Debian
package
2009-05-12 Tuesday 16:57 mkgnu
* Makefile.in (1.145): bug 1214: Try to cleanup most autogenerated
files that were created by configure before packaging for Debian
2009-05-11 Monday 07:51 mkgnu
* Makefile.in (1.144): bug 1214: Remove an unnecessary clause that
is no longer invoked
2009-05-11 Monday 07:50 mkgnu
* packaging/debian/control.in (1.18, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17, SCMBUG_RELEASE_0-26-16,
SCMBUG_RELEASE_0-26-15): bug 1214: Properly separate between
Build-Depends and Build-Depends-Indep
2009-05-11 Monday 01:41 mkgnu
* packaging/debian/control.in (1.17): bug 1214: Use a higher
standards-version so lintian, on newer versions of Debian I
presume, does not complain. It still complains on my version.
2009-05-11 Monday 01:23 mkgnu
* doc/manpages/Makefile.in (1.7, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17, SCMBUG_RELEASE_0-26-16,
SCMBUG_RELEASE_0-26-15): bug 1214: Remove the manpages that were
generated correctly -- they have a .pl extension now
2009-05-11 Monday 01:20 mkgnu
* configure.in (1.329), packaging/debian/changelog (1.136) (utags:
SCMBUG_RELEASE_0-26-15): bug 1364: Increased version number for
upcoming release SCMBUG_RELEASE_0-26-15
2009-05-11 Monday 01:13 mkgnu
* Makefile.in (1.143): bug 1118: Corrected a type-o error that
resulted in not deleting the autogenerated WebReportUtilities.pm
file
2009-05-10 Sunday 21:32 mkgnu
* packaging/debian/changelog (1.135, SCMBUG_RELEASE_0-26-14): bug
1214: added a 'closes bug#' entry in the Debian changelog entry,
as suggested for packaging
2009-05-10 Sunday 21:27 mkgnu
* configure.in (1.328, SCMBUG_RELEASE_0-26-14): bug 1214: Increased
the verbosity of the Debian packages, as needed for packaging.
2009-05-10 Sunday 20:54 mkgnu
* configure.in (1.327), packaging/debian/changelog (1.134): bug
1321:Increased version number for upcoming release
SCMBUG_RELEASE_0-26-14.
2009-05-10 Sunday 20:51 mkgnu
* doc/manual/content/scm-frontends.sgml (1.26,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14): bug 1360: Documented the fact that
Subversion 1.6.1 has been tested with the testsuite.
2009-05-10 Sunday 20:50 mkgnu
* src/: lib/product/Glue/Subversion.pm.in (1.42), tests/test_svn.sh
(1.10), tests/product.test/config/testers/mkgnu/scm.inc (1.12),
tests/product.test/scm_svn/status_assigned2.sh (1.2) (utags:
SCMBUG_RELEASE_0-26-14, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-22): bug 1360: Added support in the
Subversion backend to accept Subversion 1.6.x. Corrected the
issue with the testsuite where failure of the status resolution
testcases, in bug-tracking backends where resolution change is
not supported, was causing subsequent failures of the Subversion
tagging testcases.
2009-05-10 Sunday 06:10 mkgnu
* src/: glue/etc/product/glue.conf.template.in (1.53,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
glue/templates/scm_cvs/latest/verifymsg.in (1.2,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), lib/product/Activity.pm.in (1.25,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), lib/product/Error.pm.in (1.52,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), lib/product/Glue/CVS.pm.in (1.45,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), lib/product/Glue/Glue.pm.in (1.65,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), tests/test_cvs.sh (1.6,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), tests/test_svn.sh (1.9),
tests/product.test/scm_cvs/set_auto.sh (1.3,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14): bug 821: Extended the support for
automatically mapping directory names to product names to CVS
1.12.x. This required extending verifymsg.in to pass the
directory name and file name of all files.
2009-05-10 Sunday 04:34 mkgnu
* src/tests/product.test/scm_cvs/: commit_file_fail.sh (1.2),
install_glue_no_hook_overwrite.sh.in (1.2) (utags:
SCMBUG_RELEASE_0-26-14, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-22): bug 821: Move the statement that
refreshes the repository checkout right at the end of the script
that fails to commit a file
2009-04-08 Wednesday 00:40 mkgnu
* doc/manual/content/features.sgml (1.48, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17, SCMBUG_RELEASE_0-26-16,
SCMBUG_RELEASE_0-26-15, SCMBUG_RELEASE_0-26-14),
src/glue/etc/product/glue.conf.template.in (1.52),
src/lib/product/Activity.pm.in (1.24): bug 821: Further
decumentation clarifications and cleanups to product name
mappings.
2009-04-08 Wednesday 00:34 mkgnu
* doc/manual/content/features.sgml (1.47): bug 821: Documented the
mapping of directory names to product names
2009-04-08 Wednesday 00:12 mkgnu
* src/: lib/product/Activity.pm.in (1.23), lib/product/Error.pm.in
(1.51), lib/product/Glue/CVS.pm.in (1.44), tests/test_cvs.sh
(1.5), tests/product.test/scm_cvs/auto_commit_file.sh.in (1.3,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
tests/product.test/scm_cvs/auto_commit_file2.sh.in (1.3,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14): bug 821: Moved the handling of the
special case '(.*)' where it belongs: in Activity.pm.in
2009-04-07 Tuesday 22:37 mkgnu
* src/glue/templates/scm_cvs/up_to_1_11/: checkoutlist.in (1.1),
commitinfo.in (1.1), loginfo.in (1.1), rcsinfo.in (1.1),
taginfo.in (1.1), verifymsg.in (1.1) (utags:
SCMBUG_RELEASE_0-26-14, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-22): bug 1104: Forgot to rename
cvs/up_to_1_11, and also to remove the old templates
2009-04-07 Tuesday 22:31 mkgnu
* Makefile.in (1.142, SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest/checkoutlist.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest/commitinfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest/loginfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest/rcsinfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest/taginfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest/verifymsg.in (1.1),
src/glue/templates/scm_cvs/latest_cvsnt/checkoutlist.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest_cvsnt/commitinfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest_cvsnt/loginfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest_cvsnt/rcsinfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest_cvsnt/taginfo.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_cvs/latest_cvsnt/verifymsg.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_git/latest/commit-msg.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_git/latest/post-commit.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_svn/latest/post-commit.bat.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_svn/latest/post-commit.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_svn/latest/pre-commit.bat.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/glue/templates/scm_svn/latest/pre-commit.in (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/lib/product/Tools/Glue_Installer.pm.in (1.60,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), configure.in (1.326): bug 1104: Rename
the templates directories of each scm system to use the "scm_"
system prefix, too
2009-04-07 Tuesday 22:14 mkgnu
* src/: glue/etc/product/glue.conf.template.in (1.51),
glue/templates/cvs/latest/taginfo.in (1.3,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), lib/product/Activity.pm.in (1.22),
lib/product/Error.pm.in (1.50), lib/product/Glue/CVS.pm.in
(1.43), lib/product/Glue/Glue.pm.in (1.64),
lib/product/Tools/Glue_Installer.pm.in (1.59), tests/test_cvs.sh
(1.4), tests/test_scm_common.inc.in (1.3, SCMBUG_RELEASE_0-26-22,
SCMBUG_RELEASE_0-26-21, SCMBUG_RELEASE_0-26-20,
SCMBUG_RELEASE_0-26-19, SCMBUG_RELEASE_0-26-18,
SCMBUG_RELEASE_0-26-17, SCMBUG_RELEASE_0-26-16,
SCMBUG_RELEASE_0-26-15, SCMBUG_RELEASE_0-26-14),
tests/test_svn.sh (1.8),
tests/product.test/scm_cvs/auto_commit_file.sh.in (1.2),
tests/product.test/scm_cvs/auto_commit_file2.sh.in (1.2),
tests/product.test/scm_cvs/set_auto.sh (1.2): bug 821: Made
considerable progress in supporting a mapping of directory names
to product names. The product_name_definition policy essentially
runs now in a SINGLE mode. No 'auto', or 'manual', (or the
proposed 'mapped'). It uses regular expressions to define the
product name, including the special regular expression '(.*)' =>
'ProductName' for the manual mapping.
2009-04-07 Tuesday 17:04 mkgnu
* src/daemon/etc/WebReports.conf.template.in (1.5,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14): bug 1350: Use global variables from
./configure for some configuration variables of the
WebReports.conf template file.
2009-04-07 Tuesday 16:57 mkgnu
* src/: WebReports/cgi-bin/affected_files.pl.in (1.7,
SCMBUG_RELEASE_0-26-15, SCMBUG_RELEASE_0-26-14),
daemon/etc/WebReports.conf.template.in (1.4): bug 1226: Applied a
patch by Robert Hudson <[email protected]> that implements WebSVN
support for the Web Reports for Affected files. This now gives
the user the chance to select WebSVN, ViewVC or No links from
their file lists.
NOTE: This does require that WebSVN has MultiView enabled as per
it's manual.
2009-03-23 Monday 04:08 mkgnu
* doc/manual/content/scm-frontends.sgml (1.25): bug 66: Document
the fact that Subversion 1.5.1 has been verified to work.
2009-03-23 Monday 03:59 mkgnu
* configure.in (1.325), src/tests/Makefile.in (1.24,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14), src/tests/test_scm_common.inc.in (1.2),
src/tests/product.test/scm_cvs/add_directory.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_long_prefix_directory.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_short_prefix_directory.sh
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_tag.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_tag_invalid_name.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_tag_invalid_name_deleted_later.sh
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_tag_invalid_name_renamed_later.sh
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/add_tag_invalid_product.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/auto_commit_file.sh.in (1.1),
src/tests/product.test/scm_cvs/auto_commit_file2.sh.in (1.1),
src/tests/product.test/scm_cvs/checkout_head.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/checkout_repository.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/commit_branch.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/commit_file.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/commit_file_closed_bug.sh (1.1,
SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/commit_file_commas_whitespaces.sh
(1.1, SCMBUG_RELEASE_0-26-22, SCMBUG_RELEASE_0-26-21,
SCMBUG_RELEASE_0-26-20, SCMBUG_RELEASE_0-26-19,
SCMBUG_RELEASE_0-26-18, SCMBUG_RELEASE_0-26-17,
SCMBUG_RELEASE_0-26-16, SCMBUG_RELEASE_0-26-15,
SCMBUG_RELEASE_0-26-14),
src/tests/product.test/scm_cvs/commit_file_fail.sh (1.1),