tagcrumbs 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +79 -56
  3. data/README.rdoc +9 -1
  4. data/Rakefile +2 -1
  5. data/TODO.txt +0 -7
  6. data/config/website.yml +2 -0
  7. data/examples/filter_new.rb +7 -3
  8. data/examples/placemark_new_suggestions.rb +4 -2
  9. data/examples/request_authorization.rb +1 -1
  10. data/examples/tagcrumbs_find.rb +3 -3
  11. data/examples/user.rb +1 -1
  12. data/lib/console.rb +14 -0
  13. data/lib/tagcrumbs.rb +41 -14
  14. data/lib/tagcrumbs/cli.rb +1 -1
  15. data/lib/tagcrumbs/config_store.rb +3 -3
  16. data/lib/tagcrumbs/core_extensions.rb +19 -0
  17. data/lib/tagcrumbs/parsers/json_parser.rb +7 -3
  18. data/lib/tagcrumbs/proxy.rb +6 -3
  19. data/lib/tagcrumbs/requestor.rb +22 -5
  20. data/lib/tagcrumbs/resources/{array.rb → collection.rb} +8 -7
  21. data/lib/tagcrumbs/resources/models/access_token.rb +8 -0
  22. data/lib/tagcrumbs/resources/models/accessors.rb +17 -3
  23. data/lib/tagcrumbs/resources/models/activity.rb +1 -0
  24. data/lib/tagcrumbs/resources/models/application.rb +9 -0
  25. data/lib/tagcrumbs/resources/models/comment.rb +2 -0
  26. data/lib/tagcrumbs/resources/models/email_recommendation.rb +17 -0
  27. data/lib/tagcrumbs/resources/models/favorite.rb +2 -1
  28. data/lib/tagcrumbs/resources/models/filter.rb +2 -2
  29. data/lib/tagcrumbs/resources/models/flag.rb +3 -0
  30. data/lib/tagcrumbs/resources/models/model.rb +8 -7
  31. data/lib/tagcrumbs/resources/models/paragraph.rb +8 -0
  32. data/lib/tagcrumbs/resources/models/picture.rb +4 -4
  33. data/lib/tagcrumbs/resources/models/place.rb +3 -3
  34. data/lib/tagcrumbs/resources/models/placemark.rb +3 -2
  35. data/lib/tagcrumbs/resources/models/profile.rb +0 -1
  36. data/lib/tagcrumbs/resources/models/profile_link.rb +1 -1
  37. data/lib/tagcrumbs/resources/models/root.rb +3 -3
  38. data/lib/tagcrumbs/resources/models/settings.rb +2 -1
  39. data/lib/tagcrumbs/resources/models/tagcrumb.rb +4 -12
  40. data/lib/tagcrumbs/resources/models/user.rb +27 -6
  41. data/lib/tagcrumbs/resources/models/user_recommendation.rb +1 -1
  42. data/lib/tagcrumbs/resources/resource.rb +4 -4
  43. data/script/console +8 -3
  44. data/spec/fixtures_external/README.rdoc +15 -0
  45. data/spec/fixtures_external/json/access_token.json +11 -0
  46. data/spec/{fixtures → fixtures_external/json}/activity.json +32 -25
  47. data/spec/{fixtures → fixtures_external/json}/address.json +22 -25
  48. data/spec/fixtures_external/json/application.json +13 -0
  49. data/spec/{fixtures → fixtures_external/json}/city.json +2 -11
  50. data/spec/{fixtures → fixtures_external/json}/comment.json +51 -44
  51. data/spec/{fixtures → fixtures_external/json}/country.json +1 -4
  52. data/spec/fixtures_external/json/email_recommendation.json +286 -0
  53. data/spec/{fixtures → fixtures_external/json}/fanship.json +30 -30
  54. data/spec/{fixtures → fixtures_external/json}/favorite.json +45 -47
  55. data/spec/{fixtures → fixtures_external/json}/filter.json +30 -42
  56. data/spec/{fixtures → fixtures_external/json}/friendship.json +30 -30
  57. data/spec/fixtures_external/json/geoname.json +18 -0
  58. data/spec/{fixtures → fixtures_external/json}/link.json +41 -44
  59. data/spec/{fixtures → fixtures_external/json}/location.json +21 -31
  60. data/spec/fixtures_external/json/paragraph.json +12 -0
  61. data/spec/fixtures_external/json/picture.json +129 -0
  62. data/spec/fixtures_external/json/picture_upload.json +9 -0
  63. data/spec/{fixtures → fixtures_external/json}/placemark.json +136 -142
  64. data/spec/fixtures_external/json/placemarks.json +851 -0
  65. data/spec/{fixtures → fixtures_external/json}/profile.json +65 -94
  66. data/spec/fixtures_external/json/profile_link.json +123 -0
  67. data/spec/{fixtures → fixtures_external/json}/root.json +17 -21
  68. data/spec/{fixtures → fixtures_external/json}/settings.json +26 -19
  69. data/spec/{fixtures → fixtures_external/json}/state.json +2 -8
  70. data/spec/{fixtures → fixtures_external/json}/subscription.json +41 -44
  71. data/spec/fixtures_external/json/suggestions.json +302 -0
  72. data/spec/{fixtures → fixtures_external/json}/tag.json +0 -0
  73. data/spec/{fixtures → fixtures_external/json}/user.json +44 -20
  74. data/spec/{fixtures → fixtures_external/json}/user_recommendation.json +52 -55
  75. data/spec/fixtures_external/json/validation_errors.json +6 -0
  76. data/spec/fixtures_external/kml/network_link.kml +24 -0
  77. data/spec/fixtures_external/kml/tagcrumbs.kml +64 -0
  78. data/spec/fixtures_external/rdf/placemark.rdf +56 -0
  79. data/spec/fixtures_external/rss/tagcrumbs.rss +24 -0
  80. data/spec/fixtures_external/xml/access_token.xml +5 -0
  81. data/spec/fixtures_external/xml/activity.xml +62 -0
  82. data/spec/fixtures_external/xml/address.xml +51 -0
  83. data/spec/fixtures_external/xml/application.xml +5 -0
  84. data/spec/fixtures_external/xml/city.xml +27 -0
  85. data/spec/fixtures_external/xml/comment.xml +81 -0
  86. data/spec/fixtures_external/xml/country.xml +10 -0
  87. data/spec/fixtures_external/xml/email_recommendation.xml +78 -0
  88. data/spec/fixtures_external/xml/fanship.xml +49 -0
  89. data/spec/fixtures_external/xml/favorite.xml +97 -0
  90. data/spec/fixtures_external/xml/filter.xml +68 -0
  91. data/spec/fixtures_external/xml/friendship.xml +49 -0
  92. data/spec/fixtures_external/xml/geoname.xml +6 -0
  93. data/spec/fixtures_external/xml/link.xml +78 -0
  94. data/spec/fixtures_external/xml/location.xml +58 -0
  95. data/spec/fixtures_external/xml/paragraph.xml +8 -0
  96. data/spec/fixtures_external/xml/picture.xml +36 -0
  97. data/spec/fixtures_external/xml/picture_upload.xml +153 -0
  98. data/spec/fixtures_external/xml/placemark.xml +54 -0
  99. data/spec/fixtures_external/xml/placemarks.xml +336 -0
  100. data/spec/fixtures_external/xml/profile.xml +77 -0
  101. data/spec/fixtures_external/xml/profile_link.xml +34 -0
  102. data/spec/fixtures_external/xml/root.xml +12 -0
  103. data/spec/fixtures_external/xml/settings.xml +42 -0
  104. data/spec/fixtures_external/xml/state.xml +19 -0
  105. data/spec/fixtures_external/xml/subscription.xml +76 -0
  106. data/spec/fixtures_external/xml/suggestions.xml +106 -0
  107. data/spec/{fixtures → fixtures_external/xml}/tag.xml +2 -2
  108. data/spec/fixtures_external/xml/user.xml +37 -0
  109. data/spec/fixtures_external/xml/user_recommendation.xml +94 -0
  110. data/spec/fixtures_external/xml/validation_errors.xml +5 -0
  111. data/spec/spec_helper.rb +12 -2
  112. data/spec/tagcrumbs/requestor_spec.rb +2 -2
  113. data/spec/tagcrumbs/resources/array_spec.rb +38 -38
  114. data/spec/tagcrumbs/resources/models/access_token_spec.rb +16 -0
  115. data/spec/tagcrumbs/resources/models/accessors_spec.rb +2 -2
  116. data/spec/tagcrumbs/resources/models/activity_spec.rb +5 -1
  117. data/spec/tagcrumbs/resources/models/address_spec.rb +1 -1
  118. data/spec/tagcrumbs/resources/models/application_spec.rb +17 -0
  119. data/spec/tagcrumbs/resources/models/city_spec.rb +2 -5
  120. data/spec/tagcrumbs/resources/models/comment_spec.rb +8 -2
  121. data/spec/tagcrumbs/resources/models/country_spec.rb +2 -4
  122. data/spec/tagcrumbs/resources/models/email_recommendation_spec.rb +31 -0
  123. data/spec/tagcrumbs/resources/models/fanship_spec.rb +1 -1
  124. data/spec/tagcrumbs/resources/models/favorite_spec.rb +5 -1
  125. data/spec/tagcrumbs/resources/models/filter_spec.rb +3 -4
  126. data/spec/tagcrumbs/resources/models/friendship_spec.rb +1 -1
  127. data/spec/tagcrumbs/resources/models/geoname_spec.rb +1 -1
  128. data/spec/tagcrumbs/resources/models/link_spec.rb +1 -1
  129. data/spec/tagcrumbs/resources/models/location_spec.rb +1 -1
  130. data/spec/tagcrumbs/resources/models/model_spec.rb +20 -3
  131. data/spec/tagcrumbs/resources/models/paragraph_spec.rb +21 -0
  132. data/spec/tagcrumbs/resources/models/picture_spec.rb +13 -21
  133. data/spec/tagcrumbs/resources/models/place_spec.rb +3 -3
  134. data/spec/tagcrumbs/resources/models/placemark_spec.rb +11 -9
  135. data/spec/tagcrumbs/resources/models/profile_link_spec.rb +6 -12
  136. data/spec/tagcrumbs/resources/models/profile_spec.rb +5 -12
  137. data/spec/tagcrumbs/resources/models/root_spec.rb +15 -19
  138. data/spec/tagcrumbs/resources/models/settings_spec.rb +3 -1
  139. data/spec/tagcrumbs/resources/models/state_spec.rb +2 -5
  140. data/spec/tagcrumbs/resources/models/subscription_spec.rb +1 -1
  141. data/spec/tagcrumbs/resources/models/suggestions_spec.rb +7 -7
  142. data/spec/tagcrumbs/resources/models/tag_spec.rb +1 -1
  143. data/spec/tagcrumbs/resources/models/tagcrumb_spec.rb +3 -11
  144. data/spec/tagcrumbs/resources/models/user_recommendation_spec.rb +1 -1
  145. data/spec/tagcrumbs/resources/models/user_spec.rb +35 -27
  146. data/spec/tagcrumbs/resources/resource_spec.rb +3 -3
  147. data/spec/tagcrumbs_spec.rb +7 -7
  148. data/tagcrumbs.gemspec +2 -2
  149. metadata +82 -58
  150. data/examples/tagcrumbs_search.rb +0 -7
  151. data/lib/tagcrumbs/validations.rb +0 -301
  152. data/spec/fixtures/activity.xml +0 -66
  153. data/spec/fixtures/address.xml +0 -58
  154. data/spec/fixtures/city.xml +0 -34
  155. data/spec/fixtures/comment.xml +0 -87
  156. data/spec/fixtures/country.xml +0 -13
  157. data/spec/fixtures/fanship.xml +0 -54
  158. data/spec/fixtures/favorite.xml +0 -109
  159. data/spec/fixtures/filter.xml +0 -80
  160. data/spec/fixtures/friendship.xml +0 -54
  161. data/spec/fixtures/geoname.json +0 -18
  162. data/spec/fixtures/geoname.xml +0 -6
  163. data/spec/fixtures/link.xml +0 -88
  164. data/spec/fixtures/location.xml +0 -71
  165. data/spec/fixtures/picture.json +0 -154
  166. data/spec/fixtures/picture.xml +0 -49
  167. data/spec/fixtures/placemark.xml +0 -58
  168. data/spec/fixtures/placemarks.json +0 -887
  169. data/spec/fixtures/placemarks.xml +0 -348
  170. data/spec/fixtures/profile.xml +0 -100
  171. data/spec/fixtures/profile_link.json +0 -156
  172. data/spec/fixtures/profile_link.xml +0 -49
  173. data/spec/fixtures/root.xml +0 -14
  174. data/spec/fixtures/settings.xml +0 -45
  175. data/spec/fixtures/state.xml +0 -23
  176. data/spec/fixtures/subscription.xml +0 -86
  177. data/spec/fixtures/suggestions.json +0 -1877
  178. data/spec/fixtures/suggestions.xml +0 -724
  179. data/spec/fixtures/user.xml +0 -31
  180. data/spec/fixtures/user_recommendation.xml +0 -106
  181. data/spec/fixtures/validation_errors.json +0 -5
  182. data/spec/fixtures/validation_errors.xml +0 -5
  183. data/spec/tagcrumbs/validations_spec.rb +0 -27
@@ -0,0 +1,6 @@
1
+ {
2
+ "errors": {
3
+ "@type": "Collection",
4
+ "error": ["Latitude is not on this planet", "Name is already taken"]
5
+ }
6
+ }
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <kml xmlns:atom="http://www.w3.org/2005/Atom" xmlns="http://www.opengis.net/kml/2.2">
3
+ <Document>
4
+ <name>Tagcrumbs - All Tagcrumbs</name>
5
+ <description>All Tagcrumbs</description>
6
+ <visibility>0</visibility>
7
+ <atom:author>
8
+ <atom:name>Tagcrumbs</atom:name>
9
+ </atom:author>
10
+ <atom:link href="http://www.tagcrumbs.com/tagcrumbs.kml"/>
11
+ <NetworkLink>
12
+ <refreshVisibility>0</refreshVisibility>
13
+ <name>Tagcrumbs</name>
14
+ <Link>
15
+ <href>http://www.tagcrumbs.com/tagcrumbs.kml</href>
16
+ <httpQuery>show=items</httpQuery>
17
+ <viewFormat>BBOX=[bboxWest],[bboxSouth],[bboxEast],[bboxNorth]&amp;range=[lookatRange]</viewFormat>
18
+ <viewRefreshMode>onStop</viewRefreshMode>
19
+ <viewRefreshTime>2</viewRefreshTime>
20
+ <viewBoundScale>1.1</viewBoundScale>
21
+ </Link>
22
+ </NetworkLink>
23
+ </Document>
24
+ </kml>
@@ -0,0 +1,64 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <kml xmlns:atom="http://www.w3.org/2005/Atom" xmlns="http://www.opengis.net/kml/2.2">
3
+ <NetworkLinkControl>
4
+ <minRefreshPeriod>3</minRefreshPeriod>
5
+ </NetworkLinkControl>
6
+ <Folder>
7
+ <Placemark id="tagcrumb-1003966">
8
+ <styleUrl>http://assets2.tagcrumbs.com/kml/tagcrumbs_style.kml#tcPlacemark</styleUrl>
9
+ <name><![CDATA[Sapient Noida]]></name>
10
+ <description><![CDATA[Sapient Noida]]></description>
11
+ <Snippet maxLines="2">
12
+ </Snippet>
13
+ <address><![CDATA[<br/> <br/>Delhi<br/>India<br/>]]></address>
14
+ <AddressDetails xmlns="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0">
15
+ <Country>
16
+ <CountryName>India</CountryName>
17
+ <AdministrativeArea>
18
+ <AdministrativeAreaName>Delhi</AdministrativeAreaName>
19
+ <Locality>
20
+ <LocalityName/>
21
+ <PostalCode>
22
+ <PostalCodeNumber/>
23
+ </PostalCode>
24
+ <Thoroughfare>
25
+ <ThoroughfareName/>
26
+ </Thoroughfare>
27
+ </Locality>
28
+ </AdministrativeArea>
29
+ </Country>
30
+ </AddressDetails>
31
+ <TimeStamp>
32
+ <when>2009-06-18T10:48:00Z</when>
33
+ </TimeStamp>
34
+ <LookAt>
35
+ <heading>0</heading>
36
+ <tilt>45</tilt>
37
+ <range>450</range>
38
+ <latitude>28.6234661339568</latitude>
39
+ <longitude>77.366623878479</longitude>
40
+ </LookAt>
41
+ <Point>
42
+ <coordinates>77.366623878479,28.6234661339568</coordinates>
43
+ </Point>
44
+ <ExtendedData>
45
+ <SchemaData schemaUrl="http://assets2.tagcrumbs.com/kml/tagcrumbs_type.kml#TagcrumbsTypeId">
46
+ <SimpleData name="type">Placemark</SimpleData>
47
+ <SimpleData name="placemark_tags"></SimpleData>
48
+ <SimpleData name="placemark_user"><![CDATA[sapient]]></SimpleData>
49
+ <SimpleData name="placemark_private">false</SimpleData>
50
+ <SimpleData name="placemark_url">http://www.tagcrumbs.com/sapient/placemarks/sapient-noida</SimpleData>
51
+ <SimpleData name="placemark_city_url">http://www.tagcrumbs.com/places/india/states/state-of-uttar-pradesh/cities/gh%C4%81zi%C4%81b%C4%81d.xml</SimpleData>
52
+ <SimpleData name="placemark_city_geonameid">1271308</SimpleData>
53
+ <SimpleData name="placemark_city"><![CDATA[Ghāziābād]]></SimpleData>
54
+ <SimpleData name="placemark_country"><![CDATA[India]]></SimpleData>
55
+ <SimpleData name="placemark_links"/>
56
+ <SimpleData name="placemark_created_at">2009-06-18T10:48:00Z</SimpleData>
57
+ <SimpleData name="placemark_updated_at">2009-06-18T10:48:00Z</SimpleData>
58
+ <SimpleData name="placemark_favorites_count">0</SimpleData>
59
+ </SchemaData>
60
+ </ExtendedData>
61
+ </Placemark>
62
+ <!-- more Placemarks -->
63
+ </Folder>
64
+ </kml>
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rdf:RDF xmlns:geonames="http://www.geonames.org/ontology#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/terms/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:sioc="http://rdfs.org/sioc/ns#">
3
+ <rdf:Description rdf:about="http://www.tagcrumbs.com/sascha/placemarks/ferry-building.rdf">
4
+ <rdfs:comment xml:lang="en">RDF Representation of http://www.tagcrumbs.com/sascha/placemarks/ferry-building</rdfs:comment>
5
+ <rdfs:label xml:lang="en">Ferry Building in San Francisco, United States by sascha</rdfs:label>
6
+ </rdf:Description>
7
+ <geo:SpatialThing rdf:about="http://www.tagcrumbs.com/sascha/placemarks/ferry-building#placemark">
8
+ <foaf:page rdf:resource="http://www.tagcrumbs.com/sascha/placemarks/ferry-building"/>
9
+
10
+ <foaf:based_near rdf:resource="http://sws.geonames.org/5391959/"/>
11
+ <geo:lat>37.7967100491959</geo:lat>
12
+ <geo:long>-122.394239902496</geo:long>
13
+ </geo:SpatialThing>
14
+ <sioc:Post rdf:about="http://www.tagcrumbs.com/sascha/placemarks/ferry-building">
15
+ <dc:publisher>http://www.tagcrumbs.com</dc:publisher>
16
+ <dc:title>Ferry Building</dc:title>
17
+
18
+ <dc:description>Famous San Francisco building. Many interesting boat tours start from here.</dc:description>
19
+ <dc:creator>
20
+ <foaf:Person rdf:about="http://www.tagcrumbs.com/sascha/profile#me">
21
+ <foaf:page>http://www.tagcrumbs.com/sascha/profile</foaf:page>
22
+ <foaf:name>Sascha Konietzke</foaf:name>
23
+ <foaf:nick>sascha</foaf:nick>
24
+ <foaf:homepage rdf:resource="http://www.tagcrumbs.com"/>
25
+
26
+ </foaf:Person>
27
+ </dc:creator>
28
+ <dc:created>2008-10-29T21:47:31+01:00</dc:created>
29
+ <dc:date>2008-10-29T21:47:31+01:00</dc:date>
30
+ <dc:modified>2009-04-03T10:48:05+02:00</dc:modified>
31
+ <dc:rights>http://creativecommons.org/licenses/by-nc-sa/3.0/</dc:rights>
32
+ <sioc:topic rdf:resource="http://www.tagcrumbs.com/sascha/placemarks/ferry-building#placemark"/>
33
+
34
+ <sioc:topic rdf:resource="http://www.tagcrumbs.com/sascha/tags/travel#tag" rdfs:label="travel"/>
35
+ <sioc:topic rdf:resource="http://www.tagcrumbs.com/sascha/tags/boat#tag" rdfs:label="boat"/>
36
+ <sioc:topic rdf:resource="http://www.tagcrumbs.com/sascha/tags/ferry#tag" rdfs:label="ferry"/>
37
+ <sioc:topic>
38
+ <geonames:Feature rdf:about="http://sws.geonames.org/5391959/">
39
+ <rdfs:seeAlso rdf:resource="http://sws.geonames.org/5391959/about.rdf"/>
40
+ </geonames:Feature>
41
+ </sioc:topic>
42
+ </sioc:Post>
43
+
44
+ <geonames:Feature rdf:about="http://sws.geonames.org/5391959/">
45
+ <rdfs:seeAlso rdf:resource="http://sws.geonames.org/5391959/about.rdf"/>
46
+ <geonames:name xml:lang="en">San Francisco</geonames:name>
47
+ <geo:lat>37.7749295</geo:lat>
48
+ <geo:long>-122.4194155</geo:long>
49
+ <geonames:parentFeature rdf:resource="http://sws.geonames.org/5332921/"/>
50
+ <geonames:featureClass rdf:resource="http://www.geonames.org/ontology#P"/>
51
+
52
+ <geonames:featureCode rdf:resource="http://www.geonames.org/ontology#P.PPL"/>
53
+ <geonames:inCountry rdf:resource="http://www.geonames.org/countries/#US"/>
54
+ <geonames:population>732072</geonames:population>
55
+ </geonames:Feature>
56
+ </rdf:RDF>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:georss="http://www.georss.org/georss" version="2.0">
3
+ <channel>
4
+ <title>Tagcrumbs - sascha Tagcrumbs</title>
5
+ <description>sascha Tagcrumbs</description>
6
+ <link>http://www.tagcrumbs.com/sascha/tagcrumbs</link>
7
+ <image>
8
+ <title>Tagcrumbs - sascha Tagcrumbs</title>
9
+ <url>http://assets1.tagcrumbs.com/images/favicon64.png</url>
10
+ <link>http://www.tagcrumbs.com/sascha/tagcrumbs</link>
11
+ </image>
12
+ <atom:link type="application/rss+xml" rel="self" href="http://www.tagcrumbs.com/sascha/tagcrumbs.rss"/>
13
+ <item>
14
+ <title><![CDATA[Isuela, Camogli, Portofino, Ligurien, Italien]]></title>
15
+ <link>http://www.tagcrumbs.com/magazin_tauchen/placemarks/isuela-camogli-portofino-ligurien-italien</link>
16
+ <guid>http://www.tagcrumbs.com/magazin_tauchen/placemarks/isuela-camogli-portofino-ligurien-italien</guid>
17
+ <description>
18
+ ...
19
+ </description>
20
+ <pubDate>Wed, 17 Jun 2009 20:16:47 +0200</pubDate>
21
+ <georss:point>44.3228349069352 9.14491653442383</georss:point>
22
+ </item>
23
+ </channel>
24
+ </rss>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <token type="AccessToken">
3
+ <token>TOKEN</token>
4
+ <secret>SECRET</secret>
5
+ </token>
@@ -0,0 +1,62 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <activity xmlns:xlink="http://www.w3.org/1999/xlink" type="Activity" xlink:href="http://www.tagcrumbs.com/sascha/activities/460.xml">
3
+ <event_type>create</event_type>
4
+ <created_at type="timestamp">2009-06-09T15:12:18+02:00</created_at>
5
+ <updated_at type="timestamp">2009-06-09T15:12:18+02:00</updated_at>
6
+ <application xmlns:xlink="http://www.w3.org/1999/xlink" type="Application" xlink:href="http://www.tagcrumbs.com/applications/3.xml">
7
+ <name>Tagcrumbs Gem</name>
8
+ <url>http://www.tagcrumbs.com</url>
9
+ </application>
10
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
11
+ <username>sascha</username>
12
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
13
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
14
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
15
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
16
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
17
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
18
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
19
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
20
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
21
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
22
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
23
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
24
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
25
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
26
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
27
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
28
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
29
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
30
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
31
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
32
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
33
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
34
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
35
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
36
+ </user>
37
+ <subject type="Comment" xlink:href="http://www.tagcrumbs.com/sascha/comments/84.xml">
38
+ <text>COMMENT TEXT</text>
39
+ <created_at type="timestamp">2009-06-09T15:12:18+02:00</created_at>
40
+ <updated_at type="timestamp">2009-06-09T15:12:18+02:00</updated_at>
41
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
42
+ <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml"/>
43
+ </subject>
44
+ <secondary_subject type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
45
+ <name>PLACEMARK NAME</name>
46
+ <notes>PLAECMARK NOTES</notes>
47
+ <tag_list>tag1, tag2</tag_list>
48
+ <latitude type="float">9.0</latitude>
49
+ <longitude type="float">10.0</longitude>
50
+ <favorites_count type="integer">0</favorites_count>
51
+ <short_url>http://www.tagcrumbs.com/p/ZWE1ZTI</short_url>
52
+ <created_at type="timestamp">2009-06-08T16:00:15+02:00</created_at>
53
+ <updated_at type="timestamp">2009-06-08T16:00:15+02:00</updated_at>
54
+ <private type="boolean">false</private>
55
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/nigeria/states/state-unknown/cities/hamari.xml"/>
56
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
57
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
58
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
59
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
60
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
61
+ </secondary_subject>
62
+ </activity>
@@ -0,0 +1,51 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <address xmlns:xlink="http://www.w3.org/1999/xlink" type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml">
3
+ <street_address>STREET ADDRESS</street_address>
4
+ <postal_code>POSTAL CODE</postal_code>
5
+ <city>CITY</city>
6
+ <state>STATE</state>
7
+ <country>COUNTRY</country>
8
+ <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
9
+ <name>PLACEMARK NAME</name>
10
+ <notes>PLACEMARK NOTES</notes>
11
+ <tag_list>tag1, tag2</tag_list>
12
+ <latitude type="float">9.0</latitude>
13
+ <longitude type="float">10.0</longitude>
14
+ <favorites_count type="integer">0</favorites_count>
15
+ <short_url>http://www.tagcrumbs.com/p/ZmE5ZmR</short_url>
16
+ <created_at type="timestamp">2009-06-07T13:52:10+02:00</created_at>
17
+ <updated_at type="timestamp">2009-06-07T16:43:23+02:00</updated_at>
18
+ <private type="boolean">false</private>
19
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
20
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
21
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
22
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
23
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
24
+ <username>sascha</username>
25
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
26
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
27
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
28
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
29
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
30
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
31
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
32
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
33
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
34
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
35
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
36
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
37
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
38
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
39
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
40
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
41
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
42
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
43
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
44
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
45
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
46
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
47
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
48
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
49
+ </user>
50
+ </tagcrumb>
51
+ </address>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <application xmlns:xlink="http://www.w3.org/1999/xlink" type="Application" xlink:href="http://www.tagcrumbs.com/applications/3.xml">
3
+ <name>Tagcrumbs Gem</name>
4
+ <url>http://www.tagcrumbs.com</url>
5
+ </application>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <city xmlns:xlink="http://www.w3.org/1999/xlink" type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/stuttgart.xml">
3
+ <name>Stuttgart</name>
4
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2825297">
5
+ <geonameid type="integer">2825297</geonameid>
6
+ <latitude type="float">48.7666667</latitude>
7
+ <longitude type="float">9.1833333</longitude>
8
+ </geoname>
9
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
10
+ <name>Land Baden-Württemberg</name>
11
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
12
+ <geonameid type="integer">2953481</geonameid>
13
+ <latitude type="float">48.5</latitude>
14
+ <longitude type="float">9.0</longitude>
15
+ </geoname>
16
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
17
+ <name>Deutschland</name>
18
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
19
+ <geonameid type="integer">2921044</geonameid>
20
+ <latitude type="float">51.5</latitude>
21
+ <longitude type="float">10.5</longitude>
22
+ </geoname>
23
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
24
+ </country>
25
+ <cities type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml"/>
26
+ </state>
27
+ </city>
@@ -0,0 +1,81 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <comment xmlns:xlink="http://www.w3.org/1999/xlink" type="Comment" xlink:href="http://www.tagcrumbs.com/sascha/comments/84.xml">
3
+ <text>COMMENT TEXT</text>
4
+ <created_at type="timestamp">2009-06-09T15:12:18+02:00</created_at>
5
+ <updated_at type="timestamp">2009-06-09T15:12:18+02:00</updated_at>
6
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
7
+ <username>sascha</username>
8
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
9
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
10
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
11
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
12
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
13
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
14
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
15
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
16
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
17
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
18
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
19
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
20
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
21
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
22
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
23
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
24
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
25
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
26
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
27
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
28
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
29
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
30
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
31
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
32
+ </user>
33
+ <application xmlns:xlink="http://www.w3.org/1999/xlink" type="Application" xlink:href="http://www.tagcrumbs.com/applications/3.xml">
34
+ <name>Tagcrumbs Gem</name>
35
+ <url>http://www.tagcrumbs.com</url>
36
+ </application>
37
+ <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
38
+ <name>testing</name>
39
+ <notes>abasdf</notes>
40
+ <tag_list>tag1, tag2</tag_list>
41
+ <latitude type="float">9.0</latitude>
42
+ <longitude type="float">10.0</longitude>
43
+ <favorites_count type="integer">0</favorites_count>
44
+ <short_url>http://www.tagcrumbs.com/p/ZWE1ZTI</short_url>
45
+ <created_at type="timestamp">2009-06-08T16:00:15+02:00</created_at>
46
+ <updated_at type="timestamp">2009-06-08T16:00:15+02:00</updated_at>
47
+ <private type="boolean">false</private>
48
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/nigeria/states/state-unknown/cities/hamari.xml"/>
49
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
50
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
51
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
52
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
53
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
54
+ <username>sascha</username>
55
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
56
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
57
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
58
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
59
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
60
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
61
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
62
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
63
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
64
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
65
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
66
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
67
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
68
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
69
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
70
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
71
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
72
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
73
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
74
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
75
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
76
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
77
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
78
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
79
+ </user>
80
+ </tagcrumb>
81
+ </comment>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <country xmlns:xlink="http://www.w3.org/1999/xlink" type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
3
+ <name>Deutschland</name>
4
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
5
+ <geonameid type="integer">2921044</geonameid>
6
+ <latitude type="float">51.5</latitude>
7
+ <longitude type="float">10.5</longitude>
8
+ </geoname>
9
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
10
+ </country>
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <recommendation xmlns:xlink="http://www.w3.org/1999/xlink" type="EmailRecommendation" xlink:href="http://www.tagcrumbs.com/sascha/recommendations/70.xml">
3
+ <message>MESSAGE</message>
4
+ <recipient_email>email@address.com</recipient_email>
5
+ <created_at type="timestamp">2009-02-01T14:41:12+01:00</created_at>
6
+ <updated_at type="timestamp">2009-03-01T18:02:51+01:00</updated_at>
7
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
8
+ <username>sascha</username>
9
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
10
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
11
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
12
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
13
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
14
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
15
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
16
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
17
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
18
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
19
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
20
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
21
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
22
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
23
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
24
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
25
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
26
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
27
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
28
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
29
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
30
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
31
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
32
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
33
+ </user>
34
+ <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
35
+ <name>PLACEMARK NAME</name>
36
+ <notes>PLACEMARK NOTES</notes>
37
+ <tag_list>tag1, tag2</tag_list>
38
+ <latitude type="float">48.7189419455889</latitude>
39
+ <longitude type="float">8.96329879760742</longitude>
40
+ <favorites_count type="integer">0</favorites_count>
41
+ <short_url>http://www.tagcrumbs.com/p/ZGM2ZTk</short_url>
42
+ <created_at type="timestamp">2009-02-01T14:41:11+01:00</created_at>
43
+ <updated_at type="timestamp">2009-02-20T07:53:06+01:00</updated_at>
44
+ <private type="boolean">false</private>
45
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/b%C3%B6blingen.xml"/>
46
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
47
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
48
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
49
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
50
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
51
+ <username>sascha</username>
52
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
53
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
54
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
55
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
56
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
57
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
58
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
59
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
60
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
61
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
62
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
63
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
64
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
65
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
66
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
67
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
68
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
69
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
70
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
71
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
72
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
73
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
74
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
75
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
76
+ </user>
77
+ </tagcrumb>
78
+ </recommendation>