You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, the client requests that the server doesn't send a push notification for the change in `file.txt` to the mentioned subscription.
375
379
376
380
Example 2:
377
381
378
-
DELETE /file.txt HTTP/1.1
379
-
Host: www.example.com
380
-
Push-Dont-Notify: *
381
-
382
-
[…]
383
-
384
-
HTTP/1.1 204 No Content
382
+
~~~http-message
383
+
DELETE /file.txt HTTP/1.1
384
+
Host: www.example.com
385
+
Push-Dont-Notify: *
386
+
387
+
[…]
388
+
389
+
HTTP/1.1 204 No Content
390
+
~~~
385
391
386
392
Here the client requests that the server doesn't send any push notification in the context of the deletion.
387
393
@@ -532,7 +538,7 @@ When a server that changes its VAPID key is able to notify clients with the old
532
538
533
539
A key rotation push message is a push message that only contains a `property-update` that includes a `{DAV:}prop` property with the `transports` property like this:
534
540
535
-
~~~
541
+
~~~xml
536
542
{::include xml/push-message-vapid-key.xml}
537
543
~~~
538
544
@@ -582,6 +588,6 @@ To reference element names in another namespace, the `{ns}element` syntax is use
582
588
583
589
The XML schema formally defines the XML elements used by this document and is expressed in {{RELAXNG}}.
0 commit comments