Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm facing a problem in indention of the text if the line contains a bullet point and carriage return

here is an example of the problem - the output is:

• my name is mahmoud

my name is mahmoud

... But it should be like this:

• my name is mahmoud

    my name is mahmoud

i'm iterating on the lines using "for-each" tag and each time I find a bullet point, I make the tag

"block"

and if it's normal text i put the text in a "fo:inline" tag

Please help if you can.

My input xml looks like this:

  <ProductDescription>
    <list>
    <item>
        <map>
          <entry key="Style" type="string">normal</entry>
          <entry key="Text" type="string">mahmoud</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">listItem</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">bold</entry>
          <entry key="Text" type="string">item2</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">normal</entry>
          <entry key="Text" type="string"> item3</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">linebreak</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">listItem</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">bold</entry>
          <entry key="Text" type="string">item3</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">normal</entry>
          <entry key="Text" type="string"> item5</entry>
        </map>
      </item>
      <item>
        <map>
          <entry key="Style" type="string">linebreak</entry>
        </map>
      </item>
    </list>
  </ProductDescription>

and the template is

<xsl:template name="BBCodeTemplate">
<xsl:choose>
    <xsl:when test="entry[@key='Style']='linebreak'">
        <fo:block padding-top="2pt" />
    </xsl:when>
    <xsl:when test="entry[@key='Style']='listItem'">
        <fo:block padding-top="2pt" />
        &#8226;
    </xsl:when>
    <xsl:when test="entry[@key='Style']='bold'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:when test="entry[@key='Style']='italic'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-style="italic">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:when test="entry[@key='Style']='underline'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" text-decoration="underline">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:when test="entry[@key='Style']='bolditalic'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold" font-style="italic">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:when test="entry[@key='Style']='boldunderline'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold" text-decoration="underline">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:when test="entry[@key='Style']='italicunderline'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" text-decoration="underline" font-style="italic">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:when test="entry[@key='Style']='bolditalicunderline'">
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black" font-weight="bold" text-decoration="underline" font-style="italic">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:when>
    <xsl:otherwise>
        <fo:inline xsl:use-attribute-sets="font.arial.8.normal.black">
            <xsl:value-of select="entry[@key='Text']" />
        </fo:inline>
    </xsl:otherwise>
</xsl:choose>
</xsl:template>
share|improve this question
mahmoud •item1 item2 item3.....if the text exceeds one line in the second line starts in the same vertical point as the text in the prrvious line not as the point of bullet. – Mahmoud Ismail Jul 20 '12 at 5:21
@Mahmoud: use fo:list-block. – mzjn Jul 23 '12 at 7:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.