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

Commit aefe0c3

Browse files
author
Mitzi László
authored
Merge pull request #92 from elf-pavlik/no.ttl
remove .ttl from RDFSource URIs
2 parents c9a8214 + 4383f05 commit aefe0c3

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
@@ -146,7 +146,7 @@ across several RDF documents:
146146

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

152152
### Extended Profile
@@ -282,16 +282,16 @@ For example, a link to the Listed Type Index in the main profile document:
282282
<#me>
283283
a foaf:Person ;
284284
<http://www.w3.org/ns/solid/terms#publicTypeIndex>
285-
</settings/publicTypeIndex.ttl> .
285+
</settings/publicTypeIndex> .
286286
```
287287

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

292292
```ttl
293293
# ...
294294
<#me>
295295
<http://www.w3.org/ns/solid/terms#privateTypeIndex>
296-
</settings/privateTypeIndex.ttl> .
296+
</settings/privateTypeIndex> .
297297
```

0 commit comments

Comments
 (0)