Search Results

Showing results 1 to 40 of 44
Search took 0.01 seconds.
Search: Posts Made By: xml_looser
Forum: XML, XSLT and XPATH Oct 30th, 2009
Replies: 2
XML
Views: 813
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
<?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
Posted By xml_looser
<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
Posted By xml_looser
<?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
Posted By xml_looser
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
Posted By xml_looser
<?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
Posted By xml_looser
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
Posted By xml_looser
count(//DocumentId)
Forum: XML, XSLT and XPATH Jul 14th, 2009
Replies: 3
Views: 573
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
look here
http://documentation.softwareag.com/crossvision/ins441/xprog/xphttpen.htm
Forum: XML, XSLT and XPATH Jun 29th, 2009
Replies: 4
Views: 1,261
Posted By xml_looser
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
Posted By xml_looser
send the xml and xsl
to me ICQ 567877710
Helmut Hagemann
Forum: XML, XSLT and XPATH Jun 26th, 2009
Replies: 3
Views: 661
Posted By xml_looser
<?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
Posted By xml_looser
<?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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
<AAA>
<BBB/>
<CCC/>
<DDD/><!-- ERROR-->
<AAA/>
<BBB/>
</DDD>
<div class="some">
<AAA/>
...
Forum: XML, XSLT and XPATH Jun 3rd, 2009
Replies: 2
Views: 801
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
<xsl:if test="{$query}">
{ } read the content of $query
Helmut Hagemann
Forum: XML, XSLT and XPATH May 14th, 2009
Replies: 3
Views: 952
Posted By xml_looser
<?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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
http://devzone.zend.com/node/view/id/688
Forum: XML, XSLT and XPATH Apr 8th, 2009
Replies: 3
Views: 573
Posted By xml_looser
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
Posted By xml_looser
<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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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
Posted By xml_looser
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="/">...
Showing results 1 to 40 of 44

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC