~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Martin Pool
  • Date: 2005-09-16 04:19:49 UTC
  • Revision ID: mbp@sourcefrog.net-20050916041949-b6a152f4affa4d78
- notes on conversion of existing history to weaves

Show diffs side-by-side

added added

removed removed

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