blob: 72d97e512fabdcdb762396af8e414cf89e126bd3 (
plain)
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
|
<!DOCTYPE actionsconfig>
<actions>
<action icon="tag_table" type="tag" name="tag_table" text="Table" >
<tag useDialog="true" ><table></tag>
<xtag use="true" inLine="false" ></table></xtag>
</action>
<action icon="tag_table_row" type="tag" name="tag_table_row" text="Table Row (with dialog)" >
<tag useDialog="true" ><tr></tag>
<xtag use="true" inLine="false" ></tr></xtag>
</action>
<action icon="tag_table_body" type="tag" name="tag_table_body" text="Table Body (with dialog)" >
<tag useDialog="true" ><tbody></tag>
<xtag use="true" inLine="true" ></tbody></xtag>
</action>
<action icon="table_head" type="tag" name="tag_table_head" text="Table Head (with dialog)" >
<tag useDialog="true" ><th></tag>
<xtag use="true" inLine="true" ></th></xtag>
</action>
<action icon="table_data" type="tag" name="tag_table_data" text="Table Data (with dialog)" >
<tag useDialog="true" ><td></tag>
<xtag use="true" inLine="true" ></td></xtag>
</action>
<action icon="tag_tbody" type="tag" name="tag_tbody" text="Table Body" >
<tag useDialog="false" ><tbody></tag>
<xtag use="true" inLine="true" ></tbody></xtag>
</action>
<action icon="tag_th" type="tag" name="tag_th" text="Table Head" >
<tag useDialog="false" ><th></tag>
<xtag use="true" inLine="true" ></th></xtag>
</action>
<action icon="tag_tr" type="tag" name="tag_tr" text="Table Row" >
<tag useDialog="false" ><tr></tag>
<xtag use="true" inLine="false" ></tr></xtag>
</action>
<action icon="tag_td" type="tag" name="tag_td" text="Table Data" >
<tag useDialog="false" ><td></tag>
<xtag use="true" inLine="true" ></td></xtag>
</action>
<action icon="tag_caption" type="tag" name="tag_caption" text="Caption" >
<tag useDialog="false" ><caption></tag>
<xtag use="true" inLine="true" ></caption></xtag>
</action>
</actions>
|