diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/dtd/tabletemplates.dtd | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/dtd/tabletemplates.dtd')
-rw-r--r-- | kword/dtd/tabletemplates.dtd | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/kword/dtd/tabletemplates.dtd b/kword/dtd/tabletemplates.dtd new file mode 100644 index 00000000..f1b96d6e --- /dev/null +++ b/kword/dtd/tabletemplates.dtd @@ -0,0 +1,57 @@ +<!-- + A tabletemplate holds pointers to a tablestyle for the first, last row and column and body. + + Name is the name of the tablestyle. + + With topleftcorner, toprightcorner, bottomleftcorner and bottomrightcorner attributes you + can tell KWord that particular corner belongs to that tablestyle. If you use them just give + a value of 1 to it, otherwise leave it out because KWord checks if the attribute is available. +--> + +<!ELEMENT TABLETEMPLATES + (TABLETEMPLATE*)> + +<!ELEMENT TABLETEMPLATE + (NAME|FIRSTROW|LASTROW|FIRSTCOL|LASTCOL|BODYCELL)> + +<!ELEMENT FIRSTROW + EMPTY> +<!ATTLIST FIRSTROW + name CDATA #REQUIRED + topleftcorner CDATA + toprightcorner CDATA> + +<!ELEMENT FIRSTCOL + EMPTY> +<!ATTLIST FIRSTCOL + name CDATA #REQUIRED + topleftcorner CDATA + bottomleftcorner CDATA> + +<!ELEMENT LASTROW + EMPTY> +<!ATTLIST LASTROW + name CDATA #REQUIRED + bottomleftcorner CDATA + bottomrightcorner CDATA> + +<!ELEMENT LASTCOL + EMPTY> +<!ATTLIST LASTCOL + name CDATA #REQUIRED + toprightcorner CDATA + bottomrightcorner CDATA> + +<!ELEMENT BODYCELL + EMPTY> +<!ATTLIST BODYCELL + name CDATA #REQUIRED> + +<!-- + Copied from kword.dtd (01-06-2002) +--> + +<!ELEMENT NAME + EMPTY> +<!ATTLIST NAME + value CDATA #REQUIRED> |