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,49 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <fanship xmlns:xlink="http://www.w3.org/1999/xlink" type="Fanship" xlink:href="http://www.tagcrumbs.com/sascha/fans/peter.xml">
3
+ <created_at type="timestamp">2008-06-24T10:57:02+02:00</created_at>
4
+ <updated_at type="timestamp">2008-06-24T10:57:02+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
+ <fan type="User" xlink:href="http://www.tagcrumbs.com/peter.xml">
33
+ <username>peter</username>
34
+ <created_at type="timestamp">2008-06-13T11:45:22+02:00</created_at>
35
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/peter/profile.xml"/>
36
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/peter/profile/picture.xml"/>
37
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/peter/profile/links.xml"/>
38
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tagcrumbs.xml"/>
39
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks.xml"/>
40
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/peter/favorites.xml"/>
41
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/peter/activities.xml"/>
42
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tags.xml"/>
43
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/peter/places.xml"/>
44
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends.xml"/>
45
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans.xml"/>
46
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends/tagcrumbs.xml"/>
47
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans/tagcrumbs.xml"/>
48
+ </fan>
49
+ </fanship>
@@ -0,0 +1,97 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <tagcrumb xmlns:xlink="http://www.w3.org/1999/xlink" type="Favorite" xlink:href="http://www.tagcrumbs.com/sascha/favorites/1002145.xml">
3
+ <tag_list>tag3, tag4</tag_list>
4
+ <created_at type="timestamp">2009-06-07T16:57:07+02:00</created_at>
5
+ <updated_at type="timestamp">2009-06-07T17:01:25+02:00</updated_at>
6
+ <private type="boolean">false</private>
7
+ <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/peter/placemarks/placemark-name-2.xml">
8
+ <name>PLACEMARK NAME 2</name>
9
+ <notes>PLACEMARK NOTES 2</notes>
10
+ <tag_list/>
11
+ <latitude type="float">48.6904769025999</latitude>
12
+ <longitude type="float">8.76760482788086</longitude>
13
+ <favorites_count type="integer">1</favorites_count>
14
+ <short_url>http://www.tagcrumbs.com/p/MGRiMzN</short_url>
15
+ <created_at type="timestamp">2009-03-04T11:29:20+01:00</created_at>
16
+ <updated_at type="timestamp">2009-03-04T11:29:20+01:00</updated_at>
17
+ <private type="boolean">false</private>
18
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/stammheim.xml">
19
+ <name>Stammheim</name>
20
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2829579">
21
+ <geonameid type="integer">2829579</geonameid>
22
+ <latitude type="float">48.7</latitude>
23
+ <longitude type="float">8.7666667</longitude>
24
+ </geoname>
25
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
26
+ <name>Land Baden-Württemberg</name>
27
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
28
+ <geonameid type="integer">2953481</geonameid>
29
+ <latitude type="float">48.5</latitude>
30
+ <longitude type="float">9.0</longitude>
31
+ </geoname>
32
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
33
+ <name>Deutschland</name>
34
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
35
+ <geonameid type="integer">2921044</geonameid>
36
+ <latitude type="float">51.5</latitude>
37
+ <longitude type="float">10.5</longitude>
38
+ </geoname>
39
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
40
+ </country>
41
+ <cities type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml"/>
42
+ </state>
43
+ </city>
44
+ <address type="Address" xlink:href="http://www.tagcrumbs.com/peter/placemarks/placemark-name-2/address.xml"/>
45
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks/placemark-name-2/links.xml"/>
46
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks/placemark-name-2/recommendations.xml"/>
47
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks/placemark-name-2/comments.xml"/>
48
+ <user type="User" xlink:href="http://www.tagcrumbs.com/peter.xml">
49
+ <username>peter</username>
50
+ <created_at type="timestamp">2008-06-13T11:45:22+02:00</created_at>
51
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/peter/profile.xml"/>
52
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/peter/profile/picture.xml"/>
53
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/peter/profile/links.xml"/>
54
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tagcrumbs.xml"/>
55
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks.xml"/>
56
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/peter/favorites.xml"/>
57
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/peter/activities.xml"/>
58
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tags.xml"/>
59
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/peter/places.xml"/>
60
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends.xml"/>
61
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans.xml"/>
62
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends/tagcrumbs.xml"/>
63
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans/tagcrumbs.xml"/>
64
+ </user>
65
+ </tagcrumb>
66
+ <application xmlns:xlink="http://www.w3.org/1999/xlink" type="Application" xlink:href="http://www.tagcrumbs.com/applications/3.xml">
67
+ <name>Tagcrumbs Gem</name>
68
+ <url>http://www.tagcrumbs.com</url>
69
+ </application>
70
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
71
+ <username>sascha</username>
72
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
73
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
74
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
75
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
76
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
77
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
78
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
79
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
80
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
81
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
82
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
83
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
84
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
85
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
86
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
87
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
88
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
89
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
90
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
91
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
92
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
93
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
94
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
95
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
96
+ </user>
97
+ </tagcrumb>
@@ -0,0 +1,68 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <filter xmlns:xlink="http://www.w3.org/1999/xlink" type="Filter" xlink:href="http://www.tagcrumbs.com/sascha/filters/filter-name.xml">
3
+ <name>FILTER NAME</name>
4
+ <private type="boolean">false</private>
5
+ <tagcrumb_type nil="true"/>
6
+ <tag_list/>
7
+ <middle_of_nowhere nil="true"/>
8
+ <since type="timestamp">2009-05-13T12:11:00+02:00</since>
9
+ <until type="timestamp">2009-05-19T11:30:00+02:00</until>
10
+ <from>everybody</from>
11
+ <range nil="true"/>
12
+ <created_at type="timestamp">2008-10-03T09:38:23+02:00</created_at>
13
+ <updated_at type="timestamp">2008-11-03T11:33:09+01:00</updated_at>
14
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-berlin/cities/berlin.xml">
15
+ <name>Berlin</name>
16
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2950159">
17
+ <geonameid type="integer">2950159</geonameid>
18
+ <latitude type="float">52.5166667</latitude>
19
+ <longitude type="float">13.4</longitude>
20
+ </geoname>
21
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-berlin.xml">
22
+ <name>Berlin</name>
23
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2950157">
24
+ <geonameid type="integer">2950157</geonameid>
25
+ <latitude type="float">52.5</latitude>
26
+ <longitude type="float">13.4166667</longitude>
27
+ </geoname>
28
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
29
+ <name>Deutschland</name>
30
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
31
+ <geonameid type="integer">2921044</geonameid>
32
+ <latitude type="float">51.5</latitude>
33
+ <longitude type="float">10.5</longitude>
34
+ </geoname>
35
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
36
+ </country>
37
+ <cities type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-berlin/cities.xml"/>
38
+ </state>
39
+ </city>
40
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters/filter-name/tagcrumbs.xml"/>
41
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
42
+ <username>sascha</username>
43
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
44
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
45
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
46
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
47
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
48
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
49
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
50
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
51
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
52
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
53
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
54
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
55
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
56
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
57
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
58
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
59
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
60
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
61
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
62
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
63
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
64
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
65
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
66
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
67
+ </user>
68
+ </filter>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <friendship xmlns:xlink="http://www.w3.org/1999/xlink" type="Friendship" xlink:href="http://www.tagcrumbs.com/sascha/friends/peter.xml">
3
+ <created_at type="timestamp">2009-04-02T16:31:45+02:00</created_at>
4
+ <updated_at type="timestamp">2009-04-02T16:31:45+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
+ <friend type="User" xlink:href="http://www.tagcrumbs.com/peter.xml">
33
+ <username>peter</username>
34
+ <created_at type="timestamp">2008-06-13T11:45:22+02:00</created_at>
35
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/peter/profile.xml"/>
36
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/peter/profile/picture.xml"/>
37
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/peter/profile/links.xml"/>
38
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tagcrumbs.xml"/>
39
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/peter/placemarks.xml"/>
40
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/peter/favorites.xml"/>
41
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/peter/activities.xml"/>
42
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/peter/tags.xml"/>
43
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/peter/places.xml"/>
44
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends.xml"/>
45
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans.xml"/>
46
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/peter/friends/tagcrumbs.xml"/>
47
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/peter/fans/tagcrumbs.xml"/>
48
+ </friend>
49
+ </friendship>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <geoname xmlns:xlink="http://www.w3.org/1999/xlink" type="Geoname" xlink:href="http://www.geonames.org/2921044">
3
+ <geonameid type="integer">2921044</geonameid>
4
+ <latitude type="float">51.5</latitude>
5
+ <longitude type="float">10.5</longitude>
6
+ </geoname>
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <link xmlns:xlink="http://www.w3.org/1999/xlink" type="Link" xlink:href="http://www.tagcrumbs.com/sascha/links/1000104.xml">
3
+ <link_type/>
4
+ <url>http://www.test.de</url>
5
+ <title>test.de</title>
6
+ <created_at type="timestamp">2008-11-25T15:10:37+01:00</created_at>
7
+ <updated_at type="timestamp">2009-06-09T16:42:05+02:00</updated_at>
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">13.0</latitude>
13
+ <longitude type="float">12.0</longitude>
14
+ <favorites_count type="integer">0</favorites_count>
15
+ <short_url>http://www.tagcrumbs.com/p/YjM3ZjU</short_url>
16
+ <created_at type="timestamp">2008-11-25T15:10:35+01:00</created_at>
17
+ <updated_at type="timestamp">2009-02-20T07:53:22+01:00</updated_at>
18
+ <private type="boolean">true</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
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
52
+ <username>sascha</username>
53
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
54
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
55
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
56
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
57
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
58
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
59
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
60
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
61
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
62
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
63
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
64
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
65
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
66
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
67
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
68
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
69
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
70
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
71
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
72
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
73
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
74
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
75
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
76
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
77
+ </user>
78
+ </link>
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <location xmlns:xlink="http://www.w3.org/1999/xlink" type="Location" xlink:href="http://www.tagcrumbs.com/location.xml">
3
+ <latitude type="float">48.1344468066674</latitude>
4
+ <longitude type="float">11.5754914283752</longitude>
5
+ <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/freistaat-bayern/cities/munich.xml">
6
+ <name>München</name>
7
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2867714">
8
+ <geonameid type="integer">2867714</geonameid>
9
+ <latitude type="float">48.1376831438553</latitude>
10
+ <longitude type="float">11.5743541717529</longitude>
11
+ </geoname>
12
+ <state type="State" xlink:href="http://www.tagcrumbs.com/places/germany/states/freistaat-bayern.xml">
13
+ <name>Bayern</name>
14
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2951839">
15
+ <geonameid type="integer">2951839</geonameid>
16
+ <latitude type="float">49.0</latitude>
17
+ <longitude type="float">11.5</longitude>
18
+ </geoname>
19
+ <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
20
+ <name>Deutschland</name>
21
+ <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
22
+ <geonameid type="integer">2921044</geonameid>
23
+ <latitude type="float">51.5</latitude>
24
+ <longitude type="float">10.5</longitude>
25
+ </geoname>
26
+ <states type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
27
+ </country>
28
+ <cities type="Collection" xlink:href="http://www.tagcrumbs.com/places/germany/states/freistaat-bayern/cities.xml"/>
29
+ </state>
30
+ </city>
31
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
32
+ <username>sascha</username>
33
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
34
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
35
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
36
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
37
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
38
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
39
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
40
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
41
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
42
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
43
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
44
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
45
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
46
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
47
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
48
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
49
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
50
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
51
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
52
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
53
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
54
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
55
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
56
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
57
+ </user>
58
+ </location>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <paragraph type="Paragraph">
3
+ <heading>HEADING</heading>
4
+ <subparagraphs type="Collection">
5
+ <subparagraph>SUBPARAGRAPH 1</subparagraph>
6
+ <subparagraph>SUBPARAGRAPH 2</subparagraph>
7
+ </subparagraphs>
8
+ </paragraph>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <picture xmlns:xlink="http://www.w3.org/1999/xlink" type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml">
3
+ <large_thumbnail_url>http://s3.amazonaws.com/tagcrumbs_attachments_production/users/pictures/sascha/large.jpg?1246269353</large_thumbnail_url>
4
+ <medium_thumbnail_url>http://s3.amazonaws.com/tagcrumbs_attachments_production/users/pictures/sascha/medium.jpg?1246269353</medium_thumbnail_url>
5
+ <small_thumbnail_url>http://s3.amazonaws.com/tagcrumbs_attachments_production/users/pictures/sascha/small.jpg?1246269353</small_thumbnail_url>
6
+ <content_type>image/jpeg</content_type>
7
+ <created_at type="timestamp">2009-06-29T11:55:53+02:00</created_at>
8
+ <updated_at type="timestamp">2009-06-29T11:55:53+02:00</updated_at>
9
+ <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
10
+ <username>sascha</username>
11
+ <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
12
+ <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
13
+ <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
14
+ <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
15
+ <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
16
+ <filters type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
17
+ <links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
18
+ <comments type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
19
+ <flags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
20
+ <recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
21
+ <received_recommendations type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/received_recommendations.xml"/>
22
+ <subscriptions type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
23
+ <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
24
+ <profile_links type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
25
+ <tagcrumbs type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
26
+ <placemarks type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
27
+ <favorites type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
28
+ <activities type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
29
+ <tags type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
30
+ <places type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
31
+ <friendships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
32
+ <fanships type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
33
+ <tagcrumbs_friends type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
34
+ <tagcrumbs_fans type="Collection" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
35
+ </user>
36
+ </picture>