Search the web
Sign In
New User? Sign Up
tdom · tDOM - fast DOM / XPath for Tcl in C
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1812 - 1858 of 1978   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1812
As near as I can tell from the documentation, if I want the names and values of all the attributes of a node in a list together, I need to do the following: ...
saintpaulsnail
Offline Send Email
Mar 5, 2008
10:28 pm
1813
... I'd written it with 2 lines lesser, but otherwise yes. DOM methods. An alternative to that could be $node selectNodes @* with returns a list of att...
Rolf Ade
rolf@...
Send Email
Mar 6, 2008
11:03 pm
1814
I'm sorry - I missed to send out a note in time, that tdom cvs anon access is up again (it is since a while). rolf...
Rolf Ade
rolf@...
Send Email
Mar 6, 2008
11:11 pm
1815
... But all that is needed is to strip one level of list-ness (right?): join [$node selectNodes @*] In Tcl 8.5 the above should be interpretable as a valid...
Michael A. Cleverly
michaelcleverly
Offline Send Email
Mar 7, 2008
3:51 am
1816
... [...] ... Yes. rolf...
Rolf Ade
rolf@...
Send Email
Mar 7, 2008
9:44 am
1817
... I am not familiar with XPath, so this never would have occurred to me. It's not an example listed in the tDOM documentation, so I never would have found it...
saintpaulsnail
Offline Send Email
Mar 7, 2008
2:32 pm
1833
Hi, I am new to tDOM. So please send me some example with which I can get an idea on tDOM. Thanks in advance! __________________________ Thanks & regards, Anil...
anil_a_ece
Offline Send Email
Apr 28, 2008
4:42 am
1834 anil_a_ece
Offline Send Email
Apr 28, 2008
4:43 am
1835
... http://wiki.tcl.tk/tdom Michael...
Michael A. Cleverly
michaelcleverly
Offline Send Email
Apr 28, 2008
5:12 am
1837 anil_a_ece
Offline Send Email
Apr 29, 2008
6:11 am
1838
Hi, Generally we use "set node [$root selectNodes /Command_Line_Interface_Reference/commands/name/text()]" to get the text data from the node "name". But I...
anil_a_ece
Offline Send Email
Apr 29, 2008
6:16 am
1839
... I understand, that you want to do something. And that you're unhappy with the way, you do this something now. But I don't really understand what you're...
Rolf Ade
rolf@...
Send Email
Apr 29, 2008
12:50 pm
1840
I missed the original post and haven't used tDOM for a while, but maybe the OP is looking for something like: proc...
Al Chou
HotFusionMan
Offline Send Email
Apr 29, 2008
1:25 pm
1841
... string(/Command_Line_Interface_Reference/commands/name)] ... ok i will just go through the xpath...
anil_a_ece
Offline Send Email
Apr 30, 2008
3:18 am
1842
<?xml version="1.0"?> <Command_Line_Interface_Reference> <info> <version>K.13.02</version> <family>Switch 3500yl</family> <product>J8693A</product> </info> ...
anil_a_ece
Offline Send Email
Apr 30, 2008
4:31 am
1843
<?xml version="1.0"?> <Command_Line_Interface_Reference> <info> <version>K.13.02</version> <family>Switch 3500yl</family> <product>J8693A</product> </info> ...
anil_a_ece
Offline Send Email
May 5, 2008
5:43 am
1844
I've never actually coded a solution like what I'm about to describe, so take it with a grain of salt. I think you could get all the int tags' values and then...
Al Chou
HotFusionMan
Offline Send Email
May 5, 2008
6:00 am
1845
I can foreach to get the values but the thing is my code shoulb be generic and some times they may change the names for the same values So my intension is to...
anil_a_ece
Offline Send Email
May 5, 2008
6:39 am
1846
As far as I understand, you're asking for the right XPath expression to be used as selectNodes argument. Studying a good XPath tutorial is probably inevitable,...
Rolf Ade
rolf@...
Send Email
May 5, 2008
1:43 pm
1847
Ok I will check this and then I'll send u the comments Thanks and regards, ... Peter parker...
anil_a_ece
Offline Send Email
May 6, 2008
6:11 am
1849
I am (co-) responsible for some packaging activities over at the Debian Tcl/Tk Team which aim at wrapping-up http://openacs.org in terms of Debian Packages. As...
stefan.sobernig
Offline Send Email
May 13, 2008
8:05 am
1850
... That's by far the most famous request about the build system since a while. ... Some weeks ago two others out of the openacs/debian folks exchanged a few...
Rolf Ade
rolf@...
Send Email
May 13, 2008
11:06 pm
1851
Rolf, ... Thanks for the hint, now I do have another showcase example: http://lists.opensuse.org/opensuse-commit/2007-08/msg00832.html ... I agree, and all...
Stefan Sobernig
stefan.sobernig
Offline Send Email
May 14, 2008
4:24 pm
1852
Hello, I'd like to use tDOM to parse XML bellow, <Top> <Branch Name="Test"> <Parameter1 Value1_1="1" Value1_2="2" /> <Parameter2 Value2_1="10" Value2_2="20" />...
marian.popelka
Offline Send Email
May 23, 2008
10:12 am
1853
... Unfortunately, you haven't provided any piece of example code. It sounds like you've used [dom parse -html ...] instead of just [dom parse ...]. dom parse...
Rolf Ade
rolf@...
Send Email
May 23, 2008
1:42 pm
1854
... Hello Rolf, You were right with the html option. I removed and now it it working fine. Thanks a lot, Marian...
marian.popelka
Offline Send Email
May 27, 2008
2:22 pm
1855
Hi, I need to append the variables "command, destIP, option, minValue and maxValue" for each x and y values into different lists. Is there any command in tcl...
anil_a_ece
Offline Send Email
Jun 2, 2008
5:47 am
1856
Hi, I need to append the variables "command, destIP, option, minValue and maxValue" for each x and y values into different lists. Is there any command in tcl...
anil_a_ece
Offline Send Email
Jun 2, 2008
5:47 am
1857
Dear all, Dear Rolf! After some fiddling, tDOM is about to be re-introduced into Debian, namely the Debian sid ("unstable") distribution. The debianized ...
stefan.sobernig
Offline Send Email
Jun 2, 2008
3:03 pm
1858
... Great. Although, @@ -363,7 +423,7 @@ if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then eval PKG_STUB_LIB_FLAG="-l${PACKAGE_NAME}stub${PACKAGE_VERSION}" else -...
Rolf Ade
rolf@...
Send Email
Jun 2, 2008
10:16 pm
Messages 1812 - 1858 of 1978   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help