~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Martin Pool
  • Date: 2005-05-17 07:01:47 UTC
  • Revision ID: mbp@sourcefrog.net-20050517070147-c38da17418ea6711
- Add patch to give symlink support

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
 
19
from sets import Set
19
20
import time
20
21
 
21
 
from bzrlib.osutils import format_date
 
22
from osutils import format_date
22
23
 
23
24
 
24
25
def _countiter(it):
81
82
    history = b.revision_history()
82
83
    revno = len(history)
83
84
    print '  %8d revision%s' % (revno, plural(revno))
84
 
    committers = {}
 
85
    committers = Set()
85
86
    for rev in history:
86
 
        committers[b.get_revision(rev).committer] = True
 
87
        committers.add(b.get_revision(rev).committer)
87
88
    print '  %8d committer%s' % (len(committers), plural(len(committers)))
88
89
    if revno > 0:
89
90
        firstrev = b.get_revision(history[0])
96
97
        print '  latest revision: %s' % format_date(lastrev.timestamp,
97
98
                                                    lastrev.timezone)
98
99
 
99
 
#     print
100
 
#     print 'text store:'
101
 
#     c, t = b.text_store.total_size()
102
 
#     print '  %8d file texts' % c
103
 
#     print '  %8d kB' % (t/1024)
 
100
    print
 
101
    print 'text store:'
 
102
    c, t = b.text_store.total_size()
 
103
    print '  %8d file texts' % c
 
104
    print '  %8d kB' % (t/1024)
104
105
 
105
106
    print
106
107
    print 'revision store:'
109
110
    print '  %8d kB' % (t/1024)
110
111
 
111
112
 
112
 
#     print
113
 
#     print 'inventory store:'
114
 
#     c, t = b.inventory_store.total_size()
115
 
#     print '  %8d inventories' % c
116
 
#     print '  %8d kB' % (t/1024)
 
113
    print
 
114
    print 'inventory store:'
 
115
    c, t = b.inventory_store.total_size()
 
116
    print '  %8d inventories' % c
 
117
    print '  %8d kB' % (t/1024)
117
118