Skip to content
This repository was archived by the owner on Apr 13, 2022. It is now read-only.

Commit 4383f05

Browse files
author
elf Pavlik
committed
remove .ttl from RDFSource URIs
1 parent c9f6ba2 commit 4383f05

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

content-representation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Our motivation is threefold:
4242
even though the resource is stored as a Turtle file).
4343

4444
3. Direct mapping: the URLs map directly to the file system resources -- i.e.
45-
`https://example.org/test.ttl` maps to `/home/user/www/test.ttl`
45+
`https://example.org/avatar.png` maps to `/home/user/www/avatar.png`
4646

4747
Servers must support the HEAD method for reading data. This returns a list of
4848
headers related to the resource in question. Among these headers, two very

recommendations-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ space#preferencesFile](http://www.w3.org/ns/pim/space#preferencesFile) property.
4949

5050
```ttl
5151
<#me>
52-
<http://www.w3.org/ns/pim/space#preferencesFile> <../settings/preferences.ttl> ;
52+
<http://www.w3.org/ns/pim/space#preferencesFile> <../settings/preferences> ;
5353
```
5454

5555
##### `/inbox/` (Inbox)

solid-webid-profiles.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ across several RDF documents:
140140

141141
* `/profile/card` - their primary (public-readable) WebID Profile.
142142
Which would contain a `space:preferencesFile` link to:
143-
* `/settings/prefs.ttl` - a private (only the user has read/write access)
143+
* `/settings/preferences` - a private (only the user has read/write access)
144144
Preferences file which contains further profile-related statements.
145145

146146
### Extended Profile
@@ -247,16 +247,16 @@ For example, a link to the Listed Type Index in the main profile document:
247247
<#me>
248248
a foaf:Person ;
249249
<http://www.w3.org/ns/solid/terms#publicTypeIndex>
250-
</settings/publicTypeIndex.ttl> .
250+
</settings/publicTypeIndex> .
251251
```
252252

253253
And an example corresponding link to the Unlisted Type Index, in a private
254254
resources of the Extended Profile, such as the Preferences file
255-
(in `/settings/prefs.ttl`):
255+
(in `/settings/preferences`):
256256

257257
```ttl
258258
# ...
259259
<#me>
260260
<http://www.w3.org/ns/solid/terms#privateTypeIndex>
261-
</settings/privateTypeIndex.ttl> .
261+
</settings/privateTypeIndex> .
262262
```

0 commit comments

Comments
 (0)