Author: kinow
Date: Wed Mar 29 09:39:43 2017
New Revision: 1789316

URL: http://svn.apache.org/viewvc?rev=1789316&view=rev
Log:
Remove trailing slash from routes, to match content in web.xml

Modified:
    jena/site/trunk/content/documentation/fuseki2/fuseki-server-protocol.mdtext

Modified: 
jena/site/trunk/content/documentation/fuseki2/fuseki-server-protocol.mdtext
URL: 
http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/fuseki2/fuseki-server-protocol.mdtext?rev=1789316&r1=1789315&r2=1789316&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/fuseki2/fuseki-server-protocol.mdtext 
(original)
+++ jena/site/trunk/content/documentation/fuseki2/fuseki-server-protocol.mdtext 
Wed Mar 29 09:39:43 2017
@@ -26,8 +26,8 @@ Further operations may be added within t
 | <tt>GET</tt>    | `/$/server`            |               | 
 | <tt>POST</tt>   | `/$/server`            |               | 
 ||
-| <tt>POST</tt>   | `/$/datasets/`         |               | 
-| <tt>GET</tt>    | `/$/datasets/`         |               |
+| <tt>POST</tt>   | `/$/datasets`         |               | 
+| <tt>GET</tt>    | `/$/datasets`         |               |
 | <tt>DELETE</tt> | `/$/datasets/*{name}*` |               |
 | <tt>GET</tt>    | `/$/datasets/*{name}*` |               |
 | <tt>POST</tt>   | `/$/datasets/*{name}*?state=offline` |               |
@@ -35,14 +35,14 @@ Further operations may be added within t
 ||
 | <tt>POST</tt>   | `/$/server/shutdown`   | Not yet implemented  | 
 ||
-| <tt>GET</tt>    | `/$/stats/`            |               | 
+| <tt>GET</tt>    | `/$/stats`            |               | 
 | <tt>GET</tt>    | `/$/stats/*{name}*`    |               |
 ||
 | <tt>POST</tt>   | `/$/backup/*{name}*`   |             |
-| <tt>GET</tt>    | `/$/backups-list/`      |             |
+| <tt>GET</tt>    | `/$/backups-list`      |             |
 | <tt>POST</tt>   | `/$/sleep`             |             |
 ||
-| <tt>GET</tt>    | `/$/tasks/`            |               | 
+| <tt>GET</tt>    | `/$/tasks`            |               | 
 | <tt>GET</tt>    | `/$/tasks/*{name}*`    |               |
 
 ## Ping
@@ -62,9 +62,9 @@ The URL `/$/server` returns details abou
 _@@details of JSON format._
 
 ## Datasets and Services
-Pattern: `/$/datasets/`
+Pattern: `/$/datasets`
 
-`/$/datasets/` is a container representing all datasets present in the server. 
+`/$/datasets` is a container representing all datasets present in the server. 
 `/$/datasets/*{name}*` names a specific dataset.  As a container, operations 
on items
 in the container, via `GET`, `POST` and `DELETE`, operate on specific dataset.
 
@@ -132,7 +132,7 @@ Datasets are initially "active".  The tr
 > **`/$/stats/*{name}*`**
 
 Statistics can be obtained for each dataset or all datasets in a single 
response.
-`/$/stats/` is  treated as a container for this information.
+`/$/stats` is  treated as a container for this information.
 
 > _@@ stats details_
 > See [Fuseki Statistics](fuseki-stats.html) for details of statistics kept by 
 > a Fuseki server.
@@ -155,7 +155,7 @@ The task id can be used to construct a U
 /$/tasks/*{taskId}*
 ```
 
-Pattern: `/$/backups-list/`
+Pattern: `/$/backups-list`
 
 Returns a list of all the files in the backup area of the server. This is
 useful for managing the files externally.


Reply via email to