~zsquareplusc/yahebwinpy/wx.aui-test

« back to all changes in this revision

Viewing changes to plugins/hexeditor/hexeditor.py

  • Committer: Chris Liechti
  • Date: 2009-10-13 23:35:32 UTC
  • Revision ID: cliechti@gmx.net-20091013233532-9486h1c8pr01c6y1
Re-Import new yahebwinpy code base. It's actually 3 years old and evolved over this time, but the history needs a cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# hexeditor root extension point
 
2
#
 
3
# (C) 2004 - 2006 Chris Liechti <cliechti@gmx.net>
 
4
# this is distributed under a free software license, see license.txt
 
5
 
 
6
 
 
7
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
8
# plugin interface
 
9
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
10
 
 
11
# list of dependant extension points
 
12
depends = [
 
13
]
 
14
 
 
15
# list of provided extension points
 
16
provides = [
 
17
    'hexeditor',
 
18
]
 
19
 
 
20
def init(manager):
 
21
    manager['hexeditor'] = manager.make_extension_point()