home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / demos / TclXML / README < prev    next >
Encoding:
Text File  |  2001-10-22  |  1.4 KB  |  41 lines

  1. examples/README --
  2.  
  3. This directory contains some small example scripts to demonstrate
  4. the use of TclXML.
  5.  
  6. ---------------------------------------------------------------------------
  7. Copyright (c) 2000 Zveno Pty Ltd
  8. http://www.zveno.com/
  9.  
  10. Zveno makes this software and all associated data and documentation
  11. ('Software') available free of charge for any purpose.
  12. Copies may be made of this Software but all of this notice must be included
  13. on any copy.
  14.  
  15. The Software was developed for research purposes and Zveno does not warrant
  16. that it is error free or fit for any purpose.  Zveno disclaims any
  17. liability for all claims, expenses, losses, damages and costs any user may
  18. incur as a result of using, copying or modifying the Software.
  19. ---------------------------------------------------------------------------
  20.  
  21. flatten.tcl
  22.     Parses an XML document or DTD and produces the document's DTD
  23.     with all external entities expanded, parameter entities
  24.     resolved and conditional sections resolved.
  25.  
  26. xmlwc
  27.     Counts the number of lines, words, characters and bytes
  28.     in the character data of an XML document.
  29.     Inspired by the Unix wc program.
  30.  
  31. REC-xml-20001006.xml 
  32.         The W3C XML spec in XML format. A handy file to run xmlwc over
  33.         to test your build. You should get this output with the command
  34.              tclsh8.3 xmlwc REC-xml-20001006.xml 
  35.         :
  36.  
  37.            2929   14978  116827 REC-xml-20001006.xml 
  38.  
  39.  
  40.  
  41.