- From: Arthur Ryman via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 11 Nov 2005 01:27:58 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/wsdl20
In directory hutz:/tmp/cvs-serv11912/wsdl20
Modified Files:
xmlspec-wsdl.xsl wsdl20-z-ie.html wsdl20-z.html wsdl20.html
wsdl20-adjuncts.html build.xml wsdl20-primer.html
Log Message:
Added highlighting of assertions in editor's copies.
Index: wsdl20-adjuncts.html
===================================================================
RCS file: /sources/public/2002/ws/desc/wsdl20/wsdl20-adjuncts.html,v
retrieving revision 1.91
retrieving revision 1.92
diff -C2 -d -r1.91 -r1.92
*** wsdl20-adjuncts.html 10 Nov 2005 23:18:11 -0000 1.91
--- wsdl20-adjuncts.html 11 Nov 2005 01:27:55 -0000 1.92
***************
*** 364,371 ****
<p>
! <a name="FaultReplacesMessage-5000"></a>
Any message after the first in the pattern MAY be replaced with
a fault message, which MUST have identical direction.
! <a href="#FaultReplacesMessage-5000-summary">†</a>
The fault message MUST be delivered to the same target node as the
message it replaces, unless otherwise specified by an extension or
--- 364,371 ----
<p>
! <a name="FaultReplacesMessage-5000"></a><span style="background-color: pink;">
Any message after the first in the pattern MAY be replaced with
a fault message, which MUST have identical direction.
! </span><a href="#FaultReplacesMessage-5000-summary">†</a>
The fault message MUST be delivered to the same target node as the
message it replaces, unless otherwise specified by an extension or
***************
*** 381,388 ****
<p>
! <a name="MessageTriggersFault-5001"></a>
Any message, including the first in the pattern, MAY trigger a
fault message, which MUST have opposite direction.
! <a href="#MessageTriggersFault-5001-summary">†</a>
The fault message MUST be delivered to the originator of the
triggering message, unless otherwise specified by an extension of
--- 381,388 ----
<p>
! <a name="MessageTriggersFault-5001"></a><span style="background-color: pink;">
Any message, including the first in the pattern, MAY trigger a
fault message, which MUST have opposite direction.
! </span><a href="#MessageTriggersFault-5001-summary">†</a>
The fault message MUST be delivered to the originator of the
triggering message, unless otherwise specified by an extension of
***************
*** 398,404 ****
<h4><a name="no-fault"></a>2.2.3 No Faults</h4>
<p>
! <a name="NoFaults-5002"></a>
Faults MUST NOT be propagated.
! <a href="#NoFaults-5002-summary">†</a>
</p>
--- 398,404 ----
<h4><a name="no-fault"></a>2.2.3 No Faults</h4>
<p>
! <a name="NoFaults-5002"></a><span style="background-color: pink;">
Faults MUST NOT be propagated.
! </span><a href="#NoFaults-5002-summary">†</a>
</p>
Index: build.xml
===================================================================
RCS file: /sources/public/2002/ws/desc/wsdl20/build.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** build.xml 10 Nov 2005 23:02:04 -0000 1.30
--- build.xml 11 Nov 2005 01:27:55 -0000 1.31
***************
*** 29,32 ****
--- 29,33 ----
2005-11-11: Arthur Ryman <ryman@ca.ibm.com>
- add adjuncts assertion tables
+ - add pink highlighting of assertions in editor's copies
2005-09-26: Arthur Ryman <ryman@ca.ibm.com>
***************
*** 215,220 ****
<target name="html" depends="assertion-tables, component-tables, defs" description="Transforms xml into html.">
! <xslt in="wsdl20.xml" out="wsdl20.html" style="xmlspec-wsdl.xsl" force="yes" />
! <xslt in="wsdl20-adjuncts.xml" out="wsdl20-adjuncts.html" style="xmlspec-wsdl.xsl" force="yes" />
<xslt in="wsdl20-primer.xml" out="wsdl20-primer.html" style="xmlspec-wsdl.xsl" force="yes" />
</target>
--- 216,225 ----
<target name="html" depends="assertion-tables, component-tables, defs" description="Transforms xml into html.">
! <xslt in="wsdl20.xml" out="wsdl20.html" style="xmlspec-wsdl.xsl" force="yes">
! <param name="status" expression="ed-copy" />
! </xslt>
! <xslt in="wsdl20-adjuncts.xml" out="wsdl20-adjuncts.html" style="xmlspec-wsdl.xsl" force="yes">
! <param name="status" expression="ed-copy" />
! </xslt>
<xslt in="wsdl20-primer.xml" out="wsdl20-primer.html" style="xmlspec-wsdl.xsl" force="yes" />
</target>
Index: xmlspec-wsdl.xsl
===================================================================
RCS file: /sources/public/2002/ws/desc/wsdl20/xmlspec-wsdl.xsl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** xmlspec-wsdl.xsl 10 Nov 2005 06:26:23 -0000 1.9
--- xmlspec-wsdl.xsl 11 Nov 2005 01:27:53 -0000 1.10
***************
*** 7,24 ****
<xsl:import href="wsdldefs.xsl" />
<xsl:import href="zml2html.xsl" />
<xsl:output method="html" encoding="utf-8"
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd" indent="no" />
!
<!-- AGR: Name the assertion anchor and link to the assertion summary table entry. -->
<xsl:template match="assert">
<a name="{@id}" />
! <xsl:apply-templates select="*|text()" />
<a href="#{@id}-summary">
<xsl:text>†</xsl:text>
</a>
</xsl:template>
!
<!-- Name the assertion summary table entry and link back to the assertion. -->
--- 7,37 ----
<xsl:import href="wsdldefs.xsl" />
<xsl:import href="zml2html.xsl" />
+
+ <!-- AGR 2005-11-11: The status parameter can be set to ed-copy to enable highlighting of assertions, or for other purposes.-->
+ <xsl:param name="status" />
<xsl:output method="html" encoding="utf-8"
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd" indent="no" />
!
<!-- AGR: Name the assertion anchor and link to the assertion summary table entry. -->
<xsl:template match="assert">
<a name="{@id}" />
! <xsl:choose>
! <xsl:when test="$status='ed-copy'">
! <span style="background-color: pink;">
! <xsl:apply-templates select="*|text()" />
! </span>
! </xsl:when>
! <xsl:otherwise>
! <xsl:apply-templates select="*|text()" />
! </xsl:otherwise>
! </xsl:choose>
!
<a href="#{@id}-summary">
<xsl:text>†</xsl:text>
</a>
</xsl:template>
!
<!-- Name the assertion summary table entry and link back to the assertion. -->
Index: wsdl20.html
===================================================================
RCS file: /sources/public/2002/ws/desc/wsdl20/wsdl20.html,v
retrieving revision 1.237
retrieving revision 1.238
diff -C2 -d -r1.237 -r1.238
*** wsdl20.html 10 Nov 2005 23:18:11 -0000 1.237
--- wsdl20.html 11 Nov 2005 01:27:55 -0000 1.238
***************
*** 747,751 ****
in the initial document versus those that are defined in the
included or imported documents.
! <a name="Import-0001"></a>
However, any WSDL 2.0 document that contains component
definitions that refer by QName to WSDL 2.0 components
--- 747,751 ----
in the initial document versus those that are defined in the
included or imported documents.
! <a name="Import-0001"></a><span style="background-color: pink;">
However, any WSDL 2.0 document that contains component
definitions that refer by QName to WSDL 2.0 components
***************
*** 755,764 ****
for that namespace (see
<a href="#imports"><b>4.2 Importing Descriptions</b></a>
! ).<a href="#Import-0001-summary">†</a>
! <a name="QName-0002"></a>
Furthermore, all QName references, whether to the same or
to different namespaces MUST resolve to components (see
<a href="#qnameres"><b>2.19 QName resolution</b></a>
! ).<a href="#QName-0002-summary">†</a>
</p>
--- 755,764 ----
for that namespace (see
<a href="#imports"><b>4.2 Importing Descriptions</b></a>
! ).</span><a href="#Import-0001-summary">†</a>
! <a name="QName-0002"></a><span style="background-color: pink;">
Furthermore, all QName references, whether to the same or
to different namespaces MUST resolve to components (see
<a href="#qnameres"><b>2.19 QName resolution</b></a>
! ).</span><a href="#QName-0002-summary">†</a>
</p>
***************
*** 812,819 ****
<p>
! <a name="Import-0003"></a>
Imported components have different target namespace
values from the
! WSDL 2.0 document that is importing them.<a href="#Import-0003-summary">†</a>
Thus importing is the mechanism to use components from one
namespace in definition of components from another namespace.
--- 812,819 ----
<p>
! <a name="Import-0003"></a><span style="background-color: pink;">
Imported components have different target namespace
values from the
! WSDL 2.0 document that is importing them.</span><a href="#Import-0003-summary">†</a>
Thus importing is the mechanism to use components from one
namespace in definition of components from another namespace.
***************
*** 2531,2535 ****
<p>
! <a name="MessageLabel-0004"></a>
The
<code>messageLabel</code>
--- 2531,2535 ----
<p>
! <a name="MessageLabel-0004"></a><span style="background-color: pink;">
The
<code>messageLabel</code>
***************
*** 2540,2548 ****
than one placeholder message with {direction} equal to the
message direction.
! <a href="#MessageLabel-0004-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0008"></a>
If the
<code>messageLabel</code>
--- 2540,2548 ----
than one placeholder message with {direction} equal to the
message direction.
! </span><a href="#MessageLabel-0004-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0008"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 2553,2561 ****
label} of some placeholder message with {direction} equal
to the message direction.
! <a href="#MessageLabel-0008-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0012"></a>
If the
<code>messageLabel</code>
--- 2553,2561 ----
label} of some placeholder message with {direction} equal
to the message direction.
! </span><a href="#MessageLabel-0008-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0012"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 2565,2569 ****
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! <a href="#MessageLabel-0012-summary">†</a>
</p>
--- 2565,2569 ----
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! </span><a href="#MessageLabel-0012-summary">†</a>
</p>
***************
*** 2929,2933 ****
<p>
! <a name="MessageLabel-0005"></a>
The
<code>messageLabel</code>
--- 2929,2933 ----
<p>
! <a name="MessageLabel-0005"></a><span style="background-color: pink;">
The
<code>messageLabel</code>
***************
*** 2938,2946 ****
than one placeholder message with {direction} equal to the
message direction.
! <a href="#MessageLabel-0005-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0009"></a>
If the
<code>messageLabel</code>
--- 2938,2946 ----
than one placeholder message with {direction} equal to the
message direction.
! </span><a href="#MessageLabel-0005-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0009"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 2951,2959 ****
label} of some placeholder message with {direction} equal
to the message direction.
! <a href="#MessageLabel-0009-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0013"></a>
If the
<code>messageLabel</code>
--- 2951,2959 ----
label} of some placeholder message with {direction} equal
to the message direction.
! </span><a href="#MessageLabel-0009-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0013"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 2963,2967 ****
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! <a href="#MessageLabel-0013-summary">†</a>
</p>
--- 2963,2967 ----
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! </span><a href="#MessageLabel-0013-summary">†</a>
</p>
***************
*** 5206,5210 ****
<p>
! <a name="MessageLabel-0006"></a>
The
<code>messageLabel</code>
--- 5206,5210 ----
<p>
! <a name="MessageLabel-0006"></a><span style="background-color: pink;">
The
<code>messageLabel</code>
***************
*** 5215,5223 ****
than one placeholder message with {direction} equal to the
message direction.
! <a href="#MessageLabel-0006-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0010"></a>
If the
<code>messageLabel</code>
--- 5215,5223 ----
than one placeholder message with {direction} equal to the
message direction.
! </span><a href="#MessageLabel-0006-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0010"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 5228,5236 ****
label} of some placeholder message with {direction} equal
to the message direction.
! <a href="#MessageLabel-0010-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0014"></a>
If the
<code>messageLabel</code>
--- 5228,5236 ----
label} of some placeholder message with {direction} equal
to the message direction.
! </span><a href="#MessageLabel-0010-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0014"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 5240,5244 ****
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! <a href="#MessageLabel-0014-summary">†</a>
</p>
--- 5240,5244 ----
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! </span><a href="#MessageLabel-0014-summary">†</a>
</p>
***************
*** 5555,5559 ****
<p>
! <a name="MessageLabel-0007"></a>
The
<code>messageLabel</code>
--- 5555,5559 ----
<p>
! <a name="MessageLabel-0007"></a><span style="background-color: pink;">
The
<code>messageLabel</code>
***************
*** 5564,5572 ****
than one placeholder message with {direction} equal to the
message direction.
! <a href="#MessageLabel-0007-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0011"></a>
If the
<code>messageLabel</code>
--- 5564,5572 ----
than one placeholder message with {direction} equal to the
message direction.
! </span><a href="#MessageLabel-0007-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0011"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 5577,5585 ****
label} of some placeholder message with {direction} equal
to the message direction.
! <a href="#MessageLabel-0011-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0015"></a>
If the
<code>messageLabel</code>
--- 5577,5585 ----
label} of some placeholder message with {direction} equal
to the message direction.
! </span><a href="#MessageLabel-0011-summary">†</a>
</p>
<p>
! <a name="MessageLabel-0015"></a><span style="background-color: pink;">
If the
<code>messageLabel</code>
***************
*** 5589,5593 ****
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! <a href="#MessageLabel-0015-summary">†</a>
</p>
--- 5589,5593 ----
is absent then there MUST be a unique placeholder message
with {direction} equal to the message direction.
! </span><a href="#MessageLabel-0015-summary">†</a>
</p>
Received on Friday, 11 November 2005 01:28:03 UTC