home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 March / maximum-cd-2011-03.iso / DiscContents / LibO_3.3.0rc1_Win_x86_install_multi.exe / libreoffice33.msi / api_output.dtd < prev    next >
Encoding:
Text File  |  2010-12-01  |  1.9 KB  |  59 lines

  1. <!--
  2. Simple XML output format for the 'api' option and the HTTP 
  3. interface of LanguageTool. Version 1.0.
  4. Daniel Naber (http://www.danielnaber.de), 2007-01-30
  5. -->
  6.  
  7. <!ELEMENT matches (error)*>
  8.  
  9. <!-- A (potential) error. The output is simplified XML to
  10. make parsing easier for those that do not use an XML parser.
  11. This means:
  12. * the error element does not contain line breaks
  13. * each 'error' element starts on a new line
  14. * the attributes always appear in this order: fromy, fromx, 
  15.   toy, tox, ruleId, msg, replacements, context, contextoffset, errorlength
  16. -->
  17. <!ELEMENT error EMPTY>
  18.  
  19. <!-- The line in which the error starts. Counting starts at 0. -->
  20. <!ATTLIST error fromy CDATA #REQUIRED>
  21. <!-- The column in which the error starts. Counting starts at 0. -->
  22. <!ATTLIST error fromx CDATA #REQUIRED>
  23.  
  24. <!-- The line in which the error ends: -->
  25. <!ATTLIST error toy CDATA #REQUIRED>
  26. <!-- The column in which the error ends: -->
  27. <!ATTLIST error tox CDATA #REQUIRED>
  28.  
  29. <!-- An internal ID that refers to the error rule: -->
  30. <!ATTLIST error ruleId CDATA #REQUIRED>
  31.  
  32. <!-- The message describing the error that will be displayed to the user. -->
  33. <!ATTLIST error msg CDATA #REQUIRED>
  34.  
  35. <!--
  36. One or more suggestions to fix the error. If there is more than one
  37. suggestion, the strings are separated by a "#" character:
  38. -->
  39. <!ATTLIST error replacements CDATA #IMPLIED>
  40.  
  41. <!--
  42. The context or sentence in which the error occurs.
  43. -->
  44. <!ATTLIST error context CDATA #REQUIRED>
  45.  
  46. <!-- The position of the start of the error in the 'context'
  47. attribute. Counting starts at 0.
  48. -->
  49. <!ATTLIST error contextoffset CDATA #REQUIRED>
  50.  
  51. <!-- The length in characters of the error in the 'context'
  52. attribute, starting at 'contextoffset'.
  53. -->
  54. <!ATTLIST error errorlength CDATA #REQUIRED>
  55.  
  56. <!-- Note that the XML output may contain XML comments with
  57. additional information like timing and debugging information.
  58. These can be ignored. -->
  59.