~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Robert Collins
  • Date: 2005-10-30 01:40:16 UTC
  • Revision ID: robertc@robertcollins.net-20051030014016-98a4fba7d6a4176c
Support decoration of commands.

Commands.register_command now takes an optional flag to signal that the
registrant is planning to decorate an existing command. When given
multiple plugins registering a command is not an error, and the original
command class (whether built in or a plugin based one) is returned to the
caller. There is a new error 'MustUseDecorated' for signalling when a
wrapping command should switch to the original version. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
Small things
18
18
------------
19
19
 
 
20
* ``bzr status`` should show some description of patches that are merged but 
 
21
  not yet committed.  Preferably in a very compact format so that they
 
22
  just fit on a single line; this could also be used for say ``log
 
23
  --tiny``::
 
24
 
 
25
  2005-11-05      mbp  Flowers for stephane
 
26
 
20
27
* Fix tests so that import errors caused by modules don't produce false reports
21
28
  that the tests themselves don't exist.
22
29
 
52
59
 
53
60
* -r option should take a revision-id as well as a revno.
54
61
 
 
62
* allow ``bzr st -r 300`` to show a summary of changes since then.
 
63
 
55
64
* ``bzr info`` should count only people with distinct email addresses as
56
65
  different committers.  (Or perhaps only distinct userids?)
57
66
 
82
91
* ``bzr inventory -r REV`` and perhaps unify this with ``bzr ls``,
83
92
  giving options to display ids, types, etc.
84
93
 
 
94
* Split BzrError into various more specific subclasses for different
 
95
  errors people might want to catch.
 
96
 
 
97
* If the export destination ends in '.tar', '.tar.gz', etc then create
 
98
  a tarball instead of a directory.  (Need to actually make a
 
99
  temporary directory and then tar that up.)
 
100
 
 
101
  http://www.gelato.unsw.edu.au/archives/git/0504/2194.html
 
102
 
85
103
* RemoteBranch could maintain a cache either in memory or on disk.  We
86
104
  know more than an external cache might about which files are
87
105
  immutable and which can vary.  On the other hand, it's much simpler
127
145
  methods return object, but what we really want is the raw XML, which
128
146
  can be popped into our own store.  That needs to be refactored.
129
147
 
 
148
* ``bzr status FOO`` where foo is ignored should say so.
 
149
 
 
150
* ``bzr mkdir A...`` should just create and add A.
 
151
 
130
152
* Guard against repeatedly merging any particular patch.
131
153
 
132
154
* More options for diff:
184
206
 
185
207
* BZRDIR should be in branch.py not __init__.py.
186
208
 
187
 
* bzrlib.delta.compare_trees() shouldn't need to sort all of the result
188
 
  lists, since they are being added in alphabetical order. Write tests
189
 
  to guarantee this, and remove the sort() calls.
 
209
* ``status `` should accept a -r option to show changes relative to a revision,
 
210
  or between revisions
190
211
 
191
212
Medium things
192
213
-------------
193
214
 
 
215
* ~/.bzr.log is not written anymore for some reason.
 
216
 
194
217
* merge should add all revision and inventory XML to the local store.
195
218
 
196
219
* check should give a warning for revisions that are named in the
203
226
  just get the id for the selected files, look up their location and
204
227
  diff just those files.  No need to traverse the entire inventories.
205
228
 
 
229
* ``bzr status DIR`` or ``bzr diff DIR`` should report on all changes
 
230
  under that directory.
 
231
 
206
232
* Fix up Inventory objects to represent root object as an entry.
207
233
 
208
234
* Don't convert entire entry from ElementTree to an object when it is
285
311
  - Class that describes the state of a working tree so we can just
286
312
    assert it's equal.
287
313
 
 
314
* There are too many methods on Branch() that really manipulate the
 
315
  WorkingTree.  They should be moved across.
 
316
 
 
317
  Also there are some methods which are duplicated on Tree and
 
318
  Inventory objects, and it should be made more clear which ones are
 
319
  proxies and which ones behave differently, and how.
 
320
 
288
321
* Try using XSLT to add some formatting to REST-generated HTML.  Or
289
322
  maybe write a small Python program that specifies a header and foot
290
323
  for the pages and calls into the docutils libraries.
306
339
 
307
340
  - Hold the ElementTree in memory in the Inventory object and work
308
341
    directly on that, rather than converting into Python objects every
309
 
    time it is read in.  Probably still expose it through some kind of
 
342
    time it is read in.  Probably still exposoe it through some kind of
310
343
    object interface though, but perhaps that should just be a proxy
311
344
    for the elements.
312
345
 
318
351
 
319
352
* stat cache should perhaps only stat files as necessary, rather than
320
353
  doing them all up-front.  On the other hand, that disallows the
321
 
  optimization of stating them in inode order.
 
354
  opimization of stating them in inode order.
322
355
 
323
356
* It'd be nice to pipeline multiple HTTP requests.  Often we can
324
357
  predict what will be wanted in future: all revisions, or all texts
329
362
 
330
363
* Paranoid mode where we never trust SHA-1 matches.
331
364
 
 
365
* Don't commit if there are no changes unless forced.
 
366
 
332
367
* --dry-run mode for commit?  (Or maybe just run with
333
368
  check-command=false?)
334
369
 
340
375
* XML attributes might have trouble with filenames containing \n and
341
376
  \r.  Do we really want to support this?  I think perhaps not.
342
377
 
 
378
* Remember execute bits, so that exports will work OK.
 
379
 
343
380
* Unify smart_add and plain Branch.add(); perhaps smart_add should
344
381
  just build a list of files to add and pass that to the regular add
345
382
  function.
346
383
 
347
384
* Function to list a directory, saying in which revision each file was
348
 
  last modified.  Useful for web and GUI interfaces, and slow to
 
385
  last modified.  Useful for web and gui interfaces, and slow to
349
386
  compute one file at a time.
350
387
  
351
388
  This will be done when we track file texts by referring to the
356
393
* Perhaps attempts to get locks should timeout after some period of
357
394
  time, or at least display a progress message.
358
395
 
 
396
* Split out upgrade functionality from check command into a separate
 
397
  ``bzr upgrade``.
 
398
 
359
399
* Don't pass around command classes but rather pass objects.  This'd
360
400
  make it cleaner to construct objects wrapping external commands.
361
401
 
362
402
* Track all merged-in revisions in a versioned add-only metafile.
363
403
 
 
404
* ``pull --clobber`` should discard any local changes not present
 
405
  remotely.  Not generally what you want, but possibly useful when
 
406
  you're just mirroring another branch and want to keep tracking it
 
407
  even when they e.g. uncommit or make similar non-forward movements.
 
408
  Also for push I suppose.  Clobber may not be the best name, maybe
 
409
  ``--destroy``?
 
410
 
364
411
* ``uncommit`` command that removes a revision from the end of the
365
412
  revision-history; just doing this is enough to remove the commit,
366
413
  and a new commit will automatically be made against the
367
414
  predecessor.  This can be repeated.
368
415
 
369
 
  It only makes sense to delete from the tail of history.
370
 
 
371
 
  This has been implemented, but it does not remove the texts from
372
 
  the store.
373
 
 
374
 
* ``bzrlib.lazy_import.lazy_import`` could check to see if a given
375
 
  module has already been imported (look at ``sys.modules``). If it
376
 
  has, then just import it directly, rather than creating a lazy
377
 
  object.
 
416
  It only makes sense to delete from the tail of history, not from the
 
417
  end.
 
418
 
 
419
  The revision, its inventory and texts remain floating in the store.
 
420
  We should perhaps add the revision to a list of removed-commits, so
 
421
  that it can be restored or at least accounted for when checking
 
422
  consistency.  This file would not be versioned, and probably should
 
423
  not propagate when branched.
 
424
 
 
425
  If we track merged revisions then we need to update this list too.
 
426
  If the list is stored in a weave it's easy (implicit): the version
 
427
  of the list can remain but it won't be referenced anymore.  It's
 
428
  probably best to just store this list in a weave in the first place
 
429
  and be done.
378
430
 
379
431
 
380
432
Large things
443
495
  with removing the tags on the way back in.
444
496
 
445
497
* ``bzr find``
446
 
 
447
 
Selftest
448
 
--------
449
 
 
450
 
* Write some benchmark tests
451
 
 
452
 
* we could display the ids of some tests selected by time to rune, or cputime,
453
 
  rusage. 
454
 
 
455
 
* We could run tests multiple times and report deviation/slowest/fastest.
456
 
 
457
 
* Gather lsprofile output for each test individually - log that somewhere.
458
 
 
459
 
* Should plugins be able to offer benchmark tests ?
460
 
 
461
 
CHANGESETS
462
 
----------
463
 
Ensure changeset command behaves properly w/revisions (e.g. 0)
464
 
Figure out whether testament-related bug is my problem
465
 
Get rid of the 'old' directory
466
 
Bundle signatures
467
 
What to do about ghost ancestors in remote branch that are present locally?