• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..01-Mar-201331

browser.tclH A D17-Jan-20032.9 KiB

cgi2dom.tclH A D09-Dec-20021,019

domtext.tclH A D17-Jan-200336.7 KiB

domtree.tclH A D08-Jan-200322 KiB

READMEH A D18-Nov-20021.7 KiB

tkxmllint.tclH A D09-Mar-20038.7 KiB

README

1examples/README --
2
3This directory contains some small example scripts to demonstrate
4the use of TclDOM.
5
6---------------------------------------------------------------------------
7Copyright (c) 2000-2002 Zveno Pty Ltd
8http://www.zveno.com/
9
10Zveno makes this software and all associated data and documentation
11('Software') available free of charge for any purpose.
12Copies may be made of this Software but all of this notice must be included
13on any copy.
14
15The Software was developed for research purposes and Zveno does not warrant
16that it is error free or fit for any purpose.  Zveno disclaims any
17liability for all claims, expenses, losses, damages and costs any user may
18incur as a result of using, copying or modifying the Software.
19---------------------------------------------------------------------------
20
21cgi2dom.tcl
22	Not an application, but a package.  Provides the
23	'cgi2dom::createdocument' command which accepts a number
24	of name-value parameters and returns a DOM tree.
25
26	All parameters whose name starts with '/' are
27	interpreted as XPath location paths.  The 'createNode'
28	method is used to construct a DOM tree.  The parameter
29	values are inserted into the tree as text nodes.
30
31domtree.tcl
32	A BWidget mega-widget.  Displays a DOM documents as a
33	tree of nodes.  The BWidgets Tree widget provides the
34	display.  DOM events are used to maintain the tree view,
35	and DOM events are posted in response to Tk events.
36
37domtext.tcl
38	A Tk mega-widget.  Displays a DOM document in a Tk
39	text widget.  Control of the widget's contents is
40	at the level of DOM nodes, not lines and characters.
41	DOM events are used to maintain the text view and
42	DOM events are posted in response to Tk events.
43	Character data in the widget is editable.
44
45