diff options
| author | Luca Falavigna <dktrkranz@debian.org> | 2014-04-26 15:11:58 +0200 |
|---|---|---|
| committer | Luca Falavigna <dktrkranz@debian.org> | 2014-04-26 15:11:58 +0200 |
| commit | a3a0ab66f0da855e75e3a0e2acfb8aa106b46510 (patch) | |
| tree | 5352edff1387c3d7e5a8b49ec56524f085c22782 /doc/editor_configs/xmlmind/addon/config/scons/htmlTable.incl | |
| parent | 51fa4e4acb6fc8fc7a2af0fbdc21fd1e8feddb3a (diff) | |
| parent | 140d836e9cd54fb67b969fd82ef7ed19ba574d40 (diff) | |
Merge tag 'upstream/2.3.1'
Upstream version 2.3.1
Diffstat (limited to 'doc/editor_configs/xmlmind/addon/config/scons/htmlTable.incl')
| -rw-r--r-- | doc/editor_configs/xmlmind/addon/config/scons/htmlTable.incl | 195 |
1 files changed, 195 insertions, 0 deletions
diff --git a/doc/editor_configs/xmlmind/addon/config/scons/htmlTable.incl b/doc/editor_configs/xmlmind/addon/config/scons/htmlTable.incl new file mode 100644 index 0000000..5ea16b8 --- /dev/null +++ b/doc/editor_configs/xmlmind/addon/config/scons/htmlTable.incl @@ -0,0 +1,195 @@ +<?xml version='1.0' encoding='ISO-8859-1'?> +<configuration + xmlns="http://www.xmlmind.com/xmleditor/schema/configuration" + xmlns:cfg="http://www.xmlmind.com/xmleditor/schema/configuration"> + + <!-- Without this, a tgroup is created with a tbody containing tr. --> + + <cfg:elementTemplate xmlns="" name="CALS" selectable="override" + parent="tgroup|entrytbl"> + <tbody> + <row><entry></entry></row> + </tbody> + </cfg:elementTemplate> + + <cfg:elementTemplate xmlns="" name="CALS" selectable="override" + parent="tgroup|entrytbl"> + <thead> + <row><entry></entry></row> + </thead> + </cfg:elementTemplate> + + <cfg:elementTemplate xmlns="" name="CALS" selectable="override" + parent="tgroup|entrytbl"> + <tfoot> + <row><entry></entry></row> + </tfoot> + </cfg:elementTemplate> + + <cfg:elementTemplate xmlns="" name="HTML" selectable="override" + parent="table|informaltable"> + <tbody> + <tr><td></td></tr> + </tbody> + </cfg:elementTemplate> + + <cfg:elementTemplate xmlns="" name="HTML" selectable="override" + parent="table|informaltable"> + <thead> + <tr><th></th></tr> + </thead> + </cfg:elementTemplate> + + <cfg:elementTemplate xmlns="" name="HTML" selectable="override" + parent="table|informaltable"> + <tfoot> + <tr><th></th></tr> + </tfoot> + </cfg:elementTemplate> + + <!-- HTML table templates =============================================== --> + + <!-- selectable="false" is used to avoid clutter in the Element menu. + Therefore these templates can only be used by the macros triggered + by toobar buttons. --> + + <elementTemplate name="HTML" selectable="false"> + <informaltable xmlns="" border="1"> + <tr> + <td></td><td></td> + </tr> + <tr> + <td></td><td></td> + </tr> + </informaltable> + </elementTemplate> + + <elementTemplate name="HTML_head_row" selectable="false"> + <informaltable xmlns="" frame="box" rules="all"> + <thead> + <tr align="center"> + <th></th><th></th> + </tr> + </thead> + <tbody> + <tr> + <td></td><td></td> + </tr> + <tr> + <td></td><td></td> + </tr> + </tbody> + </informaltable> + </elementTemplate> + + <elementTemplate name="HTML_head_column" selectable="false"> + <informaltable xmlns="" frame="box" rules="all"> + <col align="center" span="1" /> + <tbody> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + </tbody> + </informaltable> + </elementTemplate> + + <elementTemplate name="HTML_head_row_column" selectable="false"> + <informaltable xmlns="" frame="box" rules="all"> + <col align="center" span="1" /> + <thead> + <tr align="center"> + <th></th><th></th> + </tr> + </thead> + <tbody> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + </tbody> + </informaltable> + </elementTemplate> + + <elementTemplate name="HTML" selectable="false"> + <table xmlns="" border="1"> + <caption></caption> + <tr> + <td></td><td></td> + </tr> + <tr> + <td></td><td></td> + </tr> + </table> + </elementTemplate> + + <elementTemplate name="HTML_head_row" selectable="false"> + <table xmlns="" frame="box" rules="all"> + <caption></caption> + <thead> + <tr align="center"> + <th></th><th></th> + </tr> + </thead> + <tbody> + <tr> + <td></td><td></td> + </tr> + <tr> + <td></td><td></td> + </tr> + </tbody> + </table> + </elementTemplate> + + <elementTemplate name="HTML_head_column" selectable="false"> + <table xmlns="" frame="box" rules="all"> + <caption></caption> + <col align="center" span="1" /> + <tbody> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + </tbody> + </table> + </elementTemplate> + + <elementTemplate name="HTML_head_row_column" selectable="false"> + <table xmlns="" frame="box" rules="all"> + <caption></caption> + <col align="center" span="1" /> + <thead> + <tr align="center"> + <th></th><th></th> + </tr> + </thead> + <tbody> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + <tr> + <th></th><td></td> + </tr> + </tbody> + </table> + </elementTemplate> +</configuration> |
