/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 doc/developers/overview.txt

  • Committer: John Arbash Meinel
  • Date: 2009-09-24 19:26:45 UTC
  • mto: (4634.52.3 2.0)
  • mto: This revision was merged to the branch mainline in revision 4716.
  • Revision ID: john@arbash-meinel.com-20090924192645-hyy1ycnnk6u3j5j6
Catch a corner case that we were missing.
The CHKInventory tests were passing, but failed for test_inv because
we were passing None to _getitems(). That only failed for InternalNodes,
but we were using a structure that didn't have internal nodes.
So now the test is parameterized on a small CHKInventory page size
to force those things out into the open.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
document, send a merge request or new text to the mailing list.
13
13
 
14
14
The current version of this document is available in the file
15
 
``doc/developers/overview.txt`` in the source tree, and available online
 
15
``doc/developers/overview.txt`` in the source tree, and available online 
16
16
within the developer documentation, <http://doc.bazaar-vcs.org/developers/>.
17
17
 
18
18
 
101
101
store a full text of the inventory, and of every new file text.
102
102
 
103
103
At runtime, repository stacking is actually configured by the branch, not
104
 
the repository.  So doing ``a_bzrdir.open_repository()``
105
 
gets you just the single physical repository, while
106
 
``a_bzrdir.open_branch().repository`` gets one configured with a stacking.
 
104
the repository.  So doing ``a_bzrdir.open_repository()`` 
 
105
gets you just the single physical repository, while 
 
106
``a_bzrdir.open_branch().repository`` gets one configured with a stacking. 
107
107
Therefore, to permanently change the fallback repository stored on disk,
108
 
you must use ``Branch.set_stacked_on_url``.
 
108
you must use ``Branch.set_stacked_on_url``.  
109
109
 
110
110
Changing away from an existing stacked-on URL will copy across any
111
111
necessary history so that the repository remains usable.