/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to TODO

remove AB1 WorkingTree and experimental-knit3

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
 
* print a message at the end of running the tests telling them tht the
 
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
28
26
  test log and output exists but can be removed
29
27
 
30
28
* tests for running the commit editor, and fix problem of not passing in 
54
52
 
55
53
* -r option should take a revision-id as well as a revno.
56
54
 
57
 
* allow ``bzr st -r 300`` to show a summary of changes since then.
58
 
 
59
55
* ``bzr info`` should count only people with distinct email addresses as
60
56
  different committers.  (Or perhaps only distinct userids?)
61
57
 
86
82
* ``bzr inventory -r REV`` and perhaps unify this with ``bzr ls``,
87
83
  giving options to display ids, types, etc.
88
84
 
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
 
 
98
85
* RemoteBranch could maintain a cache either in memory or on disk.  We
99
86
  know more than an external cache might about which files are
100
87
  immutable and which can vary.  On the other hand, it's much simpler
140
127
  methods return object, but what we really want is the raw XML, which
141
128
  can be popped into our own store.  That needs to be refactored.
142
129
 
143
 
* ``bzr status FOO`` where foo is ignored should say so.
144
 
 
145
 
* ``bzr mkdir A...`` should just create and add A.
146
 
 
147
130
* Guard against repeatedly merging any particular patch.
148
131
 
149
132
* More options for diff:
164
147
 
165
148
  - and, of course, tests for all this
166
149
 
167
 
* ``bzr add`` with no arguments should probably be the same as ``bzr add .``
168
 
 
169
150
* Reproducible performance benchmark to measure whether performance is 
170
151
  getting better or worse.
171
152
 
190
171
 
191
172
* files that are added and then deleted are still reported as added
192
173
 
193
 
 
194
 
 
 
174
* stores should raise KeyError, not IndexError
 
175
 
 
176
* merging from a remote branch seems to sometimes raise errors not
 
177
  present locally
 
178
 
 
179
* should be possible to give a related branch when pulling from a
 
180
  remote branch to make things faster
 
181
 
 
182
* sometimes gives "conflicting add" even when the contents are in fact
 
183
  the same???
 
184
 
 
185
* BZRDIR should be in branch.py not __init__.py.
 
186
 
 
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.
195
190
 
196
191
Medium things
197
192
-------------
208
203
  just get the id for the selected files, look up their location and
209
204
  diff just those files.  No need to traverse the entire inventories.
210
205
 
211
 
* ``bzr status DIR`` or ``bzr diff DIR`` should report on all changes
212
 
  under that directory.
213
 
 
214
206
* Fix up Inventory objects to represent root object as an entry.
215
207
 
216
208
* Don't convert entire entry from ElementTree to an object when it is
222
214
 
223
215
* More test cases.
224
216
 
 
217
  - ``missing`` command
 
218
 
225
219
  - Selected-file commit
226
220
 
227
221
  - Impossible selected-file commit: adding things in non-versioned
291
285
  - Class that describes the state of a working tree so we can just
292
286
    assert it's equal.
293
287
 
294
 
* There are too many methods on Branch() that really manipulate the
295
 
  WorkingTree.  They should be moved across.
296
 
 
297
 
  Also there are some methods which are duplicated on Tree and
298
 
  Inventory objects, and it should be made more clear which ones are
299
 
  proxies and which ones behave differently, and how.
300
 
 
301
288
* Try using XSLT to add some formatting to REST-generated HTML.  Or
302
289
  maybe write a small Python program that specifies a header and foot
303
290
  for the pages and calls into the docutils libraries.
319
306
 
320
307
  - Hold the ElementTree in memory in the Inventory object and work
321
308
    directly on that, rather than converting into Python objects every
322
 
    time it is read in.  Probably still exposoe it through some kind of
 
309
    time it is read in.  Probably still expose it through some kind of
323
310
    object interface though, but perhaps that should just be a proxy
324
311
    for the elements.
325
312
 
331
318
 
332
319
* stat cache should perhaps only stat files as necessary, rather than
333
320
  doing them all up-front.  On the other hand, that disallows the
334
 
  opimization of stating them in inode order.
 
321
  optimization of stating them in inode order.
335
322
 
336
323
* It'd be nice to pipeline multiple HTTP requests.  Often we can
337
324
  predict what will be wanted in future: all revisions, or all texts
342
329
 
343
330
* Paranoid mode where we never trust SHA-1 matches.
344
331
 
345
 
* Don't commit if there are no changes unless forced.
346
 
 
347
332
* --dry-run mode for commit?  (Or maybe just run with
348
333
  check-command=false?)
349
334
 
355
340
* XML attributes might have trouble with filenames containing \n and
356
341
  \r.  Do we really want to support this?  I think perhaps not.
357
342
 
358
 
* Remember execute bits, so that exports will work OK.
359
 
 
360
343
* Unify smart_add and plain Branch.add(); perhaps smart_add should
361
344
  just build a list of files to add and pass that to the regular add
362
345
  function.
363
346
 
364
347
* Function to list a directory, saying in which revision each file was
365
 
  last modified.  Useful for web and gui interfaces, and slow to
 
348
  last modified.  Useful for web and GUI interfaces, and slow to
366
349
  compute one file at a time.
367
350
  
368
351
  This will be done when we track file texts by referring to the
373
356
* Perhaps attempts to get locks should timeout after some period of
374
357
  time, or at least display a progress message.
375
358
 
376
 
* Split out upgrade functionality from check command into a separate
377
 
  ``bzr upgrade``.
378
 
 
379
359
* Don't pass around command classes but rather pass objects.  This'd
380
360
  make it cleaner to construct objects wrapping external commands.
381
361
 
382
362
* Track all merged-in revisions in a versioned add-only metafile.
383
363
 
384
 
* ``pull --clobber`` should discard any local changes not present
385
 
  remotely.  Not generally what you want, but possibly useful when
386
 
  you're just mirroring another branch and want to keep tracking it
387
 
  even when they e.g. uncommit or make similar non-forward movements.
388
 
  Also for push I suppose.  Clobber may not be the best name, maybe
389
 
  ``--destroy``?
390
 
 
391
364
* ``uncommit`` command that removes a revision from the end of the
392
365
  revision-history; just doing this is enough to remove the commit,
393
366
  and a new commit will automatically be made against the
394
367
  predecessor.  This can be repeated.
395
368
 
396
 
  It only makes sense to delete from the tail of history, not from the
397
 
  end.
398
 
 
399
 
  The revision, its inventory and texts remain floating in the store.
400
 
  We should perhaps add the revision to a list of removed-commits, so
401
 
  that it can be restored or at least accounted for when checking
402
 
  consistency.  This file would not be versioned, and probably should
403
 
  not propagate when branched.
404
 
 
405
 
  If we track merged revisions then we need to update this list too.
406
 
  If the list is stored in a weave it's easy (implicit): the version
407
 
  of the list can remain but it won't be referenced anymore.  It's
408
 
  probably best to just store this list in a weave in the first place
409
 
  and be done.
 
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.
410
378
 
411
379
 
412
380
Large things
475
443
  with removing the tags on the way back in.
476
444
 
477
445
* ``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?