~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Martin Pool
  • Date: 2005-08-11 18:02:01 UTC
  • Revision ID: mbp@sourcefrog.net-20050811180201-a140c481693ba96c
- fix mdiff handling of files without a trailing newline

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.
22
 
 
23
 
* Fix tests so that one test failure doesn't prevent other tests from running
24
 
 
25
 
* print a message at the end of running the tests telling them that the
 
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
* print a message at the end of running the tests telling them tht the
26
28
  test log and output exists but can be removed
27
29
 
28
30
* tests for running the commit editor, and fix problem of not passing in 
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
 
182
201
* sometimes gives "conflicting add" even when the contents are in fact
183
202
  the same???
184
203
 
185
 
* BZRDIR should be in branch.py not __init__.py.
186
204
 
187
205
Medium things
188
206
-------------
199
217
  just get the id for the selected files, look up their location and
200
218
  diff just those files.  No need to traverse the entire inventories.
201
219
 
 
220
* ``bzr status DIR`` or ``bzr diff DIR`` should report on all changes
 
221
  under that directory.
 
222
 
202
223
* Fix up Inventory objects to represent root object as an entry.
203
224
 
204
225
* Don't convert entire entry from ElementTree to an object when it is
281
302
  - Class that describes the state of a working tree so we can just
282
303
    assert it's equal.
283
304
 
 
305
* There are too many methods on Branch() that really manipulate the
 
306
  WorkingTree.  They should be moved across.
 
307
 
 
308
  Also there are some methods which are duplicated on Tree and
 
309
  Inventory objects, and it should be made more clear which ones are
 
310
  proxies and which ones behave differently, and how.
 
311
 
284
312
* Try using XSLT to add some formatting to REST-generated HTML.  Or
285
313
  maybe write a small Python program that specifies a header and foot
286
314
  for the pages and calls into the docutils libraries.
302
330
 
303
331
  - Hold the ElementTree in memory in the Inventory object and work
304
332
    directly on that, rather than converting into Python objects every
305
 
    time it is read in.  Probably still expose it through some kind of
 
333
    time it is read in.  Probably still exposoe it through some kind of
306
334
    object interface though, but perhaps that should just be a proxy
307
335
    for the elements.
308
336
 
314
342
 
315
343
* stat cache should perhaps only stat files as necessary, rather than
316
344
  doing them all up-front.  On the other hand, that disallows the
317
 
  optimization of stating them in inode order.
 
345
  opimization of stating them in inode order.
318
346
 
319
347
* It'd be nice to pipeline multiple HTTP requests.  Often we can
320
348
  predict what will be wanted in future: all revisions, or all texts
325
353
 
326
354
* Paranoid mode where we never trust SHA-1 matches.
327
355
 
 
356
* Don't commit if there are no changes unless forced.
 
357
 
328
358
* --dry-run mode for commit?  (Or maybe just run with
329
359
  check-command=false?)
330
360
 
336
366
* XML attributes might have trouble with filenames containing \n and
337
367
  \r.  Do we really want to support this?  I think perhaps not.
338
368
 
 
369
* Remember execute bits, so that exports will work OK.
 
370
 
339
371
* Unify smart_add and plain Branch.add(); perhaps smart_add should
340
372
  just build a list of files to add and pass that to the regular add
341
373
  function.
342
374
 
343
375
* Function to list a directory, saying in which revision each file was
344
 
  last modified.  Useful for web and GUI interfaces, and slow to
 
376
  last modified.  Useful for web and gui interfaces, and slow to
345
377
  compute one file at a time.
346
378
  
347
379
  This will be done when we track file texts by referring to the
352
384
* Perhaps attempts to get locks should timeout after some period of
353
385
  time, or at least display a progress message.
354
386
 
 
387
* Split out upgrade functionality from check command into a separate
 
388
  ``bzr upgrade``.
 
389
 
355
390
* Don't pass around command classes but rather pass objects.  This'd
356
391
  make it cleaner to construct objects wrapping external commands.
357
392
 
358
393
* Track all merged-in revisions in a versioned add-only metafile.
359
394
 
 
395
* ``pull --clobber`` should discard any local changes not present
 
396
  remotely.  Not generally what you want, but possibly useful when
 
397
  you're just mirroring another branch and want to keep tracking it
 
398
  even when they e.g. uncommit or make similar non-forward movements.
 
399
  Also for push I suppose.  Clobber may not be the best name, maybe
 
400
  ``--destroy``?
 
401
 
360
402
* ``uncommit`` command that removes a revision from the end of the
361
403
  revision-history; just doing this is enough to remove the commit,
362
404
  and a new commit will automatically be made against the