Search found 12 matches

by GraemeBryce
Fri Nov 26, 2010 1:43 pm
Forum: XSLT and FOP
Topic: resolving xsl:includes that are out of scope
Replies: 1
Views: 1162

resolving xsl:includes that are out of scope

Hi I have an XSLT "html.xslt" that makes use of a number of variables like $something that are in turn are defined in a file "includes.xslt". I then have a file "default.xslt" that is used as the root of the transform at runtime. This file uses <xsl:include/> to add ref...
by GraemeBryce
Tue Jun 16, 2009 5:24 pm
Forum: Common Problems
Topic: DITA to HTML Help outputs .hhc
Replies: 2
Views: 1747

Re: DITA to HTML Help outputs .hhc

Thankyou.
by GraemeBryce
Tue Jun 09, 2009 5:31 pm
Forum: Common Problems
Topic: DITA to HTML Help outputs .hhc
Replies: 2
Views: 1747

DITA to HTML Help outputs .hhc

Hi I am using a DITA map that links many toplic files. I can build PDF with success. When I run the default DITA --> HTML (Help) the log shows no error (other than the missing tools.jar which I believe is not an issue) and it appears to complete. However the file loaded in the browser (internal ecli...
by GraemeBryce
Thu May 04, 2006 2:07 pm
Forum: XSLT and FOP
Topic: Making XSLT ignore a node in the source
Replies: 4
Views: 9932

George

Many thanks, this does provide a solution and is working perfectly.

Graeme
by GraemeBryce
Thu May 04, 2006 11:40 am
Forum: XSLT and FOP
Topic: Making XSLT ignore a node in the source
Replies: 4
Views: 9932

apply-templates on a variable in XSLT 1.0

George I do not have the option of running two separate transforms per your option 1. I can however follow your option 2 and indeed had already created a set of mode templates that do resolve the required tree into a variable. I ran into a problem with this in that if you try and do an <apply-templa...
by GraemeBryce
Wed May 03, 2006 6:43 pm
Forum: XSLT and FOP
Topic: Making XSLT ignore a node in the source
Replies: 4
Views: 9932

Making XSLT ignore a node in the source

does anyone have a way to create a template in XSLT that in effect removes a node (but not its children) from the input document and then continues to process as if it had never been there. By example I have the following XML <root> <columns> <column id="aaa" /> <column id="bbb" ...
by GraemeBryce
Fri Mar 31, 2006 7:17 pm
Forum: Other Issues
Topic: Problems connecting with FTP
Replies: 2
Views: 7547

Many thanks
by GraemeBryce
Wed Mar 29, 2006 11:57 am
Forum: Other Issues
Topic: Problems connecting with FTP
Replies: 2
Views: 7547

Problems connecting with FTP

I am unable to connect to my server using the FTP file open dialog. If I specify no username or password or the wrong username and password then the main part of the dialog returns with the word PASSWORD almost immediatelly. If, however, I specify the correct username and password the system takes s...
by GraemeBryce
Wed Mar 22, 2006 2:27 pm
Forum: XSLT and FOP
Topic: XSL:If different in MSXML4 and Saxon also between server and
Replies: 6
Views: 6123

George Again my thanks for the reply. I will proceed with the syntax you suggest. It deals appear odd that MSXML is adding FIXED attributes. I can fully appreciate why the parser adds a DEFAULT attribute as this exists in the schema for that reason. However it would appear to be an error to add a FI...
by GraemeBryce
Tue Mar 21, 2006 7:37 pm
Forum: XSLT and FOP
Topic: XSL:If different in MSXML4 and Saxon also between server and
Replies: 6
Views: 6123

George I have now been able to track down the specific problem and replicate it in a test case. It related to the use of attributes defined as "fixed" in the XSD I have the following test files TEST.XML <?xml version="1.0" encoding="UTF-8"?> <root xmlns:xsi="http:/...
by GraemeBryce
Tue Mar 21, 2006 5:52 pm
Forum: XSLT and FOP
Topic: XSL:If different in MSXML4 and Saxon also between server and
Replies: 6
Views: 6123

George Indeed it does help to get a cut down example and I thought that was what I had done, however I appear to have confused myself! Your test does of course work and I am now back in the more complex code I have and trying to work out what exactly I have done wrong. Many thanks for your prompt re...
by GraemeBryce
Tue Mar 21, 2006 12:12 pm
Forum: XSLT and FOP
Topic: XSL:If different in MSXML4 and Saxon also between server and
Replies: 6
Views: 6123

XSL:If different in MSXML4 and Saxon also between server and

I have the following code <xsl:if test="(not(@allowpaging))"> <xsl:call-template name="paging" /> </xsl:if> this works as I would expect when run server side using MSXML4 on .NET by testing true only when the allowpaging attribute actually exists on the current node. It also oper...