/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 cmenu.ui

  • Committer: Vincent Ladeuil
  • Date: 2009-05-07 11:48:03 UTC
  • Revision ID: v.ladeuil+lp@free.fr-20090507114803-sxykmkuzrkdj2pr3
Fix bug #373157 by properly setting the default values.

* tests/test_annotate_config.py:
(TestConfig.test_create_initial_config): Urgh, remove pdb breakpoint.

* annotate/config.py:
(gannotate_configspec): Deleted, can't be used for default values
and not used for validation: useless.
(gannotate_config_filename): Turned into a function so that tests
get proper isolated result (evaluating the path at load time
forbids the test framework overriding).
(GAnnotateConfig.__init__): Add default values *only* if the
'window' section doesn't exist. Assigning them unconditionally
defeats the config file purpose... Also delete the 'spans' section
since nobody use it.
(GAnnotateConfig.apply): Coerce config values when we use them.
(Gannotateconfig._save_custom_spans): Deleted (dead code).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<ui>
 
2
    <popup name="context_right">
 
3
        <menuitem name="add" action="add" />
 
4
        <menuitem name="remove" action="remove" />
 
5
        <menuitem name="remove_and_delete" action="remove_and_delete" />
 
6
        <menuitem name="rename" action="rename" />
 
7
        <menuitem name="open" action="open" />
 
8
        <separator />
 
9
        <menuitem name="revert" action="revert" />
 
10
        <menuitem name="commit" action="commit" />
 
11
        <separator />
 
12
        <menuitem name="annotate" action="annotate" />
 
13
        <menuitem name="diff" action="diff" />
 
14
        <separator />
 
15
        <menuitem name="bookmark" action="bookmark" />
 
16
    </popup>
 
17
    <popup name="context_left">
 
18
        <menuitem name="edit_bookmark" action="edit_bookmark" />
 
19
        <menuitem name="remove_bookmark" action="remove_bookmark" />
 
20
        <separator />
 
21
        <menuitem name="open_folder" action="open_folder" />
 
22
    </popup>
 
23
    <popup name="toolbar_diff">
 
24
        <menuitem name="diff_selected" action="diff_selected" />
 
25
        <menuitem name="diff_all" action="diff_all" />
 
26
    </popup>
 
27
    <popup name="context_remote">
 
28
        <menuitem name="view_remote" action="view_remote" />
 
29
        <menuitem name="diff_remote" action="diff_remote" />
 
30
        <menuitem name="revert_remote" action="revert_remote" />
 
31
    </popup>
 
32
</ui>