~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Martin Pool
  • Date: 2005-07-07 10:31:36 UTC
  • Revision ID: mbp@sourcefrog.net-20050707103135-9b4d911d8df6e880
- fix pwk help

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. -*- mode: indented-text; compile-command: "make -C doc" -*-
 
1
.. -*- mode: indented-text; compile-command: "make -C doc" -*- 
2
2
 
3
3
 
4
4
*******************
17
17
Small things
18
18
------------
19
19
 
20
 
* is_within_any is very very dodgy
21
 
 
22
20
* Merging add of a new file clashing with an existing file doesn't
23
21
  work; add gets an error that it's already versioned and the merge
24
22
  aborts.
30
28
* Add of a file that was present in the base revision should put back
31
29
  the previous file-id.
32
30
 
33
 
* Not sure I'm happy with needing to pass a root id to EmptyTree;
34
 
  comparing anything against an EmptyTree with no root should have the
35
 
  same effect(?)
36
 
 
37
31
* Handle diff of files which do not have a trailing newline; probably
38
32
  requires patching difflib to get it exactly right, or otherwise
39
33
  calling out to GNU diff.
40
34
 
41
 
* Should be able to copy files between branches to preserve their
42
 
  file-id (and perhaps eventually parentage.)
43
 
 
44
35
* -r option should take a revision-id as well as a revno.
45
36
 
46
 
* allow ``bzr st -r 300`` to show a summary of changes since then.
47
 
 
48
37
* ``bzr info`` should count only people with distinct email addresses as
49
38
  different committers.  (Or perhaps only distinct userids?)
50
39
 
81
70
  temporary directory and then tar that up.)
82
71
 
83
72
  http://www.gelato.unsw.edu.au/archives/git/0504/2194.html
84
 
 
 
73
  
85
74
* RemoteBranch could maintain a cache either in memory or on disk.  We
86
75
  know more than an external cache might about which files are
87
76
  immutable and which can vary.  On the other hand, it's much simpler
112
101
  Nice for humans; less good for machine parsing.
113
102
 
114
103
* Patches should probably use only forward slashes, even on Windows,
115
 
  otherwise Unix patch can't apply them. (?)
 
104
  otherwise Unix patch can't apply them. (?) 
116
105
 
117
106
* Branch.update_revisions() inefficiently fetches revisions from the
118
107
  remote server twice; once to find out what text and inventory they
119
108
  need and then again to actually get the thing.  This is a bit
120
 
  inefficient.
 
109
  inefficient. 
121
110
 
122
111
  One complicating factor here is that we don't really want to have
123
112
  revisions present in the revision-store until all their constituent
132
121
* ``bzr mkdir A...`` should just create and add A.
133
122
 
134
123
* Guard against repeatedly merging any particular patch.
135
 
 
136
 
* More options for diff:
137
 
 
138
 
  - diff two revisions of the same tree
139
 
 
140
 
  - diff two different branches, optionally at different revisions
141
 
 
142
 
  - diff a particular file in another tree against the corresponding
143
 
    version in this tree (which should be the default if the second
144
 
    parameter is a tree root)
145
 
 
146
 
  - diff everything under a particular directory, in any of the above
147
 
    ways
148
 
 
149
 
  - diff two files inside the same tree, even if they have different
150
 
    ids
151
 
 
152
 
  - and, of course, tests for all this
153
 
 
154
 
* ``bzr add`` with no arguments should probably be the same as ``bzr add .``
155
 
 
156
 
* Reproducible performance benchmark to measure whether performance is 
157
 
  getting better or worse.
 
124
  
158
125
 
159
126
 
160
127
Medium things
198
165
  At the very least we could run diffstat over the diff, or perhaps
199
166
  read the status output from patch.  Just knowing which files might
200
167
  be modified would be enough to guide the add and commit.
201
 
 
 
168
  
202
169
  Given this we might be able to import patches at 1/second or better.
203
170
 
204
171
* Get branch over http.
240
207
 
241
208
* Handle symlinks in the working directory; at the very least it
242
209
  should be possible for them to be present and ignored/unknown
243
 
  without causing assertion failures.
 
210
  without causing assertion failures. 
244
211
 
245
212
  Eventually symlinks should be versioned.
246
213
 
248
215
  if the subdirectory is not already versioned.   Perhaps also require
249
216
  a ``--nested`` to protect against confusion.
250
217
 
251
 
* Branch names?
 
218
* Branch names? 
252
219
 
253
220
* More test framework:
254
221
 
256
223
    assert it's equal.
257
224
 
258
225
* There are too many methods on Branch() that really manipulate the
259
 
  WorkingTree.  They should be moved across.
 
226
  WorkingTree.  They should be moved across.  
260
227
 
261
228
  Also there are some methods which are duplicated on Tree and
262
229
  Inventory objects, and it should be made more clear which ones are
287
254
    object interface though, but perhaps that should just be a proxy
288
255
    for the elements.
289
256
 
290
 
  - Less special cases for the root directory.
 
257
  - Less special cases for the root directory. 
291
258
 
292
259
* Perhaps inventories should remember the revision in which each file
293
260
  was last changed, as well as its current state?  This is a bit
299
266
 
300
267
* It'd be nice to pipeline multiple HTTP requests.  Often we can
301
268
  predict what will be wanted in future: all revisions, or all texts
302
 
  in a particular revision, etc.
 
269
  in a particular revision, etc.  
303
270
 
304
271
  urlgrabber's docs say they are working on batched downloads; we
305
272
  could perhaps ride on that or just create a background thread (ew).
399
366
  a temporary directory.
400
367
 
401
368
  If the commit does not actually complete, we would rather the
402
 
  content was not left behind in the stores.
 
369
  content was not left behind in the stores.  
403
370
 
404
371
* Web interface
405
372