diff --git a/docs/api/rest/group.html b/docs/api/rest/group.html
deleted file mode 100644
index dee6d8fe86..0000000000
--- a/docs/api/rest/group.html
+++ /dev/null
@@ -1,215 +0,0 @@
-
-
- REST API - Group
-
-
-
-
- REST API - Group
-
-
-
-
- Get all
-
-
-
-
- | URL |
- /api/rest/groups(.xml|.json) |
-
-
- | Method |
- GET |
-
-
- | Returns |
- 200 OK |
-
-
- | 401 Unauthorized |
-
-
- | 415 Unsupported Media Type |
-
-
-
-
- JSON Example
-
-
-GET /api/rest/groups.json
-
-{ groups: [
- {
- name: 'group1',
- members: [
- 'hans', 'klaus', 'uwe'
- ]
- },
- {
- name: 'group2',
- members: [
- 'peter', 'klaus', 'hans'
- ]
- }
-]}
-
-
-
- Get
-
-
-
-
- | URL |
- /api/rest/groups/group name(.xml|.json) |
-
-
- | Method |
- GET |
-
-
- | Returns |
- 200 OK |
-
-
- | 401 Unauthorized |
-
-
- | 404 Not Found |
-
-
- | 415 Unsupported Media Type |
-
-
-
-
- JSON Example
-
-
-GET /api/rest/groups/group name.json
-
-{
- name: 'group1',
- members: [
- 'hans', 'klaus', 'uwe'
- ]
-}
-
-
-
- Add
-
-
-
-
- | URL |
- /api/rest/groups(.xml|.json) |
-
-
- | Method |
- POST |
-
-
- | Returns |
- 201 Created & Location |
-
-
- | 401 Unauthorized |
-
-
- | 415 Unsupported Media Type |
-
-
-
-
- JSON Example
-
-
-POST /api/rest/groups.json
-
-{
- name: 'group3',
- members: [
- 'klaus', 'uwe'
- ]
-}
-
-
-
- Update
-
-
-
-
- | URL |
- /api/rest/groups/group name(.xml|.json) |
-
-
- | Method |
- PUT |
-
-
- | Returns |
- 201 Created & Location |
-
-
- | 401 Unauthorized |
-
-
- | 404 Not Found |
-
-
- | 415 Unsupported Media Type |
-
-
-
-
- JSON Example
-
-
-PUT /api/rest/groups/group3.json
-
-{
- name: 'group3',
- members: [
- 'hans', 'klaus', 'uwe'
- ]
-}
-
-
-
- Delete
-
-
-
-
- | URL |
- /api/rest/groups/group name(.xml|.json) |
-
-
- | Method |
- DELETE |
-
-
- | Returns |
- 204 No Content |
-
-
- | 401 Unauthorized |
-
-
- | 404 Not Found |
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/api/rest/resources/style.css b/docs/api/rest/resources/style.css
deleted file mode 100644
index fdc6345779..0000000000
--- a/docs/api/rest/resources/style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-h1 { font-size: 18px; color: red; border-bottom: 1px solid gray; }
-h2 { font-size: 16px; color: red; border-bottom: 1px solid gray; }
-h3 { font-size: 16px; color: red; }
-
-pre, table { margin-left: 20px; }
-
-pre { border: 1px dashed gray; padding: 10px; background-color: #eee; }
-
-table { border-collapse: collapse; width: 480px; border: 2px solid black; }
-td, th { border: 1px solid black; padding: 3px; }
-th { font-weight: normal; text-align: left; width: 80px; vertical-align: top; }
\ No newline at end of file