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

Revision 576, 0.9 kB (checked in by arjanmol, 3 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="Kid Export"
5         version="0.1"
6         author="Jeroen Vloothuis">
7   <description>
8         This plugin extends Gaphor with XMI export functionality based on Kid
9         templates.
10   </description>
11
12   <require>
13     <!--
14       Define modules and plugins that are needed for this plugin to function
15       properly.
16     -->
17     <module name="kid"/>
18   </require>
19
20   <provide>
21     <!--
22       Actions should be defined on the module's toplevel (like in __init__.py).
23     -->
24     <action id="KidExport"
25             label="Kid Export"
26             tooltip="Export the model to XMI using a Kid template"
27             class="KidExportAction" slot="FileExportSlot">
28       <!--
29         Add optional dependencies to this action. The action is then updated
30         when actions defined in the depends tag are executed.
31       - ->
32       <depends action=""/>
33       -->
34     </action>
35   </provide>
36 </gaphor-plugin>
Note: See TracBrowser for help on using the browser.