root/gaphor-plugins/sandbox/plugineditor/plugin.xml

Revision 543, 0.9 kB (checked in by arjanmol, 4 years ago)

*** empty log message ***

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?xml version="1.0"?>
2 <!-- vim:sw=2:et:
3 -->
4 <gaphor-plugin name="Plugin Editor"
5         version="0.1"
6         author="Arjan Molenaar">
7   <description>
8     This plugin lets the user inform and interact with the plugins.
9   </description>
10
11   <require>
12     <!--
13       Define modules and plugins that are needed for this plugin to function
14       properly.
15     - ->
16     <module name="os.path"/>
17     <plugin name="Test plugin"/>
18     -->
19   </require>
20
21   <provide>
22     <!--
23       Actions should be defined on the module's toplevel (like in __init__.py).
24     -->
25     <action id="PluginEditor"
26             label="Plugin editor"
27             tooltip="Show status of plugins"
28             class="PluginEditorAction" slot="WindowSlot">
29       <!--
30         Add optional dependencies to this action. The action is then updated
31         when actions defined in the depends tag are executed.
32       - ->
33       <depends action=""/>
34       -->
35     </action>
36   </provide>
37 </gaphor-plugin>
Note: See TracBrowser for help on using the browser.