Changes between Version 2 and Version 3 of Development/1.2/Plugin


Ignore:
Timestamp:
08/27/2009 06:43:26 PM (15 years ago)
Author:
andar
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Development/1.2/Plugin

    v2 v3  
    3030This should create a directory called `myplugin` under which should be a collection of directories and files which will form the base of your plugin. 
    3131 
     32The file structure should look like this (perhaps a bit more since it does a build right away): 
     33{{{ 
     34myplugin/ 
     35|-- create_dev_link.sh 
     36|-- myplugin 
     37|   |-- __init__.py 
     38|   |-- common.py 
     39|   |-- core.py 
     40|   |-- data 
     41|   |   `-- config.glade 
     42|   |-- gtkui.py 
     43|   |-- template 
     44|   |   `-- default.html 
     45|   `-- webui.py 
     46`-- setup.py 
     47}}} 
     48 
    3249=== Modifying Metadata === 
    3350