Search found 14 matches
- Sat Aug 15, 2009 2:24 pm
- Forum: General XML Questions
- Topic: Error integrating calabash
- Replies: 6
- Views: 3182
Re: Error integrating calabash
No I do not get the error when run from the command line. Any ideas?
- Sat Aug 15, 2009 1:45 pm
- Forum: Common Problems
- Topic: Oxgyen start up java error
- Replies: 3
- Views: 1893
Re: Oxgyen start up java error
Do you know which jar file that this comes from? I can maybe replace it with a jar from 10.2
- Fri Aug 14, 2009 5:15 am
- Forum: Common Problems
- Topic: Oxgyen start up java error
- Replies: 3
- Views: 1893
Oxgyen start up java error
Hello, All of a sudden when I try to run oxygen i get the following error below. It was working the other day. The only thing different that I did was install calabash as an external tool. Its my favorite program. Any ideas? Cannot start <oXygen/> XML Editor. Due to:java.lang.NoClassDefFoundError ja...
- Thu Aug 13, 2009 5:26 am
- Forum: General XML Questions
- Topic: Error integrating calabash
- Replies: 6
- Views: 3182
Re: Error integrating calabash
Yes I am trying to run calabash as an external tool.
The working directory is set as a .
The file does exist.
Not sure what I am doing wrong??
Regards,
John.
The working directory is set as a .
The file does exist.
Not sure what I am doing wrong??
Regards,
John.
- Wed Aug 12, 2009 12:35 pm
- Forum: General XML Questions
- Topic: Error integrating calabash
- Replies: 6
- Views: 3182
Error integrating calabash
I am trying to use calabash in oxygen an I get the following error? Why is the file not found error popping up? Started: java -cp "C:\calabash\calabash-0.9.14\lib\calabash.jar;C:\Program Files\Saxon9.1B\saxon9.jar;C:\Program Files\Saxon9.1B\saxon9-s9api.jar" com.xmlcalabash.drivers.Main pipe.xpl Err...
- Fri Apr 24, 2009 2:27 pm
- Forum: General XML Questions
- Topic: What is your experience with XLink?
- Replies: 1
- Views: 1841
Re: What is your experience with XLink?
XBRL uses xlink extensively
- Sat Apr 04, 2009 2:35 pm
- Forum: XSLT and FOP
- Topic: XSLT: SUM function how to
- Replies: 4
- Views: 11670
Re: XSLT: SUM function how to
<xsl:template name="columnTotal1"> <tr> <xsl:for-each select="//tr[1]/td"> <xsl:variable name="position" select="position()"></xsl:variable> <td style="bgcolor:orange"> <xsl:value-of select="sum( (if(. = '') then 0 else .) + sum(following::tr/td[position() = $position]))"/> </td> </xsl:for-each> </...
- Fri Apr 03, 2009 1:49 pm
- Forum: XSLT and FOP
- Topic: XSLT: SUM function how to
- Replies: 4
- Views: 11670
Re: XSLT: SUM function how to
<xsl:template name="columnTotal1"> <tr> <xsl:for-each select="//tr[1]/td"> <xsl:variable name="position" select="position()"></xsl:variable> <td style="bgcolor:orange"> <xsl:value-of select="sum(. + sum(following::tr/td[position() = $position]))"/> </td> </xsl:for-each> </tr> </xsl:template> Cheers...
- Tue Mar 24, 2009 3:41 am
- Forum: XSLT and FOP
- Topic: Element reordering help....
- Replies: 6
- Views: 3263
Re: Element reordering help....
This gives ordered output, an extension of the first example that I gave you. You just need to add in the other templates/apply templates etc <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-re...
- Fri Mar 20, 2009 11:58 am
- Forum: XSLT and FOP
- Topic: Element reordering help....
- Replies: 6
- Views: 3263
Re: Element reordering help....
I have given you the answer
post your input xml, your example output xml and your xsl and I will help you.
post your input xml, your example output xml and your xsl and I will help you.
- Thu Mar 19, 2009 1:26 pm
- Forum: XSLT and FOP
- Topic: Element reordering help....
- Replies: 6
- Views: 3263
Re: Element reordering help....
<xsl:template match="Story">
<Story>
<xsl:apply-templates select="Headline"/>
<xsl:apply-templates select="Why_Buy"/>
etc...
</Story>
</xsl:template>
Cheers, John Bampton.
<Story>
<xsl:apply-templates select="Headline"/>
<xsl:apply-templates select="Why_Buy"/>
etc...
</Story>
</xsl:template>
Cheers, John Bampton.
- Tue Mar 17, 2009 12:52 am
- Forum: XSLT and FOP
- Topic: transforming a xml to fill in a table with rows and cols
- Replies: 1
- Views: 1380
Re: transforming a xml to fill in a table with rows and cols
put the td tags on the outside of the xsl:if statements, that way you will always get a table cell
- Sun Mar 15, 2009 3:10 pm
- Forum: Offer a Service
- Topic: XSLT, XPATH, XSL-FO, XSD programming
- Replies: 0
- Views: 6122
XSLT, XPATH, XSL-FO, XSD programming
Contact jbampton@gmail.com for help on XML programming problems. $20 US per hour, payment via paypal.
- Fri Feb 27, 2009 1:33 pm
- Forum: XSLT and FOP
- Topic: How to execute XSLT code outside Oxygen
- Replies: 4
- Views: 3795
Re: How to execute XSLT code outside Oxygen
a simple google search will provide you will the results