Skip to content

Commit

Permalink
Fixes #10441 - Invalid data types in Frontend web service XSDs
Browse files Browse the repository at this point in the history
This bug was only an issue when displaying the xsd in a browser.
If used in a tool, it would of had the proper types.
  • Loading branch information
dblain committed Mar 12, 2012
1 parent 2f6c4ee commit 6a0e4a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mythtv/html/xslt/class.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<xsl:variable name="CurrentType" select="/xs:schema/xs:complexType/@name" />

<p class="alignLeft"><xsl:value-of select="//xs:documentation/text()" /></p>
<p class="alignRight"><a href="./xsd?type={$CurrentType}&amp;raw=1">View Xsd</a></p>
<p class="alignRight"><a href="javascript:window.location.href += '&amp;raw=1';" >View Xsd</a></p>
<br />

<div class="method" >
Expand Down
3 changes: 2 additions & 1 deletion mythtv/html/xslt/service.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
</div>
<hr />
<p class="alignLeft"><xsl:value-of select="/w:definitions/w:service/w:documentation/text()" /></p>
<p class="alignRight"><a href="./wsdl?raw=1">View Xsd</a></p>
<p class="alignRight"><a href="javascript:window.location.href += '?raw=1';" >View Wsdl</a></p>

<br />

<xsl:apply-templates select="/w:definitions/w:portType/w:operation" />
Expand Down

0 comments on commit 6a0e4a2

Please sign in to comment.