Skip to content

Commit

Permalink
docs: userguide fix example domains names to follow RFC 2606
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillar committed Oct 5, 2023
1 parent 5c9d04f commit 07492e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/UserGuide/src/main/markdown/webdav.md
Original file line number Diff line number Diff line change
Expand Up @@ -692,14 +692,14 @@ curl -s -H "Accept: application/metalink4+xml" https://dcache.example.org/Users/
| <size>174</size>
| <hash type="sha-1">b95d5d20afb9a49d1d779ad3a6a246bd03bfef34</hash>
| <hash type="md5">7128e02d3779f8ff5141b9f5ac003be4</hash>
| <url>https://prometheus.desy.de/Users/paul/public%2Dfile</url>
| <url>https://dcache.example.org/Users/paul/public%2Dfile</url>
| <updated>2023-10-05T04:05:00.682Z</updated>
| </file>
| <file name="private-file">
| <size>145</size>
| <hash type="sha-1">cfb51c36cbb348ead6b10588b84f5f9923737649</hash>
| <hash type="md5">32f9a46c0b40d63222db11b8a46f0584</hash>
| <url>https://prometheus.desy.de/Users/paul/private%2Dfile</url>
| <url>https://dcache.example.org/Users/paul/private%2Dfile</url>
| <updated>2023-10-05T04:05:01.438Z</updated>
| </file>
|</metalink>
Expand All @@ -724,14 +724,14 @@ curl -s https://dcache.example.org/Users/paul/?type=metalink | xmllint -format -
| <size>174</size>
| <hash type="sha-1">b95d5d20afb9a49d1d779ad3a6a246bd03bfef34</hash>
| <hash type="md5">7128e02d3779f8ff5141b9f5ac003be4</hash>
| <url>https://prometheus.desy.de/Users/paul/public%2Dfile</url>
| <url>https://dcache.example.org/Users/paul/public%2Dfile</url>
| <updated>2023-10-05T04:05:00.682Z</updated>
| </file>
| <file name="private-file">
| <size>145</size>
| <hash type="sha-1">cfb51c36cbb348ead6b10588b84f5f9923737649</hash>
| <hash type="md5">32f9a46c0b40d63222db11b8a46f0584</hash>
| <url>https://prometheus.desy.de/Users/paul/private%2Dfile</url>
| <url>https://dcache.example.org/Users/paul/private%2Dfile</url>
| <updated>2023-10-05T04:05:01.438Z</updated>
| </file>
|</metalink>
Expand All @@ -746,8 +746,8 @@ response header has the relationship (`rel`) attribute value of
`application/metalink4+xml`.

```console-user
curl -s -I https://prometheus.desy.de/Users/paul/ | grep ^Link
|Link: <https://prometheus.desy.de/Users/paul/?type=metalink>; rel=describedby; type="application/metalink4+xml"
curl -s -I https://dcache.example.org/Users/paul/ | grep ^Link
|Link: <https://dcache.example.org/Users/paul/?type=metalink>; rel=describedby; type="application/metalink4+xml"
```

In the above example, curl issues an HTTP HEAD request that targets a
Expand Down

0 comments on commit 07492e6

Please sign in to comment.