~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Jelmer Vernooij
  • Date: 2010-08-25 20:30:12 UTC
  • mto: This revision was merged to the branch mainline in revision 5418.
  • Revision ID: jelmer@samba.org-20100825203012-im1wveasuf1bvpai
Move network_format_registry to bzrlib.controldir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
918
918
# appear in chronological order and format descriptions can build
919
919
# on previous ones.
920
920
format_registry = ControlDirFormatRegistry()
 
921
 
 
922
network_format_registry = registry.FormatRegistry()
 
923
"""Registry of formats indexed by their network name.
 
924
 
 
925
The network name for a ControlDirFormat is an identifier that can be used when
 
926
referring to formats with smart server operations. See
 
927
ControlDirFormat.network_name() for more detail.
 
928
"""