PageRenderTime 59ms CodeModel.GetById 31ms RepoModel.GetById 1ms app.codeStats 0ms

/configuration/org.eclipse.osgi/bundles/322/1/.cp/Resources/language/php5.4/tidy.php

https://bitbucket.org/2GAndre/myeclipse4php
PHP | 668 lines | 192 code | 75 blank | 401 comment | 0 complexity | a043c6acab50537081ec2a15addf6eac MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <?php
  2. // Start of tidy v.2.0
  3. class tidy {
  4. /**
  5. * Returns the value of the specified configuration option for the tidy document
  6. * @link http://www.php.net/manual/en/tidy.getopt.php
  7. * @param option string <p>
  8. * You will find a list with each configuration option and their types
  9. * at: &url.tidy.conf;.
  10. * </p>
  11. * @return mixed the value of the specified option.
  12. * The return type depends on the type of the specified one.
  13. */
  14. public function getOpt ($option) {}
  15. /**
  16. * Execute configured cleanup and repair operations on parsed markup
  17. * @link http://www.php.net/manual/en/tidy.cleanrepair.php
  18. * @return bool Returns true on success or false on failure.
  19. */
  20. public function cleanRepair () {}
  21. /**
  22. * Parse markup in file or URI
  23. * @link http://www.php.net/manual/en/tidy.parsefile.php
  24. * @param filename string <p>
  25. * If the filename parameter is given, this function
  26. * will also read that file and initialize the object with the file,
  27. * acting like tidy_parse_file.
  28. * </p>
  29. * @param config mixed[optional] <p>
  30. * The config config can be passed either as an
  31. * array or as a string. If a string is passed, it is interpreted as the
  32. * name of the configuration file, otherwise, it is interpreted as the
  33. * options themselves.
  34. * </p>
  35. * <p>
  36. * For an explanation about each option, see
  37. * &url.tidy.conf;.
  38. * </p>
  39. * @param encoding string[optional] <p>
  40. * The encoding parameter sets the encoding for
  41. * input/output documents. The possible values for encoding are:
  42. * ascii, latin0, latin1,
  43. * raw, utf8, iso2022,
  44. * mac, win1252, ibm858,
  45. * utf16, utf16le, utf16be,
  46. * big5, and shiftjis.
  47. * </p>
  48. * @param use_include_path bool[optional] <p>
  49. * Search for the file in the include_path.
  50. * </p>
  51. * @return bool Returns true on success or false on failure.
  52. */
  53. public function parseFile ($filename, $config = null, $encoding = null, $use_include_path = null) {}
  54. /**
  55. * Parse a document stored in a string
  56. * @link http://www.php.net/manual/en/tidy.parsestring.php
  57. * @param input string <p>
  58. * The data to be parsed.
  59. * </p>
  60. * @param config mixed[optional] <p>
  61. * The config config can be passed either as an
  62. * array or as a string. If a string is passed, it is interpreted as the
  63. * name of the configuration file, otherwise, it is interpreted as the
  64. * options themselves.
  65. * </p>
  66. * <p>
  67. * For an explanation about each option, visit &url.tidy.conf;.
  68. * </p>
  69. * @param encoding string[optional] <p>
  70. * The encoding parameter sets the encoding for
  71. * input/output documents. The possible values for encoding are:
  72. * ascii, latin0, latin1,
  73. * raw, utf8, iso2022,
  74. * mac, win1252, ibm858,
  75. * utf16, utf16le, utf16be,
  76. * big5, and shiftjis.
  77. * </p>
  78. * @return bool a new tidy instance.
  79. */
  80. public function parseString ($input, $config = null, $encoding = null) {}
  81. /**
  82. * Repair a string using an optionally provided configuration file
  83. * @link http://www.php.net/manual/en/tidy.repairstring.php
  84. * @param data string <p>
  85. * The data to be repaired.
  86. * </p>
  87. * @param config mixed[optional] <p>
  88. * The config config can be passed either as an
  89. * array or as a string. If a string is passed, it is interpreted as the
  90. * name of the configuration file, otherwise, it is interpreted as the
  91. * options themselves.
  92. * </p>
  93. * <p>
  94. * Check &url.tidy.conf; for
  95. * an explanation about each option.
  96. * </p>
  97. * @param encoding string[optional] <p>
  98. * The encoding parameter sets the encoding for
  99. * input/output documents. The possible values for encoding are:
  100. * ascii, latin0, latin1,
  101. * raw, utf8, iso2022,
  102. * mac, win1252, ibm858,
  103. * utf16, utf16le, utf16be,
  104. * big5, and shiftjis.
  105. * </p>
  106. * @return string the repaired string.
  107. */
  108. public function repairString ($data, $config = null, $encoding = null) {}
  109. /**
  110. * Repair a file and return it as a string
  111. * @link http://www.php.net/manual/en/tidy.repairfile.php
  112. * @param filename string <p>
  113. * The file to be repaired.
  114. * </p>
  115. * @param config mixed[optional] <p>
  116. * The config config can be passed either as an
  117. * array or as a string. If a string is passed, it is interpreted as the
  118. * name of the configuration file, otherwise, it is interpreted as the
  119. * options themselves.
  120. * </p>
  121. * <p>
  122. * Check http://tidy.sourceforge.net/docs/quickref.html for an
  123. * explanation about each option.
  124. * </p>
  125. * @param encoding string[optional] <p>
  126. * The encoding parameter sets the encoding for
  127. * input/output documents. The possible values for encoding are:
  128. * ascii, latin0, latin1,
  129. * raw, utf8, iso2022,
  130. * mac, win1252, ibm858,
  131. * utf16, utf16le, utf16be,
  132. * big5, and shiftjis.
  133. * </p>
  134. * @param use_include_path bool[optional] <p>
  135. * Search for the file in the include_path.
  136. * </p>
  137. * @return string the repaired contents as a string.
  138. */
  139. public function repairFile ($filename, $config = null, $encoding = null, $use_include_path = null) {}
  140. /**
  141. * Run configured diagnostics on parsed and repaired markup
  142. * @link http://www.php.net/manual/en/tidy.diagnose.php
  143. * @return bool Returns true on success or false on failure.
  144. */
  145. public function diagnose () {}
  146. /**
  147. * Get release date (version) for Tidy library
  148. * @link http://www.php.net/manual/en/tidy.getrelease.php
  149. * @return string a string with the release date of the Tidy library.
  150. */
  151. public function getRelease () {}
  152. /**
  153. * Get current Tidy configuration
  154. * @link http://www.php.net/manual/en/tidy.getconfig.php
  155. * @return array an array of configuration options.
  156. * </p>
  157. * <p>
  158. * For an explanation about each option, visit &url.tidy.conf;.
  159. */
  160. public function getConfig () {}
  161. /**
  162. * Get status of specified document
  163. * @link http://www.php.net/manual/en/tidy.getstatus.php
  164. * @return int 0 if no error/warning was raised, 1 for warnings or accessibility
  165. * errors, or 2 for errors.
  166. */
  167. public function getStatus () {}
  168. /**
  169. * Get the Detected HTML version for the specified document
  170. * @link http://www.php.net/manual/en/tidy.gethtmlver.php
  171. * @return int the detected HTML version.
  172. * </p>
  173. * <p>
  174. * This function is not yet implemented in the Tidylib itself, so it always
  175. * return 0.
  176. */
  177. public function getHtmlVer () {}
  178. /**
  179. * Returns the documentation for the given option name
  180. * @link http://www.php.net/manual/en/tidy.getoptdoc.php
  181. * @param optname string <p>
  182. * The option name
  183. * </p>
  184. * @return string a string if the option exists and has documentation available, or
  185. * false otherwise.
  186. */
  187. public function getOptDoc ($optname) {}
  188. /**
  189. * Indicates if the document is a XHTML document
  190. * @link http://www.php.net/manual/en/tidy.isxhtml.php
  191. * @return bool This function returns true if the specified tidy
  192. * object is a XHTML document, or false otherwise.
  193. * </p>
  194. * <p>
  195. * This function is not yet implemented in the Tidylib itself, so it always
  196. * return false.
  197. */
  198. public function isXhtml () {}
  199. /**
  200. * Indicates if the document is a generic (non HTML/XHTML) XML document
  201. * @link http://www.php.net/manual/en/tidy.isxml.php
  202. * @return bool This function returns true if the specified tidy
  203. * object is a generic XML document (non HTML/XHTML),
  204. * or false otherwise.
  205. * </p>
  206. * <p>
  207. * This function is not yet implemented in the Tidylib itself, so it always
  208. * return false.
  209. */
  210. public function isXml () {}
  211. /**
  212. * Returns a <classname>tidyNode</classname> object representing the root of the tidy parse tree
  213. * @link http://www.php.net/manual/en/tidy.root.php
  214. * @return tidyNode the tidyNode object.
  215. */
  216. public function root () {}
  217. /**
  218. * Returns a <classname>tidyNode</classname> object starting from the &lt;head&gt; tag of the tidy parse tree
  219. * @link http://www.php.net/manual/en/tidy.head.php
  220. * @return tidyNode the tidyNode object.
  221. */
  222. public function head () {}
  223. /**
  224. * Returns a <classname>tidyNode</classname> object starting from the &lt;html&gt; tag of the tidy parse tree
  225. * @link http://www.php.net/manual/en/tidy.html.php
  226. * @return tidyNode the tidyNode object.
  227. */
  228. public function html () {}
  229. /**
  230. * Returns a <classname>tidyNode</classname> object starting from the &lt;body&gt; tag of the tidy parse tree
  231. * @link http://www.php.net/manual/en/tidy.body.php
  232. * @return tidyNode the detected HTML version.
  233. * </p>
  234. * <p>
  235. * This function is not yet implemented in the Tidylib itself, so it always
  236. * return 0.
  237. */
  238. public function body () {}
  239. /**
  240. * Constructs a new <classname>tidy</classname> object
  241. * @link http://www.php.net/manual/en/tidy.construct.php
  242. */
  243. public function __construct () {}
  244. }
  245. final class tidyNode {
  246. /**
  247. * Checks if a node has children
  248. * @link http://www.php.net/manual/en/tidynode.haschildren.php
  249. * @return bool true if the node has children, false otherwise.
  250. */
  251. public function hasChildren () {}
  252. /**
  253. * Checks if a node has siblings
  254. * @link http://www.php.net/manual/en/tidynode.hassiblings.php
  255. * @return bool true if the node has siblings, false otherwise.
  256. */
  257. public function hasSiblings () {}
  258. /**
  259. * Checks if a node represents a comment
  260. * @link http://www.php.net/manual/en/tidynode.iscomment.php
  261. * @return bool true if the node is a comment, false otherwise.
  262. */
  263. public function isComment () {}
  264. /**
  265. * Checks if a node is part of a HTML document
  266. * @link http://www.php.net/manual/en/tidynode.ishtml.php
  267. * @return bool true if the node is part of a HTML document, false otherwise.
  268. */
  269. public function isHtml () {}
  270. /**
  271. * Checks if a node represents text (no markup)
  272. * @link http://www.php.net/manual/en/tidynode.istext.php
  273. * @return bool true if the node represent a text, false otherwise.
  274. */
  275. public function isText () {}
  276. /**
  277. * Checks if this node is JSTE
  278. * @link http://www.php.net/manual/en/tidynode.isjste.php
  279. * @return bool true if the node is JSTE, false otherwise.
  280. */
  281. public function isJste () {}
  282. /**
  283. * Checks if this node is ASP
  284. * @link http://www.php.net/manual/en/tidynode.isasp.php
  285. * @return bool true if the node is ASP, false otherwise.
  286. */
  287. public function isAsp () {}
  288. /**
  289. * Checks if a node is PHP
  290. * @link http://www.php.net/manual/en/tidynode.isphp.php
  291. * @return bool true if the current node is PHP code, false otherwise.
  292. */
  293. public function isPhp () {}
  294. /**
  295. * Returns the parent node of the current node
  296. * @link http://www.php.net/manual/en/tidynode.getparent.php
  297. * @return tidyNode a tidyNode if the node has a parent, or &null;
  298. * otherwise.
  299. */
  300. public function getParent () {}
  301. private function __construct () {}
  302. }
  303. /**
  304. * @param option
  305. */
  306. function tidy_getopt ($option) {}
  307. /**
  308. * @param input
  309. * @param config_options[optional]
  310. * @param encoding[optional]
  311. */
  312. function tidy_parse_string ($input, $config_options, $encoding) {}
  313. /**
  314. * @param file
  315. * @param config_options[optional]
  316. * @param encoding[optional]
  317. * @param use_include_path[optional]
  318. */
  319. function tidy_parse_file ($file, $config_options, $encoding, $use_include_path) {}
  320. /**
  321. * Return a string representing the parsed tidy markup
  322. * @link http://www.php.net/manual/en/function.tidy-get-output.php
  323. * @param object tidy <p>
  324. * &tidy.object;
  325. * </p>
  326. * @return string the parsed tidy markup.
  327. */
  328. function tidy_get_output (tidy $object) {}
  329. function tidy_get_error_buffer () {}
  330. function tidy_clean_repair () {}
  331. /**
  332. * @param data
  333. * @param config_file[optional]
  334. * @param encoding[optional]
  335. */
  336. function tidy_repair_string ($data, $config_file, $encoding) {}
  337. /**
  338. * @param filename
  339. * @param config_file[optional]
  340. * @param encoding[optional]
  341. * @param use_include_path[optional]
  342. */
  343. function tidy_repair_file ($filename, $config_file, $encoding, $use_include_path) {}
  344. function tidy_diagnose () {}
  345. function tidy_get_release () {}
  346. function tidy_get_config () {}
  347. function tidy_get_status () {}
  348. function tidy_get_html_ver () {}
  349. function tidy_is_xhtml () {}
  350. function tidy_is_xml () {}
  351. /**
  352. * Returns the Number of Tidy errors encountered for specified document
  353. * @link http://www.php.net/manual/en/function.tidy-error-count.php
  354. * @param object tidy <p>
  355. * &tidy.object;
  356. * </p>
  357. * @return int the number of errors.
  358. */
  359. function tidy_error_count (tidy $object) {}
  360. /**
  361. * Returns the Number of Tidy warnings encountered for specified document
  362. * @link http://www.php.net/manual/en/function.tidy-warning-count.php
  363. * @param object tidy <p>
  364. * &tidy.object;
  365. * </p>
  366. * @return int the number of warnings.
  367. */
  368. function tidy_warning_count (tidy $object) {}
  369. /**
  370. * Returns the Number of Tidy accessibility warnings encountered for specified document
  371. * @link http://www.php.net/manual/en/function.tidy-access-count.php
  372. * @param object tidy <p>
  373. * &tidy.object;
  374. * </p>
  375. * @return int the number of warnings.
  376. */
  377. function tidy_access_count (tidy $object) {}
  378. /**
  379. * Returns the Number of Tidy configuration errors encountered for specified document
  380. * @link http://www.php.net/manual/en/function.tidy-config-count.php
  381. * @param object tidy <p>
  382. * &tidy.object;
  383. * </p>
  384. * @return int the number of errors.
  385. */
  386. function tidy_config_count (tidy $object) {}
  387. /**
  388. * @param resource
  389. * @param optname
  390. */
  391. function tidy_get_opt_doc ($resource, $optname) {}
  392. function tidy_get_root () {}
  393. function tidy_get_head () {}
  394. function tidy_get_html () {}
  395. /**
  396. * @param tidy
  397. */
  398. function tidy_get_body ($tidy) {}
  399. /**
  400. * description
  401. * @link http://www.php.net/manual/en/tidy.constants.php
  402. */
  403. define ('TIDY_TAG_UNKNOWN', 0);
  404. define ('TIDY_TAG_A', 1);
  405. define ('TIDY_TAG_ABBR', 2);
  406. define ('TIDY_TAG_ACRONYM', 3);
  407. define ('TIDY_TAG_ADDRESS', 4);
  408. define ('TIDY_TAG_ALIGN', 5);
  409. define ('TIDY_TAG_APPLET', 6);
  410. define ('TIDY_TAG_AREA', 7);
  411. define ('TIDY_TAG_B', 8);
  412. define ('TIDY_TAG_BASE', 9);
  413. define ('TIDY_TAG_BASEFONT', 10);
  414. define ('TIDY_TAG_BDO', 11);
  415. define ('TIDY_TAG_BGSOUND', 12);
  416. define ('TIDY_TAG_BIG', 13);
  417. define ('TIDY_TAG_BLINK', 14);
  418. define ('TIDY_TAG_BLOCKQUOTE', 15);
  419. define ('TIDY_TAG_BODY', 16);
  420. define ('TIDY_TAG_BR', 17);
  421. define ('TIDY_TAG_BUTTON', 18);
  422. define ('TIDY_TAG_CAPTION', 19);
  423. define ('TIDY_TAG_CENTER', 20);
  424. define ('TIDY_TAG_CITE', 21);
  425. define ('TIDY_TAG_CODE', 22);
  426. define ('TIDY_TAG_COL', 23);
  427. define ('TIDY_TAG_COLGROUP', 24);
  428. define ('TIDY_TAG_COMMENT', 25);
  429. define ('TIDY_TAG_DD', 26);
  430. define ('TIDY_TAG_DEL', 27);
  431. define ('TIDY_TAG_DFN', 28);
  432. define ('TIDY_TAG_DIR', 29);
  433. define ('TIDY_TAG_DIV', 30);
  434. define ('TIDY_TAG_DL', 31);
  435. define ('TIDY_TAG_DT', 32);
  436. define ('TIDY_TAG_EM', 33);
  437. define ('TIDY_TAG_EMBED', 34);
  438. define ('TIDY_TAG_FIELDSET', 35);
  439. define ('TIDY_TAG_FONT', 36);
  440. define ('TIDY_TAG_FORM', 37);
  441. define ('TIDY_TAG_FRAME', 38);
  442. define ('TIDY_TAG_FRAMESET', 39);
  443. define ('TIDY_TAG_H1', 40);
  444. define ('TIDY_TAG_H2', 41);
  445. define ('TIDY_TAG_H3', 42);
  446. define ('TIDY_TAG_H4', 43);
  447. define ('TIDY_TAG_H5', 44);
  448. define ('TIDY_TAG_H6', 45);
  449. define ('TIDY_TAG_HEAD', 46);
  450. define ('TIDY_TAG_HR', 47);
  451. define ('TIDY_TAG_HTML', 48);
  452. define ('TIDY_TAG_I', 49);
  453. define ('TIDY_TAG_IFRAME', 50);
  454. define ('TIDY_TAG_ILAYER', 51);
  455. define ('TIDY_TAG_IMG', 52);
  456. define ('TIDY_TAG_INPUT', 53);
  457. define ('TIDY_TAG_INS', 54);
  458. define ('TIDY_TAG_ISINDEX', 55);
  459. define ('TIDY_TAG_KBD', 56);
  460. define ('TIDY_TAG_KEYGEN', 57);
  461. define ('TIDY_TAG_LABEL', 58);
  462. define ('TIDY_TAG_LAYER', 59);
  463. define ('TIDY_TAG_LEGEND', 60);
  464. define ('TIDY_TAG_LI', 61);
  465. define ('TIDY_TAG_LINK', 62);
  466. define ('TIDY_TAG_LISTING', 63);
  467. define ('TIDY_TAG_MAP', 64);
  468. define ('TIDY_TAG_MARQUEE', 65);
  469. define ('TIDY_TAG_MENU', 66);
  470. define ('TIDY_TAG_META', 67);
  471. define ('TIDY_TAG_MULTICOL', 68);
  472. define ('TIDY_TAG_NOBR', 69);
  473. define ('TIDY_TAG_NOEMBED', 70);
  474. define ('TIDY_TAG_NOFRAMES', 71);
  475. define ('TIDY_TAG_NOLAYER', 72);
  476. define ('TIDY_TAG_NOSAVE', 73);
  477. define ('TIDY_TAG_NOSCRIPT', 74);
  478. define ('TIDY_TAG_OBJECT', 75);
  479. define ('TIDY_TAG_OL', 76);
  480. define ('TIDY_TAG_OPTGROUP', 77);
  481. define ('TIDY_TAG_OPTION', 78);
  482. define ('TIDY_TAG_P', 79);
  483. define ('TIDY_TAG_PARAM', 80);
  484. define ('TIDY_TAG_PLAINTEXT', 81);
  485. define ('TIDY_TAG_PRE', 82);
  486. define ('TIDY_TAG_Q', 83);
  487. define ('TIDY_TAG_RB', 84);
  488. define ('TIDY_TAG_RBC', 85);
  489. define ('TIDY_TAG_RP', 86);
  490. define ('TIDY_TAG_RT', 87);
  491. define ('TIDY_TAG_RTC', 88);
  492. define ('TIDY_TAG_RUBY', 89);
  493. define ('TIDY_TAG_S', 90);
  494. define ('TIDY_TAG_SAMP', 91);
  495. define ('TIDY_TAG_SCRIPT', 92);
  496. define ('TIDY_TAG_SELECT', 93);
  497. define ('TIDY_TAG_SERVER', 94);
  498. define ('TIDY_TAG_SERVLET', 95);
  499. define ('TIDY_TAG_SMALL', 96);
  500. define ('TIDY_TAG_SPACER', 97);
  501. define ('TIDY_TAG_SPAN', 98);
  502. define ('TIDY_TAG_STRIKE', 99);
  503. define ('TIDY_TAG_STRONG', 100);
  504. define ('TIDY_TAG_STYLE', 101);
  505. define ('TIDY_TAG_SUB', 102);
  506. define ('TIDY_TAG_SUP', 103);
  507. define ('TIDY_TAG_TABLE', 104);
  508. define ('TIDY_TAG_TBODY', 105);
  509. define ('TIDY_TAG_TD', 106);
  510. define ('TIDY_TAG_TEXTAREA', 107);
  511. define ('TIDY_TAG_TFOOT', 108);
  512. define ('TIDY_TAG_TH', 109);
  513. define ('TIDY_TAG_THEAD', 110);
  514. define ('TIDY_TAG_TITLE', 111);
  515. define ('TIDY_TAG_TR', 112);
  516. define ('TIDY_TAG_TT', 113);
  517. define ('TIDY_TAG_U', 114);
  518. define ('TIDY_TAG_UL', 115);
  519. define ('TIDY_TAG_VAR', 116);
  520. define ('TIDY_TAG_WBR', 117);
  521. define ('TIDY_TAG_XMP', 118);
  522. /**
  523. * root node
  524. * @link http://www.php.net/manual/en/tidy.constants.php
  525. */
  526. define ('TIDY_NODETYPE_ROOT', 0);
  527. /**
  528. * doctype
  529. * @link http://www.php.net/manual/en/tidy.constants.php
  530. */
  531. define ('TIDY_NODETYPE_DOCTYPE', 1);
  532. /**
  533. * HTML comment
  534. * @link http://www.php.net/manual/en/tidy.constants.php
  535. */
  536. define ('TIDY_NODETYPE_COMMENT', 2);
  537. /**
  538. * Processing Instruction
  539. * @link http://www.php.net/manual/en/tidy.constants.php
  540. */
  541. define ('TIDY_NODETYPE_PROCINS', 3);
  542. /**
  543. * Text
  544. * @link http://www.php.net/manual/en/tidy.constants.php
  545. */
  546. define ('TIDY_NODETYPE_TEXT', 4);
  547. /**
  548. * start tag
  549. * @link http://www.php.net/manual/en/tidy.constants.php
  550. */
  551. define ('TIDY_NODETYPE_START', 5);
  552. /**
  553. * end tag
  554. * @link http://www.php.net/manual/en/tidy.constants.php
  555. */
  556. define ('TIDY_NODETYPE_END', 6);
  557. /**
  558. * empty tag
  559. * @link http://www.php.net/manual/en/tidy.constants.php
  560. */
  561. define ('TIDY_NODETYPE_STARTEND', 7);
  562. /**
  563. * CDATA
  564. * @link http://www.php.net/manual/en/tidy.constants.php
  565. */
  566. define ('TIDY_NODETYPE_CDATA', 8);
  567. /**
  568. * XML section
  569. * @link http://www.php.net/manual/en/tidy.constants.php
  570. */
  571. define ('TIDY_NODETYPE_SECTION', 9);
  572. /**
  573. * ASP code
  574. * @link http://www.php.net/manual/en/tidy.constants.php
  575. */
  576. define ('TIDY_NODETYPE_ASP', 10);
  577. /**
  578. * JSTE code
  579. * @link http://www.php.net/manual/en/tidy.constants.php
  580. */
  581. define ('TIDY_NODETYPE_JSTE', 11);
  582. /**
  583. * PHP code
  584. * @link http://www.php.net/manual/en/tidy.constants.php
  585. */
  586. define ('TIDY_NODETYPE_PHP', 12);
  587. /**
  588. * XML declaration
  589. * @link http://www.php.net/manual/en/tidy.constants.php
  590. */
  591. define ('TIDY_NODETYPE_XMLDECL', 13);
  592. // End of tidy v.2.0
  593. ?>