$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 01:54:05 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html; charset=utf-8
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 01:54:33 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
Garlic
GarlvegejD7cik
0.81
772
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic/product'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 01:54:44 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
Garlic
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic/product/inventory'
HTTP/1.1 404 Not Found
Date: Wed, 13 Jul 2005 01:55:02 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/plain; charset=utf-8
Garlic/product/inventory not found
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic/inventory/sku'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 01:55:15 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
GarlvegejD7cik
$ curl -sD - -X DELETE 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic/inventory/sku'
HTTP/1.1 410 Gone
Date: Wed, 13 Jul 2005 01:56:13 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/plain; charset=utf-8
Deleted inventory/sku
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic/inventory/sku'
HTTP/1.1 404 Not Found
Date: Wed, 13 Jul 2005 01:56:17 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/plain; charset=utf-8
Garlic/inventory/sku not found
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 01:56:23 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
Garlic
0.81
772
$ curl -sD - -X DELETE 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic'
HTTP/1.1 410 Gone
Date: Wed, 13 Jul 2005 01:56:37 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/plain; charset=utf-8
Deleted Garlic
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Garlic'
HTTP/1.1 404 Not Found
Date: Wed, 13 Jul 2005 01:56:43 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/plain; charset=utf-8
Garlic not found
$ curl -sD - -X PUT -d'WHEEE' 'http://decafbad.com/2005/07/xmlwiki/www/store/'
HTTP/1.1 201 Created
Date: Wed, 13 Jul 2005 01:59:19 GMT
Server: Apache/2.0.46 (Red Hat)
Location: /2005/07/xmlwiki/www/store/1121219959.93.5368
Content-Length: 0
Connection: close
Content-Type: text/plain; charset=utf-8
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/1121219959.93.5368'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 02:00:17 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
WHEEE
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Tomato'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 01:57:12 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
Tomato
Tomavegek4wa4y
0.66
733
Off the Vine
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Tomato'HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 02:16:11 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
Tomato
123-4567-0000.66
733
Off the Vine
$ curl -sD - -X PUT -d'FooBarBaz' 'http://decafbad.com/2005/07/xmlwiki/www/store/Tomato/inventory/sku'
HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 02:16:30 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
FooBarBaz
$ curl -sD - -X GET 'http://decafbad.com/2005/07/xmlwiki/www/store/Tomato'HTTP/1.1 200 OK
Date: Wed, 13 Jul 2005 02:16:32 GMT
Server: Apache/2.0.46 (Red Hat)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/xml
Tomato
FooBarBaz0.66
733
Off the Vine
$