xsl-list
[Top] [All Lists]

Re: [xsl] XSL-FO list with sublist

2007-12-12 13:21:41
Hi,

But the problem is my xml, that is like below. Inside gqmroot I have goals, 
inside each goal I have questions and inside each question I have metrics. In 
the normal XSLT I used the for-each and value-of to get each xml node. In this 
way that you told me to do the list, I think I can't use that or am I wrong?


Thanks again,
Lucas


<?xml version="1.0" encoding="UTF-8"?>

<?xml-stylesheet type="text/xsl" href="F-GESGQM.xsl"?>
<!-- New document created at Thu Oct 18 08:53:18 CEST 2007 -->

<gqmroot titleRoot="F-GES GQM">
        <goal titleGoal="G.1. Aumento della qualità esterna">
                <question titleQuestion="Q.1.1. Quanti bug trova l?utente? 
Quanti sono ad alta priorità?">
                        <metric
                                titleMetric="M.1.1.1. Numero di bug riportati 
nell'intervallo di tempo considerato, divisi per centro di costo e per 
prodotto."
                                ChartLink="gesGQMReport_M111.html">
                        </metric>
                        <metric
                                titleMetric="M.1.1.2. Numero di bug ad alta 
priorità riportati dall?utente al mese, divisi per centro di costo e per 
prodotto."
                                ChartLink="gesGQMReport_M112.html">
                        </metric></question>
                <question titleQuestion="Q.1.2. Quanto è soddisfatto l?utente 
della nuova release?">
                        <metric
                                titleMetric="M.1.2.1 Numero di richieste di 
cambiamento del sistema nell'intervallo di tempo per quella release"
                                ChartLink="gesGQMReport_M121.html">
                        </metric>
                        <metric
                                titleMetric="M.1.2.2. Numero di bug riportati 
dall'utente nell'intervallo di tempo facenti riferimento a quella release"
                                ChartLink="">
                        </metric>
                        <metric
                                titleMetric="M.1.2.3. Tempo medio di fix dei 
bug ad alta priorità"
                                ChartLink="">
                        </metric>
                </question>
                <question titleQuestion="Q.1.3. Quanto viene usata una release 
prima che sia rilasciata quella successiva?">
                        <metric
                                titleMetric="M.1.3.1. Effort di utilizzo 
dell'applicazione"
                                ChartLink="">
                        </metric></question>
                <question titleQuestion="Q.1.4. Qual è l'aderenza tra bisogno 
dell'utente (identificato in una storia) e rilascio?">
                        <metric
                                titleMetric="M.1.4.1. Numero di richieste di 
cambiamento del sistema nel primo intervallo di tempo"
                                ChartLink="">
                        </metric>
                        <metric
                                titleMetric="M.1.4.2. Valutazione soggettiva da 
parte dei beta-tester"
                                ChartLink="">
                        </metric>
                        <metric
                                titleMetric="M.1.4.3. Numero di falsi negativi 
tra le richieste di intervento"
                                ChartLink="">
                        </metric>
                </question>
        </goal>
</gqmroot>


Lucas,

XSL-FO doesn't allow a list-item directly inside another list-item --
but it does allow a list-item to contain a list.

In fact, this is a more accurate representation of what is happening,
isn't it? Item 1 contains the sublist 1.1, 1.2, 1.3 etc.

So try placing a list inside your list-item, and your sublist items
inside the list.

Cheers,
Wendell

At 01:11 PM 12/12/2007, you wrote:
Hello,

I'm having problem to create a list with sublists, like:
1.
   1.1
       1.1.1
2.
   2.1.
       2.1.1

I don't need the numbers, it's just an example to ilustrate. I'm
trying to do like below, but xsl-fo don't accept <fo:list-item> inside
another <fo:list-item> without closing the first one. It generates and
error.
Can anybody help me?


======================================================================
Wendell Piez                            
mailto:wapiez(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
   Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--




--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--