Forum: XML, XSLT and XPATH Oct 30th, 2009 |
| Replies: 2 Views: 813 http://www.java-tips.org/index.php?Itemid=2&id=517&option=com_content&task=view&mosmsg=Thanks+for+your+vote! |
Forum: Ruby Oct 29th, 2009 |
| Replies: 2 Views: 747 pat = '(\d+)'
string = 'dfasdf 1 up (2009) sdfasdf 2 walle (2008) adfasdf'
p string.scan(/#{pat}/)
=>[["1"], ["2009"], ["2"], ["2008"]] |
Forum: XML, XSLT and XPATH Sep 16th, 2009 |
| Replies: 7 Views: 861 without html code
all parser have no problems
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:key name="only" use="local-name()"... |
Forum: XML, XSLT and XPATH Sep 16th, 2009 |
| Replies: 7 Views: 861 count context each node
there are 3 kind of text data1 data2 data3
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
... |
Forum: XML, XSLT and XPATH Sep 15th, 2009 |
| Replies: 7 Views: 861 <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output indent="yes" method="html"/>
<xsl:key name="only"... |
Forum: XML, XSLT and XPATH Sep 15th, 2009 |
| Replies: 3 Views: 1,051 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" standalone="yes" cdata-section-elements="devices" indent="yes"/>... |
Forum: XML, XSLT and XPATH Aug 5th, 2009 |
| Replies: 1 Views: 425 <?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" method="xml"/>
<xsl:template match="/">
<xsl:apply-templates... |
Forum: XML, XSLT and XPATH Jul 20th, 2009 |
| Replies: 1 Views: 440 creat a textfile
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:apply-templates... |
Forum: XML, XSLT and XPATH Jul 20th, 2009 |
| Replies: 1 Views: 549 <?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:key name="only" match="//category" use="."/>... |
Forum: XML, XSLT and XPATH Jul 15th, 2009 |
| Replies: 5 Views: 766 I do not what is the Probelm
an Example
xml with xsl
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="process.xsl"?>
<ProcessData> |
Forum: XML, XSLT and XPATH Jul 14th, 2009 |
| Replies: 5 Views: 766 |
Forum: XML, XSLT and XPATH Jul 14th, 2009 |
| Replies: 3 Views: 573 path="//*[starts-with(name(), 'FSA')][position()=//count/text()]/@SCIObjectID"
[] a Predicates content a false true
starts-with(name(), 'FSA') when the current tagname
a FSA****
* are... |
Forum: XML, XSLT and XPATH Jul 11th, 2009 |
| Replies: 2 Views: 416 there a many code example
http://www.codetoad.com/xml/xml_and_asp/
http://www.aspwebsolution.com/articles/xmlrep/xmldb1.htm
http://www.w3schools.com/asp/default.asp
... |
Forum: XML, XSLT and XPATH Jul 1st, 2009 |
| Replies: 3 Views: 961 http:
//forums.devshed.com/xml-programming-19/the-power-xml-xsl-html-javascript-613064.html |
Forum: XML, XSLT and XPATH Jun 29th, 2009 |
| Replies: 3 Views: 961 look here an example
http://forums.devshed.com/xml-progr...ipt-613064.html |
Forum: XML, XSLT and XPATH Jun 29th, 2009 |
| Replies: 3 Views: 667 for testing
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item><![CDATA[<]]></item>
<item><![CDATA[>]]></item>
<item><![CDATA[&]]></item>
<item><![CDATA["]]></item> |
Forum: XML, XSLT and XPATH Jun 29th, 2009 |
| Replies: 4 Views: 1,261 look here
http://documentation.softwareag.com/crossvision/ins441/xprog/xphttpen.htm |
Forum: XML, XSLT and XPATH Jun 29th, 2009 |
| Replies: 4 Views: 1,261 mozilla browser eg firefox sarfari netscape knows
many sign eg É
for IE in xsl set
<xsl:output method="xml" indent="yes" encoding="utf-16"/>
no working with cdata |
Forum: XML, XSLT and XPATH Jun 27th, 2009 |
| Replies: 5 Views: 588 send the xml and xsl
to me ICQ 567877710
Helmut Hagemann |
Forum: XML, XSLT and XPATH Jun 26th, 2009 |
| Replies: 3 Views: 661 <?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:apply-templates... |
Forum: XML, XSLT and XPATH Jun 26th, 2009 |
| Replies: 5 Views: 588 <?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" media-type="xml"/>
<xsl:template match="/">
<Net>... |
Forum: XML, XSLT and XPATH Jun 26th, 2009 |
| Replies: 3 Views: 519 use for each for node set
think like a compiler vom top to button
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output... |
Forum: XML, XSLT and XPATH Jun 10th, 2009 |
| Replies: 1 Views: 594 with xsl you delete the <p/> Tags
<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:copy-of select="."/>... |
Forum: XML, XSLT and XPATH Jun 9th, 2009 |
| Replies: 3 Views: 959 <AAA>
<BBB/>
<CCC/>
<DDD/><!-- ERROR-->
<AAA/>
<BBB/>
</DDD>
<div class="some">
<AAA/>
... |
Forum: XML, XSLT and XPATH Jun 3rd, 2009 |
| Replies: 2 Views: 801 with which programme / language would like to access you the Xml file.
your beginning is wrong for your idea there is xpath with
<xsl:value-of select="Name[1]/First"/> the first name... |
Forum: XML, XSLT and XPATH Jun 3rd, 2009 |
| Replies: 1 Views: 528 look here
http://wiki.postgresql.org/wiki/XML_Support
all ways allow
all ist good |
Forum: XML, XSLT and XPATH May 25th, 2009 |
| Replies: 2 Views: 974 Hello to XML user
xml for testing
<?xml version="1.0"?>
<root>
<element attr='Abc'/>
<element Attr='ABc'/>
<element ATtr='abC'/> |
Forum: XML, XSLT and XPATH May 23rd, 2009 |
| Replies: 2 Views: 947 <xsl:if test="{$query}">
{ } read the content of $query
Helmut Hagemann |
Forum: XML, XSLT and XPATH May 14th, 2009 |
| Replies: 3 Views: 952 <?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" method="xml"/>
<xsl:template match="newapplicantreturn">... |
Forum: XML, XSLT and XPATH May 2nd, 2009 |
| Replies: 2 Views: 643 xml describes with nodes (tag) dates
<root>
<item>Data1</item>
<item>Data2</item>
</root> |
Forum: XML, XSLT and XPATH Apr 24th, 2009 |
| Replies: 3 Views: 662 here is to be found xslt parser
http://www.xmlsoft.org/XSLT/downloads.html
xsltproc is an alias or batch like
if parametres can be preset
xmllint.exe --xinclude --output %1 %2 %3
... |
Forum: XML, XSLT and XPATH Apr 23rd, 2009 |
| Replies: 1 Views: 542 It is hard to be found an error
if not everything is shown
with hilfe from google
if I understand then the error
to evaluate him value is to be found in the attribute |
Forum: XML, XSLT and XPATH Apr 10th, 2009 |
| Replies: 1 Views: 571 with xslt parser
xslt file
<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
... |
Forum: XML, XSLT and XPATH Apr 9th, 2009 |
| Replies: 1 Views: 1,119 http://devzone.zend.com/node/view/id/688 |
Forum: XML, XSLT and XPATH Apr 8th, 2009 |
| Replies: 3 Views: 573 from sample
looking for Total duration
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>... |
Forum: XML, XSLT and XPATH Apr 7th, 2009 |
| Replies: 2 Views: 630 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<Mittel>
<xsl:call-template name="avg">... |
Forum: XML, XSLT and XPATH Apr 7th, 2009 |
| Replies: 2 Views: 630 speed in the second node is
no information about the speed
sum produces NaN ( not a number)
Helmut Hagemann |
Forum: XML, XSLT and XPATH Apr 6th, 2009 |
| Replies: 1 Views: 705 2 param value for saving type1 type2
rekursiv template
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template... |
Forum: XML, XSLT and XPATH Apr 6th, 2009 |
| Replies: 1 Views: 1,202 html is a subset of xml (xhtml)
css is possible, therefore, no transformation
but also to put xml
show the xml datafile
and so we can started |
Forum: XML, XSLT and XPATH Apr 6th, 2009 |
| Replies: 1 Views: 938 it is not so difficult
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">... |