/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 bzrlib/views.py

  • Committer: Ian Clatworthy
  • Date: 2009-02-21 05:17:18 UTC
  • mto: (4029.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4030.
  • Revision ID: ian.clatworthy@canonical.com-20090221051718-rtr7qjzcnda16fkj
cleanup trailing whitespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""View management.
18
18
 
19
 
Views are contained within a working tree and normally constructed 
 
19
Views are contained within a working tree and normally constructed
20
20
when first accessed.  Clients should do, for example, ...
21
21
 
22
22
  tree.views.lookup_view()
104
104
 
105
105
    def lookup_view(self, view_name=None):
106
106
        """Return the contents of a view.
107
 
        
 
107
 
108
108
        :param view_Name: name of the view or None to lookup the current view
109
109
        :return: the list of files/directories in the requested view
110
110
        """
121
121
 
122
122
    def set_view(self, view_name, view_files, make_current=True):
123
123
        """Add or update a view definition.
124
 
        
 
124
 
125
125
        :param view_name: the name of the view
126
126
        :param view_files: the list of files/directories in the view
127
127
        :param make_current: make this view the current one or not