/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/frontend/gtk/info.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-11 02:56:58 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060911025658-997cf3a305b9f1da
A better implementation for the drive selection. (OptionMenu didn't work on Win32)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
import sys
 
18
 
17
19
try:
18
20
    import pygtk
19
21
    pygtk.require("2.0")
20
22
except:
21
23
    pass
22
 
 
23
 
import gtk
24
 
import gtk.glade
25
 
 
26
 
import bzrlib.errors as errors
27
 
 
28
 
from bzrlib.plugins.gtk import _i18n
29
 
from bzrlib.plugins.gtk.dialog import error_dialog
30
 
from guifiles import GLADEFILENAME
31
 
 
32
 
 
33
 
def info(location):
34
 
    """ Get info about branch, working tree, and repository
35
 
    
36
 
    :param location: the location of the branch/working tree/repository
37
 
    
38
 
    :return: the information in dictionary format
39
 
    
40
 
    The following informations are delivered (if available):
41
 
    ret['location']['lightcoroot']: Light checkout root
42
 
    ret['location']['sharedrepo']: Shared repository
43
 
    ret['location']['repobranch']: Repository branch
44
 
    ret['location']['cobranch']: Checkout of branch
45
 
    ret['location']['repoco']: Repository checkout
46
 
    ret['location']['coroot']: Checkout root
47
 
    ret['location']['branchroot']: Branch root
48
 
    ret['related']['parentbranch']: Parent branch
49
 
    ret['related']['publishbranch']: Publish to branch
50
 
    ret['format']['control']: Control format
51
 
    ret['format']['workingtree']: Working tree format
52
 
    ret['format']['branch']: Branch format
53
 
    ret['format']['repository']: Repository format
54
 
    ret['locking']['workingtree']: Working tree lock status
55
 
    ret['locking']['branch']: Branch lock status
56
 
    ret['locking']['repository']: Repository lock status
57
 
    ret['missing']['branch']: Missing revisions in branch
58
 
    ret['missing']['workingtree']: Missing revisions in working tree
59
 
    ret['wtstats']['unchanged']: Unchanged files
60
 
    ret['wtstats']['modified']: Modified files
61
 
    ret['wtstats']['added']: Added files
62
 
    ret['wtstats']['removed']: Removed files
63
 
    ret['wtstats']['renamed']: Renamed files
64
 
    ret['wtstats']['unknown']: Unknown files
65
 
    ret['wtstats']['ignored']: Ingnored files
66
 
    ret['wtstats']['subdirs']: Versioned subdirectories
67
 
    ret['brstats']['revno']: Revisions in branch
68
 
    ret['brstats']['commiters']: Number of commiters
69
 
    ret['brstats']['age']: Age of branch in days
70
 
    ret['brstats']['firstrev']: Time of first revision
71
 
    ret['brstats']['lastrev']: Time of last revision
72
 
    ret['repstats']['revisions']: Revisions in repository
73
 
    ret['repstats']['size']: Size of repository in bytes
74
 
    """
75
 
    import bzrlib.bzrdir as bzrdir
76
 
    
77
 
    import info_helper
78
 
    
79
 
    ret = {}
80
 
    try:
81
 
        a_bzrdir = bzrdir.BzrDir.open_containing(location)[0]
82
 
    except errors.NotBranchError:
83
 
        raise errors.NotBranchError(location)
84
 
 
85
 
    try:
86
 
        working = a_bzrdir.open_workingtree()
87
 
        working.lock_read()
88
 
        try:
89
 
            branch = working.branch
90
 
            repository = branch.repository
91
 
            control = working.bzrdir
92
 
            
93
 
            ret['location'] = info_helper.get_location_info(repository, branch, working)
94
 
            ret['related'] = info_helper.get_related_info(branch)
95
 
            ret['format'] = info_helper.get_format_info(control, repository, branch, working)
96
 
            ret['locking'] = info_helper.get_locking_info(repository, branch, working)
97
 
            ret['missing'] = {}
98
 
            ret['missing']['branch'] = info_helper.get_missing_revisions_branch(branch)
99
 
            ret['missing']['workingtree'] = info_helper.get_missing_revisions_working(working)
100
 
            ret['wtstats'] = info_helper.get_working_stats(working)
101
 
            ret['brstats'] = info_helper.get_branch_stats(branch)
102
 
            ret['repstats'] = info_helper.get_repository_stats(repository)
103
 
        finally:
104
 
            working.unlock()
105
 
            return ret
106
 
        return
107
 
    except (errors.NoWorkingTree, errors.NotLocalUrl):
108
 
        pass
109
 
 
110
 
    try:
111
 
        branch = a_bzrdir.open_branch()
112
 
        repository = branch.repository
113
 
        control = a_bzrdir
114
 
        branch.lock_read()
115
 
        try:
116
 
            ret['location'] = info_helper.get_location_info(repository, branch)
117
 
            ret['related'] = info_helper.get_related_info(branch)
118
 
            ret['format'] = info_helper.get_format_info(control, repository, branch)
119
 
            ret['locking'] = info_helper.get_locking_info(repository, branch)
120
 
            ret['missing']['branch'] = info_helper.get_missing_revisions_branch(branch)
121
 
            ret['brstats'] = info_helper.get_branch_stats(branch)
122
 
            ret['repstats'] = info_helper.get_repository_stats(repository)
123
 
        finally:
124
 
            branch.unlock()
125
 
            return ret
126
 
        return
127
 
    except errors.NotBranchError:
128
 
        pass
129
 
 
130
 
    try:
131
 
        repository = a_bzrdir.open_repository()
132
 
        repository.lock_read()
133
 
        try:
134
 
            ret['location'] = info_helper.get_location_info(repository)
135
 
            ret['format'] = info_helper.get_format_info(control, repository)
136
 
            ret['locking'] = info_helper.get_locking_info(repository)
137
 
            ret['repstats'] = info_helper.get_repository_stats(repository)
138
 
        finally:
139
 
            repository.unlock()
140
 
            return ret
141
 
        return
142
 
    except errors.NoRepositoryPresent:
143
 
        pass
144
 
 
 
24
try:
 
25
    import gtk
 
26
    import gtk.glade
 
27
    import gobject
 
28
    import pango
 
29
except:
 
30
    sys.exit(1)
 
31
 
 
32
import olive.backend.errors as errors
 
33
import olive.backend.info as info
145
34
 
146
35
class OliveInfo:
147
36
    """ Display Informations window and perform the needed actions. """
148
 
    def __init__(self, branch):
 
37
    def __init__(self, gladefile, comm, dialog):
149
38
        """ Initialize the Informations window. """
150
 
        self.glade = gtk.glade.XML(GLADEFILENAME, 'window_info', 'olive-gtk')
 
39
        self.gladefile = gladefile
 
40
        self.glade = gtk.glade.XML(self.gladefile, 'window_info', 'olive-gtk')
 
41
        
 
42
        # Communication object
 
43
        self.comm = comm
 
44
        # Dialog object
 
45
        self.dialog = dialog
151
46
        
152
47
        # Get the Informations window widget
153
48
        self.window = self.glade.get_widget('window_info')
155
50
        # Check if current location is a branch
156
51
        self.notbranch = False
157
52
        try:
158
 
            self.ret = info(branch.base)
 
53
            self.ret = info.info(self.comm.get_path())
159
54
        except errors.NotBranchError:
160
55
            self.notbranch = True
161
56
            return
 
57
        except:
 
58
            raise
162
59
        
163
60
        # Dictionary for signal_autoconnect
164
61
        dic = { "on_button_info_close_clicked": self.close,
554
451
    def display(self):
555
452
        """ Display the Informations window. """
556
453
        if self.notbranch:
557
 
            error_dialog(_i18n('Directory is not a branch'),
558
 
                         _i18n('You can perform this action only in a branch.'))
 
454
            self.dialog.error_dialog(_('Directory is not a branch'),
 
455
                                     _('You can perform this action only in a branch.'))
559
456
            self.close()
560
457
        else:
561
458
            self.window.show()