<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to DeleteOwner</title><link>https://sourceforge.net/p/m2mlabs/wiki/DeleteOwner/</link><description>Recent changes to DeleteOwner</description><atom:link href="https://sourceforge.net/p/m2mlabs/wiki/DeleteOwner/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 22 Sep 2012 09:52:21 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/m2mlabs/wiki/DeleteOwner/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage DeleteOwner modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/DeleteOwner/</link><description>&lt;pre&gt;--- v14
+++ v15
@@ -1,7 +1,8 @@
 ### Delete owner ###
 
 deletes an owner, can only be executed with the admin apikey
-all data of the owner become inaccesible
+
+##### ! all devices and data of the owner can not be accessed anymore
 
 Path: cs-ws/resources/admin/owners/{id}        Method: DELETE
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Sat, 22 Sep 2012 09:52:21 -0000</pubDate><guid>https://sourceforge.net803f308ed81e0f591d6e241f9fc6cf2f45b0a2a7</guid></item><item><title>WikiPage DeleteOwner modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/DeleteOwner/</link><description>&lt;pre&gt;--- v13
+++ v14
@@ -18,15 +18,6 @@
 
 ~~~~~~
 DELETE http://localhost/cs-ws/resources/admin/owners/test6?apikey=1234 HTTP/1.1
-Accept-Encoding: gzip,deflate
-Content-Type: application/xml
-User-Agent: Jakarta Commons-HttpClient/3.1
-Host: localhost
-Content-Length: 84
 
 HTTP/1.1 200 OK
-Server: GlassFish Server Open Source Edition 3.1.2
-Content-Type: application/xml
-Content-Length: 174
-Date: Fri, 21 Sep 2012 19:51:20 GMT
 ~~~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Sat, 22 Sep 2012 08:45:43 -0000</pubDate><guid>https://sourceforge.neta0ece0b0b324bf92934355b33fdf4137c0fafa00</guid></item><item><title>WikiPage DeleteOwner modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/DeleteOwner/</link><description>&lt;pre&gt;--- v12
+++ v13
@@ -1,201 +1,3 @@
-# Owners #
-
--------
-
-### Create new Owner ###
-
-Creates a new owner and returns the newly created owner, can only be executed with the admin apikey
-
-Path: cs-ws/resources/admin/owners        Method: POST
-
-Parameters
-
-* apikey
-
-POST Data
-
-~~~~~~
-&lt;owner&gt;
-   &lt;apikey&gt;...&lt;/apikey&gt;        apikey for the created owner 
-   &lt;id&gt;...&lt;/id&gt;                optional id, if empty name is taken as id
-   &lt;name&gt;...&lt;/name&gt;            name of the owner
-&lt;/owner&gt;
-~~~~~~
-
-Errors:
-
-* 409 CONFLICT if owner already exists
-* 401 UNAUTHORIZED if key is invalid or not admin key
-
-Example
-
-~~~~~~
-POST http://localhost/cs-ws/resources/admin/owners?apikey=1234 HTTP/1.1
-Accept-Encoding: gzip,deflate
-Content-Type: application/xml
-User-Agent: Jakarta Commons-HttpClient/3.1
-Host: localhost
-Content-Length: 82
-&lt;owner&gt;
-   &lt;apikey&gt;9999&lt;/apikey&gt;
-   &lt;name&gt;test5&lt;/name&gt;
-&lt;/owner&gt;
-
-HTTP/1.1 201 Created
-Server: GlassFish Server Open Source Edition 3.1.2
-Content-Type: application/xml
-Content-Length: 171
-Date: Thu, 20 Sep 2012 19:54:32 GMT
-&lt;ownerEntity&gt;
-   &lt;data&gt;
-      &lt;apikey&gt;9999&lt;/apikey&gt;
-      &lt;id&gt;test5&lt;/id&gt;
-      &lt;name&gt;test5&lt;/name&gt;
-   &lt;/data&gt;
-   &lt;success&gt;true&lt;/success&gt;
-&lt;/ownerEntity&gt;
-~~~~~~
-
---------
-
-### List existing owners ###
-
-Returns a list of existing owners, can only be executed with the admin apikey
-
-Path: cs-ws/resources/admin/owners        Method: GET
-
-Parameters
-
-* apikey
-
-Errors:
-
-* 401 UNAUTHORIZED if key is invalid or not admin key
-
-Example
-
-~~~~~~
-GET http://localhost/cs-ws/resources/admin/owners?apikey=1234 HTTP/1.1
-Accept-Encoding: gzip,deflate
-Accept: application/xml
-User-Agent: Jakarta Commons-HttpClient/3.1
-Host: localhost
-
-HTTP/1.1 200 OK
-Server: GlassFish Server Open Source Edition 3.1.2
-Content-Type: application/xml
-Content-Length: 632
-Date: Fri, 21 Sep 2012 19:30:09 GMT
-&lt;ownerEntity&gt;
-   &lt;data&gt;
-      &lt;apikey&gt;5678&lt;/apikey&gt;
-      &lt;id&gt;test3&lt;/id&gt;
-      &lt;name&gt;test3&lt;/name&gt;
-   &lt;/data&gt;
-   &lt;data&gt;
-      &lt;apikey&gt;99999&lt;/apikey&gt;
-      &lt;id&gt;test6&lt;/id&gt;
-      &lt;name&gt;test6&lt;/name&gt;
-   &lt;/data&gt;
-   &lt;success&gt;true&lt;/success&gt;
-&lt;/ownerEntity&gt;
-~~~~~~
-
---------
-
-
-### Read a certain Owner ###
-
-Returns data of an existing owner identified by the apikey
-
-Path: cs-ws/resources/admin/owners/getOwner        Method: GET
-
-Parameters
-
-* apikey
-
-Errors:
-
-* 401 UNAUTHORIZED if key is invalid
-
-Example
-
-~~~~~~
-GET http://localhost/cs-ws/resources/admin/owners/getOwner?apikey=99999 HTTP/1.1
-Accept-Encoding: gzip,deflate
-Accept: application/xml
-User-Agent: Jakarta Commons-HttpClient/3.1
-Host: localhost
-
-HTTP/1.1 200 OK
-Server: GlassFish Server Open Source Edition 3.1.2
-Content-Type: application/xml
-Content-Length: 172
-Date: Fri, 21 Sep 2012 19:42:17 GMT
-&lt;ownerEntity&gt;
-   &lt;data&gt;
-      &lt;apikey&gt;99999&lt;/apikey&gt;
-      &lt;id&gt;test6&lt;/id&gt;
-      &lt;name&gt;test6&lt;/name&gt;
-   &lt;/data&gt;
-   &lt;success&gt;true&lt;/success&gt;
-&lt;/ownerEntity&gt;
-~~~~~~
-
---------
-
-### Modify owner ###
-
-changes the apikey of an owner, id and name my not be changed, can only be executed with the admin apikey
-
-Path: cs-ws/resources/admin/owners/{id}        Method: PUT
-
-Parameters
-
-* id
-* apikey
-
-PUT Data
-
-~~~~~~
-&lt;owner&gt;
-   &lt;apikey&gt;...&lt;/apikey&gt;        new apikey for the owner 
-   &lt;id&gt;...&lt;/id&gt;                has to be the same as the existing id
-   &lt;name&gt;...&lt;/name&gt;            has to be the same as the existing name
-&lt;/owner&gt;
-~~~~~~
-
-Errors:
-
-* 401 UNAUTHORIZED if key is invalid or not admin key
-
-Example
-
-~~~~~~
-PUT http://localhost/cs-ws/resources/admin/owners/test6?apikey=1234 HTTP/1.1
-Accept-Encoding: gzip,deflate
-Content-Type: application/xml
-User-Agent: Jakarta Commons-HttpClient/3.1
-Host: localhost
-Content-Length: 84
-
-HTTP/1.1 200 OK
-Server: GlassFish Server Open Source Edition 3.1.2
-Content-Type: application/xml
-Content-Length: 174
-Date: Fri, 21 Sep 2012 19:51:20 GMT
-&lt;ownerEntity&gt;
-   &lt;data&gt;
-      &lt;apikey&gt;9999988&lt;/apikey&gt;
-      &lt;id&gt;test6&lt;/id&gt;
-      &lt;name&gt;test6&lt;/name&gt;
-   &lt;/data&gt;
-   &lt;success&gt;true&lt;/success&gt;
-&lt;/ownerEntity&gt;
-~~~~~~
-
---------
-
 ### Delete owner ###
 
 deletes an owner, can only be executed with the admin apikey
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Sat, 22 Sep 2012 08:00:02 -0000</pubDate><guid>https://sourceforge.net3b253fd6f49fd28af09d8fafcaaf3a3465e3dfb9</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;--- v11
+++ v12
@@ -196,32 +196,35 @@
 
 --------
 
-### Delete a certain Owner ###
-
-The owner to be deleted must be specified in the DELETE request body.
-
-###### Request ######
-
-~~~~~~
-cat &lt;&lt;EOT | tee /tmp/x.xml | curl -X DELETE -d@- -i -H "Content-Type: application/xml; charset=utf-8" -H "Accept: application/json" "http://localhost:8080/cs-ws/resources/admin/owners/user?apikey=1234"
-    &lt;?xml version="1.0" encoding="utf-8"?&gt;
-    &lt;owner&gt;
-	&lt;apikey&gt;user1234&lt;/apikey&gt;
-	&lt;id&gt;user&lt;/id&gt;
-	&lt;name&gt;user&lt;/name&gt;
-    &lt;/owner&gt;
-    EOT
-~~~~~~
-
-###### Result ######
-
-~~~~~~
-HTTP/1.1 200 OK
-X-Powered-By: Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1 Java/Sun Microsystems Inc./1.6)
-Server: GlassFish Server Open Source Edition 3.1
-Content-Type: application/json
-Transfer-Encoding: chunked
-Date: Wed, 09 Nov 2011 20:34:40 GMT
-
-{"success":"true"}
-~~~~~~
+### Delete owner ###
+
+deletes an owner, can only be executed with the admin apikey
+all data of the owner become inaccesible
+
+Path: cs-ws/resources/admin/owners/{id}        Method: DELETE
+
+Parameters
+
+* id
+* apikey
+
+Errors:
+
+* 401 UNAUTHORIZED if key is invalid or not admin key
+
+Example
+
+~~~~~~
+DELETE http://localhost/cs-ws/resources/admin/owners/test6?apikey=1234 HTTP/1.1
+Accept-Encoding: gzip,deflate
+Content-Type: application/xml
+User-Agent: Jakarta Commons-HttpClient/3.1
+Host: localhost
+Content-Length: 84
+
+HTTP/1.1 200 OK
+Server: GlassFish Server Open Source Edition 3.1.2
+Content-Type: application/xml
+Content-Length: 174
+Date: Fri, 21 Sep 2012 19:51:20 GMT
+~~~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Fri, 21 Sep 2012 20:19:33 -0000</pubDate><guid>https://sourceforge.netf86784d2672e9f8c126af98a1dae7d789a68a3eb</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;--- v10
+++ v11
@@ -144,36 +144,55 @@
 
 --------
 
-### Update a certain Owner ###
-
-To update a certain owner the data must be specified in the PUT request body.
-
-###### Request ######
-
-~~~~~~
-cat &lt;&lt;EOT | tee /tmp/x.xml | curl -X PUT -d@- -i -H "Content-Type: application/xml; charset=utf-8" -H "Accept: application/json" "http://localhost:8080/cs-ws/resources/admin/owners/user?apikey=1234"
-&lt;?xml version="1.0" encoding="utf-8"?&gt;
+### Modify owner ###
+
+changes the apikey of an owner, id and name my not be changed, can only be executed with the admin apikey
+
+Path: cs-ws/resources/admin/owners/{id}        Method: PUT
+
+Parameters
+
+* id
+* apikey
+
+PUT Data
+
+~~~~~~
 &lt;owner&gt;
-	&lt;apikey&gt;newapikeyupdated&lt;/apikey&gt;
-	&lt;id&gt;newuser&lt;/id&gt;
-	&lt;name&gt;newuser&lt;/name&gt;
+   &lt;apikey&gt;...&lt;/apikey&gt;        new apikey for the owner 
+   &lt;id&gt;...&lt;/id&gt;                has to be the same as the existing id
+   &lt;name&gt;...&lt;/name&gt;            has to be the same as the existing name
 &lt;/owner&gt;
-EOT
-~~~~~~
-
-###### Result ######
-
-~~~~~~
-HTTP/1.1 200 OK
-X-Powered-By: Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1 Java/Sun Microsystems Inc./1.6)
-Server: GlassFish Server Open Source Edition 3.1
-Content-Type: application/json
-Transfer-Encoding: chunked
-Date: Fri, 11 Nov 2011 20:18:23 GMT
-
-{"data":{"apikey":"newapikeyupdated","id":"newuser","name":"newuser"},"success":"true"}
-~~~~~~
-
+~~~~~~
+
+Errors:
+
+* 401 UNAUTHORIZED if key is invalid or not admin key
+
+Example
+
+~~~~~~
+PUT http://localhost/cs-ws/resources/admin/owners/test6?apikey=1234 HTTP/1.1
+Accept-Encoding: gzip,deflate
+Content-Type: application/xml
+User-Agent: Jakarta Commons-HttpClient/3.1
+Host: localhost
+Content-Length: 84
+
+HTTP/1.1 200 OK
+Server: GlassFish Server Open Source Edition 3.1.2
+Content-Type: application/xml
+Content-Length: 174
+Date: Fri, 21 Sep 2012 19:51:20 GMT
+&lt;ownerEntity&gt;
+   &lt;data&gt;
+      &lt;apikey&gt;9999988&lt;/apikey&gt;
+      &lt;id&gt;test6&lt;/id&gt;
+      &lt;name&gt;test6&lt;/name&gt;
+   &lt;/data&gt;
+   &lt;success&gt;true&lt;/success&gt;
+&lt;/ownerEntity&gt;
+~~~~~~
 
 --------
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Fri, 21 Sep 2012 20:02:19 -0000</pubDate><guid>https://sourceforge.netd2090f3fab58f6a985bdddf525f7160b25cc609a</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;--- v9
+++ v10
@@ -106,25 +106,40 @@
 
 ### Read a certain Owner ###
 
-###### Request ######
-
-~~~~~~
-
-curl -X GET -i -H "Content-Type: application/xml; charset=utf-8" -H "Accept: application/json" "http://localhost:8080/cs-ws/resources/admin/owners/getOwner?apikey=1234"
-
-~~~~~~
-
-###### Result ######
-
-~~~~~~
-HTTP/1.1 200 OK
-X-Powered-By: Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1 Java/Sun Microsystems Inc./1.6)
-Server: GlassFish Server Open Source Edition 3.1
-Content-Type: application/json
-Transfer-Encoding: chunked
-Date: Wed, 09 Nov 2011 20:27:03 GMT
-
-{"data":{"apikey":"1234","id":"admin","name":"admin"},"deviceNameList":["MyDevice","MyDevice2"],"success":"true"}
+Returns data of an existing owner identified by the apikey
+
+Path: cs-ws/resources/admin/owners/getOwner        Method: GET
+
+Parameters
+
+* apikey
+
+Errors:
+
+* 401 UNAUTHORIZED if key is invalid
+
+Example
+
+~~~~~~
+GET http://localhost/cs-ws/resources/admin/owners/getOwner?apikey=99999 HTTP/1.1
+Accept-Encoding: gzip,deflate
+Accept: application/xml
+User-Agent: Jakarta Commons-HttpClient/3.1
+Host: localhost
+
+HTTP/1.1 200 OK
+Server: GlassFish Server Open Source Edition 3.1.2
+Content-Type: application/xml
+Content-Length: 172
+Date: Fri, 21 Sep 2012 19:42:17 GMT
+&lt;ownerEntity&gt;
+   &lt;data&gt;
+      &lt;apikey&gt;99999&lt;/apikey&gt;
+      &lt;id&gt;test6&lt;/id&gt;
+      &lt;name&gt;test6&lt;/name&gt;
+   &lt;/data&gt;
+   &lt;success&gt;true&lt;/success&gt;
+&lt;/ownerEntity&gt;
 ~~~~~~
 
 --------
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Fri, 21 Sep 2012 19:44:19 -0000</pubDate><guid>https://sourceforge.netf94dbe69fab49b7fd9d7ca904f3363acac9fe359</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;--- v8
+++ v9
@@ -2,9 +2,9 @@
 
 -------
 
-#### Create new Owner ####
+### Create new Owner ###
 
-Creates a new owner, can only be executed with the admin apikey
+Creates a new owner and returns the newly created owner, can only be executed with the admin apikey
 
 Path: cs-ws/resources/admin/owners        Method: POST
 
@@ -21,8 +21,6 @@
    &lt;name&gt;...&lt;/name&gt;            name of the owner
 &lt;/owner&gt;
 ~~~~~~
-
-Returns the newly created owner
 
 Errors:
 
@@ -60,33 +58,48 @@
 
 --------
 
+### List existing owners ###
 
-### List existing Owners ###
+Returns a list of existing owners, can only be executed with the admin apikey
 
-It lists all existing owners in the system.
+Path: cs-ws/resources/admin/owners        Method: GET
 
-###### Request ######
+Parameters
+
+* apikey
+
+Errors:
+
+* 401 UNAUTHORIZED if key is invalid or not admin key
+
+Example
 
 ~~~~~~
+GET http://localhost/cs-ws/resources/admin/owners?apikey=1234 HTTP/1.1
+Accept-Encoding: gzip,deflate
+Accept: application/xml
+User-Agent: Jakarta Commons-HttpClient/3.1
+Host: localhost
 
-curl -X GET -i -H "Content-Type: application/xml; charset=utf-8" -H "Accept: application/json" "http://localhost:8080/cs-ws/resources/admin/owners?apikey=1234"
-
+HTTP/1.1 200 OK
+Server: GlassFish Server Open Source Edition 3.1.2
+Content-Type: application/xml
+Content-Length: 632
+Date: Fri, 21 Sep 2012 19:30:09 GMT
+&lt;ownerEntity&gt;
+   &lt;data&gt;
+      &lt;apikey&gt;5678&lt;/apikey&gt;
+      &lt;id&gt;test3&lt;/id&gt;
+      &lt;name&gt;test3&lt;/name&gt;
+   &lt;/data&gt;
+   &lt;data&gt;
+      &lt;apikey&gt;99999&lt;/apikey&gt;
+      &lt;id&gt;test6&lt;/id&gt;
+      &lt;name&gt;test6&lt;/name&gt;
+   &lt;/data&gt;
+   &lt;success&gt;true&lt;/success&gt;
+&lt;/ownerEntity&gt;
 ~~~~~~
-
-###### Result ######
-
-~~~~~~
-HTTP/1.1 200 OK
-X-Powered-By: Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1 Java/Sun Microsystems Inc./1.6)
-Server: GlassFish Server Open Source Edition 3.1
-Content-Type: application/json
-Transfer-Encoding: chunked
-Date: Wed, 09 Nov 2011 20:09:22 GMT
-
-{"data":[{"apikey":"1234","id":"admin","name":"admin"},{"apikey":"papa23345345","id":"lala","name":"lala"},{"apikey":"user1234","id":"user","name":"user"}],"success":"true"}
-~~~~~~
-
-
 
 --------
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Fri, 21 Sep 2012 19:38:28 -0000</pubDate><guid>https://sourceforge.net27c96b2bcfd0f6089626849d45e158eafa4e7f18</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;--- v7
+++ v8
@@ -1,10 +1,10 @@
 # Owners #
-
-**For all CRUD operations the used apikey at the URL must belong to the admin owner.**
 
 -------
 
 #### Create new Owner ####
+
+Creates a new owner, can only be executed with the admin apikey
 
 Path: cs-ws/resources/admin/owners        Method: POST
 
@@ -16,9 +16,9 @@
 
 ~~~~~~
 &lt;owner&gt;
-   &lt;apikey&gt;9999&lt;/apikey&gt;        apikey for the created owner 
-   &lt;id&gt;test5&lt;/id&gt;               optional id, if empty name is taken as id
-   &lt;name&gt;test5&lt;/name&gt;           name of the owner
+   &lt;apikey&gt;...&lt;/apikey&gt;        apikey for the created owner 
+   &lt;id&gt;...&lt;/id&gt;                optional id, if empty name is taken as id
+   &lt;name&gt;...&lt;/name&gt;            name of the owner
 &lt;/owner&gt;
 ~~~~~~
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Fri, 21 Sep 2012 19:26:53 -0000</pubDate><guid>https://sourceforge.net619912ab1e0df1246440cf37c4e95ae498726e6f</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;--- v6
+++ v7
@@ -6,13 +6,28 @@
 
 #### Create new Owner ####
 
-Path: cs-ws/resources/admin/owners
-
-Method: POST
+Path: cs-ws/resources/admin/owners        Method: POST
 
 Parameters
 
 * apikey
+
+POST Data
+
+~~~~~~
+&lt;owner&gt;
+   &lt;apikey&gt;9999&lt;/apikey&gt;        apikey for the created owner 
+   &lt;id&gt;test5&lt;/id&gt;               optional id, if empty name is taken as id
+   &lt;name&gt;test5&lt;/name&gt;           name of the owner
+&lt;/owner&gt;
+~~~~~~
+
+Returns the newly created owner
+
+Errors:
+
+* 409 CONFLICT if owner already exists
+* 401 UNAUTHORIZED if key is invalid or not admin key
 
 Example
 
@@ -25,7 +40,6 @@
 Content-Length: 82
 &lt;owner&gt;
    &lt;apikey&gt;9999&lt;/apikey&gt;
-   &lt;id&gt;test5&lt;/id&gt;
    &lt;name&gt;test5&lt;/name&gt;
 &lt;/owner&gt;
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Fri, 21 Sep 2012 19:22:06 -0000</pubDate><guid>https://sourceforge.net33985cddbeb290090f9c7e77ad04f9908acfa08c</guid></item><item><title>WikiPage Owners modified by Jim</title><link>https://sourceforge.net/p/m2mlabs/wiki/Owners/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jim</dc:creator><pubDate>Thu, 20 Sep 2012 21:08:00 -0000</pubDate><guid>https://sourceforge.netd2c9e222f08b4acf17ce566f3566e57c0370c57f</guid></item></channel></rss>