File: statisticsInHTML.xq

package info (click to toggle)
qt4-x11 4.4.3-1%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 339,184 kB
  • ctags: 230,663
  • sloc: cpp: 1,365,310; ansic: 343,027; sh: 25,253; xml: 13,859; python: 6,110; perl: 5,064; yacc: 2,295; asm: 1,988; makefile: 712; ruby: 493; sed: 24
file content (58 lines) | stat: -rw-r--r-- 2,276 bytes parent folder | download
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
<html>
    <head>
        <title></title>
    </head>
    <body>
            <p>In total the tree has {count($root//QObject)} QObject instances.</p>
            <p>Order by occurrence, the QObjects are:</p>

            <ol>
            {
                for $i in $root/preceding-sibling::metaObjects/metaObject
                let $count := count($root//QObject[@className eq $i/@className])
                stable order by $count descending
                return if($count > 1)
                       then <li>{string($i/@className), $count} occurrences</li>
                       else ()
            }
            </ol>

        <h1>Properties</h1>
        {
            (: For each QObject, we create a table listing
             : the properties of that object. :)
            for $object in $root//QObject
            return (<h2>{let $name := string($object/@objectName)
                         return if(string-length($name))
                                then $name
                                else "[no name]",
                         '(', string($object/@className), ')'}</h2>,
                    <table border="1">
                        <thead>
                            <tr>
                                <td>Property Name</td>
                                <td>Value</td>
                            </tr>
                        </thead>
                        <tbody>
                        {
                            $object/@*/<tr>
                                            <td>
                                                {
                                                 name()
                                                }
                                            </td>
                                            <td>
                                                {
                                                 if(data(.))
                                                 then string(.)
                                                 else "N/A"
                                                }
                                            </td>
                                      </tr>
                        }
                        </tbody>
                   </table>)
        }
    </body>
</html>