sinicum 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +7 -0
  2. data/.cane +19 -0
  3. data/.gitignore +14 -0
  4. data/.rubocop.yml +30 -0
  5. data/.travis.yml +14 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE +24 -0
  8. data/README.md +327 -0
  9. data/Rakefile +37 -0
  10. data/app/assets/javascripts/sinicum/magnolia_client.js.coffee +233 -0
  11. data/app/controllers/sinicum/controller_base.rb +173 -0
  12. data/app/controllers/sinicum/controllers/cache_aware.rb +16 -0
  13. data/app/controllers/sinicum/controllers/global_state_cache.rb +83 -0
  14. data/app/helpers/sinicum/helper_utils.rb +152 -0
  15. data/app/helpers/sinicum/mgnl_helper.rb +145 -0
  16. data/app/helpers/sinicum/mgnl_helper5.rb +7 -0
  17. data/app/helpers/sinicum/mgnl_image_helper.rb +26 -0
  18. data/app/helpers/sinicum/taglib_helper5.rb +166 -0
  19. data/gemfiles/Gemfile-3.2 +6 -0
  20. data/gemfiles/Gemfile-4.0 +6 -0
  21. data/lib/generators/sinicum/install_generator.rb +162 -0
  22. data/lib/generators/sinicum/templates/VersionHandler.java +18 -0
  23. data/lib/generators/sinicum/templates/config/default/log4j-development.xml +203 -0
  24. data/lib/generators/sinicum/templates/config/default/log4j.xml +200 -0
  25. data/lib/generators/sinicum/templates/config/default/magnolia-author.properties +63 -0
  26. data/lib/generators/sinicum/templates/config/default/magnolia-public01.properties +63 -0
  27. data/lib/generators/sinicum/templates/config/default/magnolia.properties +63 -0
  28. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search-author.xml +73 -0
  29. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search-public01.xml +73 -0
  30. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search.xml +70 -0
  31. data/lib/generators/sinicum/templates/magnolia/config.modules.myproject.dialogs.xml +1625 -0
  32. data/lib/generators/sinicum/templates/magnolia/config.modules.myproject.templates.xml +247 -0
  33. data/lib/generators/sinicum/templates/module-config.xml +13 -0
  34. data/lib/generators/sinicum/templates/module-pom.xml +67 -0
  35. data/lib/generators/sinicum/templates/project-pom.xml +104 -0
  36. data/lib/generators/sinicum/templates/rails/_article.html.haml +15 -0
  37. data/lib/generators/sinicum/templates/rails/_content.html.haml +2 -0
  38. data/lib/generators/sinicum/templates/rails/_meta.html.haml +9 -0
  39. data/lib/generators/sinicum/templates/rails/application.html.haml +11 -0
  40. data/lib/generators/sinicum/templates/rails/content_controller.rb +5 -0
  41. data/lib/generators/sinicum/templates/rails/imaging.yml +8 -0
  42. data/lib/generators/sinicum/templates/rails/sinicum_server.yml +15 -0
  43. data/lib/sinicum.rb +53 -0
  44. data/lib/sinicum/content/aggregator.rb +173 -0
  45. data/lib/sinicum/content/website_content_resolver.rb +10 -0
  46. data/lib/sinicum/engine.rb +23 -0
  47. data/lib/sinicum/imaging.rb +29 -0
  48. data/lib/sinicum/imaging/config.rb +133 -0
  49. data/lib/sinicum/imaging/converter.rb +81 -0
  50. data/lib/sinicum/imaging/default_converter.rb +20 -0
  51. data/lib/sinicum/imaging/image_size_converter.rb +52 -0
  52. data/lib/sinicum/imaging/imaging.rb +171 -0
  53. data/lib/sinicum/imaging/imaging_file.rb +115 -0
  54. data/lib/sinicum/imaging/imaging_middleware.rb +56 -0
  55. data/lib/sinicum/imaging/max_size_converter.rb +39 -0
  56. data/lib/sinicum/imaging/resize_crop_converter.rb +35 -0
  57. data/lib/sinicum/jcr/api_client.rb +50 -0
  58. data/lib/sinicum/jcr/api_queries.rb +37 -0
  59. data/lib/sinicum/jcr/cache/global_cache.rb +26 -0
  60. data/lib/sinicum/jcr/dam/document.rb +57 -0
  61. data/lib/sinicum/jcr/dam/image.rb +40 -0
  62. data/lib/sinicum/jcr/jcr_configuration.rb +67 -0
  63. data/lib/sinicum/jcr/mgnl4_compatibility.rb +11 -0
  64. data/lib/sinicum/jcr/node.rb +268 -0
  65. data/lib/sinicum/jcr/node_initializer.rb +16 -0
  66. data/lib/sinicum/jcr/node_queries.rb +101 -0
  67. data/lib/sinicum/jcr/query_sanitizer.rb +24 -0
  68. data/lib/sinicum/jcr/type_translator.rb +38 -0
  69. data/lib/sinicum/jcr/type_translators/component_translator.rb +28 -0
  70. data/lib/sinicum/jcr/type_translators/dam_translator.rb +33 -0
  71. data/lib/sinicum/jcr/type_translators/data_translator.rb +31 -0
  72. data/lib/sinicum/jcr/type_translators/default_translator.rb +13 -0
  73. data/lib/sinicum/jcr/type_translators/translator_base.rb +40 -0
  74. data/lib/sinicum/logger.rb +28 -0
  75. data/lib/sinicum/navigation/default_navigation_element.rb +30 -0
  76. data/lib/sinicum/navigation/navigation_element.rb +39 -0
  77. data/lib/sinicum/navigation/navigation_element_list.rb +33 -0
  78. data/lib/sinicum/navigation/navigation_handler.rb +95 -0
  79. data/lib/sinicum/navigation/navigation_status.rb +27 -0
  80. data/lib/sinicum/templating/area_handler.rb +33 -0
  81. data/lib/sinicum/templating/dialog_resolver.rb +26 -0
  82. data/lib/sinicum/templating/templating_utils.rb +24 -0
  83. data/lib/sinicum/util.rb +12 -0
  84. data/lib/sinicum/version.rb +3 -0
  85. data/script/cibuild +31 -0
  86. data/sinicum.gemspec +29 -0
  87. data/spec/controllers/sinicum/controller_base_spec.rb +53 -0
  88. data/spec/controllers/sinicum/controllers/global_state_cache_spec.rb +35 -0
  89. data/spec/dummy/REVISION +1 -0
  90. data/spec/dummy/Rakefile +7 -0
  91. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  92. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  93. data/spec/dummy/app/views/application/index.html.erb +1 -0
  94. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  95. data/spec/dummy/app/views/layouts/layout_name.html.erb +0 -0
  96. data/spec/dummy/app/views/layouts/my-module/test.html.erb +0 -0
  97. data/spec/dummy/app/views/layouts/my_module/test.html.erb +0 -0
  98. data/spec/dummy/config.ru +4 -0
  99. data/spec/dummy/config/application.rb +45 -0
  100. data/spec/dummy/config/boot.rb +10 -0
  101. data/spec/dummy/config/database.yml +22 -0
  102. data/spec/dummy/config/environment.rb +5 -0
  103. data/spec/dummy/config/environments/development.rb +24 -0
  104. data/spec/dummy/config/environments/production.rb +51 -0
  105. data/spec/dummy/config/environments/test.rb +34 -0
  106. data/spec/dummy/config/imaging.yml +7 -0
  107. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  108. data/spec/dummy/config/initializers/inflections.rb +10 -0
  109. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  110. data/spec/dummy/config/initializers/secret_token.rb +11 -0
  111. data/spec/dummy/config/initializers/session_store.rb +8 -0
  112. data/spec/dummy/config/locales/en.yml +5 -0
  113. data/spec/dummy/config/routes.rb +59 -0
  114. data/spec/dummy/config/sinicum_server.yml +13 -0
  115. data/spec/dummy/public/404.html +26 -0
  116. data/spec/dummy/public/422.html +26 -0
  117. data/spec/dummy/public/500.html +26 -0
  118. data/spec/dummy/public/favicon.ico +0 -0
  119. data/spec/dummy/public/javascripts/application.js +2 -0
  120. data/spec/dummy/public/javascripts/controls.js +965 -0
  121. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  122. data/spec/dummy/public/javascripts/effects.js +1123 -0
  123. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  124. data/spec/dummy/public/javascripts/rails.js +191 -0
  125. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  126. data/spec/dummy/script/rails +6 -0
  127. data/spec/fixtures/api/cache_global.json +3 -0
  128. data/spec/fixtures/api/content_mgnl5.json +22 -0
  129. data/spec/fixtures/api/default_json.json.erb +47 -0
  130. data/spec/fixtures/api/default_json_mgnl5.json.erb +27 -0
  131. data/spec/fixtures/api/file.json +73 -0
  132. data/spec/fixtures/api/file_mgnl5.json +51 -0
  133. data/spec/fixtures/api/homepage.json +1497 -0
  134. data/spec/fixtures/api/homepage_parent.json +483 -0
  135. data/spec/fixtures/api/image.json +73 -0
  136. data/spec/fixtures/api/image_mgnl5.json +50 -0
  137. data/spec/fixtures/api/navigation_children.json +3107 -0
  138. data/spec/fixtures/api/navigation_parents.json +25 -0
  139. data/spec/fixtures/api/product.json +2084 -0
  140. data/spec/fixtures/api/query_result.json +61 -0
  141. data/spec/fixtures/mock_content.rb +6 -0
  142. data/spec/fixtures/mock_image.gif +0 -0
  143. data/spec/helpers/sinicum/helper_utils_spec.rb +55 -0
  144. data/spec/helpers/sinicum/mgnl_helper_spec.rb +315 -0
  145. data/spec/helpers/sinicum/mgnl_image_helper_spec.rb +103 -0
  146. data/spec/sinicum/content/aggregator_spec.rb +91 -0
  147. data/spec/sinicum/content/website_content_resolver_spec.rb +14 -0
  148. data/spec/sinicum/imaging/config_spec.rb +50 -0
  149. data/spec/sinicum/imaging/converter_spec.rb +41 -0
  150. data/spec/sinicum/imaging/image_size_converter_spec.rb +27 -0
  151. data/spec/sinicum/imaging/imaging.yml +15 -0
  152. data/spec/sinicum/imaging/imaging_file_spec.rb +125 -0
  153. data/spec/sinicum/imaging/imaging_middleware_spec.rb +79 -0
  154. data/spec/sinicum/imaging/max_size_converter_spec.rb +52 -0
  155. data/spec/sinicum/imaging/resize_crop_converter_spec.rb +18 -0
  156. data/spec/sinicum/imaging_spec.rb +13 -0
  157. data/spec/sinicum/jcr/api_client_spec.rb +69 -0
  158. data/spec/sinicum/jcr/cache/global_cache_spec.rb +29 -0
  159. data/spec/sinicum/jcr/dam/document_spec.rb +81 -0
  160. data/spec/sinicum/jcr/dam/image_spec.rb +46 -0
  161. data/spec/sinicum/jcr/jcr_configuration_spec.rb +57 -0
  162. data/spec/sinicum/jcr/mgnl4_compatibility_spec.rb +10 -0
  163. data/spec/sinicum/jcr/node_queries_spec.rb +113 -0
  164. data/spec/sinicum/jcr/node_spec.rb +261 -0
  165. data/spec/sinicum/jcr/query_sanitizer_spec.rb +26 -0
  166. data/spec/sinicum/jcr/type_translator_spec.rb +42 -0
  167. data/spec/sinicum/jcr/type_translators/component_translator_spec.rb +71 -0
  168. data/spec/sinicum/jcr/type_translators/data_translator_spec.rb +38 -0
  169. data/spec/sinicum/jcr/type_translators/default_translator_spec.rb +19 -0
  170. data/spec/sinicum/navigation/default_navigation_element_spec.rb +45 -0
  171. data/spec/sinicum/navigation/navigation_handler_spec.rb +71 -0
  172. data/spec/sinicum/templating/dialog_resolver_spec.rb +13 -0
  173. data/spec/sinicum/util_spec.rb +34 -0
  174. data/spec/spec_helper.rb +42 -0
  175. data/spec/support/default_node_reader.rb +40 -0
  176. metadata +434 -0
@@ -0,0 +1,483 @@
1
+ {
2
+ "meta" : {
3
+ "workspace" : "website",
4
+ "jcr:uuid" : "900985a3-319c-41c6-b327-b46d7fb56d23",
5
+ "path" : "/home/orc_13",
6
+ "name" : "orc_13",
7
+ "jcr:primaryType" : "mgnl:contentNode",
8
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
9
+ "depth" : 2,
10
+ "jcr:created" : "2010-04-13T09:35:01.995+02:00",
11
+ "mixinNodeTypes" : [ "mix:lockable" ]
12
+ },
13
+ "properties" : { },
14
+ "nodes" : {
15
+ "MetaData" : {
16
+ "meta" : {
17
+ "workspace" : "website",
18
+ "jcr:uuid" : "7f94dafd-6462-4356-8dd4-3c1cf3614dc9",
19
+ "path" : "/home/orc_13/MetaData",
20
+ "name" : "MetaData",
21
+ "jcr:primaryType" : "mgnl:metaData",
22
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
23
+ "depth" : 3,
24
+ "jcr:created" : "2010-04-13T09:35:01.995+02:00",
25
+ "mixinNodeTypes" : [ ]
26
+ },
27
+ "properties" : {
28
+ "mgnl:activatorid" : "superuser",
29
+ "mgnl:authorid" : "superuser",
30
+ "mgnl:creationdate" : "2009-10-13T13:56:44.219+02:00",
31
+ "mgnl:lastaction" : "2012-10-05T15:25:05.885+02:00",
32
+ "mgnl:activated" : true,
33
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.120+01:00"
34
+ },
35
+ "nodes" : { }
36
+ },
37
+ "0" : {
38
+ "meta" : {
39
+ "workspace" : "website",
40
+ "jcr:uuid" : "300b64c6-741a-44ce-acd8-e5d475fc5e4a",
41
+ "path" : "/home/orc_13/0",
42
+ "name" : "0",
43
+ "jcr:primaryType" : "mgnl:contentNode",
44
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
45
+ "depth" : 3,
46
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
47
+ "mixinNodeTypes" : [ "mix:lockable" ]
48
+ },
49
+ "properties" : {
50
+ "title" : "NEWS"
51
+ },
52
+ "nodes" : {
53
+ "MetaData" : {
54
+ "meta" : {
55
+ "workspace" : "website",
56
+ "jcr:uuid" : "49634e0f-9be0-4996-afd5-4a8cf798a371",
57
+ "path" : "/home/orc_13/0/MetaData",
58
+ "name" : "MetaData",
59
+ "jcr:primaryType" : "mgnl:metaData",
60
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
61
+ "depth" : 4,
62
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
63
+ "mixinNodeTypes" : [ ]
64
+ },
65
+ "properties" : {
66
+ "mgnl:authorid" : "superuser",
67
+ "mgnl:activatorid" : "superuser",
68
+ "mgnl:creationdate" : "2009-10-14T13:30:41.362+02:00",
69
+ "mgnl:lastaction" : "2012-10-05T15:25:05.886+02:00",
70
+ "mgnl:template" : "box_picture_teaser",
71
+ "mgnl:activated" : true,
72
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.120+01:00"
73
+ },
74
+ "nodes" : { }
75
+ },
76
+ "picture_teaser_items" : {
77
+ "meta" : {
78
+ "workspace" : "website",
79
+ "jcr:uuid" : "68581193-5dcc-43a0-a88e-81fd09eb932f",
80
+ "path" : "/home/orc_13/0/picture_teaser_items",
81
+ "name" : "picture_teaser_items",
82
+ "jcr:primaryType" : "mgnl:contentNode",
83
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
84
+ "depth" : 4,
85
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
86
+ "mixinNodeTypes" : [ "mix:lockable" ]
87
+ },
88
+ "properties" : { },
89
+ "nodes" : {
90
+ "MetaData" : {
91
+ "meta" : {
92
+ "workspace" : "website",
93
+ "jcr:uuid" : "26491b12-ca3a-4e20-ad09-a62f683a1d1e",
94
+ "path" : "/home/orc_13/0/picture_teaser_items/MetaData",
95
+ "name" : "MetaData",
96
+ "jcr:primaryType" : "mgnl:metaData",
97
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
98
+ "depth" : 5,
99
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
100
+ "mixinNodeTypes" : [ ]
101
+ },
102
+ "properties" : {
103
+ "mgnl:activatorid" : "superuser",
104
+ "mgnl:authorid" : "superuser",
105
+ "mgnl:creationdate" : "2009-10-14T13:32:19.751+02:00",
106
+ "mgnl:lastaction" : "2012-10-05T15:25:05.886+02:00",
107
+ "mgnl:activated" : true,
108
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.121+01:00"
109
+ },
110
+ "nodes" : { }
111
+ },
112
+ "0" : {
113
+ "meta" : {
114
+ "workspace" : "website",
115
+ "jcr:uuid" : "57728e65-bf14-4965-aa96-e9ce217364f9",
116
+ "path" : "/home/orc_13/0/picture_teaser_items/0",
117
+ "name" : "0",
118
+ "jcr:primaryType" : "mgnl:contentNode",
119
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
120
+ "depth" : 5,
121
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
122
+ "mixinNodeTypes" : [ "mix:lockable" ]
123
+ },
124
+ "properties" : {
125
+ "title" : "PRODUCTS",
126
+ "image" : "f45b504f-6449-46ab-b0cd-e0f275646db3",
127
+ "sub_text" : "<p><a href=\"#\">Show all product-news<br /> </a></p>",
128
+ "link" : "/en",
129
+ "text" : "<p><strong>09-06-04</strong> Microphone legends go digital: Do you want to connect your SM58 or SM57 to your PC or MAC?</p>",
130
+ "link_text" : "more"
131
+ },
132
+ "nodes" : {
133
+ "MetaData" : {
134
+ "meta" : {
135
+ "workspace" : "website",
136
+ "jcr:uuid" : "cad133fa-f3ab-4d1c-86bb-4d31f964ce47",
137
+ "path" : "/home/orc_13/0/picture_teaser_items/0/MetaData",
138
+ "name" : "MetaData",
139
+ "jcr:primaryType" : "mgnl:metaData",
140
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
141
+ "depth" : 6,
142
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
143
+ "mixinNodeTypes" : [ ]
144
+ },
145
+ "properties" : {
146
+ "mgnl:activatorid" : "superuser",
147
+ "mgnl:authorid" : "superuser",
148
+ "mgnl:lastaction" : "2012-10-05T15:25:05.887+02:00",
149
+ "mgnl:creationdate" : "2009-10-14T13:32:19.752+02:00",
150
+ "mgnl:template" : "box_picture_teaser_item",
151
+ "mgnl:activated" : true,
152
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.121+01:00"
153
+ },
154
+ "nodes" : { }
155
+ },
156
+ "text_files" : {
157
+ "meta" : {
158
+ "workspace" : "website",
159
+ "jcr:uuid" : "2bc4e9cd-dfc1-4e91-b0e5-978b40bb899c",
160
+ "path" : "/home/orc_13/0/picture_teaser_items/0/text_files",
161
+ "name" : "text_files",
162
+ "jcr:primaryType" : "mgnl:contentNode",
163
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
164
+ "depth" : 6,
165
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
166
+ "mixinNodeTypes" : [ "mix:lockable" ]
167
+ },
168
+ "properties" : { },
169
+ "nodes" : {
170
+ "MetaData" : {
171
+ "meta" : {
172
+ "workspace" : "website",
173
+ "jcr:uuid" : "63a49eff-017e-4da0-aa8f-47cdeb03a6d8",
174
+ "path" : "/home/orc_13/0/picture_teaser_items/0/text_files/MetaData",
175
+ "name" : "MetaData",
176
+ "jcr:primaryType" : "mgnl:metaData",
177
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
178
+ "depth" : 7,
179
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
180
+ "mixinNodeTypes" : [ ]
181
+ },
182
+ "properties" : {
183
+ "mgnl:activatorid" : "superuser",
184
+ "mgnl:authorid" : "superuser",
185
+ "mgnl:lastaction" : "2012-10-05T15:25:05.887+02:00",
186
+ "mgnl:creationdate" : "2009-10-14T13:32:19.753+02:00",
187
+ "mgnl:activated" : true,
188
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.122+01:00"
189
+ },
190
+ "nodes" : { }
191
+ }
192
+ }
193
+ },
194
+ "sub_text_files" : {
195
+ "meta" : {
196
+ "workspace" : "website",
197
+ "jcr:uuid" : "6dfc3271-0e13-43b7-ae67-7a6db9f1fa8b",
198
+ "path" : "/home/orc_13/0/picture_teaser_items/0/sub_text_files",
199
+ "name" : "sub_text_files",
200
+ "jcr:primaryType" : "mgnl:contentNode",
201
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
202
+ "depth" : 6,
203
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
204
+ "mixinNodeTypes" : [ "mix:lockable" ]
205
+ },
206
+ "properties" : { },
207
+ "nodes" : {
208
+ "MetaData" : {
209
+ "meta" : {
210
+ "workspace" : "website",
211
+ "jcr:uuid" : "c729811f-5bfb-4811-b2c4-a74e85d3a839",
212
+ "path" : "/home/orc_13/0/picture_teaser_items/0/sub_text_files/MetaData",
213
+ "name" : "MetaData",
214
+ "jcr:primaryType" : "mgnl:metaData",
215
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
216
+ "depth" : 7,
217
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
218
+ "mixinNodeTypes" : [ ]
219
+ },
220
+ "properties" : {
221
+ "mgnl:authorid" : "superuser",
222
+ "mgnl:activatorid" : "superuser",
223
+ "mgnl:creationdate" : "2009-10-14T13:32:19.755+02:00",
224
+ "mgnl:lastaction" : "2012-10-05T15:25:05.887+02:00",
225
+ "mgnl:activated" : true,
226
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.123+01:00"
227
+ },
228
+ "nodes" : { }
229
+ }
230
+ }
231
+ }
232
+ }
233
+ },
234
+ "00" : {
235
+ "meta" : {
236
+ "workspace" : "website",
237
+ "jcr:uuid" : "03f2e1ec-793f-4224-9b65-6b38b3c6a6a3",
238
+ "path" : "/home/orc_13/0/picture_teaser_items/00",
239
+ "name" : "00",
240
+ "jcr:primaryType" : "mgnl:contentNode",
241
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
242
+ "depth" : 5,
243
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
244
+ "mixinNodeTypes" : [ "mix:lockable" ]
245
+ },
246
+ "properties" : {
247
+ "title" : "HOW-TO",
248
+ "image" : "fabd1b49-8272-4347-9751-bf5fe32eec5e",
249
+ "sub_text" : "<p><a href=\"#\">Show all how-to guides<br /> </a></p>",
250
+ "link" : "/en",
251
+ "text" : "<p><strong>09-05-19</strong> Shure Sound Isolating Earphones: Use this interactive demonstration to find tips on the best fit.</p>",
252
+ "link_text" : "more"
253
+ },
254
+ "nodes" : {
255
+ "MetaData" : {
256
+ "meta" : {
257
+ "workspace" : "website",
258
+ "jcr:uuid" : "7377a54e-bf87-45df-b891-0dd7b80c9262",
259
+ "path" : "/home/orc_13/0/picture_teaser_items/00/MetaData",
260
+ "name" : "MetaData",
261
+ "jcr:primaryType" : "mgnl:metaData",
262
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
263
+ "depth" : 6,
264
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
265
+ "mixinNodeTypes" : [ ]
266
+ },
267
+ "properties" : {
268
+ "mgnl:authorid" : "superuser",
269
+ "mgnl:activatorid" : "superuser",
270
+ "mgnl:creationdate" : "2009-10-14T13:39:04.407+02:00",
271
+ "mgnl:lastaction" : "2012-10-05T15:25:05.888+02:00",
272
+ "mgnl:template" : "box_picture_teaser_item",
273
+ "mgnl:activated" : true,
274
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.123+01:00"
275
+ },
276
+ "nodes" : { }
277
+ },
278
+ "text_files" : {
279
+ "meta" : {
280
+ "workspace" : "website",
281
+ "jcr:uuid" : "787c87ad-8ac4-4db3-8e96-94bd6673ab84",
282
+ "path" : "/home/orc_13/0/picture_teaser_items/00/text_files",
283
+ "name" : "text_files",
284
+ "jcr:primaryType" : "mgnl:contentNode",
285
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
286
+ "depth" : 6,
287
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
288
+ "mixinNodeTypes" : [ "mix:lockable" ]
289
+ },
290
+ "properties" : { },
291
+ "nodes" : {
292
+ "MetaData" : {
293
+ "meta" : {
294
+ "workspace" : "website",
295
+ "jcr:uuid" : "0925ec20-13a0-40b9-96c2-c24e101a857d",
296
+ "path" : "/home/orc_13/0/picture_teaser_items/00/text_files/MetaData",
297
+ "name" : "MetaData",
298
+ "jcr:primaryType" : "mgnl:metaData",
299
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
300
+ "depth" : 7,
301
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
302
+ "mixinNodeTypes" : [ ]
303
+ },
304
+ "properties" : {
305
+ "mgnl:authorid" : "superuser",
306
+ "mgnl:activatorid" : "superuser",
307
+ "mgnl:lastaction" : "2012-10-05T15:25:05.888+02:00",
308
+ "mgnl:creationdate" : "2009-10-14T13:39:04.408+02:00",
309
+ "mgnl:activated" : true,
310
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.124+01:00"
311
+ },
312
+ "nodes" : { }
313
+ }
314
+ }
315
+ },
316
+ "sub_text_files" : {
317
+ "meta" : {
318
+ "workspace" : "website",
319
+ "jcr:uuid" : "2f4cc085-1c98-442a-aed5-8b60c9d30aa5",
320
+ "path" : "/home/orc_13/0/picture_teaser_items/00/sub_text_files",
321
+ "name" : "sub_text_files",
322
+ "jcr:primaryType" : "mgnl:contentNode",
323
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
324
+ "depth" : 6,
325
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
326
+ "mixinNodeTypes" : [ "mix:lockable" ]
327
+ },
328
+ "properties" : { },
329
+ "nodes" : {
330
+ "MetaData" : {
331
+ "meta" : {
332
+ "workspace" : "website",
333
+ "jcr:uuid" : "161a5277-93bb-495c-a38d-ffe6b43816a3",
334
+ "path" : "/home/orc_13/0/picture_teaser_items/00/sub_text_files/MetaData",
335
+ "name" : "MetaData",
336
+ "jcr:primaryType" : "mgnl:metaData",
337
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
338
+ "depth" : 7,
339
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
340
+ "mixinNodeTypes" : [ ]
341
+ },
342
+ "properties" : {
343
+ "mgnl:activatorid" : "superuser",
344
+ "mgnl:authorid" : "superuser",
345
+ "mgnl:lastaction" : "2012-10-05T15:25:05.888+02:00",
346
+ "mgnl:creationdate" : "2009-10-14T13:39:04.410+02:00",
347
+ "mgnl:activated" : true,
348
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.124+01:00"
349
+ },
350
+ "nodes" : { }
351
+ }
352
+ }
353
+ }
354
+ }
355
+ },
356
+ "01" : {
357
+ "meta" : {
358
+ "workspace" : "website",
359
+ "jcr:uuid" : "77064f19-d9be-42fa-a507-8534f444c091",
360
+ "path" : "/home/orc_13/0/picture_teaser_items/01",
361
+ "name" : "01",
362
+ "jcr:primaryType" : "mgnl:contentNode",
363
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
364
+ "depth" : 5,
365
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
366
+ "mixinNodeTypes" : [ "mix:lockable" ]
367
+ },
368
+ "properties" : {
369
+ "title" : "STAGE TALK",
370
+ "image" : "a3b0d687-4c6d-420b-a6f0-cc7d4415f8ff",
371
+ "sub_text" : "<p>Show all of stage talk</p>",
372
+ "text" : "<p><strong>09-06-01</strong> Producer Danny Duncan trusts in Shure Products at the legendary Abbey Road Studios.</p> <p>&nbsp;</p>",
373
+ "link" : "/en",
374
+ "link_text" : "more"
375
+ },
376
+ "nodes" : {
377
+ "MetaData" : {
378
+ "meta" : {
379
+ "workspace" : "website",
380
+ "jcr:uuid" : "da44bef2-1b25-4b89-bbba-f74da878ff06",
381
+ "path" : "/home/orc_13/0/picture_teaser_items/01/MetaData",
382
+ "name" : "MetaData",
383
+ "jcr:primaryType" : "mgnl:metaData",
384
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
385
+ "depth" : 6,
386
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
387
+ "mixinNodeTypes" : [ ]
388
+ },
389
+ "properties" : {
390
+ "mgnl:activatorid" : "superuser",
391
+ "mgnl:authorid" : "superuser",
392
+ "mgnl:creationdate" : "2009-10-14T13:43:19.783+02:00",
393
+ "mgnl:lastaction" : "2012-10-05T15:25:05.889+02:00",
394
+ "mgnl:template" : "box_picture_teaser_item",
395
+ "mgnl:activated" : true,
396
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.125+01:00"
397
+ },
398
+ "nodes" : { }
399
+ },
400
+ "text_files" : {
401
+ "meta" : {
402
+ "workspace" : "website",
403
+ "jcr:uuid" : "ac02f204-32f9-4cd8-93cf-051bef6d404f",
404
+ "path" : "/home/orc_13/0/picture_teaser_items/01/text_files",
405
+ "name" : "text_files",
406
+ "jcr:primaryType" : "mgnl:contentNode",
407
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
408
+ "depth" : 6,
409
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
410
+ "mixinNodeTypes" : [ "mix:lockable" ]
411
+ },
412
+ "properties" : { },
413
+ "nodes" : {
414
+ "MetaData" : {
415
+ "meta" : {
416
+ "workspace" : "website",
417
+ "jcr:uuid" : "3ae0d782-7d03-4be2-99f7-e57c02c63011",
418
+ "path" : "/home/orc_13/0/picture_teaser_items/01/text_files/MetaData",
419
+ "name" : "MetaData",
420
+ "jcr:primaryType" : "mgnl:metaData",
421
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
422
+ "depth" : 7,
423
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
424
+ "mixinNodeTypes" : [ ]
425
+ },
426
+ "properties" : {
427
+ "mgnl:authorid" : "superuser",
428
+ "mgnl:activatorid" : "superuser",
429
+ "mgnl:lastaction" : "2012-10-05T15:25:05.889+02:00",
430
+ "mgnl:creationdate" : "2009-10-14T13:43:19.784+02:00",
431
+ "mgnl:activated" : true,
432
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.145+01:00"
433
+ },
434
+ "nodes" : { }
435
+ }
436
+ }
437
+ },
438
+ "sub_text_files" : {
439
+ "meta" : {
440
+ "workspace" : "website",
441
+ "jcr:uuid" : "84cec0e2-ddef-4cb2-8b73-04a97ac7e111",
442
+ "path" : "/home/orc_13/0/picture_teaser_items/01/sub_text_files",
443
+ "name" : "sub_text_files",
444
+ "jcr:primaryType" : "mgnl:contentNode",
445
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
446
+ "depth" : 6,
447
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
448
+ "mixinNodeTypes" : [ "mix:lockable" ]
449
+ },
450
+ "properties" : { },
451
+ "nodes" : {
452
+ "MetaData" : {
453
+ "meta" : {
454
+ "workspace" : "website",
455
+ "jcr:uuid" : "a845c857-14c1-493c-99bf-711a9d74cd34",
456
+ "path" : "/home/orc_13/0/picture_teaser_items/01/sub_text_files/MetaData",
457
+ "name" : "MetaData",
458
+ "jcr:primaryType" : "mgnl:metaData",
459
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
460
+ "depth" : 7,
461
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
462
+ "mixinNodeTypes" : [ ]
463
+ },
464
+ "properties" : {
465
+ "mgnl:authorid" : "superuser",
466
+ "mgnl:activatorid" : "superuser",
467
+ "mgnl:lastaction" : "2012-10-05T15:25:05.889+02:00",
468
+ "mgnl:creationdate" : "2009-10-14T13:43:19.786+02:00",
469
+ "mgnl:activated" : true,
470
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.146+01:00"
471
+ },
472
+ "nodes" : { }
473
+ }
474
+ }
475
+ }
476
+ }
477
+ }
478
+ }
479
+ }
480
+ }
481
+ }
482
+ }
483
+ }