24
24
requires patching difflib to get it exactly right, or otherwise
25
25
calling out to GNU diff.
27
* Import ElementTree update patch.
29
* Plugins that provide commands. By just installing a file into some
30
directory (e.g. ``/usr/share/bzr/plugins``) it should be possible to
31
create new top-level commands (``bzr frob``). Extensions can be
32
written in either Python (in which case they use the bzrlib API) or
33
in a separate process (in sh, C, whatever). It should be possible
34
to get help for plugin commands.
36
* Smart rewrap text in help messages to fit in $COLUMNS (or equivalent
39
27
* -r option should take a revision-id as well as a revno.
41
* ``bzr info`` could show space used by working tree, versioned files,
42
unknown and ignored files.
44
29
* ``bzr info`` should count only people with distinct email addresses as
45
30
different committers. (Or perhaps only distinct userids?)
83
64
http://www.gelato.unsw.edu.au/archives/git/0504/2194.html
85
* testbzr should by default test the bzr binary in the same directory
86
as the testbzr script, or take a path to it as a first parameter.
88
Should show the version from bzr and the path name.
90
66
* RemoteBranch could maintain a cache either in memory or on disk. We
91
67
know more than an external cache might about which files are
92
68
immutable and which can vary. On the other hand, it's much simpler
93
69
to just use an external proxy cache.
71
Perhaps ~/.bzr/http-cache. Baz has a fairly simple cache under
72
~/.arch-cache, containing revision information encoded almost as a
73
bunch of archives. Perhaps we could simply store full paths.
75
* Maybe also store directories in the statcache so that we can quickly
76
identify that they still exist.
78
* Diff should show timestamps; for files from the working directory we
79
can use the file itself; for files from a revision we should use the
80
commit time of the revision.
82
* Perhaps split command infrastructure from the actual command
85
* Cleaner support for negative boolean options like --no-recurse.
87
* Statcache should possibly map all file paths to / separators
89
* quotefn doubles all backslashes on Windows; this is probably not the
90
best thing to do. What would be a better way to safely represent
91
filenames? Perhaps we could doublequote things containing spaces,
92
on the principle that filenames containing quotes are unlikely?
93
Nice for humans; less good for machine parsing.
95
* Patches should probably use only forward slashes, even on Windows,
96
otherwise Unix patch can't apply them. (?)
98
* Branch.update_revisions() inefficiently fetches revisions from the
99
remote server twice; once to find out what text and inventory they
100
need and then again to actually get the thing. This is a bit
103
One complicating factor here is that we don't really want to have
104
revisions present in the revision-store until all their constituent
105
parts are also stored.
107
The basic problem is that RemoteBranch.get_revision() and similar
108
methods return object, but what we really want is the raw XML, which
109
can be popped into our own store. That needs to be refactored.
111
* ``bzr status FOO`` where foo is ignored should say so.
113
* ``bzr mkdir A...`` should just create and add A.
99
* Change command functions into Command() objects, like in hct, and
100
then the grammar can be described directly in there. Since all
101
option definitions are global we can define them just once and
102
reference them from each command.
104
* Selective commit of only some files.
106
* Faster diff/status.
108
Status should be handled differently because it needs to report on
109
deleted and unknown files. diff only needs to deal with versioned
112
* Merge Aaron's merge code.
114
120
* Merge revert patch.
116
122
* ``bzr mv`` that does either rename or move as in Unix.
118
* More efficient diff of only selected files.
124
* More efficient diff of only selected files. We should be able to
125
just get the id for the selected files, look up their location and
126
diff just those files. No need to traverse the entire inventories.
128
* ``bzr status DIR`` or ``bzr diff DIR`` should report on all changes
129
under that directory.
120
131
* Fix up Inventory objects to represent root object as an entry.
122
* Don't convert entire entry from
133
* Don't convert entire entry from ElementTree to an object when it is
134
read in, but rather wait until the program actually wants to know
124
137
* Extract changes from one revision to the next to a text form
125
138
suitable for transmission over email.
127
140
* More test cases.
142
- Selected-file commit
144
- Impossible selected-file commit: adding things in non-versioned
145
directories, crossing renames, etc.
129
147
* Write a reproducible benchmark, perhaps importing various kernel versions.
131
* Change test.sh from Bourne shell into something in pure Python so
132
that it can be more portable.
134
149
* Directly import diffs! It seems a bit redundant to need to rescan
135
150
the directory to work out what files diff added/deleted/changed when
136
151
all the information is there in the diff in the first place.
246
261
urlgrabber's docs say they are working on batched downloads; we
247
262
could perhaps ride on that or just create a background thread (ew).
249
* Should be a signature at the top of the cache file.
251
264
* Paranoid mode where we never trust SHA-1 matches.
266
* Don't commit if there are no changes unless forced.
268
* --dry-run mode for commit? (Or maybe just run with
269
check-command=false?)
271
* Generally, be a bit more verbose unless --silent is specified.
273
* Function that finds all changes to files under a given directory;
274
perhaps log should use this if a directory is given.
276
* XML attributes might have trouble with filenames containing \n and
277
\r. Do we really want to support this? I think perhaps not.
279
* Remember execute bits, so that exports will work OK.
281
* Unify smart_add and plain Branch.add(); perhaps smart_add should
282
just build a list of files to add and pass that to the regular add
285
* Function to list a directory, saying in which revision each file was
286
last modified. Useful for web and gui interfaces, and slow to
287
compute one file at a time.
289
* unittest is standard, but the results are kind of ugly; would be
290
nice to make it cleaner.
292
* Check locking is correct during merge-related operations.
294
* Perhaps attempts to get locks should timeout after some period of
295
time, or at least display a progress message.
297
* Split out upgrade functionality from check command into a separate
300
* Don't pass around command classes but rather pass objects. This'd
301
make it cleaner to construct objects wrapping external commands.
285
335
files, and respecting selective commits. Run the pre-commit check
286
336
(e.g. compile and run test suite) in there.
338
Possibly this should be done by splitting the commit function into
339
several parts (under a single interface). It is already rather
340
large. Decomposition:
342
- find tree modifications and prepare in-memory inventory
344
- export that inventory to a temporary directory
346
- run the test in that temporary directory
348
- if that succeeded, continue to actually finish the commit
350
What should be done with the text of modified files while this is
351
underway? I don't think we want to count on holding them in memory
352
and we can't trust the working files to stay in one place so I
353
suppose we need to move them into the text store, or otherwise into
354
a temporary directory.
356
If the commit does not actually complete, we would rather the
357
content was not left behind in the stores.
290
361
* GUI (maybe in Python GTK+?)