~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Martin Pool
  • Date: 2005-06-10 09:30:57 UTC
  • Revision ID: mbp@sourcefrog.net-20050610093057-23705fac7f7f956e
todo

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
* Patches should probably use only forward slashes, even on Windows,
113
113
  otherwise Unix patch can't apply them. (?) 
114
114
 
 
115
* Branch.update_revisions() inefficiently fetches revisions from the
 
116
  remote server twice; once to find out what text and inventory they
 
117
  need and then again to actually get the thing.  This is a bit
 
118
  inefficient. 
 
119
 
 
120
  One complicating factor here is that we don't really want to have
 
121
  revisions present in the revision-store until all their constituent
 
122
  parts are also stored.
 
123
 
 
124
  The basic problem is that RemoteBranch.get_revision() and similar
 
125
  methods return object, but what we really want is the raw XML, which
 
126
  can be popped into our own store.  That needs to be refactored.
 
127
  
 
128
 
115
129
 
116
130
Medium things
117
131
-------------