[Repoze-checkins] r1203 - repoze.debug/trunk/repoze/debug/static
Paul Everitt
paul at agendaless.com
Mon Jun 30 13:03:26 EDT 2008
Author: Paul Everitt <paul at agendaless.com>
Date: Mon Jun 30 13:03:26 2008
New Revision: 1203
Log:
Get the XUL version working again with the recent Atom changes
Modified:
repoze.debug/trunk/repoze/debug/static/debugui-xul.xsl
repoze.debug/trunk/repoze/debug/static/debugui.xul
Modified: repoze.debug/trunk/repoze/debug/static/debugui-xul.xsl
==============================================================================
--- repoze.debug/trunk/repoze/debug/static/debugui-xul.xsl (original)
+++ repoze.debug/trunk/repoze/debug/static/debugui-xul.xsl Mon Jun 30 13:03:26 2008
@@ -11,17 +11,16 @@
<xsl:template match="atom:feed" mode="tree">
<!-- Recurse into the feed and make data to load into the tree -->
<log>
- <xsl:apply-templates select="atom:entry[atom:content/rz:logentry/rz:response/@tid]"
- mode="entry"/>
+ <xsl:apply-templates select="atom:entry" mode="item"/>
+ <!--<xsl:apply-templates select="atom:entry[atom:content/rz:logentry/rz:response/@tid]"
+ mode="entry"/>-->
</log>
</xsl:template>
<xsl:template match="atom:entry" mode="entry">
<!-- The parent request is the one with a @tid on the response -->
<entry entryid="{atom:id}" name="{atom:title}" elapsed="{atom:content/rz:logentry/@elapsed}">
<xsl:variable name="thistid" select="atom:content/rz:logentry/rz:response/@tid"/>
- <xsl:apply-templates select="key('getsubentry', $thistid)" mode="item"/>
- <!-- <xsl:apply-templates
- select="/atom:feed/atom:entry[atom:content/rz:logentry/rz:request/@tid=$thistid]" mode="item"/>-->
+ <!--<xsl:apply-templates select="key('getsubentry', $thistid)" mode="item"/>-->
</entry>
</xsl:template>
<xsl:template match="atom:entry" mode="item">
Modified: repoze.debug/trunk/repoze/debug/static/debugui.xul
==============================================================================
--- repoze.debug/trunk/repoze/debug/static/debugui.xul (original)
+++ repoze.debug/trunk/repoze/debug/static/debugui.xul Mon Jun 30 13:03:26 2008
@@ -34,7 +34,7 @@
<button id="reloadEntries" label="Reload"/>
</vbox>
<vbox flex="4">
- <html:div id="selected-entry" flex="1">
+ <html:div id="selected-entry" style="overflow:scroll;height:600px">
<html:h1>Yes</html:h1>
<html:p>no</html:p>
</html:div>
More information about the Repoze-checkins
mailing list