niallsco / kettle-cookbook

Automatically exported from code.google.com/p/kettle-cookbook
GNU Lesser General Public License v3.0
1 stars 0 forks source link

Mondrian schema problem with dimensionusage #56

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
there is an error in the script xml-schema-report.xlst
around line 202

                        <td>
                            <xsl:for-each select="DimensionUsage[@source = $dimension-name]">
                                <xsl:attribute name="class">
                                    dimension-usage
                                </xsl:attribute>
                                <xsl:if test="@name != @source"><xsl:value-of select="$dimension-name"/></xsl:if>
                            </xsl:for-each>
                        </td>

the td's are outside of the loop
they should be inside, or create some other nodes!?
dont know which one is the correct solution

but doesnt exit with an error anymore

great stuff though!

Original issue reported on code.google.com by p.stoell...@gmail.com on 16 May 2013 at 5:42