/usr/lib/Tclxml3.3/tcldom-libxml2.tcl is in tclxml 3.3~svn11-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # impl.tcl --
#
# Support script for libxml2 implementation.
#
# Std disclaimer
#
# $Id: impl.tcl,v 1.4 2005/05/20 14:07:35 balls Exp $
namespace eval ::dom {
variable strictDOM 1
}
proc dom::libxml2::parse {xml args} {
array set options {
-keep normal
-retainpath /*
}
array set options $args
if {[catch {eval ::xml::parser -parser libxml2 [array get options]} parser]} {
return -code error "unable to create XML parser due to \"$parser\""
}
if {[catch {$parser parse $xml} msg]} {
return -code error $msg
}
set doc [$parser get document]
set dom [dom::libxml2::adoptdocument $doc]
$parser free
return $dom
}
proc dom::parse {xml args} {
return [eval ::dom::libxml2::parse [list $xml] $args]
}
|