forked from MetricsGrimoire/CVSAnalY
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog.pre-git
1144 lines (698 loc) · 31.2 KB
/
ChangeLog.pre-git
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
2009-05-14 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Add missing self
2009-05-14 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Proccess finished jobs every 100 jobs to make sure there are jobs
in the done queue and removing the timeout the first time
job_pool.get_next_done is called to make sure we always get a
job.
2009-04-30 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Jobs.py:
* pycvsanaly2/extensions/Metrics.py:
Use cat instead of checkout/update to get the contents of files in
metrics extension. Multiple cat command can run in parallel which
improves performance quite a lot.
2009-04-30 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/main.py:
Fix --version command line option.
2009-04-29 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Paths in different branches are now considered as different
files. That was obvious with SVN because branches are directories,
but in CVS and Git exactly the same path can be in different
branches.
2009-04-29 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Do not save caches to disk on every database commit since it's a
very heavy operation, do it only once at the end of the parsing
process.
2009-04-17 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/ExtensionsManager.py:
Import ExtensionUnknownError exception.
2009-04-16 Carlos Garcia Campos <[email protected]>
* NEWS:
* help/doc/version.texi:
* pycvsanaly2/_config.py:
Release 2.0.0
2009-04-16 Carlos Garcia Campos <[email protected]>
* TODO:
Updated.
2009-04-16 Carlos Garcia Campos <[email protected]>
* MANIFEST.in:
Add missing files.
2009-04-16 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
Add configuration file Chapter.
2009-03-30 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
Update documentation.
2009-03-30 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
* help/doc/figs/db_schema.png:
Add an image of the database schema to the documentation.
2009-03-30 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
Update documentation.
2009-03-29 Carlos Garcia Campos <[email protected]>
* NEWS:
* pycvsanaly2/_config.py:
Update for release 1.99.91 (2.0.0-beta2).
2009-03-29 Carlos Garcia Campos <[email protected]>
* README:
Add Santiago Dueñas to the list of contributors.
2009-03-29 Carlos Garcia Campos <[email protected]>
* setup.py:
* pycvsanaly2/main.py:
* pycvsanaly2/_config.py:
Move project metadata (PACKAGE, VERSION, etc.) to a common module
so that it can be used by both main.py and setup.py
2009-03-29 Carlos Garcia Campos <[email protected]>
* setup.py:
Bump RepositoryHandler requirement to 0.3.
2009-03-28 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Optimize the metrics query by removing an unneeded join.
2009-03-28 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/FilePaths.py:
Cache the files table, and get only the new names of the renamed
files for the given revision. It improves te performance with
large tables.
2009-03-28 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/main.py:
Check ASAP whether the uri provided by the user points to a valid
svn repository.
2009-03-27 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Database.py:
Optimize the action_files view by removing an unneeded join.
2009-03-26 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/FileTypes.py:
Use 'not exists' instead of 'not in' which gives little better
performance.
2009-03-26 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/FilePaths.py:
Split the file_links query into two different queries which
drastically improves the performance.
2009-03-25 Carlos Garcia Campos <[email protected]>
* TODO:
Updated.
2009-03-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/CVSParser.py:
* pycvsanaly2/Cache.py: Removed
* pycvsanaly2/extensions/CommitsLOC.py:
Rework the CommitsLOC extension. For svn and git repos, the lines
added/removed per commit can be get from the log, so we can just
parse again to extract such data. It's much faster and reliable.
2009-03-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Ignore what git clone command sends to stderr.
2009-03-24 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/file_types.py:
Add more types
2009-03-24 Carlos Garcia Campos <[email protected]>
* setup.py:
Add pkg-config support to setup.py script and use it to check
whether the required repository handler version is installed.
2009-03-24 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
Document the new -n, --no-parse command line option
2009-03-23 Carlos Garcia Campos <[email protected]>
* help/cvsanaly2.1:
* pycvsanaly2/Config.py:
* pycvsanaly2/main.py:
Add a command line option (-n, --no-parse) to be able to skip the
parsing process when used in conjunction with --extensions.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Return from __insert_many when there's nothing to insert.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/FileTypes.py:
Do not run executemany if we don't have any data to insert.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/main.py:
* pycvsanaly2/extensions/FileTypes.py:
* pycvsanaly2/extensions/CommitsLOC.py:
* pycvsanaly2/extensions/Metrics.py:
Use our own git clone command in Metrics to take advantage of the
--reference flag since we already have the repository cloned. It
makes the clone command really fast. It required some changes in
other extensions because we need to provide the local path instead of
the remote uri.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Add git support in Metrics extension.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Remove the tempdir used in Metrics when the extension is aborted.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/ExtensionsManager.py:
Raise InvalidExtension only when a ExtensionUnknownError has been
raised.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Fix incremental stuff in Metrics extension and update the contents
of the table for the metrics that failed on previous executions.
2009-03-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
* pycvsanaly2/DBTempLog.py:
* pycvsanaly2/utils.py:
Add support to load/save DBContentHandler caches from/to a disk
cache. Implement incremental approach in DBContentHandler.
2009-03-17 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBTempLog.py:
Initialize _need_clear before creating the temp table.
2009-03-11 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Command.py:
* pycvsanaly2/extensions/Metrics.py:
Update Command from misc and do not use run_sync() in Metrics
since it's now deprecated.
2009-03-11 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Use RepositoryHandler exceptions instead of Command exceptions
when running commands through RepositoryHandler.
2009-03-11 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/__init__.py:
Fix a typo.
2009-03-11 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/ExtensionsManager.py:
* pycvsanaly2/extensions/__init__.py:
Do not use Exception message attribute since it has been
deprecated as of python 2.6.
2009-03-11 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
Update documentation
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Instead of skipping files when something fails, we now store it in
the database setting to -1 the metric values that failed. So, from
now on:
- Positive values: metric was successfully calculated
- Null values: metric is not supported for the file type
- -1: metric is supported but failed
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Fix checkouts and updates that I broke in a previous commit.
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Database.py:
Do not use Exception message attribute since it has been
deprecated as of python 2.6 and it's not actually useful for us.
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Try again up to 3 times when a checkout/update fails, just in case
it's short temporary network problem.
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Execute all commands with the C locale.
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBTempLog.py:
Add a flag to make sure we don't try to drop the temp table more
than once.
2009-03-10 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Handle exceptions when running sloccount to create the FileMetrics
object, skipping the file if something went wrong.
2009-03-05 Carlos Garcia Campos <[email protected]>
* help/doc/cvsanaly.texi:
Start documenting the database design.
2009-03-05 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Database.py:
Remove file_id and commit_id from the promary key of the actions
table.
2009-03-05 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/main.py:
Remove trailing '/' of the given uri.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Do not find programs in PATH more than once.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Handle Command exceptions due to problems when running commands.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Command.py:
Updated from misc. Several error handling improvements.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Skip files that are out of the repository root.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Command.py:
* pycvsanaly2/extensions/Metrics.py:
Add Commands module from misc, and use it in Metrics extension
instead of the commands module.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBProxyContentHandler.py:
Add debug messages to ProxyContentHandler.
2009-03-04 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/main.py:
Remove unneeded import.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Fix infinite loop when a path has been renamed several times to
the same name.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Config.py:
* pycvsanaly2/utils.py:
Use a config directory in the user home directory instead of a
file. It'll be used to store the some caches. Rename the config
file under /etc from cvsanaly to cvsanaly2.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Add debug messages when skipping files.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/file_types.py:
Add RELEASING and Doxyfile as devel-doc files.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Raise an exception when the metrics extension is not supported for
the given repository type.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Use '%' instead of ',' to append arguments to a format string.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/main.py:
* pycvsanaly2/CVSParser.py:
* pycvsanaly2/SVNParser.py:
* pycvsanaly2/Parser.py:
* pycvsanaly2/extensions/CommitsLOC.py:
* pycvsanaly2/extensions/FileTypes.py:
* pycvsanaly2/extensions/Metrics.py:
Add support for analyzing subsets of repositories as individual
respositories. It's useful for repositories containing several
'modules' each one with its own tags and branches.
2009-03-03 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Fix a crash with repositories where paths don't start with '/'.
2009-02-26 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Do not use the current commit_id for links of old paths, but the
'from' commit_id.
2009-02-26 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Remove the leading '/' when inserting into files cache if the
original path doesn't start with '/' (cvs).
2009-02-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Move to deletes caches the children of a deleted directory.
2009-02-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Fix Metrics queries.
2009-02-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/Database.py:
* pycvsanaly2/extensions/FileTypes.py:
Use a view to get the files associated to actions independently of
the action type.
2009-02-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/FileTypes.py:
Fix FileTypes query and remove field commit_id from the table
since it doesn't really make sense.
2009-02-25 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Make sure we always keep in sync the file cache with the
database. Add a deletes cache to store files that have been
deleted or replaced but might be still referenced.
2009-02-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBTempLog.py:
Split the temp_log query into several queries to save memory.
2009-02-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBContentHandler.py:
Add tests for DBContentHandler.
2009-02-20 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/DBProxyContentHandler.py:
* pycvsanaly2/DBTempLog.py:
Limit the maximun size of the queues used in ProxyContentHandler
and TempLog. It saves a lot of memory. Hopefully OOM issues are
fixed now.
2009-02-20 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/AsyncQueue.py:
Add optional queue max size, bloking on put() when the queue reaches
such a max size.
2009-02-18 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/SVNParser.py:
Use the number of lines given by the log for the commit message
instead of guessing it. It fixes (hopefully) all the parsing
warnings in SVN.
2009-02-18 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/SVNParser.py:
Ignore invalid commits. In asterisk we have found commits like
this:
r176840 | (no author) | (no date) | 1 line
without any changed path. I don't know what it is, but it doesn't
seem to be useful at all.
2009-02-16 Carlos Garcia Campos <[email protected]>
* setup.py:
Install man page.
2009-02-16 Carlos Garcia Campos <[email protected]>
* TODO:
Updated.
2009-02-13 Carlos Garcia Campos <[email protected]>
* pycvsanaly2/extensions/Metrics.py:
Raise ExtensionRunError exception instead of showing an error
message when the repository creation fails, since the extension
can't continue without a repository object.
2009-02-04 Carlos Garcia Campos <[email protected]>
* NEWS:
Update for release 1.99.90 (2.0.0-beta1).
2009-02-04 Carlos Garcia Campos <[email protected]>
* README:
Updated
2009-02-04 Carlos Garcia Campos <[email protected]>
* AUTHORS:
* setup.py:
* TODO:
* MANIFEST.in:
* pycvsanaly2/*:
* db/*
Merge cvsanaly2 branch.
2009-02-04 Carlos Garcia Campos <[email protected]>
* setup.py:
* NEWS:
Update for release 1.1.0
2007-11-24 Israel Herraiz <[email protected]>
* pycvsanaly/repository.py:
When checking the format of a logfile (CVS or SVN), CVS was
checked first. In some cases (when a SVN was imported from a CVS
repository), a SVN log file may contain CVS-like strings, being
identified then as it would be CVS.
This happens for instance with the logfile obtained from the SVN
repository of Evolution, that was imported from a CVS repository.
So now the SVN log file format is checked before the CVS, because
it is unlikely that a CVS log file may contain SVN-like strings.
2007-09-07 Israel Herraiz <[email protected]>
* pycvsanaly/repository.py:
The repopath value in the files and log tables is now correctly
filled for SVN repositories.
2007-08-29 Israel Herraiz <[email protected]>
* README:
Wrong email address
2007-06-29 Carlos Garcia Campos <[email protected]>
* pycvsanaly/main.py:
Add missing ,
2007-06-05 Carlos Garcia Campos <[email protected]>
* pycvsanaly/repository.py:
* pycvsanaly/main.py:
Add an option --module-level to specify which directory level should
be considered as a module by cvsanaly.
2007-06-06 Israel Herraiz <[email protected]>
* pycvsanaly/commit.py:
* pycvsanaly/repository.py:
* pycvsanaly/tables.py:
* pycvsanaly/plugins/graphs/intermediate_tables.py:
* pycvsanaly/plugins/graphs/tables_skeleton.py:
"state" field replaced by a bool field called "removed", which is
True if the file has been removed in that revision and False
otherwise. The "inAttic" field (removed some revisions ago) was
used by the graphs plugin, but was not longer present in the
database because it was replaced by "state". That plugin has been
updated to use the new "removed" plugin. All the plugins have been
tested to work with this new change.
2007-06-05 Carlos Garcia Campos <[email protected]>
* pycvsanaly/repository.py:
* pycvsanaly/main.py:
Review command line options. Old options have been kept for backward
compatibility, but they are deprecated and not shown in usage message.
cvsanaly usage has changed, take a look at cvsanaly --help. Analyze
svn repositories by directly using the repo url is now supported.
Fixes bugs #284 and #288.
2007-06-05 Carlos Garcia Campos <[email protected]>
* setup.py:
Install manpage under $prefix instead of /usr
2007-05-10 Israel Herraiz <[email protected]>
* pycvsanaly/commit.py:
* pycvsanaly/files.py:
* pycvsanaly/main.py:
* pycvsanaly/repository.py:
* pycvsanaly/tables.py:
* setup.py:
Fixing bug #268. Some information in the database was incorrect.
2007-04-23 Israel Herraiz <[email protected]>
* setup.py:
* cvsanaly.1:
* MANIFEST.in:
Added installation of the man page using Python distutils. A little
hack in the setup.py file was needed.
2007-04-23 Carlos Garcia Campos <[email protected]>
* pycvsanaly/repository.py:
* pycvsanaly/main.py:
Create repository objects based on logfile instead of checkout dir
when a logfile is provided. Fixes bug #247.
2007-04-20 Israel Herraiz <[email protected]>
* debian/changelog:
Fixed version number of Debian package
2007-04-18 Carlos Garcia Campos <[email protected]>
* NEWS:
* README:
Release 1.0.1
2007-04-18 Carlos Garcia Campos <[email protected]>
* pycvsanaly/main.py:
Allow running more than one plugin at the same cvsanaly invocation.
2007-04-18 Carlos Garcia Campos <[email protected]>
* pycvsanaly/main.py:
Create and fill database when it doesn't exists before running a
plugin. Fixes bug #256.
2007-04-18 Israel Herraiz <[email protected]>
* debian/control:
Added dependency cvs | subversion to the Debian package
2007-04-18 Carlos Garcia Campos <[email protected]>
* pycvsanaly/plugins/graphs/__init__.py:
Check whether ploticus and gnuplot are installed before using them. If
one of them is not present the graph that requires it is skipped.
Fixes bug #259.
2007-04-17 Carlos Garcia Campos <[email protected]>
* pycvsanaly/plugins/generations/generations.py:
Create graphs in generations plugin.
2007-04-17 Carlos Garcia Campos <[email protected]>
* setup.py:
* pycvsanaly/plugins/generations/generations.py:
* pycvsanaly/plugins/generations/__init__.py:
Add generations plugin.
2007-04-17 Carlos Garcia Campos <[email protected]>
* pycvsanaly/repository.py:
Make cvs work with absolute paths.
2007-04-15 Carlos Garcia Campos <[email protected]>
* pycvsanaly/plugins/graphs/__init__.py:
* pycvsanaly/plugins/graphs/graph_evolution.py:
Add evolution graphs.
2007-04-13 Carlos Garcia Campos <[email protected]>
* pycvsanaly/plugins/graphs/__init__.py:
* pycvsanaly/plugins/__init__.py:
* pycvsanaly/main.py:
Add support for plugin specific command line options. Add --output-dir
option in graphs plugin. Fixes bug #257.
2007-04-12 Carlos Garcia Campos <[email protected]>
* pycvsanaly/plugins/graphs/__init__.py:
s/Graphs/graphs. Fixes bug #262.
2007-04-12 Carlos Garcia Campos <[email protected]>
* setup.py:
* pycvsanaly/main.py:
Add --version command line option. Fix version number. Fixes bug #261.
2007-04-12 Carlos Garcia Campos <[email protected]>
* setup.py:
* pycvsanaly/plugins/graphs/__init__.py:
* pycvsanaly/plugins/__init__.py:
* pycvsanaly/main.py:
Move cvsplugins to pycvsanaly/plugins. Rework plugin system. Fixes
bugs #232 and #240.
2007-04-11 Carlos Garcia Campos <[email protected]>
* pycvsanaly/main.py:
Do not use an absolute path for cvsanaly in usage message.
2007-04-11 Carlos Garcia Campos <[email protected]>
* cvsplugins/graphs/graph_gini.py:
Do not use an absolute path for running polygini.pl. Fixes bug #255.
2007-04-11 Carlos Garcia Campos <[email protected]>
* pycvsanaly/FindProgram.py:
* pycvsanaly/repository.py:
* pycvsanaly/main.py:
Look for binaries in PATH instead of using /usr/bin. Path command line
option has been removed since it's no longer needed. Fixes bug #228.
2007-04-02 Israel Herraiz <[email protected]>
* setup.py: Added polygini.pl as a dependency for all the packages
(source, debian, etc)
* pycvsanaly/main.py: Changing version number, as some changes have
been applied since release 1.0
2007-03-28 Israel Herraiz <[email protected]>
* README: Added ploticus as optional dependency in the README file
* debian/control: Added ploticus as suggested package to be installed
along with cvsanaly (Debian package version)
2007-03-22 Israel Herraiz <[email protected]>
* Release 1.0
2007-01-24 Alvaro Navarro <[email protected]>
* graph_utils.py: file removed, no longer needed.
* repository.py: removed initial & final slash in dir names.
* main.py: modified usage message with default values.
* cvsplugin/graphs/graph_activity.py: new graphs added
* cvsplugin/graphs/graph_heatmaps.py: new graphs added
* cvsplugin/graphs/graph_inequality.py: new graphs added
* cvsplugin/graphs/intermediate_tables.py: first_commit function
* cvsplugin/gluetheos: no needed.
2007-01-23 Alvaro Navarro <[email protected]>
* pycvsanaly/repository.py:
* cvsplugins/graphs/graph_gini.py:
* cvsplugins/graphs/graph_global.py:
* cvsplugins/graphs/graph_pie.py:
* cvsplugins/graphs/tables_skeleton.py:
New grahps added and new way to store directories
replace '/' with '_' to avoid problems in graphs
creations.
rght, left and father_id fields removed from modules
table
2007-01-23 Alvaro del Castillo <[email protected]>
* pycvsanaly/repository.py
* pycvsanaly/main.py
Added --repodir option for indicating the repository dir.
Auto detected the kind of repository.
2007-01-16 Alvaro Navarro <[email protected]>
* main.py:
* repository:
* plugins.py:
* connection:
New plugins module. Now cvsanaly only extract information
from cvs/svn into stdout.
2006-12-08 Jesus M. Gonzalez-Barahona <[email protected]>
* generations.py: Simplified and more generic code. Now
periods of an arbitrary number of days are supported,
and periods specified as a number of slots,
in addition to quarters. Top fraction of commiters and
arbitrary fraction of commits are also supported.
Small fixes here and there. Normalized (by total
number of commits per period) matrices are also produced.
2006-12-06 Jesus M. Gonzalez-Barahona <[email protected]>
* generations.py: Simplified and more generic code. Now
instead of quarters, we have periods. A view for
periods of one quarter is currently used, so in the
end we are still working with quartes, but any other
period could now easily be selected, with the proper
view.
2006-12-04 Jesus M. Gonzalez-Barahona <[email protected]>
* main.py:
- New options for generations analysis
- New option for specifying folder for analysis output data
* generations.py: new file for performing generations analysis
2006-12-02 Jesus M. Gonzalez-Barahona <[email protected]>
* main.py:
- New call interface (now options have to be named)
- Messages and interface now should be in sync
* database.py
- Support for empty passwd
2006-10-20 Alvaro Navarro <[email protected]>
* repository.py:
- New way for storing data without having to
waint until the process ends.
- Don't store commiters-module. We can obtain
it later with a simple query.
* commit.py: commit2sql function no longer needed.
* file.py: file2sql function no longer needed.
* directories.py: new implementation with absolute path.
* main.py: new flag in order to indicate type of repository.
2006-07-11 Alvaro Navarro <[email protected]>
* repository.py: fixed bug in files table
2006-06-23 Alvaro Navarro <[email protected]>
* intermediate.py: intermediate tables algorithm
* modrequest.py: new file added
* cvsanaly-web: web engine added
2006-06-20 Alvaro Navarro <[email protected]>
* new version from scratch
* INSTALL: new file added
* pycvsanaly: renamed directory
* wizard.py: removed automatic creating of database
* file.py: new class that stores file info
* commiter.py: new class that stores commiters
* commit.py: new class that stores commit log
* directory.py: new class that stores directories (now modules)
* database.py: SQL wrapper
* connection.py: framework in order to create connections
* tables.py: dictionary format for tables
2005-09-15 Alvaro Navarro <[email protected]>
* db.py, cvsanal_log, cvsanal_file_log2sql: fixed bug. modules with
blank space crashed mysql_server.