-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathOPmenu.xml
81 lines (75 loc) · 2.95 KB
/
OPmenu.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<menuDocument>
<menu>
<!-- <addScriptItem id="avl_save_as_snippet">
<label>as Snippet (AVL)...</label>
<parent>opmenu.save_menu</parent>
<insertBefore/>
<context>
<networkCategory>Object,Sop,Dop,Cop2</networkCategory>
<expression>
node = kwargs.get('node', None)
if node is None:
return False
return 'wrangle' in node.type().name().lower()
</expression>
</context>
</addScriptItem> -->
<!-- <addScriptItem id="avl_edit">
<label>Open in VEX Editor (AVL)...</label>
<parent>root_menu</parent>
<insertAfter>opmenu.save_menu</insertAfter>
<context>
<networkCategory>Object,Sop,Dop,Cop2</networkCategory>
<expression>
node = kwargs.get('node', None)
if node is None:
return False
return 'wrangle' in node.type().name().lower()
</expression>
</context>
</addScriptItem> -->
<!-- <addScriptItem id="avl_optimize">
<label>Optimize VEX Code (AVL)...</label>
<parent>root_menu</parent>
<insertAfter>avl_edit</insertAfter>
<context>
<networkCategory>Object,Sop,Dop,Cop2</networkCategory>
<expression>
node = kwargs.get('node', None)
if node is None:
return False
return 'wrangle' in node.type().name().lower()
</expression>
</context>
</addScriptItem> -->
<!-- <addScriptItem id="avl_deploy">
<label>Deploy AVL Code (AVL)...</label>
<parent>root_menu</parent>
<insertAfter>avl_optimize</insertAfter>
<context>
<networkCategory>Object,Sop,Dop,Cop2</networkCategory>
<expression>
node = kwargs.get('node', None)
if node is None:
return False
return 'wrangle' in node.type().name().lower()
</expression>
</context>
</addScriptItem> -->
<!-- <addScriptItem id="avl_convert_to_snippet">
<label>Convert to Snippet (AVL)</label>
<parent>root_menu</parent>
<insertAfter>opmenu.vop_options_menu</insertAfter>
<context>
<networkCategory>Vop</networkCategory>
<expression>
node = kwargs.get('node', None)
if node is None:
return False
return node.type().nameComponents()[1] == 'avl'
</expression>
</context>
</addScriptItem> -->
</menu>
</menuDocument>