xsl-list
[Top] [All Lists]

reposting.append to a file in saxon. please help . still in office :)

2003-01-16 13:57:34

Hi
I am using Saxon to output multiple files out of single transformation. I
couldnt find any extension element in saxon latest  that does that. There
used to be saxon:output in the previous version. what became of this
element?? I am in dire need of this functionality. can anyone pleeeese help
me? also what i need to do is append to an exixting file.for example, if i
have a file in the directory, my processing should keep adding the contents
out of the xml to this file.
I somehow downloaded the earlier version and am continuing with it ( because
i was really in need of this functionality ) . But this would go and rewrite
the contents of the file, which i dont want.Can anyone please help me in
this regard?
Thank you very much.

----- Original Message -----
From: "Dimitre Novatchev" <dnovatchev(_at_)yahoo(_dot_)com>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Thursday, January 16, 2003 8:52 PM
Subject: Re: [xsl] Strings Comparison Question.


For a string-comparison snippet see:


http://www.topxml.com/code/default.asp?p=3&id=v20010205033413&ms=20&l=xpath&;
sw=lang



=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL



"Patel, Viral" <viral(_dot_)patel(_at_)countryfinancial(_dot_)com> wrote in 
message

news:7C1965B54EADD61190B80008023D05F4790C9C(_at_)iaautl06(_dot_)iaa(_dot_)countrycompanies(_dot_)co
m...
Sorry if you get duplicates but I got some email transmission error
so I am
gonna post this problem one more time and see if someone can help me.


I am new to XSL and I have several questions - some of them might be
really
easy ones but I just want to confirm.

1. Is it possible to compare two strings lexicographically in
XSL/XPATH? I
believe the answer is no. Is there a way I can achieve this?


2. I have listed the XML & XSL below.   In that the community name
attribute
could start with a alphabet, a number or any other character.   Most
of the
community names are expected to start with alphabets.  In my output,
if I
have one or more community name starting with a certain alphabet
(i.e. 'A')
then I want to put a link (aka advance orgranizer) at the top of the
page
that would say 'A' and likewise for all the alphabets.  Also since I
have
few communities starting with non-alphabets, I would want to put a
link
called Miscellaneous that would link to a page which would display
all
non-alphabetic characters.

How would I go about doing this?  And the those non-alphabetic
characters
are not fixed, they could vary depending on the XML file used.  If
there was
string comparison allowed then I could do something like @name<'a' or
@name>'z'  for each node and that would give me all non-alphabetic
characters.

Any ideas/help/suggestions would be greatly appreciated.

Thanks


<record>
 <community name="101 South">
  ... Some Information ...
 </community>
 <community name="**">
  ... Some Information ...
 </community>
 <community name="Adams">
  ... Some Information ...
 </community>
 <community name="Smith">
  ... Some Information ...
 </community>
 ... .... ....
</record>

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.1" xmlns:lxslt="http://xml.apache.org/xslt";>

      <xsl:template match="/">
 <xsl:apply-templates match="//community"/>
      </xsl:template>

 <xsl:template name="community">
  <xsl:if test="starts-with(@name,'*')">
   <xsl:call-template
name="createTopLetterLinkForCommunity">
    <xsl:with-param
name="letterLink">*</xsl:with-param>
   </xsl:call-template>
  </xsl:if>
  <xsl:if test="starts-with(@name,'A')">
   <xsl:call-template
name="createTopLetterLinkForCommunity">
    <xsl:with-param
name="letterLink">A</xsl:with-param>
   </xsl:call-template>
  </xsl:if>
  <xsl:if test="starts-with(@name,'B')">
   <xsl:call-template
name="createTopLetterLinkForCommunity">
    <xsl:with-param
name="letterLink">B</xsl:with-param>
   </xsl:call-template>
  </xsl:if>
  <xsl:if test="starts-with(@name,'C')">
   <xsl:call-template
name="createTopLetterLinkForCommunity">
    <xsl:with-param
name="letterLink">C</xsl:with-param>
   </xsl:call-template>
  </xsl:if>
  <xsl:if test="starts-with(@name,'D')">
   <xsl:call-template
name="createTopLetterLinkForCommunity">
    <xsl:with-param
name="letterLink">D</xsl:with-param>
   </xsl:call-template>
  </xsl:if>
       .... AND SO ON ....
 </xsl:template>

</xsl:stylesheet>




Thanks
V. Patel.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list