Feature #1149

file size display with Bazaar repositories

Added by Andreas Deininger 130 days ago. Updated 84 days ago.

Status:Closed Start:2008-04-30
Priority:Normal Due date:
Assigned to:- % Done:

0%

Category:SCM
Target version:0.8
Resolution:

Fixed


Description

Currently, the file size is shown as "?" when browsing a Bazaar repository. The attached patch (partly) fixes that issue.

Please note that this patch is far from ideal since:
a) it does not work if the bazaar branch does not have a working tree
b) it only works for the latest revision
c) wrong file sizes may be displayed if the working tree is not up to date with the bazaar branch

A better solution would be to use something like:
$ bzr cat -r 10 /file/in/repo | wc -c
However that does not work on windows platforms.

As workaround, maybe one could execute 'bzr cat -r 10 /file/in/repo' as via IO.popen and determine the byte count in Ruby then.

bzr_size.patch - Patch for file size display with Bazaar (778 Bytes) Andreas Deininger, 2008-05-02 08:35

Associated revisions

Revision 1537
Added by jplang 84 days ago

File size display with Bazaar repositories (#1149).

History

2008-04-30 21:31 - Jean-Philippe Lang

No patch attached...

2008-05-02 08:35 - Andreas Deininger

Oops, here it comes.

Please note that the shortcoming of bazaar concerning file size display has been addressed meanwhile:
https://bugs.launchpad.net/bzr/+bug/224965

2008-06-14 17:40 - Jean-Philippe Lang

  • Category set to SCM
  • Status changed from New to Closed
  • Target version set to 0.8
  • Resolution set to Fixed

Committed in r1537.
I think bzr cat -r 10 /file/in/repo | wc -c would be really slow with big/lots of files.

Also available in: Atom PDF