Advertisement

03.18.2008 at 09:29PM PDT, ID: 23252643
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.8

need bullets and hyperlink

Asked by kishoregp in Extensible Stylesheet Language Transformation (XSLT), Extensible Markup Language (XML), Programming for ASP.NET

Tags:

Hi,

I am very new to XSLT, not even sure how to search for my requirement.
My query goes like this :  
I have 3 xml files, chapters, paragraphs, links, glossary.  
I need to build a book on this.

There are certain words that needs to be converted to links.  So I tagged the words as <paralink>linkname</paralink>
anything that needs bullets with <item>listitem1</item>, <item>listitem2</item>

both are in the para tags,
 <para> para <paralink> text </paralink> <item>.. <paralink>... </paralink>  </item> </para>

you can see that paralink is in the para tag and also in the item tag.

Now the problem is,  when i use apply templates to convert the paralinks.  only 1 is working, ie., either i get the bulleted points or links.. i am not able to get both.

Any help is appreciated.  I have attached the xsl code.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
<?xml version="1.0" encoding="utf-8"?>
 
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:variable name="doc1" select="."></xsl:variable>
  <xsl:variable name="doc2" select="document('..\Data\chapters.xml')" />
  <xsl:variable name="linksdoc" select="document('..\Data\links.xml')"/>
  <xsl:template match="/">
 
    <html>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <head>
        <title>Policy Documents</title>
      </head>
      <body>
        <table>
          <xsl:for-each select="$doc2/chapters/chapter">
            <tr>
              <td>
                <span class="{@style}">                
                  <xsl:value-of select="@id"/>
                  <xsl:text> </xsl:text><xsl:value-of select="text"/>
                  <br/>
                  <br/>
                </span>
                <xsl:variable name="doc2ID" select="@id"></xsl:variable>
 
                <xsl:for-each select="$doc1/doc/para[@chap = $doc2ID]">
                  <span class="paraStyle">
                    <xsl:apply-templates />
                    <br/>
                    <br/>
                  </span>
                </xsl:for-each>
 
              </td>
            </tr>
          </xsl:for-each>
        </table>
 
      </body>
    </html>
  </xsl:template>
  
 <xsl:template match="item">
   <xsl:choose>
     <xsl:when test="@showas='number'">
       <span class="paraStyle">
         <xsl:number/>. <xsl:value-of select="."/><br/>
       </span>
     </xsl:when>
     <xsl:otherwise>
       <li class="{@showas}">
         <span class="paraStyle">
           <xsl:value-of select="."/>           
         </span>
       </li>
     </xsl:otherwise>
   </xsl:choose>
  </xsl:template>
  
  <xsl:template match="paralink">
    <xsl:variable name="plink" select="."/>
    <xsl:for-each select="$linksdoc/links/linkref">
      <xsl:if test="linkname=$plink">
        <a href="{linkurl}" title="{tooltip}">
          <xsl:value-of select="linktext"/>
        </a>        
      </xsl:if>
    </xsl:for-each>
  </xsl:template>
  
</xsl:stylesheet>
[+][-]03.19.2008 at 12:03AM PDT, ID: 21159039

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.19.2008 at 12:06AM PDT, ID: 21159051

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Extensible Stylesheet Language Transformation (XSLT), Extensible Markup Language (XML), Programming for ASP.NET
Tags: XSLT
Sign Up Now!
Solution Provided By: Gertone
Participating Experts: 1
Solution Grade: A
 
 
[+][-]03.19.2008 at 02:27AM PDT, ID: 21159554

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.19.2008 at 02:33AM PDT, ID: 21159586

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.19.2008 at 02:45AM PDT, ID: 21159643

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628