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,77 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <profile xmlns:xlink="http://www.w3.org/1999/xlink" type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml">
3
+ <fullname>FULLNAME</fullname>
4
+ <about>ABOUT</about>
5
+ <description>DESCRIPTION</description>
6
+ <created_at type="timestamp">2008-06-12T09:34:55+02:00</created_at>
7
+ <updated_at type="timestamp">2009-06-05T14:16:55+02:00</updated_at>
8
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/stuttgart.xml">
9
+ <name>Stuttgart</name>
10
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2825297">
11
+ <geonameid type="integer">2825297</geonameid>
12
+ <latitude type="float">48.7666667</latitude>
13
+ <longitude type="float">9.1833333</longitude>
14
+ </geoname>
15
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
16
+ <name>Land Baden-Württemberg</name>
17
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
18
+ <geonameid type="integer">2953481</geonameid>
19
+ <latitude type="float">48.5</latitude>
20
+ <longitude type="float">9.0</longitude>
21
+ </geoname>
22
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
23
+ <name>Deutschland</name>
24
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
25
+ <geonameid type="integer">2921044</geonameid>
26
+ <latitude type="float">51.5</latitude>
27
+ <longitude type="float">10.5</longitude>
28
+ </geoname>
29
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
30
+ </country>
31
+ <cities type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml"/>
32
+ </state>
33
+ </city>
34
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml">
35
+ <profile_link type="ProfileLink" xlink:href="http://www.tagcrumbs.com/sascha/profile/links/1000042.xml">
36
+ <link_type>Homepage</link_type>
37
+ <url>http://www.test1.de</url>
38
+ <created_at type="timestamp">2009-04-14T16:09:04+02:00</created_at>
39
+ <updated_at type="timestamp">2009-05-29T12:40:16+02:00</updated_at>
40
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
41
+ </profile_link>
42
+ <profile_link type="ProfileLink" xlink:href="http://www.tagcrumbs.com/sascha/profile/links/1000043.xml">
43
+ <link_type>Homepage</link_type>
44
+ <url>http://www.test2.de</url>
45
+ <created_at type="timestamp">2009-04-14T16:13:55+02:00</created_at>
46
+ <updated_at type="timestamp">2009-05-29T12:40:16+02:00</updated_at>
47
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
48
+ </profile_link>
49
+ </profile_links>
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
+ </profile>
@@ -0,0 +1,34 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <profile_link xmlns:xlink="http://www.w3.org/1999/xlink" type="ProfileLink" xlink:href="http://www.tagcrumbs.com/sascha/profile/links/1000042.xml">
3
+ <link_type>Homepage</link_type>
4
+ <url>http://www.test1.de</url>
5
+ <created_at type="timestamp">2009-04-14T16:09:04+02:00</created_at>
6
+ <updated_at type="timestamp">2009-05-29T12:40:16+02: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
+ </profile_link>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <root xmlns:xlink="http://www.w3.org/1999/xlink" type="Root" xlink:href="http://www.tagcrumbs.com/?format=xml">
3
+ <you type="User" xlink:href="http://www.tagcrumbs.com/you.xml"/>
4
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/tagcrumbs.xml"/>
5
+ <countries type="Collection" xlink:href="http://www.tagcrumbs.com/places.xml"/>
6
+ <popular_countries type="Collection" xlink:href="http://www.tagcrumbs.com/popular/places.xml"/>
7
+ <place_search type="Collection" xlink:href="http://www.tagcrumbs.com/places/search.xml"/>
8
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/tags.xml"/>
9
+ <users type="Collection" xlink:href="http://www.tagcrumbs.com/users.xml"/>
10
+ <terms_and_conditions type="Collection" xlink:href="http://www.tagcrumbs.com/terms.xml"/>
11
+ <privacy_policy type="Collection" xlink:href="http://www.tagcrumbs.com/privacy.xml"/>
12
+ </root>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <settings xmlns:xlink="http://www.w3.org/1999/xlink" type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml">
3
+ <locale>de-DE</locale>
4
+ <unit_system>imperial</unit_system>
5
+ <timezone>Berlin</timezone>
6
+ <notification_recommendation type="boolean">true</notification_recommendation>
7
+ <notification_fan type="boolean">true</notification_fan>
8
+ <notification_subscription type="boolean">true</notification_subscription>
9
+ <newsletter type="boolean">false</newsletter>
10
+ <facebook_new_placemark_feed type="boolean">true</facebook_new_placemark_feed>
11
+ <facebook_new_favorite_feed type="boolean">true</facebook_new_favorite_feed>
12
+ <facebook_new_comment_feed type="boolean">true</facebook_new_comment_feed>
13
+ <updated_at type="timestamp">2009-06-10T15:00:47+02:00</updated_at>
14
+ <created_at type="timestamp">2008-06-12T09:34:55+02:00</created_at>
15
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
16
+ <username>sascha</username>
17
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
18
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
19
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
20
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
21
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
22
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
23
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
24
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
25
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
26
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
27
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
28
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
29
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
30
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
31
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
32
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
33
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
34
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
35
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
36
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
37
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
38
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
39
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
40
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
41
+ </user>
42
+ </settings>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <state xmlns:xlink="http://www.w3.org/1999/xlink" type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
3
+ <name>Land Baden-Württemberg</name>
4
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
5
+ <geonameid type="integer">2953481</geonameid>
6
+ <latitude type="float">48.5</latitude>
7
+ <longitude type="float">9.0</longitude>
8
+ </geoname>
9
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
10
+ <name>Deutschland</name>
11
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
12
+ <geonameid type="integer">2921044</geonameid>
13
+ <latitude type="float">51.5</latitude>
14
+ <longitude type="float">10.5</longitude>
15
+ </geoname>
16
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
17
+ </country>
18
+ <cities type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml"/>
19
+ </state>
@@ -0,0 +1,76 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <subscription xmlns:xlink="http://www.w3.org/1999/xlink" type="Subscription" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions/1.xml">
3
+ <created_at type="timestamp">2009-04-10T09:19:54+02:00</created_at>
4
+ <updated_at type="timestamp">2009-04-10T09:19:54+02:00</updated_at>
5
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
6
+ <username>sascha</username>
7
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
8
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
9
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
10
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
11
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
12
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
13
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
14
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
15
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
16
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
17
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
18
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
19
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
20
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
21
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
22
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
23
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
24
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
25
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
26
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
27
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
28
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
29
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
30
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
31
+ </user>
32
+ <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
33
+ <name>PLACEMARK NAME</name>
34
+ <notes>PLACEMARK NOTES</notes>
35
+ <tag_list>tag1, tag2</tag_list>
36
+ <latitude type="float">48.9936222840986</latitude>
37
+ <longitude type="float">8.89738082885742</longitude>
38
+ <favorites_count type="integer">0</favorites_count>
39
+ <short_url>http://www.tagcrumbs.com/p/M2Y5Y2V</short_url>
40
+ <created_at type="timestamp">2009-04-06T15:40:09+02:00</created_at>
41
+ <updated_at type="timestamp">2009-04-09T10:09:14+02:00</updated_at>
42
+ <private type="boolean">false</private>
43
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/illingen.xml"/>
44
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
45
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
46
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
47
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
48
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
49
+ <username>sascha</username>
50
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
51
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
52
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
53
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
54
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
55
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
56
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
57
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
58
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
59
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
60
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
61
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
62
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
63
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
64
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
65
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
66
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
67
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
68
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
69
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
70
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
71
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
72
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
73
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
74
+ </user>
75
+ </tagcrumb>
76
+ </subscription>
@@ -0,0 +1,106 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <suggestions xmlns:xlink="http://www.w3.org/1999/xlink" type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml">
3
+ <popular_tags type="Collection">
4
+ <popular_tag type="Tag" xlink:href="http://www.tagcrumbs.com/tags/tag1.xml">
5
+ <name>tag1</name>
6
+ </popular_tag>
7
+ <popular_tag type="Tag" xlink:href="http://www.tagcrumbs.com/tags/tag2.xml">
8
+ <name>tag2</name>
9
+ </popular_tag>
10
+ </popular_tags>
11
+ <recommended_tags type="Collection">
12
+ <recommended_tag type="Tag" xlink:href="http://www.tagcrumbs.com/sascha/tags/tag3.xml">
13
+ <name>tag3</name>
14
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
15
+ </recommended_tag>
16
+ <recommended_tag type="Tag" xlink:href="http://www.tagcrumbs.com/sascha/tags/tag4.xml">
17
+ <name>tag4</name>
18
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
19
+ </recommended_tag>
20
+ </recommended_tags>
21
+ <names type="Collection">
22
+ <name>name1</name>
23
+ <name>name2</name>
24
+ <name>name3</name>
25
+ </names>
26
+ <cities type="Collection">
27
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/hohenhaslach.xml">
28
+ <name>Hohenhaslach</name>
29
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2901727">
30
+ <geonameid type="integer">2901727</geonameid>
31
+ <latitude type="float">49.0022222</latitude>
32
+ <longitude type="float">9.0144444</longitude>
33
+ </geoname>
34
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
35
+ <name>Baden-Württemberg</name>
36
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
37
+ <geonameid type="integer">2953481</geonameid>
38
+ <latitude type="float">48.5</latitude>
39
+ <longitude type="float">9.0</longitude>
40
+ </geoname>
41
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
42
+ <name>Germany</name>
43
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
44
+ <geonameid type="integer">2921044</geonameid>
45
+ <latitude type="float">51.5</latitude>
46
+ <longitude type="float">10.5</longitude>
47
+ </geoname>
48
+ <states xlink:href="http://www.tagcrumbs.com/places/germany/states.xml" type="Collection"/>
49
+ </country>
50
+ <cities xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml" type="Collection"/>
51
+ </state>
52
+ </city>
53
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/mittelhaslach.xml">
54
+ <name>Mittelhaslach</name>
55
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2870706">
56
+ <geonameid type="integer">2870706</geonameid>
57
+ <latitude type="float">49.0</latitude>
58
+ <longitude type="float">9.0166667</longitude>
59
+ </geoname>
60
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
61
+ <name>Baden-Württemberg</name>
62
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
63
+ <geonameid type="integer">2953481</geonameid>
64
+ <latitude type="float">48.5</latitude>
65
+ <longitude type="float">9.0</longitude>
66
+ </geoname>
67
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
68
+ <name>Germany</name>
69
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
70
+ <geonameid type="integer">2921044</geonameid>
71
+ <latitude type="float">51.5</latitude>
72
+ <longitude type="float">10.5</longitude>
73
+ </geoname>
74
+ <states xlink:href="http://www.tagcrumbs.com/places/germany/states.xml" type="Collection"/>
75
+ </country>
76
+ <cities xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml" type="Collection"/>
77
+ </state>
78
+ </city>
79
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/niederhaslach.xml">
80
+ <name>Niederhaslach</name>
81
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2863369">
82
+ <geonameid type="integer">2863369</geonameid>
83
+ <latitude type="float">49.0</latitude>
84
+ <longitude type="float">9.0166667</longitude>
85
+ </geoname>
86
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
87
+ <name>Baden-Württemberg</name>
88
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
89
+ <geonameid type="integer">2953481</geonameid>
90
+ <latitude type="float">48.5</latitude>
91
+ <longitude type="float">9.0</longitude>
92
+ </geoname>
93
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
94
+ <name>Germany</name>
95
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
96
+ <geonameid type="integer">2921044</geonameid>
97
+ <latitude type="float">51.5</latitude>
98
+ <longitude type="float">10.5</longitude>
99
+ </geoname>
100
+ <states xlink:href="http://www.tagcrumbs.com/places/germany/states.xml" type="Collection"/>
101
+ </country>
102
+ <cities xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml" type="Collection"/>
103
+ </state>
104
+ </city>
105
+ </cities>
106
+ </suggestions>
@@ -1,4 +1,4 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <tag type="Tag" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.tagcrumbs.com/tags/tag1.xml">
3
- <name>tag1</name>
2
+ <tag xmlns:xlink="http://www.w3.org/1999/xlink" type="Tag" xlink:href="http://www.tagcrumbs.com/tags/tag1.xml">
3
+ <name>tag1</name>
4
4
  </tag>
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <user xmlns:xlink="http://www.w3.org/1999/xlink" type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
3
+ <username>sascha</username>
4
+ <facebook_uid type="integer">1234</facebook_uid>
5
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
6
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
7
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
8
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
9
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
10
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
11
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
12
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
13
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
14
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
15
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
16
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
17
+ <picture xmlns:xlink="http://www.w3.org/1999/xlink" type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml">
18
+ <large_thumbnail_url>http://s3.amazonaws.com/tagcrumbs_attachments_production/users/pictures/sascha/large.jpg?1246269353</large_thumbnail_url>
19
+ <medium_thumbnail_url>http://s3.amazonaws.com/tagcrumbs_attachments_production/users/pictures/sascha/medium.jpg?1246269353</medium_thumbnail_url>
20
+ <small_thumbnail_url>http://s3.amazonaws.com/tagcrumbs_attachments_production/users/pictures/sascha/small.jpg?1246269353</small_thumbnail_url>
21
+ <content_type>image/jpeg</content_type>
22
+ <created_at type="timestamp">2009-06-29T11:55:53+02:00</created_at>
23
+ <updated_at type="timestamp">2009-06-29T11:55:53+02:00</updated_at>
24
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml"/>
25
+ </picture>
26
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
27
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
28
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
29
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
30
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
31
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
32
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
33
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
34
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
35
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
36
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
37
+ </user>
@@ -0,0 +1,94 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <recommendation xmlns:xlink="http://www.w3.org/1999/xlink" type="UserRecommendation" xlink:href="http://www.tagcrumbs.com/sascha/recommendations/70.xml">
3
+ <message>MESSAGE</message>
4
+ <created_at type="timestamp">2009-02-01T14:41:12+01:00</created_at>
5
+ <updated_at type="timestamp">2009-03-01T18:02:51+01:00</updated_at>
6
+ <recommended_user type="User" xlink:href="http://www.tagcrumbs.com/peter.xml">
7
+ <username>peter</username>
8
+ <created_at type="timestamp">2008-06-13T11:45:22+02:00</created_at>
9
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/peter/profile.xml"/>
10
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/peter/profile/picture.xml"/>
11
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/peter/profile/links.xml"/>
12
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tagcrumbs.xml"/>
13
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks.xml"/>
14
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/peter/favorites.xml"/>
15
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/peter/activities.xml"/>
16
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tags.xml"/>
17
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/peter/places.xml"/>
18
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends.xml"/>
19
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans.xml"/>
20
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends/tagcrumbs.xml"/>
21
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans/tagcrumbs.xml"/>
22
+ </recommended_user>
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 type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
51
+ <name>PLACEMARK NAME</name>
52
+ <notes>PLACEMARK NOTES</notes>
53
+ <tag_list>tag1, tag2</tag_list>
54
+ <latitude type="float">48.7189419455889</latitude>
55
+ <longitude type="float">8.96329879760742</longitude>
56
+ <favorites_count type="integer">0</favorites_count>
57
+ <short_url>http://www.tagcrumbs.com/p/ZGM2ZTk</short_url>
58
+ <created_at type="timestamp">2009-02-01T14:41:11+01:00</created_at>
59
+ <updated_at type="timestamp">2009-02-20T07:53:06+01:00</updated_at>
60
+ <private type="boolean">false</private>
61
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/b%C3%B6blingen.xml"/>
62
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
63
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
64
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
65
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
66
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
67
+ <username>sascha</username>
68
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
69
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
70
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
71
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
72
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
73
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
74
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
75
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
76
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
77
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
78
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
79
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
80
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
81
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
82
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
83
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
84
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
85
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
86
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
87
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
88
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
89
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
90
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
91
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
92
+ </user>
93
+ </tagcrumb>
94
+ </recommendation>