-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog.pre-git
632 lines (387 loc) · 16.6 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
2009-04-30 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
* tests/cvs.py:
Make cat() in CVS backend work even for deleted paths.
2009-04-28 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Make get_repository_from_path() work even for deleted paths.
2009-03-31 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/watchers.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
* tests/__init__.py:
* tests/cvs.py:
* tests/git.py:
* tests/svn.py:
Add cat method to the API to be able to output the content of any
uri for any given revision. Implement the cat method in cvs, svn
and git backends adding tests for all of them too.
2009-03-29 Carlos Garcia Campos <[email protected]>
* configure.in:
* NEWS:
Update for release 0.3
2009-03-11 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
* repositoryhandler/backends/cvs.py:
Update Command from misc and move code specific of the cvs diff
exception from Command to the CVS backend.
2009-03-11 Carlos Garcia Campos <[email protected]>
* configure.in:
* Makefile.am:
* repositoryhandler.pc.in:
Add pkg-config file.
2009-03-11 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Add exceptions to __all__ list.
2009-03-11 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Add RepositoryCommandError and RepositoryCommandRunningError
exceptions to wrap Command exceptions.
2009-03-10 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Do not use git- commands since it's deprecated and even not
available in recent git versions.
2009-03-10 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
* tests/git.py:
Implement the special case module = '.' in the git backend to be
able to clone the whole repository.
2009-03-10 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Run svn checkout and update with the C locale too for the error
messages.
2009-03-04 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Updated from misc. Several error handling improvements.
2009-03-03 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Add missing parameter to get_uri_for_path() in the base class.
2009-03-02 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/svn.py:
Add a new method to get the remote uri corresponding to a local
path where the repository was checked out.
2009-02-21 Carlos Garcia Campos <[email protected]>
* tests/Makefile.am:
Make tests work again.
2009-02-21 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Updated from misc. It fixes an error in previous commit.
2009-02-20 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Update from misc. Standard and error output are not stored in
variables when using callbacks, saving a lot of memory when
running commands with very long outputs such as log or diff.
2009-02-02 Carlos Garcia Campos <[email protected]>
* configure.in:
* AUTHORS:
* NEWS:
* README:
Update for release 0.2
2009-01-27 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Do not append uri to log command when it's a directory, since we
are using it as cwd.
2009-01-02 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Updated from misc.
2008-10-14 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Remove the crappy stuff about branches in svn diff when using a
remote uri.
2008-10-13 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Updated from misc
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/svn.py:
Correctly handle ssl certificate svn error messages providing the
required input to the svn command.
2008-10-07 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/watchers.py:
* repositoryhandler/backends/bzr.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
* tests/__init__.py:
* tests/cvs.py:
* tests/git.py:
* tests/svn.py:
Add blame command support. Based on patch by Miguel Angel Tinte
Garcia.
2008-10-07 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
More detailed git log command.
2008-09-30 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Update from misc.
2008-09-22 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
* tests/svn.py:
Use uri@rev instead of -r rev for checking out in svn backend
since it works better (ie it's possible to download a removed path
to its first revision). Thanks to Luis Cañas!
2008-09-17 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/bzr.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
* tests/cvs.py:
* tests/svn.py:
Add a rlog method to the API to be able to get the log directly
from the repository. Only supported by cvs and svn.
2008-09-16 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
Fix get_last_revision for some versions of cvs.
2008-09-08 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
* tests/cvs.py:
Implement get_last_revision() in the CVS backend.
2008-09-03 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Add a debug option to be able to know what commands are being
executed by rh.
2008-09-03 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
Fix update of files in cvs.
2008-08-27 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Update from misc.
2008-07-21 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
Remove the -N option from the cvs log command since we are now
interested in the tag list.
2008-07-18 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Do not use any file path when not provided in git log.
2008-07-17 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/bzr.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
* tests/svn.py:
Remove branch parameter of log method. Do not guess the svn layout
when checking out, since it causes more problems that it
solves. Tests have been updated according to the new behaviour.
2008-05-13 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/bzr.py:
* repositoryhandler/backends/git.py:
Fix detection of bazar repositories by a path.
2008-05-07 Santiago Dueñas Dominguez <[email protected]>
* repositoryhandler/backends/svn.py:
Added parameter to force the update of an uri.
2008-05-07 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/Makefile.am:
* repositoryhandler/backends/bzr.py:
* tests/Makefile.am:
* tests/bzr.py:
Initial bazar support.
2008-04-08 Santiago Dueñas Dominguez <[email protected]>
* repositoryhandler/backends/tarball.py:
Delete uri parameters from the destination path
2008-04-08 Santiago Dueñas Dominguez <[email protected]>
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
Add newdir = '.' as a special case in which rootdir will be the
full destination of the checkout
2008-04-02 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Make sure uri is the repository root when creating a svn repo.
2008-04-02 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
Document uri parameter in cvs checkout.
2008-03-24 Carlos Garcia Campos <[email protected]>
* NEWS:
First release 0.1
2008-03-24 Carlos Garcia Campos <[email protected]>
* Move repositoryhandler to its own module
2008-03-13 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Do not run svn co and update with LC_ALL. Fixes bug #407.
2008-02-20 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Updated from Misc
2008-01-31 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
* tests/svn.py:
Add module = '.' as an special case in svn checkout to be able to
download the whole repository.
2008-01-30 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Makefile.am:
* repositoryhandler/Downloader.py:
* repositoryhandler/FindProgram.py:
* repositoryhandler/backends/tarball.py:
Use Downloader from misc instead of using directly wget.
2008-01-17 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Python2.4 doesn't support keyword arguments in __import__
2007-12-04 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Fix svn diff when using a remote uri of a repo without /trunk.
2007-12-04 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Add remove_watcher()
2007-12-03 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py: Updated from misc
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
Use run_sync() instad of run() when needed.
2007-11-29 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
* tests/__init__.py:
* tests/git.py:
* tests/svn.py:
Add get_last_revision()
2007-11-22 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Strip git config values before returning them.
2007-11-13 Santiago Dueñas Domínguez <[email protected]>
* repositoryhandler/Command.py:
Updated from misc.
2007-10-24 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Update from misc
2007-10-24 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
When doing a checkout if srcdir already exists we try to do an
update instead. If such update fails because srcdir is not a valid
working copy continue with the chekcout instead of fail.
2007-10-08 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
Add get_uri()
2007-09-27 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Do not consider module/trunk as a module when trunk is not a
directory.
2007-09-27 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py: Update from misc
* repositoryhandler/backends/svn.py:
Always pass 'p\n' to stdin when running svn info so that ssl will
be permanently accepted when needed.
2007-09-23 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Add --pretty=fuller to git log command so that author is shown
too.
2007-09-21 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Fix git log when uri is a directory and files is None.
2007-09-21 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/git.py:
* repositoryhandler/backends/svn.py:
* repositoryhandler/backends/tarball.py:
* tests/tarball.py:
Add type as an argument of the Repository base class to make sure
it's always used. Fix tarball test, it used a wrong path.
2007-09-21 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/git.py:
Add -M and -C options to git log command to detect moves and
copies.
2007-09-20 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/Makefile.am:
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/svn.py:
* repositoryhandler/backends/git.py:
* tests/Makefile.am:
* tests/run_test.py.in:
* tests/git.py:
Add git support. Diff method is still to be done.
2007-09-19 Santiago Dueñas Domínguez <[email protected]>
* repositoryhandler/backends/cvs.py:
* tests/cvs.py:
Fixed the download of all the repository' modules
2007-09-13 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
* tests/svn.py:
Fix log command when using a svn repository without a /trunk
directory.
2007-09-06 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/tarball.py:
* tests/tarball.py:
Add support for gz and bz2 files in tarball backend so that it can
be used to download and extract mboxes.
2007-09-05 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/svn.py:
* tests/__init__.py:
* tests/svn.py:
Add get_modules() method to be able to know the list of modules
available in repository.
2007-08-18 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/svn.py:
Always run svn command with LC_ALL=C since svn output is
localized.
2007-08-18 Carlos Garcia Campos <[email protected]>
* tests/Makefile.am:
* tests/run_thread_test.py:
* tests/run_thread_test.py.in:
Remove run_thread_test.py since it's a generated file. Use
run_thread_test.py.in instead.
2007-06-29 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/tarball.py:
* repositoryhandler/backends/svn.py:
* tests/svn.py:
Add get_type method to be able to know the repo type of an
existent instance. Improve remote uri handling in svn backend.
2007-06-28 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
* repositoryhandler/backends/Makefile.am:
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/svn.py:
* repositoryhandler/backends/tarball.py:
* repositoryhandler/backends/watchers.py:
* tests/cvs.py:
* tests/svn.py:
Rework Command class so that we don't need to wait until process
is finished in order to process its output. Now a callback can be
used to process the command output as soon as new output lines are
available.
2007-06-14 Israel Herraiz <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/svn.py:
Fixed bug #267. R-H can now checkout, update, log and diff
individual files.
2007-05-24 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
create_repository_from_path needs the list of supported backends.
* tests/cvs.py:
* tests/svn.py:
Add tests for create_repository_from_path.
2007-05-24 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/__init__.py:
* repositoryhandler/backends/cvs.py:
* repositoryhandler/backends/svn.py:
Add a method to create new repositories based on a local path.
2007-05-24 Carlos Garcia Campos <[email protected]>
* repositoryhandler/backends/tarball.py:
Fix a typo.
2007-05-22 Carlos Garcia Campos <[email protected]>
* tests/Makefile.am:
* tests/run_thread_test.py:
Add threads test.
2007-05-22 Carlos Garcia Campos <[email protected]>
* repositoryhandler/Command.py:
Fix cvs diff exception in Command.
2007-05-14 Carlos Garcia Campos <[email protected]>
* Makefile.am:
Add README file in EXTRA_DIST
2007-03-26 Carlos Garcia Campos <[email protected]>
* Initial import