2011-09-26 11:22:07 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# <pep8 compliant>
|
|
|
|
|
2013-02-26 05:22:04 +00:00
|
|
|
# bpy.type.KeyMap: (km.name, km.space_type, km.region_type, [...])
|
|
|
|
|
|
|
|
# ('Script', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
|
|
|
|
2011-09-26 11:22:07 +00:00
|
|
|
KM_HIERARCHY = [
|
|
|
|
('Window', 'EMPTY', 'WINDOW', []), # file save, window change, exit
|
|
|
|
('Screen', 'EMPTY', 'WINDOW', [ # full screen, undo, screenshot
|
2011-10-17 06:58:07 +00:00
|
|
|
('Screen Editing', 'EMPTY', 'WINDOW', []), # re-sizing, action corners
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
|
|
|
|
('View2D', 'EMPTY', 'WINDOW', []), # view 2d navigation (per region)
|
|
|
|
('View2D Buttons List', 'EMPTY', 'WINDOW', []), # view 2d with buttons navigation
|
|
|
|
('Header', 'EMPTY', 'WINDOW', []), # header stuff (per region)
|
Grease Pencil - Storyboarding Features (merge from GPencil_EditStrokes branch)
This merge-commit brings in a number of new features and workflow/UI improvements for
working with Grease Pencil. While these were originally targetted at improving
the workflow for creating 3D storyboards in Blender using the Grease Pencil,
many of these changes should also prove useful in other workflows too.
The main highlights here are:
1) It is now possible to edit Grease Pencil strokes
- Use D Tab, or toggle the "Enable Editing" toggles in the Toolbar/Properties regions
to enter "Stroke Edit Mode". In this mode, many common editing tools will
operate on Grease Pencil stroke points instead.
- Tools implemented include Select, Select All/Border/Circle/Linked/More/Less,
Grab, Rotate, Scale, Bend, Shear, To Sphere, Mirror, Duplicate, Delete.
- Proportional Editing works when using the transform tools
2) Grease Pencil stroke settings can now be animated
NOTE: Currently drivers don't work, but if time allows, this may still be
added before the release.
3) Strokes can be drawn with "filled" interiors, using a separate set of
colour/opacity settings to the ones used for the lines themselves.
This makes use of OpenGL filled polys, which has the limitation of only
being able to fill convex shapes. Some artifacts may be visible on concave
shapes (e.g. pacman's mouth will be overdrawn)
4) "Volumetric Strokes" - An alternative drawing technique for stroke drawing
has been added which draws strokes as a series of screen-aligned discs.
While this was originally a partial experimental technique at getting better
quality 3D lines, the effects possible using this technique were interesting
enough to warrant making this a dedicated feature. Best results when partial
opacity and large stroke widths are used.
5) Improved Onion Skinning Support
- Different colours can be selected for the before/after ghosts. To do so,
enable the "colour wheel" toggle beside the Onion Skinning toggle, and set
the colours accordingly.
- Different numbers of ghosts can be shown before/after the current frame
6) Grease Pencil datablocks are now attached to the scene by default instead of
the active object.
- For a long time, the object-attachment has proved to be quite problematic
for users to keep track of. Now that this is done at scene level, it is
easier for most users to use.
- An exception for old files (and for any addons which may benefit from object
attachment instead), is that if the active object has a Grease Pencil datablock,
that will be used instead.
- It is not currently possible to choose object-attachment from the UI, but
it is simple to do this from the console instead, by doing:
context.active_object.grease_pencil = bpy.data.grease_pencil["blah"]
7) Various UI Cleanups
- The layers UI has been cleaned up to use a list instead of the nested-panels
design. Apart from saving space, this is also much nicer to look at now.
- The UI code is now all defined in Python. To support this, it has been necessary
to add some new context properties to make it easier to access these settings.
e.g. "gpencil_data" for the datablock
"active_gpencil_layer" and "active_gpencil_frame" for active data,
"editable_gpencil_strokes" for the strokes that can be edited
- The "stroke placement/alignment" settings (previously "Drawing Settings" at the
bottom of the Grease Pencil panel in the Properties Region) is now located in
the toolbar. These were more toolsettings than properties for how GPencil got drawn.
- "Use Sketching Sessions" has been renamed "Continuous Drawing", as per a
suggestion for an earlier discussion on developer.blender.org
- By default, the painting operator will wait for a mouse button to be pressed
before it starts creating the stroke. This is to make it easier to include
this operator in various toolbars/menus/etc. To get it immediately starting
(as when you hold down DKEy to draw), set "wait_for_input" to False.
- GPencil Layers can be rearranged in the "Grease Pencil" mode of the Action Editor
- Toolbar panels have been added to all the other editors which support these.
8) Pie menus for quick-access to tools
A set of experimental pie menus has been included for quick access to many
tools and settings. It is not necessary to use these to get things done,
but they have been designed to help make certain common tasks easier.
- Ctrl-D = The main pie menu. Reveals tools in a context sensitive and
spatially stable manner.
- D Q = "Quick Settings" pie. This allows quick access to the active
layer's settings. Notably, colours, thickness, and turning
onion skinning on/off.
2014-11-30 12:52:06 +00:00
|
|
|
|
|
|
|
('Grease Pencil', 'EMPTY', 'WINDOW', [ # grease pencil stuff (per region)
|
|
|
|
('Grease Pencil Stroke Edit Mode', 'EMPTY', 'WINDOW', []),
|
|
|
|
]),
|
2011-09-26 11:22:07 +00:00
|
|
|
|
|
|
|
('3D View', 'VIEW_3D', 'WINDOW', [ # view 3d navigation and generic stuff (select, transform)
|
|
|
|
('Object Mode', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Mesh', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Curve', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Armature', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Metaball', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Lattice', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Font', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
|
|
|
('Pose', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
|
|
|
('Vertex Paint', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Weight Paint', 'EMPTY', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
('Weight Paint Vertex Selection', 'EMPTY', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
('Face Mask', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Image Paint', 'EMPTY', 'WINDOW', []), # image and view3d
|
|
|
|
('Sculpt', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
|
|
|
('Particle', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
2013-02-26 05:22:04 +00:00
|
|
|
('Knife Tool Modal Map', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Paint Stroke Modal', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
2011-09-26 11:22:07 +00:00
|
|
|
('Object Non-modal', 'EMPTY', 'WINDOW', []), # mode change
|
|
|
|
|
2013-12-03 13:40:45 +00:00
|
|
|
('View3D Walk Modal', 'EMPTY', 'WINDOW', []),
|
2013-04-29 17:59:44 +00:00
|
|
|
('View3D Fly Modal', 'EMPTY', 'WINDOW', []),
|
|
|
|
('View3D Rotate Modal', 'EMPTY', 'WINDOW', []),
|
|
|
|
('View3D Move Modal', 'EMPTY', 'WINDOW', []),
|
|
|
|
('View3D Zoom Modal', 'EMPTY', 'WINDOW', []),
|
|
|
|
('View3D Dolly Modal', 'EMPTY', 'WINDOW', []),
|
|
|
|
|
2013-02-26 05:22:04 +00:00
|
|
|
('3D View Generic', 'VIEW_3D', 'WINDOW', []), # toolbar and properties
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
|
|
|
|
('Frames', 'EMPTY', 'WINDOW', []), # frame navigation (per region)
|
|
|
|
('Markers', 'EMPTY', 'WINDOW', []), # markers (per region)
|
|
|
|
('Animation', 'EMPTY', 'WINDOW', []), # frame change on click, preview range (per region)
|
|
|
|
('Animation Channels', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Graph Editor', 'GRAPH_EDITOR', 'WINDOW', [
|
2013-02-26 05:22:04 +00:00
|
|
|
('Graph Editor Generic', 'GRAPH_EDITOR', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
('Dopesheet', 'DOPESHEET_EDITOR', 'WINDOW', []),
|
|
|
|
('NLA Editor', 'NLA_EDITOR', 'WINDOW', [
|
|
|
|
('NLA Channels', 'NLA_EDITOR', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
('NLA Generic', 'NLA_EDITOR', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
|
|
|
|
('Image', 'IMAGE_EDITOR', 'WINDOW', [
|
|
|
|
('UV Editor', 'EMPTY', 'WINDOW', []), # image (reverse order, UVEdit before Image
|
|
|
|
('Image Paint', 'EMPTY', 'WINDOW', []), # image and view3d
|
2012-01-17 16:31:13 +00:00
|
|
|
('UV Sculpt', 'EMPTY', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
('Image Generic', 'IMAGE_EDITOR', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
|
|
|
|
('Timeline', 'TIMELINE', 'WINDOW', []),
|
|
|
|
('Outliner', 'OUTLINER', 'WINDOW', []),
|
|
|
|
|
|
|
|
('Node Editor', 'NODE_EDITOR', 'WINDOW', [
|
2013-02-26 05:22:04 +00:00
|
|
|
('Node Generic', 'NODE_EDITOR', 'WINDOW', []),
|
|
|
|
]),
|
|
|
|
('Sequencer', 'SEQUENCE_EDITOR', 'WINDOW', [
|
|
|
|
('SequencerCommon', 'SEQUENCE_EDITOR', 'WINDOW', []),
|
|
|
|
('SequencerPreview', 'SEQUENCE_EDITOR', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
('Logic Editor', 'LOGIC_EDITOR', 'WINDOW', []),
|
|
|
|
|
|
|
|
('File Browser', 'FILE_BROWSER', 'WINDOW', [
|
|
|
|
('File Browser Main', 'FILE_BROWSER', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
('File Browser Buttons', 'FILE_BROWSER', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
]),
|
|
|
|
|
2013-02-26 05:22:04 +00:00
|
|
|
('Info', 'INFO', 'WINDOW', []),
|
|
|
|
|
2011-09-26 11:22:07 +00:00
|
|
|
('Property Editor', 'PROPERTIES', 'WINDOW', []), # align context menu
|
|
|
|
|
2013-02-26 05:22:04 +00:00
|
|
|
('Text', 'TEXT_EDITOR', 'WINDOW', [
|
|
|
|
('Text Generic', 'TEXT_EDITOR', 'WINDOW', []),
|
|
|
|
]),
|
2011-09-26 11:22:07 +00:00
|
|
|
('Console', 'CONSOLE', 'WINDOW', []),
|
2011-11-07 12:55:18 +00:00
|
|
|
('Clip', 'CLIP_EDITOR', 'WINDOW', [
|
|
|
|
('Clip Editor', 'CLIP_EDITOR', 'WINDOW', []),
|
|
|
|
('Clip Graph Editor', 'CLIP_EDITOR', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
('Clip Dopesheet Editor', 'CLIP_EDITOR', 'WINDOW', []),
|
2012-06-04 17:13:38 +00:00
|
|
|
('Mask Editing', 'EMPTY', 'WINDOW', []), # image (reverse order, UVEdit before Image
|
2011-11-07 12:55:18 +00:00
|
|
|
]),
|
2011-09-26 11:22:07 +00:00
|
|
|
|
|
|
|
('View3D Gesture Circle', 'EMPTY', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
('Gesture Straight Line', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Gesture Zoom Border', 'EMPTY', 'WINDOW', []),
|
2011-09-26 11:22:07 +00:00
|
|
|
('Gesture Border', 'EMPTY', 'WINDOW', []),
|
2013-02-26 05:22:04 +00:00
|
|
|
|
2011-09-26 11:22:07 +00:00
|
|
|
('Standard Modal Map', 'EMPTY', 'WINDOW', []),
|
|
|
|
('Transform Modal Map', 'EMPTY', 'WINDOW', []),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Utility functions
|
|
|
|
|
|
|
|
def km_exists_in(km, export_keymaps):
|
|
|
|
for km2, kc in export_keymaps:
|
|
|
|
if km2.name == km.name:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def keyconfig_merge(kc1, kc2):
|
|
|
|
""" note: kc1 takes priority over kc2
|
|
|
|
"""
|
|
|
|
merged_keymaps = [(km, kc1) for km in kc1.keymaps]
|
|
|
|
if kc1 != kc2:
|
2011-10-02 18:09:36 +00:00
|
|
|
merged_keymaps.extend((km, kc2) for km in kc2.keymaps if not km_exists_in(km, merged_keymaps))
|
2011-09-26 11:22:07 +00:00
|
|
|
|
|
|
|
return merged_keymaps
|
|
|
|
|
|
|
|
|
2013-11-03 18:04:45 +00:00
|
|
|
def _export_properties(prefix, properties, kmi_id, lines=None):
|
2011-09-26 11:22:07 +00:00
|
|
|
from bpy.types import OperatorProperties
|
|
|
|
|
2011-10-02 18:09:36 +00:00
|
|
|
if lines is None:
|
|
|
|
lines = []
|
|
|
|
|
2011-09-26 11:22:07 +00:00
|
|
|
def string_value(value):
|
|
|
|
if isinstance(value, str) or isinstance(value, bool) or isinstance(value, float) or isinstance(value, int):
|
|
|
|
result = repr(value)
|
|
|
|
elif getattr(value, '__len__', False):
|
|
|
|
return repr(list(value))
|
|
|
|
else:
|
|
|
|
print("Export key configuration: can't write ", value)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
2011-10-02 18:09:36 +00:00
|
|
|
for pname in properties.bl_rna.properties.keys():
|
2012-05-31 16:04:07 +00:00
|
|
|
if pname != "rna_type":
|
2011-10-02 18:09:36 +00:00
|
|
|
value = getattr(properties, pname)
|
|
|
|
if isinstance(value, OperatorProperties):
|
2013-11-03 18:04:45 +00:00
|
|
|
_export_properties(prefix + "." + pname, value, kmi_id, lines)
|
2011-10-02 18:09:36 +00:00
|
|
|
elif properties.is_property_set(pname):
|
|
|
|
value = string_value(value)
|
|
|
|
if value != "":
|
2014-02-18 23:26:53 +00:00
|
|
|
lines.append("kmi_props_setattr(%s, '%s', %s)\n" % (prefix, pname, value))
|
2011-10-02 18:09:36 +00:00
|
|
|
return lines
|
|
|
|
|
|
|
|
|
2013-11-03 18:04:45 +00:00
|
|
|
def _kmistr(kmi, is_modal):
|
|
|
|
if is_modal:
|
|
|
|
kmi_id = kmi.propvalue
|
|
|
|
kmi_newfunc = 'new_modal'
|
|
|
|
else:
|
|
|
|
kmi_id = kmi.idname
|
|
|
|
kmi_newfunc = 'new'
|
|
|
|
s = ["kmi = km.keymap_items.%s(\'%s\', \'%s\', \'%s\'" % (kmi_newfunc, kmi_id, kmi.type, kmi.value)]
|
|
|
|
|
|
|
|
if kmi.any:
|
|
|
|
s.append(", any=True")
|
|
|
|
else:
|
|
|
|
if kmi.shift:
|
|
|
|
s.append(", shift=True")
|
|
|
|
if kmi.ctrl:
|
|
|
|
s.append(", ctrl=True")
|
|
|
|
if kmi.alt:
|
|
|
|
s.append(", alt=True")
|
|
|
|
if kmi.oskey:
|
|
|
|
s.append(", oskey=True")
|
|
|
|
if kmi.key_modifier and kmi.key_modifier != 'NONE':
|
|
|
|
s.append(", key_modifier=\'%s\'" % kmi.key_modifier)
|
|
|
|
|
|
|
|
s.append(")\n")
|
|
|
|
|
|
|
|
props = kmi.properties
|
|
|
|
|
|
|
|
if props is not None:
|
|
|
|
_export_properties("kmi.properties", props, kmi_id, s)
|
|
|
|
|
2014-01-22 13:24:37 +00:00
|
|
|
if not kmi.active:
|
|
|
|
s.append("kmi.active = False\n")
|
|
|
|
|
2013-11-03 18:04:45 +00:00
|
|
|
return "".join(s)
|
|
|
|
|
|
|
|
|
2011-10-02 18:09:36 +00:00
|
|
|
def keyconfig_export(wm, kc, filepath):
|
2011-09-26 11:22:07 +00:00
|
|
|
|
|
|
|
f = open(filepath, "w")
|
|
|
|
|
|
|
|
f.write("import bpy\n")
|
|
|
|
f.write("import os\n\n")
|
2014-02-18 23:26:53 +00:00
|
|
|
f.write("def kmi_props_setattr(kmi_props, attr, value):\n"
|
|
|
|
" try:\n"
|
|
|
|
" setattr(kmi_props, attr, value)\n"
|
|
|
|
" except AttributeError:\n"
|
|
|
|
" print(\"Warning: property '%s' not found in keymap item '%s'\" %\n"
|
|
|
|
" (attr, kmi_props.__class__.__name__))\n"
|
|
|
|
" except Exception as e:\n"
|
|
|
|
" print(\"Warning: %r\" % e)\n\n")
|
2011-09-26 11:22:07 +00:00
|
|
|
f.write("wm = bpy.context.window_manager\n")
|
|
|
|
f.write("kc = wm.keyconfigs.new(os.path.splitext(os.path.basename(__file__))[0])\n\n") # keymap must be created by caller
|
|
|
|
|
|
|
|
# Generate a list of keymaps to export:
|
|
|
|
#
|
|
|
|
# First add all user_modified keymaps (found in keyconfigs.user.keymaps list),
|
|
|
|
# then add all remaining keymaps from the currently active custom keyconfig.
|
|
|
|
#
|
2012-06-19 22:17:19 +00:00
|
|
|
# This will create a final list of keymaps that can be used as a "diff" against
|
2011-09-26 11:22:07 +00:00
|
|
|
# the default blender keyconfig, recreating the current setup from a fresh blender
|
|
|
|
# without needing to export keymaps which haven't been edited.
|
|
|
|
|
|
|
|
class FakeKeyConfig():
|
|
|
|
keymaps = []
|
|
|
|
edited_kc = FakeKeyConfig()
|
|
|
|
for km in wm.keyconfigs.user.keymaps:
|
|
|
|
if km.is_user_modified:
|
|
|
|
edited_kc.keymaps.append(km)
|
|
|
|
# merge edited keymaps with non-default keyconfig, if it exists
|
|
|
|
if kc != wm.keyconfigs.default:
|
|
|
|
export_keymaps = keyconfig_merge(edited_kc, kc)
|
|
|
|
else:
|
|
|
|
export_keymaps = keyconfig_merge(edited_kc, edited_kc)
|
|
|
|
|
|
|
|
for km, kc_x in export_keymaps:
|
|
|
|
|
|
|
|
km = km.active()
|
|
|
|
|
|
|
|
f.write("# Map %s\n" % km.name)
|
|
|
|
f.write("km = kc.keymaps.new('%s', space_type='%s', region_type='%s', modal=%s)\n\n" % (km.name, km.space_type, km.region_type, km.is_modal))
|
|
|
|
for kmi in km.keymap_items:
|
2013-11-03 18:04:45 +00:00
|
|
|
f.write(_kmistr(kmi, km.is_modal))
|
2011-09-26 11:22:07 +00:00
|
|
|
f.write("\n")
|
|
|
|
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
def keyconfig_test(kc):
|
|
|
|
|
2011-09-26 15:39:15 +00:00
|
|
|
def testEntry(kc, entry, src=None, parent=None):
|
2011-09-26 11:22:07 +00:00
|
|
|
result = False
|
|
|
|
|
|
|
|
idname, spaceid, regionid, children = entry
|
|
|
|
|
|
|
|
km = kc.keymaps.find(idname, space_type=spaceid, region_type=regionid)
|
|
|
|
|
|
|
|
if km:
|
|
|
|
km = km.active()
|
2013-11-03 18:04:45 +00:00
|
|
|
is_modal = km.is_modal
|
2011-09-26 11:22:07 +00:00
|
|
|
|
|
|
|
if src:
|
|
|
|
for item in km.keymap_items:
|
|
|
|
if src.compare(item):
|
|
|
|
print("===========")
|
|
|
|
print(parent.name)
|
2013-11-03 18:04:45 +00:00
|
|
|
print(_kmistr(src, is_modal).strip())
|
2011-09-26 11:22:07 +00:00
|
|
|
print(km.name)
|
2013-11-03 18:04:45 +00:00
|
|
|
print(_kmistr(item, is_modal).strip())
|
2011-09-26 11:22:07 +00:00
|
|
|
result = True
|
|
|
|
|
|
|
|
for child in children:
|
|
|
|
if testEntry(kc, child, src, parent):
|
|
|
|
result = True
|
|
|
|
else:
|
|
|
|
for i in range(len(km.keymap_items)):
|
|
|
|
src = km.keymap_items[i]
|
|
|
|
|
|
|
|
for child in children:
|
|
|
|
if testEntry(kc, child, src, km):
|
|
|
|
result = True
|
|
|
|
|
|
|
|
for j in range(len(km.keymap_items) - i - 1):
|
|
|
|
item = km.keymap_items[j + i + 1]
|
|
|
|
if src.compare(item):
|
|
|
|
print("===========")
|
|
|
|
print(km.name)
|
2013-11-03 18:04:45 +00:00
|
|
|
print(_kmistr(src, is_modal).strip())
|
|
|
|
print(_kmistr(item, is_modal).strip())
|
2011-09-26 11:22:07 +00:00
|
|
|
result = True
|
|
|
|
|
|
|
|
for child in children:
|
|
|
|
if testEntry(kc, child):
|
|
|
|
result = True
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Function body
|
|
|
|
|
|
|
|
result = False
|
|
|
|
for entry in KM_HIERARCHY:
|
|
|
|
if testEntry(kc, entry):
|
|
|
|
result = True
|
|
|
|
return result
|