From 4383f052ac12bddb52e5884cf7bf117f4f63c9df Mon Sep 17 00:00:00 2001 From: elf Pavlik Date: Wed, 23 Mar 2016 10:57:34 -0600 Subject: [PATCH] remove .ttl from RDFSource URIs --- content-representation.md | 2 +- recommendations-server.md | 2 +- solid-webid-profiles.md | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/content-representation.md b/content-representation.md index f91d861..dbde18c 100644 --- a/content-representation.md +++ b/content-representation.md @@ -42,7 +42,7 @@ Our motivation is threefold: even though the resource is stored as a Turtle file). 3. Direct mapping: the URLs map directly to the file system resources -- i.e. - `https://example.org/test.ttl` maps to `/home/user/www/test.ttl` + `https://example.org/avatar.png` maps to `/home/user/www/avatar.png` Servers must support the HEAD method for reading data. This returns a list of headers related to the resource in question. Among these headers, two very diff --git a/recommendations-server.md b/recommendations-server.md index 6ef8870..13df015 100644 --- a/recommendations-server.md +++ b/recommendations-server.md @@ -49,7 +49,7 @@ space#preferencesFile](http://www.w3.org/ns/pim/space#preferencesFile) property. ```ttl <#me> - <../settings/preferences.ttl> ; + <../settings/preferences> ; ``` ##### `/inbox/` (Inbox) diff --git a/solid-webid-profiles.md b/solid-webid-profiles.md index 23802d5..bb51e71 100644 --- a/solid-webid-profiles.md +++ b/solid-webid-profiles.md @@ -140,7 +140,7 @@ across several RDF documents: * `/profile/card` - their primary (public-readable) WebID Profile. Which would contain a `space:preferencesFile` link to: -* `/settings/prefs.ttl` - a private (only the user has read/write access) +* `/settings/preferences` - a private (only the user has read/write access) Preferences file which contains further profile-related statements. ### Extended Profile @@ -247,16 +247,16 @@ For example, a link to the Listed Type Index in the main profile document: <#me> a foaf:Person ; - . + . ``` And an example corresponding link to the Unlisted Type Index, in a private resources of the Extended Profile, such as the Preferences file -(in `/settings/prefs.ttl`): +(in `/settings/preferences`): ```ttl # ... <#me> - . + . ```