~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to lib/kofficecore/document-info.dtd

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--    $Id: document-info.dtd,v 1.1 2002/06/13 17:17:09 faure Exp $
 
2
 
 
3
This is an XML document type definition (DTD) for the documentinfo.xml files which
 
4
are used by all KOffice-1.1 and 1.1.1 programs, to store information about the
 
5
document (e.g. title and abstract) and its author.
 
6
 
 
7
ChangeLog:
 
8
Initial version (for koffice-1.1.1) written by David Faure <david@mandrakesoft.com>.
 
9
-->
 
10
 
 
11
<!--
 
12
  The document-info for a KOffice document contains one main element for each tab of
 
13
the "Document Info" dialog. As of KOffice-1.1, this includes: author and about.
 
14
A third page, "log" is planned for the future.
 
15
-->
 
16
<!ELEMENT document-info
 
17
    (author?, about?, log?)>
 
18
 
 
19
<!--
 
20
  The "author" element stores information about the author of the document.
 
21
-->
 
22
<!ELEMENT author
 
23
    (full-name?, title?, company?, email?, telephone?, fax?, country?, postal-code?, city?, street?)>
 
24
 
 
25
<!ELEMENT full-name
 
26
    (#PCDATA)>
 
27
<!ELEMENT title
 
28
    (#PCDATA)>
 
29
<!ELEMENT company
 
30
    (#PCDATA)>
 
31
<!ELEMENT email
 
32
    (#PCDATA)>
 
33
<!ELEMENT telephone
 
34
    (#PCDATA)>
 
35
<!ELEMENT fax
 
36
    (#PCDATA)>
 
37
<!ELEMENT country
 
38
    (#PCDATA)>
 
39
<!ELEMENT postal-code
 
40
    (#PCDATA)>
 
41
<!ELEMENT city
 
42
    (#PCDATA)>
 
43
<!ELEMENT street
 
44
    (#PCDATA)>
 
45
 
 
46
<!--
 
47
  The "about" element contains information about the document itself.
 
48
  This includes an optional title for the document, and an optional abstract.
 
49
-->
 
50
<!ELEMENT about
 
51
    (abstract?, title?)>
 
52
<!ELEMENT abstract
 
53
    (#PCDATA)>
 
54
<!--title already defined above-->
 
55
 
 
56
<!--
 
57
  The "log" element is unused at the moment.
 
58
-->
 
59
<!ELEMENT log
 
60
    EMPTY>
 
61