~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Martin Pool
  • Date: 2006-01-13 08:12:22 UTC
  • mfrom: (1185.63.5 bzr.patches)
  • Revision ID: mbp@sourcefrog.net-20060113081222-6b572004a2ade0cc
[merge] test_hashcache_raise from Denys

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
 
 
27
20
* Fix tests so that import errors caused by modules don't produce false reports
28
21
  that the tests themselves don't exist.
29
22
 
59
52
 
60
53
* -r option should take a revision-id as well as a revno.
61
54
 
62
 
* allow ``bzr st -r 300`` to show a summary of changes since then.
63
 
 
64
55
* ``bzr info`` should count only people with distinct email addresses as
65
56
  different committers.  (Or perhaps only distinct userids?)
66
57
 
91
82
* ``bzr inventory -r REV`` and perhaps unify this with ``bzr ls``,
92
83
  giving options to display ids, types, etc.
93
84
 
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
 
 
103
85
* RemoteBranch could maintain a cache either in memory or on disk.  We
104
86
  know more than an external cache might about which files are
105
87
  immutable and which can vary.  On the other hand, it's much simpler
145
127
  methods return object, but what we really want is the raw XML, which
146
128
  can be popped into our own store.  That needs to be refactored.
147
129
 
148
 
* ``bzr status FOO`` where foo is ignored should say so.
149
 
 
150
 
* ``bzr mkdir A...`` should just create and add A.
151
 
 
152
130
* Guard against repeatedly merging any particular patch.
153
131
 
154
132
* More options for diff:
169
147
 
170
148
  - and, of course, tests for all this
171
149
 
172
 
* ``bzr add`` with no arguments should probably be the same as ``bzr add .``
173
 
 
174
150
* Reproducible performance benchmark to measure whether performance is 
175
151
  getting better or worse.
176
152
 
208
184
 
209
185
* BZRDIR should be in branch.py not __init__.py.
210
186
 
211
 
* ``status `` should accept a -r option to show changes relative to a revision,
212
 
  or between revisions
213
 
 
214
187
Medium things
215
188
-------------
216
189
 
217
 
* ~/.bzr.log is not written anymore for some reason.
218
 
 
219
190
* merge should add all revision and inventory XML to the local store.
220
191
 
221
192
* check should give a warning for revisions that are named in the
228
199
  just get the id for the selected files, look up their location and
229
200
  diff just those files.  No need to traverse the entire inventories.
230
201
 
231
 
* ``bzr status DIR`` or ``bzr diff DIR`` should report on all changes
232
 
  under that directory.
233
 
 
234
202
* Fix up Inventory objects to represent root object as an entry.
235
203
 
236
204
* Don't convert entire entry from ElementTree to an object when it is
313
281
  - Class that describes the state of a working tree so we can just
314
282
    assert it's equal.
315
283
 
316
 
* There are too many methods on Branch() that really manipulate the
317
 
  WorkingTree.  They should be moved across.
318
 
 
319
 
  Also there are some methods which are duplicated on Tree and
320
 
  Inventory objects, and it should be made more clear which ones are
321
 
  proxies and which ones behave differently, and how.
322
 
 
323
284
* Try using XSLT to add some formatting to REST-generated HTML.  Or
324
285
  maybe write a small Python program that specifies a header and foot
325
286
  for the pages and calls into the docutils libraries.
341
302
 
342
303
  - Hold the ElementTree in memory in the Inventory object and work
343
304
    directly on that, rather than converting into Python objects every
344
 
    time it is read in.  Probably still exposoe it through some kind of
 
305
    time it is read in.  Probably still expose it through some kind of
345
306
    object interface though, but perhaps that should just be a proxy
346
307
    for the elements.
347
308
 
353
314
 
354
315
* stat cache should perhaps only stat files as necessary, rather than
355
316
  doing them all up-front.  On the other hand, that disallows the
356
 
  opimization of stating them in inode order.
 
317
  optimization of stating them in inode order.
357
318
 
358
319
* It'd be nice to pipeline multiple HTTP requests.  Often we can
359
320
  predict what will be wanted in future: all revisions, or all texts
364
325
 
365
326
* Paranoid mode where we never trust SHA-1 matches.
366
327
 
367
 
* Don't commit if there are no changes unless forced.
368
 
 
369
328
* --dry-run mode for commit?  (Or maybe just run with
370
329
  check-command=false?)
371
330
 
377
336
* XML attributes might have trouble with filenames containing \n and
378
337
  \r.  Do we really want to support this?  I think perhaps not.
379
338
 
380
 
* Remember execute bits, so that exports will work OK.
381
 
 
382
339
* Unify smart_add and plain Branch.add(); perhaps smart_add should
383
340
  just build a list of files to add and pass that to the regular add
384
341
  function.
385
342
 
386
343
* Function to list a directory, saying in which revision each file was
387
 
  last modified.  Useful for web and gui interfaces, and slow to
 
344
  last modified.  Useful for web and GUI interfaces, and slow to
388
345
  compute one file at a time.
389
346
  
390
347
  This will be done when we track file texts by referring to the
395
352
* Perhaps attempts to get locks should timeout after some period of
396
353
  time, or at least display a progress message.
397
354
 
398
 
* Split out upgrade functionality from check command into a separate
399
 
  ``bzr upgrade``.
400
 
 
401
355
* Don't pass around command classes but rather pass objects.  This'd
402
356
  make it cleaner to construct objects wrapping external commands.
403
357
 
404
358
* Track all merged-in revisions in a versioned add-only metafile.
405
359
 
406
 
* ``pull --clobber`` should discard any local changes not present
407
 
  remotely.  Not generally what you want, but possibly useful when
408
 
  you're just mirroring another branch and want to keep tracking it
409
 
  even when they e.g. uncommit or make similar non-forward movements.
410
 
  Also for push I suppose.  Clobber may not be the best name, maybe
411
 
  ``--destroy``?
412
 
 
413
360
* ``uncommit`` command that removes a revision from the end of the
414
361
  revision-history; just doing this is enough to remove the commit,
415
362
  and a new commit will automatically be made against the