Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes for 0424 #1326

Merged
merged 3 commits into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions xep-0424.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@
<shortname>message-retract</shortname>
&lance;
&jcbrand;
<revision>
<version>0.4.1</version>
<date>2024-02-24</date>
<initials>nc</initials>
<remark>
<ul>
<li>Fix schema.</li>
<li>Add missing for attribute in fallback element (Example 4).</li>
</ul>
</remark>
</revision>
<revision>
<version>0.4.0</version>
<date>2023-02-19</date>
Expand Down Expand Up @@ -133,7 +144,7 @@
<example caption="The client sends out a retraction message"><![CDATA[
<message type='chat' to='[email protected]' id='retract-message-1'>
<retract id="origin-id-1" xmlns='urn:xmpp:message-retract:1'/>
<fallback xmlns="urn:xmpp:fallback:0"/>
<fallback xmlns="urn:xmpp:fallback:0" for='urn:xmpp:message-retract:1'/>
<body>This person attempted to retract a previous message, but it's unsupported by your client.</body>
<store xmlns="urn:xmpp:hints"/>
</message>]]></example>
Expand Down Expand Up @@ -254,9 +265,9 @@
<xs:complexType>
<xs:simpleContent>
<xs:extension base='xs:string'>
<xs:attribute name='by' type='xs:string' use='required'/>
<xs:attribute name='from' type='xs:string' use='optional'/>
<xs:attribute name='stamp' type='xs:dateTime' use='required'/>
<xs:attribute name='by' type='xs:string' use='optional'/>
<xs:attribute name='id' type='xs:string' use='required'/>
<xs:attribute name='stamp' type='xs:dateTime' use='optional'/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
Expand Down
Loading