From: Makoto O. <oni...@la...> - 2003-06-18 01:13:57
|
Hi Wolfgang, From: Wol...@at... Subject: [Xmltk-devs] questions Date: Tue, 17 Jun 2003 14:10:47 +0200 Message-ID: <OFF...@bs...> >I stumbled upon your paper "XMLTK: An XML Toolkit for Scalable XML Stream >Processing" >(it dropped out of the printer) and liked it a lot. > >But xhead is not in the distribution (xtail ?) There is a "makefile.xhead" in the xtail directory. Try to use it to compile the xhead. e.g. make -f makefile.xhead; >and the example > >"file2xml -s. | xsort -b -c /directory -e //file -k size/text():%i | xhead >-c /directory -e file" > >does not parse the ':%i' Probably, you need to make the command escape from a shell interpretation. e.g. file2xml -s. | xsort -b -c /directory -e //file -k "size/text():%i" | xhead If you still have a problem, please show us an error message. >plus, the following line(s) did NOT compile on my SUSE8.2 (gcc 3.3) > >//_Assign(&static_cast<IUnknownCL*>(m_pchCur), m_pchOut); > >but those did: > > IUnknownCL* _Ass = static_cast<IUnknownCL*>(m_pchCur); > _Assign(&_Ass , m_pchOut); Thanks for your feedback. I have never tried to compile XMLTK with gcc 3.3 yet. makoto |