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,191 @@
1
+ (function() {
2
+ // Technique from Juriy Zaytsev
3
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
4
+ function isEventSupported(eventName) {
5
+ var el = document.createElement('div');
6
+ eventName = 'on' + eventName;
7
+ var isSupported = (eventName in el);
8
+ if (!isSupported) {
9
+ el.setAttribute(eventName, 'return;');
10
+ isSupported = typeof el[eventName] == 'function';
11
+ }
12
+ el = null;
13
+ return isSupported;
14
+ }
15
+
16
+ function isForm(element) {
17
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM'
18
+ }
19
+
20
+ function isInput(element) {
21
+ if (Object.isElement(element)) {
22
+ var name = element.nodeName.toUpperCase()
23
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA'
24
+ }
25
+ else return false
26
+ }
27
+
28
+ var submitBubbles = isEventSupported('submit'),
29
+ changeBubbles = isEventSupported('change')
30
+
31
+ if (!submitBubbles || !changeBubbles) {
32
+ // augment the Event.Handler class to observe custom events when needed
33
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
34
+ function(init, element, eventName, selector, callback) {
35
+ init(element, eventName, selector, callback)
36
+ // is the handler being attached to an element that doesn't support this event?
37
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
38
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
39
+ // "submit" => "emulated:submit"
40
+ this.eventName = 'emulated:' + this.eventName
41
+ }
42
+ }
43
+ )
44
+ }
45
+
46
+ if (!submitBubbles) {
47
+ // discover forms on the page by observing focus events which always bubble
48
+ document.on('focusin', 'form', function(focusEvent, form) {
49
+ // special handler for the real "submit" event (one-time operation)
50
+ if (!form.retrieve('emulated:submit')) {
51
+ form.on('submit', function(submitEvent) {
52
+ var emulated = form.fire('emulated:submit', submitEvent, true)
53
+ // if custom event received preventDefault, cancel the real one too
54
+ if (emulated.returnValue === false) submitEvent.preventDefault()
55
+ })
56
+ form.store('emulated:submit', true)
57
+ }
58
+ })
59
+ }
60
+
61
+ if (!changeBubbles) {
62
+ // discover form inputs on the page
63
+ document.on('focusin', 'input, select, texarea', function(focusEvent, input) {
64
+ // special handler for real "change" events
65
+ if (!input.retrieve('emulated:change')) {
66
+ input.on('change', function(changeEvent) {
67
+ input.fire('emulated:change', changeEvent, true)
68
+ })
69
+ input.store('emulated:change', true)
70
+ }
71
+ })
72
+ }
73
+
74
+ function handleRemote(element) {
75
+ var method, url, params;
76
+
77
+ var event = element.fire("ajax:before");
78
+ if (event.stopped) return false;
79
+
80
+ if (element.tagName.toLowerCase() === 'form') {
81
+ method = element.readAttribute('method') || 'post';
82
+ url = element.readAttribute('action');
83
+ params = element.serialize();
84
+ } else {
85
+ method = element.readAttribute('data-method') || 'get';
86
+ url = element.readAttribute('href');
87
+ params = {};
88
+ }
89
+
90
+ new Ajax.Request(url, {
91
+ method: method,
92
+ parameters: params,
93
+ evalScripts: true,
94
+
95
+ onComplete: function(request) { element.fire("ajax:complete", request); },
96
+ onSuccess: function(request) { element.fire("ajax:success", request); },
97
+ onFailure: function(request) { element.fire("ajax:failure", request); }
98
+ });
99
+
100
+ element.fire("ajax:after");
101
+ }
102
+
103
+ function handleMethod(element) {
104
+ var method = element.readAttribute('data-method'),
105
+ url = element.readAttribute('href'),
106
+ csrf_param = $$('meta[name=csrf-param]')[0],
107
+ csrf_token = $$('meta[name=csrf-token]')[0];
108
+
109
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
110
+ element.parentNode.insert(form);
111
+
112
+ if (method !== 'post') {
113
+ var field = new Element('input', { type: 'hidden', name: '_method', value: method });
114
+ form.insert(field);
115
+ }
116
+
117
+ if (csrf_param) {
118
+ var param = csrf_param.readAttribute('content'),
119
+ token = csrf_token.readAttribute('content'),
120
+ field = new Element('input', { type: 'hidden', name: param, value: token });
121
+ form.insert(field);
122
+ }
123
+
124
+ form.submit();
125
+ }
126
+
127
+
128
+ document.on("click", "*[data-confirm]", function(event, element) {
129
+ var message = element.readAttribute('data-confirm');
130
+ if (!confirm(message)) event.stop();
131
+ });
132
+
133
+ document.on("click", "a[data-remote]", function(event, element) {
134
+ if (event.stopped) return;
135
+ handleRemote(element);
136
+ event.stop();
137
+ });
138
+
139
+ document.on("click", "a[data-method]", function(event, element) {
140
+ if (event.stopped) return;
141
+ handleMethod(element);
142
+ event.stop();
143
+ });
144
+
145
+ document.on("submit", function(event) {
146
+ var element = event.findElement(),
147
+ message = element.readAttribute('data-confirm');
148
+ if (message && !confirm(message)) {
149
+ event.stop();
150
+ return false;
151
+ }
152
+
153
+ var inputs = element.select("input[type=submit][data-disable-with]");
154
+ inputs.each(function(input) {
155
+ input.disabled = true;
156
+ input.writeAttribute('data-original-value', input.value);
157
+ input.value = input.readAttribute('data-disable-with');
158
+ });
159
+
160
+ var element = event.findElement("form[data-remote]");
161
+ if (element) {
162
+ handleRemote(element);
163
+ event.stop();
164
+ }
165
+ });
166
+
167
+ document.on("ajax:after", "form", function(event, element) {
168
+ var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
169
+ inputs.each(function(input) {
170
+ input.value = input.readAttribute('data-original-value');
171
+ input.removeAttribute('data-original-value');
172
+ input.disabled = false;
173
+ });
174
+ });
175
+
176
+ Ajax.Responders.register({
177
+ onCreate: function(request) {
178
+ var csrf_meta_tag = $$('meta[name=csrf-token]')[0];
179
+
180
+ if (csrf_meta_tag) {
181
+ var header = 'X-CSRF-Token',
182
+ token = csrf_meta_tag.readAttribute('content');
183
+
184
+ if (!request.options.requestHeaders) {
185
+ request.options.requestHeaders = {};
186
+ }
187
+ request.options.requestHeaders[header] = token;
188
+ }
189
+ }
190
+ });
191
+ })();
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,3 @@
1
+ {
2
+ "cacheKey" : "a11cd0d31248427cbadfd8a7bc51e04e96e4de98"
3
+ }
@@ -0,0 +1,22 @@
1
+ [ {
2
+ "meta" : {
3
+ "name" : "home",
4
+ "path" : "/home",
5
+ "mixinNodeTypes" : [ ],
6
+ "depth" : 1,
7
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode", "mgnl:activatable", "mgnl:content", "mgnl:created", "mgnl:lastModified", "mgnl:renderable", "mgnl:versionable" ],
8
+ "workspace" : "website",
9
+ "mgnl:lastModifiedBy" : "superuser",
10
+ "mgnl:template" : "themodule:pages/appplication",
11
+ "mgnl:created" : "2014-03-16T14:06:17.666+01:00",
12
+ "mgnl:createdBy" : "superuser",
13
+ "mgnl:lastModified" : "2014-03-18T15:57:51.329+01:00",
14
+ "jcr:uuid" : "684af75b-0504-467e-92ce-bea998cc8d8b",
15
+ "jcr:primaryType" : "mgnl:page",
16
+ "jcr:created" : "2014-03-16T14:06:17.666+01:00"
17
+ },
18
+ "properties" : {
19
+ "title" : "Page Title"
20
+ },
21
+ "nodes" : { }
22
+ } ]
@@ -0,0 +1,47 @@
1
+ {
2
+ "meta" : {
3
+ "workspace" : "<%= @workspace %>",
4
+ "jcr:uuid" : "21cbc762-bdcd-4520-9eff-1928986fb419",
5
+ "path" : "/home",
6
+ "name" : "home",
7
+ "jcr:primaryType" : "<%= @jcr_primary_type %>",
8
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
9
+ "depth" : 1,
10
+ "jcr:created" : "2010-04-13T09:35:01.000+02:00",
11
+ "mixinNodeTypes" : [ "mix:lockable" ],
12
+ "mgnl:template" : "<%= @mgnl_template %>"
13
+ },
14
+ "properties" : {
15
+ "title" : "Mikrofone, Funkmikrofone, Ohrhörer",
16
+ "meta_keywords" : "spitzen sound, extrem robust, profi musiker, tontechniker, bühnen, shure equipment",
17
+ "meta_title" : "Mikrofone, Funkmikrofone, Ohrhörer, Kopfhörer und In-Ear Monitoring Systeme",
18
+ "meta_description" : "Spitzen Sound und extrem robust.",
19
+ "boolean_true_test" : "true",
20
+ "boolean_false_test" : "false"
21
+ },
22
+ "nodes" : {
23
+ "MetaData" : {
24
+ "meta" : {
25
+ "workspace" : "<%= @workspace %>",
26
+ "jcr:uuid" : "f082dc7a-c23c-42bf-8338-60a6bd5a777b",
27
+ "path" : "/home/MetaData",
28
+ "name" : "MetaData",
29
+ "jcr:primaryType" : "mgnl:metaData",
30
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
31
+ "depth" : 2,
32
+ "jcr:created" : "2010-04-13T09:35:01.322+02:00",
33
+ "mixinNodeTypes" : [ ]
34
+ },
35
+ "properties" : {
36
+ "mgnl:activatorid" : "superuser",
37
+ "mgnl:authorid" : "superuser",
38
+ "mgnl:creationdate" : "2009-10-12T18:27:58.000+02:00",
39
+ "mgnl:lastaction" : "2012-10-05T15:25:05.000+02:00",
40
+ "mgnl:template" : "<%= @mgnl_template %>",
41
+ "mgnl:activated" : true,
42
+ "mgnl:lastmodified" : "2012-10-05T15:23:50.000+02:00"
43
+ },
44
+ "nodes" : { }
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "meta" : {
3
+ "workspace" : "<%= @workspace %>",
4
+ "jcr:uuid" : "21cbc762-bdcd-4520-9eff-1928986fb419",
5
+ "path" : "/home",
6
+ "name" : "home",
7
+ "jcr:primaryType" : "<%= @jcr_primary_type %>",
8
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode", "mgnl:activatable", "mgnl:content", "mgnl:created", "mgnl:lastModified", "mgnl:renderable", "mgnl:versionable" ],
9
+ "depth" : 1,
10
+ "jcr:created" : "2010-04-13T09:35:01.000+02:00",
11
+ "mixinNodeTypes" : [ ],
12
+ "mgnl:lastModifiedBy" : "superuser",
13
+ "mgnl:template" : "<%= @mgnl_template %>",
14
+ "mgnl:created" : "2014-03-16T14:06:17.666+01:00",
15
+ "mgnl:createdBy" : "superuser",
16
+ "mgnl:lastModified" : "2014-03-18T15:57:51.329+01:00"
17
+ },
18
+ "properties" : {
19
+ "title" : "Shure: Mikrofone, Funkmikrofone, Ohrhörer",
20
+ "meta_keywords" : "spitzen sound, extrem robust, profi musiker, tontechniker, bühnen, shure equipment",
21
+ "meta_title" : "Shure: Mikrofone, Funkmikrofone, Ohrhörer, Kopfhörer und In-Ear Monitoring Systeme",
22
+ "meta_description" : "Spitzen Sound und extrem robust: Seit 1925 entscheiden sich Profi Musiker und Tontechniker auf Bühnen weltweit für Shure Equipment.",
23
+ "boolean_true_test" : "true",
24
+ "boolean_false_test" : "false"
25
+ },
26
+ "nodes" : { }
27
+ }
@@ -0,0 +1,73 @@
1
+ [ {
2
+ "meta" : {
3
+ "path" : "/shure/support_downloads/education/tecnotes/Tecnotes_18_Sommer_10",
4
+ "depth" : 5,
5
+ "name" : "Tecnotes_18_Sommer_10",
6
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
7
+ "workspace" : "dms",
8
+ "mixinNodeTypes" : [ "mix:lockable" ],
9
+ "jcr:created" : "2009-12-07T11:51:17.093+01:00",
10
+ "jcr:uuid" : "6d0cd10d-0a99-4e93-a3df-4e4574500127",
11
+ "jcr:primaryType" : "mgnl:contentNode"
12
+ },
13
+ "properties" : {
14
+ "title" : "Tecnotes_18_Sommer_10",
15
+ "name" : "Tecnotes_18_Sommer_10",
16
+ "creator" : "superuser",
17
+ "type" : "pdf",
18
+ "subject" : "TecNotes Ausgabe 18, Sommer 2010",
19
+ "description" : "Some Description",
20
+ "modificationDate" : "2010-07-27T14:41:04.105+02:00",
21
+ "creationDate" : "2009-12-07T11:51:17.093+01:00",
22
+ "modifier" : "superuser",
23
+ "subject_de" : "TecNotes Ausgabe 18, Sommer 2010",
24
+ "date1" : "2013-06-05T22:00:00.000Z"
25
+ },
26
+ "nodes" : {
27
+ "MetaData" : {
28
+ "meta" : {
29
+ "path" : "/shure/support_downloads/education/tecnotes/Tecnotes_18_Sommer_10/MetaData",
30
+ "depth" : 6,
31
+ "name" : "MetaData",
32
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
33
+ "workspace" : "dms",
34
+ "mixinNodeTypes" : [ ],
35
+ "jcr:created" : "2009-12-07T11:51:17.093+01:00",
36
+ "jcr:uuid" : "f749ee7d-92b5-40ef-ba95-3fb9baccd0ec",
37
+ "jcr:primaryType" : "mgnl:metaData"
38
+ },
39
+ "properties" : {
40
+ "mgnl:authorid" : "superuser",
41
+ "mgnl:activatorid" : "superuser",
42
+ "mgnl:creationdate" : "2009-12-07T11:51:17.093+01:00",
43
+ "mgnl:lastaction" : "2010-10-26T01:18:53.545+08:00",
44
+ "mgnl:template" : "",
45
+ "mgnl:activated" : true,
46
+ "mgnl:lastmodified" : "2010-07-27T14:41:04.105+02:00"
47
+ },
48
+ "nodes" : { }
49
+ },
50
+ "document" : {
51
+ "meta" : {
52
+ "path" : "/shure/support_downloads/education/tecnotes/Tecnotes_18_Sommer_10/document",
53
+ "depth" : 6,
54
+ "name" : "document",
55
+ "superTypes" : [ "mix:lastModified", "mix:mimeType", "mix:referenceable", "nt:base", "nt:resource" ],
56
+ "workspace" : "dms",
57
+ "mixinNodeTypes" : [ ],
58
+ "jcr:uuid" : "f78aa183-4beb-4030-8108-3cff37538a64",
59
+ "jcr:primaryType" : "mgnl:resource"
60
+ },
61
+ "properties" : {
62
+ "size" : "5621165",
63
+ "extension" : "pdf",
64
+ "jcr:data" : "Binary Data Type not supported",
65
+ "jcr:mimeType" : "application/pdf",
66
+ "nodeDataTemplate" : "",
67
+ "jcr:lastModified" : "2010-07-27T14:41:04.102+02:00",
68
+ "fileName" : "Tecnotes_18_Sommer_10"
69
+ },
70
+ "nodes" : { }
71
+ }
72
+ }
73
+ } ]
@@ -0,0 +1,51 @@
1
+ [ {
2
+ "meta" : {
3
+ "path" : "/shure/support_downloads/education/tecnotes/Tecnotes_18_Sommer_10",
4
+ "depth" : 5,
5
+ "name" : "Tecnotes_18_Sommer_10",
6
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
7
+ "workspace" : "dam",
8
+ "mixinNodeTypes" : [ "mix:lockable" ],
9
+ "mgnl:lastModified" : "2010-07-27T14:41:04.105+02:00",
10
+ "jcr:created" : "2009-12-07T11:51:17.093+01:00",
11
+ "jcr:uuid" : "6d0cd10d-0a99-4e93-a3df-4e4574500127",
12
+ "jcr:primaryType" : "mgnl:asset"
13
+ },
14
+ "properties" : {
15
+ "title" : "Tecnotes_18_Sommer_10",
16
+ "name" : "Tecnotes_18_Sommer_10",
17
+ "creator" : "superuser",
18
+ "type" : "pdf",
19
+ "subject" : "TecNotes Ausgabe 18, Sommer 2010",
20
+ "description" : "Some Description",
21
+ "modificationDate" : "2010-07-27T14:41:04.105+02:00",
22
+ "creationDate" : "2009-12-07T11:51:17.093+01:00",
23
+ "modifier" : "superuser",
24
+ "subject_de" : "TecNotes Ausgabe 18, Sommer 2010",
25
+ "date1" : "2013-06-05T22:00:00.000Z"
26
+ },
27
+ "nodes" : {
28
+ "jcr:content" : {
29
+ "meta" : {
30
+ "path" : "/shure/support_downloads/education/tecnotes/Tecnotes_18_Sommer_10/document",
31
+ "depth" : 6,
32
+ "name" : "document",
33
+ "superTypes" : [ "mix:lastModified", "mix:mimeType", "mix:referenceable", "nt:base", "nt:resource" ],
34
+ "workspace" : "dam",
35
+ "mixinNodeTypes" : [ ],
36
+ "jcr:uuid" : "f78aa183-4beb-4030-8108-3cff37538a64",
37
+ "jcr:primaryType" : "mgnl:resource"
38
+ },
39
+ "properties" : {
40
+ "size" : "5621165",
41
+ "extension" : "pdf",
42
+ "jcr:data" : "Binary Data Type not supported",
43
+ "jcr:mimeType" : "application/pdf",
44
+ "nodeDataTemplate" : "",
45
+ "jcr:lastModified" : "2010-07-27T14:41:04.102+02:00",
46
+ "fileName" : "Tecnotes_18_Sommer_10"
47
+ },
48
+ "nodes" : { }
49
+ }
50
+ }
51
+ } ]
@@ -0,0 +1,1497 @@
1
+ [ {
2
+ "meta" : {
3
+ "workspace" : "website",
4
+ "jcr:uuid" : "21cbc762-bdcd-4520-9eff-1928986fb419",
5
+ "path" : "/home",
6
+ "name" : "home",
7
+ "jcr:primaryType" : "mgnl:content",
8
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
9
+ "depth" : 1,
10
+ "jcr:created" : "2010-04-13T09:35:01.000+02:00",
11
+ "mixinNodeTypes" : [ "mix:lockable" ]
12
+ },
13
+ "properties" : {
14
+ "title" : "Shure: Mikrofone, Funkmikrofone, Ohrhörer",
15
+ "meta_keywords" : "spitzen sound, extrem robust, profi musiker, tontechniker, bühnen, shure equipment",
16
+ "meta_title" : "Shure: Mikrofone, Funkmikrofone, Ohrhörer, Kopfhörer und In-Ear Monitoring Systeme",
17
+ "meta_description" : "Spitzen Sound und extrem robust: Seit 1925 entscheiden sich Profi Musiker und Tontechniker auf Bühnen weltweit für Shure Equipment.",
18
+ "boolean_true_test" : "true",
19
+ "boolean_false_test" : "false"
20
+ },
21
+ "nodes" : {
22
+ "MetaData" : {
23
+ "meta" : {
24
+ "workspace" : "website",
25
+ "jcr:uuid" : "f082dc7a-c23c-42bf-8338-60a6bd5a777b",
26
+ "path" : "/home/MetaData",
27
+ "name" : "MetaData",
28
+ "jcr:primaryType" : "mgnl:metaData",
29
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
30
+ "depth" : 2,
31
+ "jcr:created" : "2010-04-13T09:35:01.322+02:00",
32
+ "mixinNodeTypes" : [ ]
33
+ },
34
+ "properties" : {
35
+ "mgnl:activatorid" : "superuser",
36
+ "mgnl:authorid" : "superuser",
37
+ "mgnl:creationdate" : "2009-10-12T18:27:58.000+02:00",
38
+ "mgnl:lastaction" : "2012-10-05T15:25:05.000+02:00",
39
+ "mgnl:template" : "homepage",
40
+ "mgnl:activated" : true,
41
+ "mgnl:lastmodified" : "2012-10-05T15:23:50.000+02:00"
42
+ },
43
+ "nodes" : { }
44
+ },
45
+ "orc_13" : {
46
+ "meta" : {
47
+ "workspace" : "website",
48
+ "jcr:uuid" : "900985a3-319c-41c6-b327-b46d7fb56d23",
49
+ "path" : "/home/orc_13",
50
+ "name" : "orc_13",
51
+ "jcr:primaryType" : "mgnl:contentNode",
52
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
53
+ "depth" : 2,
54
+ "jcr:created" : "2010-04-13T09:35:01.995+02:00",
55
+ "mixinNodeTypes" : [ "mix:lockable" ]
56
+ },
57
+ "properties" : { },
58
+ "nodes" : {
59
+ "MetaData" : {
60
+ "meta" : {
61
+ "workspace" : "website",
62
+ "jcr:uuid" : "7f94dafd-6462-4356-8dd4-3c1cf3614dc9",
63
+ "path" : "/home/orc_13/MetaData",
64
+ "name" : "MetaData",
65
+ "jcr:primaryType" : "mgnl:metaData",
66
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
67
+ "depth" : 3,
68
+ "jcr:created" : "2010-04-13T09:35:01.995+02:00",
69
+ "mixinNodeTypes" : [ ]
70
+ },
71
+ "properties" : {
72
+ "mgnl:activatorid" : "superuser",
73
+ "mgnl:authorid" : "superuser",
74
+ "mgnl:creationdate" : "2009-10-13T13:56:44.219+02:00",
75
+ "mgnl:lastaction" : "2012-10-05T15:25:05.885+02:00",
76
+ "mgnl:activated" : true,
77
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.120+01:00"
78
+ },
79
+ "nodes" : { }
80
+ },
81
+ "0" : {
82
+ "meta" : {
83
+ "workspace" : "website",
84
+ "jcr:uuid" : "300b64c6-741a-44ce-acd8-e5d475fc5e4a",
85
+ "path" : "/home/orc_13/0",
86
+ "name" : "0",
87
+ "jcr:primaryType" : "mgnl:contentNode",
88
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
89
+ "depth" : 3,
90
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
91
+ "mixinNodeTypes" : [ "mix:lockable" ]
92
+ },
93
+ "properties" : {
94
+ "title" : "NEWS"
95
+ },
96
+ "nodes" : {
97
+ "MetaData" : {
98
+ "meta" : {
99
+ "workspace" : "website",
100
+ "jcr:uuid" : "49634e0f-9be0-4996-afd5-4a8cf798a371",
101
+ "path" : "/home/orc_13/0/MetaData",
102
+ "name" : "MetaData",
103
+ "jcr:primaryType" : "mgnl:metaData",
104
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
105
+ "depth" : 4,
106
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
107
+ "mixinNodeTypes" : [ ]
108
+ },
109
+ "properties" : {
110
+ "mgnl:authorid" : "superuser",
111
+ "mgnl:activatorid" : "superuser",
112
+ "mgnl:creationdate" : "2009-10-14T13:30:41.362+02:00",
113
+ "mgnl:lastaction" : "2012-10-05T15:25:05.886+02:00",
114
+ "mgnl:template" : "box_picture_teaser",
115
+ "mgnl:activated" : true,
116
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.120+01:00"
117
+ },
118
+ "nodes" : { }
119
+ },
120
+ "picture_teaser_items" : {
121
+ "meta" : {
122
+ "workspace" : "website",
123
+ "jcr:uuid" : "68581193-5dcc-43a0-a88e-81fd09eb932f",
124
+ "path" : "/home/orc_13/0/picture_teaser_items",
125
+ "name" : "picture_teaser_items",
126
+ "jcr:primaryType" : "mgnl:contentNode",
127
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
128
+ "depth" : 4,
129
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
130
+ "mixinNodeTypes" : [ "mix:lockable" ]
131
+ },
132
+ "properties" : { },
133
+ "nodes" : {
134
+ "MetaData" : {
135
+ "meta" : {
136
+ "workspace" : "website",
137
+ "jcr:uuid" : "26491b12-ca3a-4e20-ad09-a62f683a1d1e",
138
+ "path" : "/home/orc_13/0/picture_teaser_items/MetaData",
139
+ "name" : "MetaData",
140
+ "jcr:primaryType" : "mgnl:metaData",
141
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
142
+ "depth" : 5,
143
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
144
+ "mixinNodeTypes" : [ ]
145
+ },
146
+ "properties" : {
147
+ "mgnl:activatorid" : "superuser",
148
+ "mgnl:authorid" : "superuser",
149
+ "mgnl:creationdate" : "2009-10-14T13:32:19.751+02:00",
150
+ "mgnl:lastaction" : "2012-10-05T15:25:05.886+02:00",
151
+ "mgnl:activated" : true,
152
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.121+01:00"
153
+ },
154
+ "nodes" : { }
155
+ },
156
+ "0" : {
157
+ "meta" : {
158
+ "workspace" : "website",
159
+ "jcr:uuid" : "57728e65-bf14-4965-aa96-e9ce217364f9",
160
+ "path" : "/home/orc_13/0/picture_teaser_items/0",
161
+ "name" : "0",
162
+ "jcr:primaryType" : "mgnl:contentNode",
163
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
164
+ "depth" : 5,
165
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
166
+ "mixinNodeTypes" : [ "mix:lockable" ]
167
+ },
168
+ "properties" : {
169
+ "title" : "PRODUCTS",
170
+ "image" : "f45b504f-6449-46ab-b0cd-e0f275646db3",
171
+ "sub_text" : "<p><a href=\"#\">Show all product-news<br /> </a></p>",
172
+ "link" : "/en",
173
+ "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>",
174
+ "link_text" : "more"
175
+ },
176
+ "nodes" : {
177
+ "MetaData" : {
178
+ "meta" : {
179
+ "workspace" : "website",
180
+ "jcr:uuid" : "cad133fa-f3ab-4d1c-86bb-4d31f964ce47",
181
+ "path" : "/home/orc_13/0/picture_teaser_items/0/MetaData",
182
+ "name" : "MetaData",
183
+ "jcr:primaryType" : "mgnl:metaData",
184
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
185
+ "depth" : 6,
186
+ "jcr:created" : "2010-04-13T09:35:01.996+02:00",
187
+ "mixinNodeTypes" : [ ]
188
+ },
189
+ "properties" : {
190
+ "mgnl:activatorid" : "superuser",
191
+ "mgnl:authorid" : "superuser",
192
+ "mgnl:lastaction" : "2012-10-05T15:25:05.887+02:00",
193
+ "mgnl:creationdate" : "2009-10-14T13:32:19.752+02:00",
194
+ "mgnl:template" : "box_picture_teaser_item",
195
+ "mgnl:activated" : true,
196
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.121+01:00"
197
+ },
198
+ "nodes" : { }
199
+ },
200
+ "text_files" : {
201
+ "meta" : {
202
+ "workspace" : "website",
203
+ "jcr:uuid" : "2bc4e9cd-dfc1-4e91-b0e5-978b40bb899c",
204
+ "path" : "/home/orc_13/0/picture_teaser_items/0/text_files",
205
+ "name" : "text_files",
206
+ "jcr:primaryType" : "mgnl:contentNode",
207
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
208
+ "depth" : 6,
209
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
210
+ "mixinNodeTypes" : [ "mix:lockable" ]
211
+ },
212
+ "properties" : { },
213
+ "nodes" : {
214
+ "MetaData" : {
215
+ "meta" : {
216
+ "workspace" : "website",
217
+ "jcr:uuid" : "63a49eff-017e-4da0-aa8f-47cdeb03a6d8",
218
+ "path" : "/home/orc_13/0/picture_teaser_items/0/text_files/MetaData",
219
+ "name" : "MetaData",
220
+ "jcr:primaryType" : "mgnl:metaData",
221
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
222
+ "depth" : 7,
223
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
224
+ "mixinNodeTypes" : [ ]
225
+ },
226
+ "properties" : {
227
+ "mgnl:activatorid" : "superuser",
228
+ "mgnl:authorid" : "superuser",
229
+ "mgnl:lastaction" : "2012-10-05T15:25:05.887+02:00",
230
+ "mgnl:creationdate" : "2009-10-14T13:32:19.753+02:00",
231
+ "mgnl:activated" : true,
232
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.122+01:00"
233
+ },
234
+ "nodes" : { }
235
+ }
236
+ }
237
+ },
238
+ "sub_text_files" : {
239
+ "meta" : {
240
+ "workspace" : "website",
241
+ "jcr:uuid" : "6dfc3271-0e13-43b7-ae67-7a6db9f1fa8b",
242
+ "path" : "/home/orc_13/0/picture_teaser_items/0/sub_text_files",
243
+ "name" : "sub_text_files",
244
+ "jcr:primaryType" : "mgnl:contentNode",
245
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
246
+ "depth" : 6,
247
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
248
+ "mixinNodeTypes" : [ "mix:lockable" ]
249
+ },
250
+ "properties" : { },
251
+ "nodes" : {
252
+ "MetaData" : {
253
+ "meta" : {
254
+ "workspace" : "website",
255
+ "jcr:uuid" : "c729811f-5bfb-4811-b2c4-a74e85d3a839",
256
+ "path" : "/home/orc_13/0/picture_teaser_items/0/sub_text_files/MetaData",
257
+ "name" : "MetaData",
258
+ "jcr:primaryType" : "mgnl:metaData",
259
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
260
+ "depth" : 7,
261
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
262
+ "mixinNodeTypes" : [ ]
263
+ },
264
+ "properties" : {
265
+ "mgnl:authorid" : "superuser",
266
+ "mgnl:activatorid" : "superuser",
267
+ "mgnl:creationdate" : "2009-10-14T13:32:19.755+02:00",
268
+ "mgnl:lastaction" : "2012-10-05T15:25:05.887+02:00",
269
+ "mgnl:activated" : true,
270
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.123+01:00"
271
+ },
272
+ "nodes" : { }
273
+ }
274
+ }
275
+ }
276
+ }
277
+ },
278
+ "00" : {
279
+ "meta" : {
280
+ "workspace" : "website",
281
+ "jcr:uuid" : "03f2e1ec-793f-4224-9b65-6b38b3c6a6a3",
282
+ "path" : "/home/orc_13/0/picture_teaser_items/00",
283
+ "name" : "00",
284
+ "jcr:primaryType" : "mgnl:contentNode",
285
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
286
+ "depth" : 5,
287
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
288
+ "mixinNodeTypes" : [ "mix:lockable" ]
289
+ },
290
+ "properties" : {
291
+ "title" : "HOW-TO",
292
+ "image" : "fabd1b49-8272-4347-9751-bf5fe32eec5e",
293
+ "sub_text" : "<p><a href=\"#\">Show all how-to guides<br /> </a></p>",
294
+ "link" : "/en",
295
+ "text" : "<p><strong>09-05-19</strong> Shure Sound Isolating Earphones: Use this interactive demonstration to find tips on the best fit.</p>",
296
+ "link_text" : "more"
297
+ },
298
+ "nodes" : {
299
+ "MetaData" : {
300
+ "meta" : {
301
+ "workspace" : "website",
302
+ "jcr:uuid" : "7377a54e-bf87-45df-b891-0dd7b80c9262",
303
+ "path" : "/home/orc_13/0/picture_teaser_items/00/MetaData",
304
+ "name" : "MetaData",
305
+ "jcr:primaryType" : "mgnl:metaData",
306
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
307
+ "depth" : 6,
308
+ "jcr:created" : "2010-04-13T09:35:01.997+02:00",
309
+ "mixinNodeTypes" : [ ]
310
+ },
311
+ "properties" : {
312
+ "mgnl:authorid" : "superuser",
313
+ "mgnl:activatorid" : "superuser",
314
+ "mgnl:creationdate" : "2009-10-14T13:39:04.407+02:00",
315
+ "mgnl:lastaction" : "2012-10-05T15:25:05.888+02:00",
316
+ "mgnl:template" : "box_picture_teaser_item",
317
+ "mgnl:activated" : true,
318
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.123+01:00"
319
+ },
320
+ "nodes" : { }
321
+ },
322
+ "text_files" : {
323
+ "meta" : {
324
+ "workspace" : "website",
325
+ "jcr:uuid" : "787c87ad-8ac4-4db3-8e96-94bd6673ab84",
326
+ "path" : "/home/orc_13/0/picture_teaser_items/00/text_files",
327
+ "name" : "text_files",
328
+ "jcr:primaryType" : "mgnl:contentNode",
329
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
330
+ "depth" : 6,
331
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
332
+ "mixinNodeTypes" : [ "mix:lockable" ]
333
+ },
334
+ "properties" : { },
335
+ "nodes" : {
336
+ "MetaData" : {
337
+ "meta" : {
338
+ "workspace" : "website",
339
+ "jcr:uuid" : "0925ec20-13a0-40b9-96c2-c24e101a857d",
340
+ "path" : "/home/orc_13/0/picture_teaser_items/00/text_files/MetaData",
341
+ "name" : "MetaData",
342
+ "jcr:primaryType" : "mgnl:metaData",
343
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
344
+ "depth" : 7,
345
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
346
+ "mixinNodeTypes" : [ ]
347
+ },
348
+ "properties" : {
349
+ "mgnl:authorid" : "superuser",
350
+ "mgnl:activatorid" : "superuser",
351
+ "mgnl:lastaction" : "2012-10-05T15:25:05.888+02:00",
352
+ "mgnl:creationdate" : "2009-10-14T13:39:04.408+02:00",
353
+ "mgnl:activated" : true,
354
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.124+01:00"
355
+ },
356
+ "nodes" : { }
357
+ }
358
+ }
359
+ },
360
+ "sub_text_files" : {
361
+ "meta" : {
362
+ "workspace" : "website",
363
+ "jcr:uuid" : "2f4cc085-1c98-442a-aed5-8b60c9d30aa5",
364
+ "path" : "/home/orc_13/0/picture_teaser_items/00/sub_text_files",
365
+ "name" : "sub_text_files",
366
+ "jcr:primaryType" : "mgnl:contentNode",
367
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
368
+ "depth" : 6,
369
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
370
+ "mixinNodeTypes" : [ "mix:lockable" ]
371
+ },
372
+ "properties" : { },
373
+ "nodes" : {
374
+ "MetaData" : {
375
+ "meta" : {
376
+ "workspace" : "website",
377
+ "jcr:uuid" : "161a5277-93bb-495c-a38d-ffe6b43816a3",
378
+ "path" : "/home/orc_13/0/picture_teaser_items/00/sub_text_files/MetaData",
379
+ "name" : "MetaData",
380
+ "jcr:primaryType" : "mgnl:metaData",
381
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
382
+ "depth" : 7,
383
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
384
+ "mixinNodeTypes" : [ ]
385
+ },
386
+ "properties" : {
387
+ "mgnl:activatorid" : "superuser",
388
+ "mgnl:authorid" : "superuser",
389
+ "mgnl:lastaction" : "2012-10-05T15:25:05.888+02:00",
390
+ "mgnl:creationdate" : "2009-10-14T13:39:04.410+02:00",
391
+ "mgnl:activated" : true,
392
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.124+01:00"
393
+ },
394
+ "nodes" : { }
395
+ }
396
+ }
397
+ }
398
+ }
399
+ },
400
+ "01" : {
401
+ "meta" : {
402
+ "workspace" : "website",
403
+ "jcr:uuid" : "77064f19-d9be-42fa-a507-8534f444c091",
404
+ "path" : "/home/orc_13/0/picture_teaser_items/01",
405
+ "name" : "01",
406
+ "jcr:primaryType" : "mgnl:contentNode",
407
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
408
+ "depth" : 5,
409
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
410
+ "mixinNodeTypes" : [ "mix:lockable" ]
411
+ },
412
+ "properties" : {
413
+ "title" : "STAGE TALK",
414
+ "image" : "a3b0d687-4c6d-420b-a6f0-cc7d4415f8ff",
415
+ "sub_text" : "<p>Show all of stage talk</p>",
416
+ "text" : "<p><strong>09-06-01</strong> Producer Danny Duncan trusts in Shure Products at the legendary Abbey Road Studios.</p> <p>&nbsp;</p>",
417
+ "link" : "/en",
418
+ "link_text" : "more"
419
+ },
420
+ "nodes" : {
421
+ "MetaData" : {
422
+ "meta" : {
423
+ "workspace" : "website",
424
+ "jcr:uuid" : "da44bef2-1b25-4b89-bbba-f74da878ff06",
425
+ "path" : "/home/orc_13/0/picture_teaser_items/01/MetaData",
426
+ "name" : "MetaData",
427
+ "jcr:primaryType" : "mgnl:metaData",
428
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
429
+ "depth" : 6,
430
+ "jcr:created" : "2010-04-13T09:35:01.998+02:00",
431
+ "mixinNodeTypes" : [ ]
432
+ },
433
+ "properties" : {
434
+ "mgnl:activatorid" : "superuser",
435
+ "mgnl:authorid" : "superuser",
436
+ "mgnl:creationdate" : "2009-10-14T13:43:19.783+02:00",
437
+ "mgnl:lastaction" : "2012-10-05T15:25:05.889+02:00",
438
+ "mgnl:template" : "box_picture_teaser_item",
439
+ "mgnl:activated" : true,
440
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.125+01:00"
441
+ },
442
+ "nodes" : { }
443
+ },
444
+ "text_files" : {
445
+ "meta" : {
446
+ "workspace" : "website",
447
+ "jcr:uuid" : "ac02f204-32f9-4cd8-93cf-051bef6d404f",
448
+ "path" : "/home/orc_13/0/picture_teaser_items/01/text_files",
449
+ "name" : "text_files",
450
+ "jcr:primaryType" : "mgnl:contentNode",
451
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
452
+ "depth" : 6,
453
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
454
+ "mixinNodeTypes" : [ "mix:lockable" ]
455
+ },
456
+ "properties" : { },
457
+ "nodes" : {
458
+ "MetaData" : {
459
+ "meta" : {
460
+ "workspace" : "website",
461
+ "jcr:uuid" : "3ae0d782-7d03-4be2-99f7-e57c02c63011",
462
+ "path" : "/home/orc_13/0/picture_teaser_items/01/text_files/MetaData",
463
+ "name" : "MetaData",
464
+ "jcr:primaryType" : "mgnl:metaData",
465
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
466
+ "depth" : 7,
467
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
468
+ "mixinNodeTypes" : [ ]
469
+ },
470
+ "properties" : {
471
+ "mgnl:authorid" : "superuser",
472
+ "mgnl:activatorid" : "superuser",
473
+ "mgnl:lastaction" : "2012-10-05T15:25:05.889+02:00",
474
+ "mgnl:creationdate" : "2009-10-14T13:43:19.784+02:00",
475
+ "mgnl:activated" : true,
476
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.145+01:00"
477
+ },
478
+ "nodes" : { }
479
+ }
480
+ }
481
+ },
482
+ "sub_text_files" : {
483
+ "meta" : {
484
+ "workspace" : "website",
485
+ "jcr:uuid" : "84cec0e2-ddef-4cb2-8b73-04a97ac7e111",
486
+ "path" : "/home/orc_13/0/picture_teaser_items/01/sub_text_files",
487
+ "name" : "sub_text_files",
488
+ "jcr:primaryType" : "mgnl:contentNode",
489
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
490
+ "depth" : 6,
491
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
492
+ "mixinNodeTypes" : [ "mix:lockable" ]
493
+ },
494
+ "properties" : { },
495
+ "nodes" : {
496
+ "MetaData" : {
497
+ "meta" : {
498
+ "workspace" : "website",
499
+ "jcr:uuid" : "a845c857-14c1-493c-99bf-711a9d74cd34",
500
+ "path" : "/home/orc_13/0/picture_teaser_items/01/sub_text_files/MetaData",
501
+ "name" : "MetaData",
502
+ "jcr:primaryType" : "mgnl:metaData",
503
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
504
+ "depth" : 7,
505
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
506
+ "mixinNodeTypes" : [ ]
507
+ },
508
+ "properties" : {
509
+ "mgnl:authorid" : "superuser",
510
+ "mgnl:activatorid" : "superuser",
511
+ "mgnl:lastaction" : "2012-10-05T15:25:05.889+02:00",
512
+ "mgnl:creationdate" : "2009-10-14T13:43:19.786+02:00",
513
+ "mgnl:activated" : true,
514
+ "mgnl:lastmodified" : "2009-10-26T16:50:45.146+01:00"
515
+ },
516
+ "nodes" : { }
517
+ }
518
+ }
519
+ }
520
+ }
521
+ }
522
+ }
523
+ }
524
+ }
525
+ }
526
+ }
527
+ },
528
+ "orc_8" : {
529
+ "meta" : {
530
+ "workspace" : "website",
531
+ "jcr:uuid" : "c00f54e8-e290-4b11-81c5-e47af5342f1d",
532
+ "path" : "/home/orc_8",
533
+ "name" : "orc_8",
534
+ "jcr:primaryType" : "mgnl:contentNode",
535
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
536
+ "depth" : 2,
537
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
538
+ "mixinNodeTypes" : [ "mix:lockable" ]
539
+ },
540
+ "properties" : { },
541
+ "nodes" : {
542
+ "MetaData" : {
543
+ "meta" : {
544
+ "workspace" : "website",
545
+ "jcr:uuid" : "835b4d36-7e2b-4635-8cf8-4eb86876adac",
546
+ "path" : "/home/orc_8/MetaData",
547
+ "name" : "MetaData",
548
+ "jcr:primaryType" : "mgnl:metaData",
549
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
550
+ "depth" : 3,
551
+ "jcr:created" : "2010-04-13T09:35:01.999+02:00",
552
+ "mixinNodeTypes" : [ ]
553
+ },
554
+ "properties" : {
555
+ "mgnl:authorid" : "superuser",
556
+ "mgnl:activatorid" : "superuser",
557
+ "mgnl:creationdate" : "2009-10-15T18:40:36.622+02:00",
558
+ "mgnl:lastaction" : "2012-10-05T15:25:05.890+02:00",
559
+ "mgnl:activated" : true,
560
+ "mgnl:lastmodified" : "2012-06-28T16:03:48.016+02:00"
561
+ },
562
+ "nodes" : { }
563
+ },
564
+ "00" : {
565
+ "meta" : {
566
+ "workspace" : "website",
567
+ "jcr:uuid" : "e6e8b28c-f2d8-422f-9315-82178feb30d0",
568
+ "path" : "/home/orc_8/00",
569
+ "name" : "00",
570
+ "jcr:primaryType" : "mgnl:contentNode",
571
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
572
+ "depth" : 3,
573
+ "jcr:created" : "2010-04-13T09:35:02.000+02:00",
574
+ "mixinNodeTypes" : [ "mix:lockable" ]
575
+ },
576
+ "properties" : {
577
+ "link_3" : "72441e8e-002a-41cd-8550-8e56013d4bca",
578
+ "image_2" : "1b75ab6c-fbce-4de1-8056-c8f07595b6ab",
579
+ "link_2" : "7155556e-8eb3-4eb8-8431-0ed38dabd222",
580
+ "image_1" : "bcf9683f-4375-4c13-ad53-6922f21e0c0a",
581
+ "link_1" : "385c3259-78e0-490e-8075-8edeed5fbd16",
582
+ "headline_1" : "FP Kamera-Funksysteme",
583
+ "image_4" : "0dc61b7f-4f74-4369-8645-1f7fd4744ac0",
584
+ "link_4" : "/home/produkte/empfaenger/ur5",
585
+ "image_3" : "f8a0133e-50f5-4fe2-b025-a7cc105ebe79",
586
+ "text_1" : "Elektr. Berichterstattung, Event-Aufnahmen, Interviews",
587
+ "text_2" : "Für anspruchsvolle Installationsanwendungen",
588
+ "text_3" : "SRH1440 und SRH1840",
589
+ "text_4" : "Jetzt erhältlich",
590
+ "headline_4" : "UR5 Portabler Diversity Empfänger",
591
+ "headline_3" : "Kopfhörer in offener Bauweise",
592
+ "headline_2" : "ULX-D Digitale Funksysteme"
593
+ },
594
+ "nodes" : {
595
+ "MetaData" : {
596
+ "meta" : {
597
+ "workspace" : "website",
598
+ "jcr:uuid" : "257fe99b-f2c7-425f-a133-d869054248b5",
599
+ "path" : "/home/orc_8/00/MetaData",
600
+ "name" : "MetaData",
601
+ "jcr:primaryType" : "mgnl:metaData",
602
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
603
+ "depth" : 4,
604
+ "jcr:created" : "2010-04-13T09:35:02.000+02:00",
605
+ "mixinNodeTypes" : [ ]
606
+ },
607
+ "properties" : {
608
+ "mgnl:activatorid" : "superuser",
609
+ "mgnl:authorid" : "superuser",
610
+ "mgnl:creationdate" : "2009-10-27T09:00:30.014+01:00",
611
+ "mgnl:lastaction" : "2012-10-05T15:25:05.890+02:00",
612
+ "mgnl:template" : "box_title_slideshow",
613
+ "mgnl:activated" : true,
614
+ "mgnl:lastmodified" : "2012-06-28T16:03:48.016+02:00"
615
+ },
616
+ "nodes" : { }
617
+ },
618
+ "long_text_files" : {
619
+ "meta" : {
620
+ "workspace" : "website",
621
+ "jcr:uuid" : "bcc9f839-c31f-469f-a222-7a45c4bf9376",
622
+ "path" : "/home/orc_8/00/long_text_files",
623
+ "name" : "long_text_files",
624
+ "jcr:primaryType" : "mgnl:contentNode",
625
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
626
+ "depth" : 4,
627
+ "jcr:created" : "2010-04-13T09:35:02.000+02:00",
628
+ "mixinNodeTypes" : [ "mix:lockable" ]
629
+ },
630
+ "properties" : { },
631
+ "nodes" : {
632
+ "MetaData" : {
633
+ "meta" : {
634
+ "workspace" : "website",
635
+ "jcr:uuid" : "999eb5f5-ca35-495b-833e-ee0485e04f77",
636
+ "path" : "/home/orc_8/00/long_text_files/MetaData",
637
+ "name" : "MetaData",
638
+ "jcr:primaryType" : "mgnl:metaData",
639
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
640
+ "depth" : 5,
641
+ "jcr:created" : "2010-04-13T09:35:02.000+02:00",
642
+ "mixinNodeTypes" : [ ]
643
+ },
644
+ "properties" : {
645
+ "mgnl:activatorid" : "superuser",
646
+ "mgnl:authorid" : "superuser",
647
+ "mgnl:creationdate" : "2009-10-27T09:00:30.016+01:00",
648
+ "mgnl:lastaction" : "2012-10-05T15:25:05.890+02:00",
649
+ "mgnl:activated" : true,
650
+ "mgnl:lastmodified" : "2009-10-28T13:06:14.596+01:00"
651
+ },
652
+ "nodes" : { }
653
+ }
654
+ }
655
+ }
656
+ }
657
+ }
658
+ }
659
+ },
660
+ "orc_4" : {
661
+ "meta" : {
662
+ "workspace" : "website",
663
+ "jcr:uuid" : "dfee8546-7821-4c6f-a42e-3dbeb397761b",
664
+ "path" : "/home/orc_4",
665
+ "name" : "orc_4",
666
+ "jcr:primaryType" : "mgnl:contentNode",
667
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
668
+ "depth" : 2,
669
+ "jcr:created" : "2010-04-13T09:35:02.000+02:00",
670
+ "mixinNodeTypes" : [ "mix:lockable" ]
671
+ },
672
+ "properties" : { },
673
+ "nodes" : {
674
+ "MetaData" : {
675
+ "meta" : {
676
+ "workspace" : "website",
677
+ "jcr:uuid" : "42d6b33b-af79-4d5e-a6cf-6191a9a1e639",
678
+ "path" : "/home/orc_4/MetaData",
679
+ "name" : "MetaData",
680
+ "jcr:primaryType" : "mgnl:metaData",
681
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
682
+ "depth" : 3,
683
+ "jcr:created" : "2010-04-13T09:35:02.000+02:00",
684
+ "mixinNodeTypes" : [ ]
685
+ },
686
+ "properties" : {
687
+ "mgnl:activatorid" : "superuser",
688
+ "mgnl:authorid" : "superuser",
689
+ "mgnl:creationdate" : "2009-10-27T09:07:53.874+01:00",
690
+ "mgnl:lastaction" : "2012-10-05T15:25:05.891+02:00",
691
+ "mgnl:activated" : true,
692
+ "mgnl:lastmodified" : "2012-10-05T15:23:50.207+02:00"
693
+ },
694
+ "nodes" : { }
695
+ },
696
+ "0" : {
697
+ "meta" : {
698
+ "workspace" : "website",
699
+ "jcr:uuid" : "c78d6ac4-d7fd-4e4f-a08e-184ff541ba21",
700
+ "path" : "/home/orc_4/0",
701
+ "name" : "0",
702
+ "jcr:primaryType" : "mgnl:contentNode",
703
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
704
+ "depth" : 3,
705
+ "jcr:created" : "2010-04-13T09:35:02.001+02:00",
706
+ "mixinNodeTypes" : [ "mix:lockable" ]
707
+ },
708
+ "properties" : {
709
+ "title" : "FINDE DAS RICHTIGE MIKROFON",
710
+ "width" : "2",
711
+ "background" : "dark",
712
+ "row1" : "<ul> <li><a href=\"/produkte/mikrofone/gesangsmikrofone\">Gesang</a></li> <li><a href=\"/produkte/mikrofone/gitarrenmikrofone\">Gitarren</a></li> <li><a href=\"/produkte/mikrofone/instrumentenmikrofone\">Instrumente</a></li> <li><a href=\"/produkte/mikrofone/drum-mikrofone\">Drums &amp; Percussion</a></li> <li><a href=\"/produkte/mikrofone/kamera-mikrofon-broadcasting\">Broadcasting</a></li> </ul>",
713
+ "row2" : "<ul> <li><a href=\"/produkte/mikrofone/headset-mikrofone\">Headsets</a></li> <li><a href=\"/produkte/mikrofone/lavalier-mikrofone\">Lavaliers</a></li> <li><a href=\"/produkte/mikrofone/homerecording\">Homerecording</a></li> <li><a href=\"/produkte/mikrofone/studio-mikrofone\">Professionelles Studio</a></li> <li><a href=\"/produkte/mikrofone/installationsmikrofone\">Installationsmikrofone</a></li> </ul> <p>&nbsp;</p>"
714
+ },
715
+ "nodes" : {
716
+ "MetaData" : {
717
+ "meta" : {
718
+ "workspace" : "website",
719
+ "jcr:uuid" : "ab4e8b21-97d5-4cdc-af77-b2f23fbf5f3f",
720
+ "path" : "/home/orc_4/0/MetaData",
721
+ "name" : "MetaData",
722
+ "jcr:primaryType" : "mgnl:metaData",
723
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
724
+ "depth" : 4,
725
+ "jcr:created" : "2010-04-13T09:35:02.001+02:00",
726
+ "mixinNodeTypes" : [ ]
727
+ },
728
+ "properties" : {
729
+ "mgnl:authorid" : "superuser",
730
+ "mgnl:activatorid" : "superuser",
731
+ "mgnl:lastaction" : "2012-10-05T15:25:05.891+02:00",
732
+ "mgnl:creationdate" : "2009-10-27T09:07:53.875+01:00",
733
+ "mgnl:template" : "box_link",
734
+ "mgnl:activated" : true,
735
+ "mgnl:lastmodified" : "2012-10-05T15:22:47.240+02:00"
736
+ },
737
+ "nodes" : { }
738
+ },
739
+ "row1_files" : {
740
+ "meta" : {
741
+ "workspace" : "website",
742
+ "jcr:uuid" : "0d943679-3092-49fc-af96-2d7f39e4b12c",
743
+ "path" : "/home/orc_4/0/row1_files",
744
+ "name" : "row1_files",
745
+ "jcr:primaryType" : "mgnl:contentNode",
746
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
747
+ "depth" : 4,
748
+ "jcr:created" : "2010-04-13T09:35:02.001+02:00",
749
+ "mixinNodeTypes" : [ "mix:lockable" ]
750
+ },
751
+ "properties" : { },
752
+ "nodes" : {
753
+ "MetaData" : {
754
+ "meta" : {
755
+ "workspace" : "website",
756
+ "jcr:uuid" : "e848102c-a9fc-4cb1-8712-6d552be6fd0c",
757
+ "path" : "/home/orc_4/0/row1_files/MetaData",
758
+ "name" : "MetaData",
759
+ "jcr:primaryType" : "mgnl:metaData",
760
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
761
+ "depth" : 5,
762
+ "jcr:created" : "2010-04-13T09:35:02.001+02:00",
763
+ "mixinNodeTypes" : [ ]
764
+ },
765
+ "properties" : {
766
+ "mgnl:activatorid" : "superuser",
767
+ "mgnl:authorid" : "superuser",
768
+ "mgnl:lastaction" : "2012-10-05T15:25:05.892+02:00",
769
+ "mgnl:creationdate" : "2009-10-27T09:07:53.876+01:00",
770
+ "mgnl:activated" : true,
771
+ "mgnl:lastmodified" : "2009-10-28T13:06:47.128+01:00"
772
+ },
773
+ "nodes" : { }
774
+ }
775
+ }
776
+ },
777
+ "row2_files" : {
778
+ "meta" : {
779
+ "workspace" : "website",
780
+ "jcr:uuid" : "56141e00-dcd2-47a7-aa51-8ce3432535a1",
781
+ "path" : "/home/orc_4/0/row2_files",
782
+ "name" : "row2_files",
783
+ "jcr:primaryType" : "mgnl:contentNode",
784
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
785
+ "depth" : 4,
786
+ "jcr:created" : "2010-04-13T09:35:02.001+02:00",
787
+ "mixinNodeTypes" : [ "mix:lockable" ]
788
+ },
789
+ "properties" : { },
790
+ "nodes" : {
791
+ "MetaData" : {
792
+ "meta" : {
793
+ "workspace" : "website",
794
+ "jcr:uuid" : "451ca8f8-a4a4-4a4e-aed3-ba78bcbad552",
795
+ "path" : "/home/orc_4/0/row2_files/MetaData",
796
+ "name" : "MetaData",
797
+ "jcr:primaryType" : "mgnl:metaData",
798
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
799
+ "depth" : 5,
800
+ "jcr:created" : "2010-04-13T09:35:02.001+02:00",
801
+ "mixinNodeTypes" : [ ]
802
+ },
803
+ "properties" : {
804
+ "mgnl:activatorid" : "superuser",
805
+ "mgnl:authorid" : "superuser",
806
+ "mgnl:lastaction" : "2012-10-05T15:25:05.892+02:00",
807
+ "mgnl:creationdate" : "2009-10-27T09:07:53.876+01:00",
808
+ "mgnl:activated" : true,
809
+ "mgnl:lastmodified" : "2009-10-28T13:06:47.130+01:00"
810
+ },
811
+ "nodes" : { }
812
+ }
813
+ }
814
+ }
815
+ }
816
+ },
817
+ "00" : {
818
+ "meta" : {
819
+ "workspace" : "website",
820
+ "jcr:uuid" : "041bba13-a23d-4cfa-aff6-5e5c9697c6db",
821
+ "path" : "/home/orc_4/00",
822
+ "name" : "00",
823
+ "jcr:primaryType" : "mgnl:contentNode",
824
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
825
+ "depth" : 3,
826
+ "jcr:created" : "2010-04-13T09:35:02.002+02:00",
827
+ "mixinNodeTypes" : [ "mix:lockable" ]
828
+ },
829
+ "properties" : {
830
+ "title" : "SHURE Produkte",
831
+ "width" : "2",
832
+ "background" : "dark",
833
+ "row1" : "<ul> <li><a href=\"/produkte/mikrofone\">Mikrofone</a></li> <li><a href=\"/produkte/funkmikrofon_systeme\">Funksysteme</a></li> <li><a href=\"/produkte/in_ear_monitoring\">In-Ear Monitoring</a></li> <li><a href=\"/produkte/mixer\">Mischer &amp; DSP</a></li> <li><a href=\"/news_kuenstler/produktneuheiten\">Neuheiten</a></li> </ul>",
834
+ "row2" : "<ul> <li><a href=\"/produkte/ohrhoerer\">Ohrh&ouml;rer</a></li> <li><a href=\"/produkte/kopfhoerer\">Kopfh&ouml;rer</a></li> <li><a href=\"/produkte/zubehoer\">Zubeh&ouml;r</a></li> <li><a href=\"/produkte/dj_phono\">DJ Phono</a></li> <li><a href=\"/produkte/eingestellte-produkte\">Eingestellt</a></li> </ul>"
835
+ },
836
+ "nodes" : {
837
+ "MetaData" : {
838
+ "meta" : {
839
+ "workspace" : "website",
840
+ "jcr:uuid" : "30d7f4c6-4f85-4b18-acfe-f3b7df55c339",
841
+ "path" : "/home/orc_4/00/MetaData",
842
+ "name" : "MetaData",
843
+ "jcr:primaryType" : "mgnl:metaData",
844
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
845
+ "depth" : 4,
846
+ "jcr:created" : "2010-04-13T09:35:02.002+02:00",
847
+ "mixinNodeTypes" : [ ]
848
+ },
849
+ "properties" : {
850
+ "mgnl:activatorid" : "superuser",
851
+ "mgnl:authorid" : "superuser",
852
+ "mgnl:lastaction" : "2012-10-05T15:25:05.892+02:00",
853
+ "mgnl:creationdate" : "2009-10-27T09:09:50.611+01:00",
854
+ "mgnl:template" : "box_link",
855
+ "mgnl:activated" : true,
856
+ "mgnl:lastmodified" : "2012-10-05T15:23:50.207+02:00"
857
+ },
858
+ "nodes" : { }
859
+ },
860
+ "row1_files" : {
861
+ "meta" : {
862
+ "workspace" : "website",
863
+ "jcr:uuid" : "7a47f1b7-6ce3-47eb-aba3-09a11e5b187b",
864
+ "path" : "/home/orc_4/00/row1_files",
865
+ "name" : "row1_files",
866
+ "jcr:primaryType" : "mgnl:contentNode",
867
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
868
+ "depth" : 4,
869
+ "jcr:created" : "2010-04-13T09:35:02.002+02:00",
870
+ "mixinNodeTypes" : [ "mix:lockable" ]
871
+ },
872
+ "properties" : { },
873
+ "nodes" : {
874
+ "MetaData" : {
875
+ "meta" : {
876
+ "workspace" : "website",
877
+ "jcr:uuid" : "ef1d2fb2-3ed8-47c5-b87d-da251459e851",
878
+ "path" : "/home/orc_4/00/row1_files/MetaData",
879
+ "name" : "MetaData",
880
+ "jcr:primaryType" : "mgnl:metaData",
881
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
882
+ "depth" : 5,
883
+ "jcr:created" : "2010-04-13T09:35:02.002+02:00",
884
+ "mixinNodeTypes" : [ ]
885
+ },
886
+ "properties" : {
887
+ "mgnl:activatorid" : "superuser",
888
+ "mgnl:authorid" : "superuser",
889
+ "mgnl:creationdate" : "2009-10-27T09:09:50.612+01:00",
890
+ "mgnl:lastaction" : "2012-10-05T15:25:05.893+02:00",
891
+ "mgnl:activated" : true,
892
+ "mgnl:lastmodified" : "2009-10-28T13:06:47.142+01:00"
893
+ },
894
+ "nodes" : { }
895
+ }
896
+ }
897
+ },
898
+ "row2_files" : {
899
+ "meta" : {
900
+ "workspace" : "website",
901
+ "jcr:uuid" : "4e8503d3-c96d-4d5b-889b-7779ba141955",
902
+ "path" : "/home/orc_4/00/row2_files",
903
+ "name" : "row2_files",
904
+ "jcr:primaryType" : "mgnl:contentNode",
905
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
906
+ "depth" : 4,
907
+ "jcr:created" : "2010-04-13T09:35:02.002+02:00",
908
+ "mixinNodeTypes" : [ "mix:lockable" ]
909
+ },
910
+ "properties" : { },
911
+ "nodes" : {
912
+ "MetaData" : {
913
+ "meta" : {
914
+ "workspace" : "website",
915
+ "jcr:uuid" : "582fdcf2-75df-4f18-8d4e-bdf270a481ac",
916
+ "path" : "/home/orc_4/00/row2_files/MetaData",
917
+ "name" : "MetaData",
918
+ "jcr:primaryType" : "mgnl:metaData",
919
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
920
+ "depth" : 5,
921
+ "jcr:created" : "2010-04-13T09:35:02.002+02:00",
922
+ "mixinNodeTypes" : [ ]
923
+ },
924
+ "properties" : {
925
+ "mgnl:authorid" : "superuser",
926
+ "mgnl:activatorid" : "superuser",
927
+ "mgnl:lastaction" : "2012-10-05T15:25:05.893+02:00",
928
+ "mgnl:creationdate" : "2009-10-27T09:09:50.613+01:00",
929
+ "mgnl:activated" : true,
930
+ "mgnl:lastmodified" : "2009-10-28T13:06:47.143+01:00"
931
+ },
932
+ "nodes" : { }
933
+ }
934
+ }
935
+ }
936
+ }
937
+ }
938
+ }
939
+ },
940
+ "orc_12" : {
941
+ "meta" : {
942
+ "workspace" : "website",
943
+ "jcr:uuid" : "0c968c0f-7fbe-45cf-ba2e-9d2b44478d50",
944
+ "path" : "/home/orc_12",
945
+ "name" : "orc_12",
946
+ "jcr:primaryType" : "mgnl:contentNode",
947
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
948
+ "depth" : 2,
949
+ "jcr:created" : "2010-04-13T09:35:02.004+02:00",
950
+ "mixinNodeTypes" : [ "mix:lockable" ]
951
+ },
952
+ "properties" : { },
953
+ "nodes" : {
954
+ "MetaData" : {
955
+ "meta" : {
956
+ "workspace" : "website",
957
+ "jcr:uuid" : "bbb4fd39-8d78-45e0-9693-7746553fb8dc",
958
+ "path" : "/home/orc_12/MetaData",
959
+ "name" : "MetaData",
960
+ "jcr:primaryType" : "mgnl:metaData",
961
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
962
+ "depth" : 3,
963
+ "jcr:created" : "2010-04-13T09:35:02.004+02:00",
964
+ "mixinNodeTypes" : [ ]
965
+ },
966
+ "properties" : {
967
+ "mgnl:authorid" : "superuser",
968
+ "mgnl:activatorid" : "superuser",
969
+ "mgnl:lastaction" : "2012-10-05T15:25:05.896+02:00",
970
+ "mgnl:creationdate" : "2009-10-27T09:12:38.831+01:00",
971
+ "mgnl:activated" : true,
972
+ "mgnl:lastmodified" : "2012-09-20T16:40:53.238+02:00"
973
+ },
974
+ "nodes" : { }
975
+ },
976
+ "0" : {
977
+ "meta" : {
978
+ "workspace" : "website",
979
+ "jcr:uuid" : "6dc064f5-ac8f-4a80-ae83-eb279d61ac5a",
980
+ "path" : "/home/orc_12/0",
981
+ "name" : "0",
982
+ "jcr:primaryType" : "mgnl:contentNode",
983
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
984
+ "depth" : 3,
985
+ "jcr:created" : "2010-04-13T09:35:02.004+02:00",
986
+ "mixinNodeTypes" : [ "mix:lockable" ]
987
+ },
988
+ "properties" : {
989
+ "title" : "NEWS",
990
+ "background" : "dark"
991
+ },
992
+ "nodes" : {
993
+ "MetaData" : {
994
+ "meta" : {
995
+ "workspace" : "website",
996
+ "jcr:uuid" : "ce434877-6d5a-4455-895c-a00277c4a047",
997
+ "path" : "/home/orc_12/0/MetaData",
998
+ "name" : "MetaData",
999
+ "jcr:primaryType" : "mgnl:metaData",
1000
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1001
+ "depth" : 4,
1002
+ "jcr:created" : "2010-04-13T09:35:02.004+02:00",
1003
+ "mixinNodeTypes" : [ ]
1004
+ },
1005
+ "properties" : {
1006
+ "mgnl:authorid" : "superuser",
1007
+ "mgnl:activatorid" : "superuser",
1008
+ "mgnl:creationdate" : "2009-10-27T09:12:38.831+01:00",
1009
+ "mgnl:lastaction" : "2012-10-05T15:25:05.898+02:00",
1010
+ "mgnl:template" : "box_picture_teaser",
1011
+ "mgnl:activated" : true,
1012
+ "mgnl:lastmodified" : "2012-09-20T16:40:53.238+02:00"
1013
+ },
1014
+ "nodes" : { }
1015
+ },
1016
+ "picture_teaser_items" : {
1017
+ "meta" : {
1018
+ "workspace" : "website",
1019
+ "jcr:uuid" : "2ce0dbfa-2d90-4c33-9a3e-24fc1bdedf14",
1020
+ "path" : "/home/orc_12/0/picture_teaser_items",
1021
+ "name" : "picture_teaser_items",
1022
+ "jcr:primaryType" : "mgnl:contentNode",
1023
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1024
+ "depth" : 4,
1025
+ "jcr:created" : "2010-04-13T09:35:02.004+02:00",
1026
+ "mixinNodeTypes" : [ "mix:lockable" ]
1027
+ },
1028
+ "properties" : { },
1029
+ "nodes" : {
1030
+ "MetaData" : {
1031
+ "meta" : {
1032
+ "workspace" : "website",
1033
+ "jcr:uuid" : "4ea0889f-899f-4a0a-95d9-24848f3451d6",
1034
+ "path" : "/home/orc_12/0/picture_teaser_items/MetaData",
1035
+ "name" : "MetaData",
1036
+ "jcr:primaryType" : "mgnl:metaData",
1037
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1038
+ "depth" : 5,
1039
+ "jcr:created" : "2010-04-13T09:35:02.004+02:00",
1040
+ "mixinNodeTypes" : [ ]
1041
+ },
1042
+ "properties" : {
1043
+ "mgnl:activatorid" : "superuser",
1044
+ "mgnl:authorid" : "superuser",
1045
+ "mgnl:creationdate" : "2009-10-28T10:17:15.217+01:00",
1046
+ "mgnl:lastaction" : "2012-10-05T15:25:05.899+02:00",
1047
+ "mgnl:activated" : true,
1048
+ "mgnl:lastmodified" : "2012-09-20T16:40:53.238+02:00"
1049
+ },
1050
+ "nodes" : { }
1051
+ },
1052
+ "01" : {
1053
+ "meta" : {
1054
+ "workspace" : "website",
1055
+ "jcr:uuid" : "39666fce-5e9c-43be-9395-2a37dff30d9d",
1056
+ "path" : "/home/orc_12/0/picture_teaser_items/01",
1057
+ "name" : "01",
1058
+ "jcr:primaryType" : "mgnl:contentNode",
1059
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1060
+ "depth" : 5,
1061
+ "jcr:created" : "2010-04-13T09:35:02.005+02:00",
1062
+ "mixinNodeTypes" : [ "mix:lockable" ]
1063
+ },
1064
+ "properties" : {
1065
+ "title" : "light&sound Luzern",
1066
+ "image" : "b93fc6c8-5937-4baa-987f-4866b950f37c",
1067
+ "text" : "<p>Vom 21.-23. Oktober sind wir wieder an der light&amp;sound Luzern. Auf der Fachmesse f&uuml;r Veranstaltungstechnik zeigen wir die Funksysteme Axient und ULX-D.</p>",
1068
+ "link" : "http://lightandsound.ch/htm/home.htm",
1069
+ "link_text" : "Zur light&sound"
1070
+ },
1071
+ "nodes" : {
1072
+ "MetaData" : {
1073
+ "meta" : {
1074
+ "workspace" : "website",
1075
+ "jcr:uuid" : "eb04ff55-c279-4c52-801f-482c186f4ea3",
1076
+ "path" : "/home/orc_12/0/picture_teaser_items/01/MetaData",
1077
+ "name" : "MetaData",
1078
+ "jcr:primaryType" : "mgnl:metaData",
1079
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1080
+ "depth" : 6,
1081
+ "jcr:created" : "2010-04-13T09:35:02.005+02:00",
1082
+ "mixinNodeTypes" : [ ]
1083
+ },
1084
+ "properties" : {
1085
+ "mgnl:activatorid" : "superuser",
1086
+ "mgnl:authorid" : "superuser",
1087
+ "mgnl:lastaction" : "2012-10-05T15:25:05.900+02:00",
1088
+ "mgnl:creationdate" : "2009-10-28T10:48:03.032+01:00",
1089
+ "mgnl:template" : "box_picture_teaser_item",
1090
+ "mgnl:activated" : true,
1091
+ "mgnl:lastmodified" : "2012-09-20T15:39:50.050+02:00"
1092
+ },
1093
+ "nodes" : { }
1094
+ },
1095
+ "text_files" : {
1096
+ "meta" : {
1097
+ "workspace" : "website",
1098
+ "jcr:uuid" : "d2f2c46c-639f-43c3-bb07-5a6486b42cb8",
1099
+ "path" : "/home/orc_12/0/picture_teaser_items/01/text_files",
1100
+ "name" : "text_files",
1101
+ "jcr:primaryType" : "mgnl:contentNode",
1102
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1103
+ "depth" : 6,
1104
+ "jcr:created" : "2010-04-13T09:35:02.005+02:00",
1105
+ "mixinNodeTypes" : [ "mix:lockable" ]
1106
+ },
1107
+ "properties" : { },
1108
+ "nodes" : {
1109
+ "MetaData" : {
1110
+ "meta" : {
1111
+ "workspace" : "website",
1112
+ "jcr:uuid" : "47e05567-6bc3-43dc-95c6-66ad80febf2f",
1113
+ "path" : "/home/orc_12/0/picture_teaser_items/01/text_files/MetaData",
1114
+ "name" : "MetaData",
1115
+ "jcr:primaryType" : "mgnl:metaData",
1116
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1117
+ "depth" : 7,
1118
+ "jcr:created" : "2010-04-13T09:35:02.005+02:00",
1119
+ "mixinNodeTypes" : [ ]
1120
+ },
1121
+ "properties" : {
1122
+ "mgnl:activatorid" : "superuser",
1123
+ "mgnl:authorid" : "superuser",
1124
+ "mgnl:creationdate" : "2009-10-28T10:48:03.033+01:00",
1125
+ "mgnl:lastaction" : "2012-10-05T15:25:05.900+02:00",
1126
+ "mgnl:activated" : true,
1127
+ "mgnl:lastmodified" : "2009-10-28T13:07:02.253+01:00"
1128
+ },
1129
+ "nodes" : { }
1130
+ }
1131
+ }
1132
+ },
1133
+ "sub_text_files" : {
1134
+ "meta" : {
1135
+ "workspace" : "website",
1136
+ "jcr:uuid" : "afd67ae7-22ab-4059-9dda-ce55edc3f700",
1137
+ "path" : "/home/orc_12/0/picture_teaser_items/01/sub_text_files",
1138
+ "name" : "sub_text_files",
1139
+ "jcr:primaryType" : "mgnl:contentNode",
1140
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1141
+ "depth" : 6,
1142
+ "jcr:created" : "2010-04-13T09:35:02.005+02:00",
1143
+ "mixinNodeTypes" : [ "mix:lockable" ]
1144
+ },
1145
+ "properties" : { },
1146
+ "nodes" : {
1147
+ "MetaData" : {
1148
+ "meta" : {
1149
+ "workspace" : "website",
1150
+ "jcr:uuid" : "f4ece63b-b2e7-49b7-80e4-d696961c8e78",
1151
+ "path" : "/home/orc_12/0/picture_teaser_items/01/sub_text_files/MetaData",
1152
+ "name" : "MetaData",
1153
+ "jcr:primaryType" : "mgnl:metaData",
1154
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1155
+ "depth" : 7,
1156
+ "jcr:created" : "2010-04-13T09:35:02.005+02:00",
1157
+ "mixinNodeTypes" : [ ]
1158
+ },
1159
+ "properties" : {
1160
+ "mgnl:activatorid" : "superuser",
1161
+ "mgnl:authorid" : "superuser",
1162
+ "mgnl:lastaction" : "2012-10-05T15:25:05.900+02:00",
1163
+ "mgnl:creationdate" : "2009-10-28T10:48:03.034+01:00",
1164
+ "mgnl:activated" : true,
1165
+ "mgnl:lastmodified" : "2009-10-28T13:07:02.254+01:00"
1166
+ },
1167
+ "nodes" : { }
1168
+ }
1169
+ }
1170
+ },
1171
+ "external_link" : {
1172
+ "meta" : {
1173
+ "workspace" : "website",
1174
+ "jcr:uuid" : "7476b169-d85a-4683-8d73-db2c01103689",
1175
+ "path" : "/home/orc_12/0/picture_teaser_items/01/external_link",
1176
+ "name" : "external_link",
1177
+ "jcr:primaryType" : "mgnl:contentNode",
1178
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1179
+ "depth" : 6,
1180
+ "jcr:created" : "2012-09-20T15:39:50.049+02:00",
1181
+ "mixinNodeTypes" : [ "mix:lockable" ]
1182
+ },
1183
+ "properties" : {
1184
+ "0" : "false"
1185
+ },
1186
+ "nodes" : {
1187
+ "MetaData" : {
1188
+ "meta" : {
1189
+ "workspace" : "website",
1190
+ "jcr:uuid" : "5ba2110b-e209-44bb-b44e-2db281f8951f",
1191
+ "path" : "/home/orc_12/0/picture_teaser_items/01/external_link/MetaData",
1192
+ "name" : "MetaData",
1193
+ "jcr:primaryType" : "mgnl:metaData",
1194
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1195
+ "depth" : 7,
1196
+ "jcr:created" : "2012-09-20T15:39:50.049+02:00",
1197
+ "mixinNodeTypes" : [ ]
1198
+ },
1199
+ "properties" : {
1200
+ "mgnl:activatorid" : "superuser",
1201
+ "mgnl:creationdate" : "2012-09-20T15:39:50.050+02:00",
1202
+ "mgnl:lastaction" : "2012-10-05T15:25:05.901+02:00",
1203
+ "mgnl:activated" : true
1204
+ },
1205
+ "nodes" : { }
1206
+ }
1207
+ }
1208
+ }
1209
+ }
1210
+ },
1211
+ "02" : {
1212
+ "meta" : {
1213
+ "workspace" : "website",
1214
+ "jcr:uuid" : "415b50f6-5b4b-457a-b574-ccbdee44b383",
1215
+ "path" : "/home/orc_12/0/picture_teaser_items/02",
1216
+ "name" : "02",
1217
+ "jcr:primaryType" : "mgnl:contentNode",
1218
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1219
+ "depth" : 5,
1220
+ "jcr:created" : "2010-10-13T11:51:45.082+02:00",
1221
+ "mixinNodeTypes" : [ "mix:lockable" ]
1222
+ },
1223
+ "properties" : {
1224
+ "title" : "Offene Kopfhörer im Test",
1225
+ "image" : "67f17f9b-85bb-4f9a-81e6-b7b91765f38a",
1226
+ "text" : "<p>Vom 9. bis 12. September sind wir an der CE Expo 12: Treffen Sie uns in Halle 2, Stand A1.</p>",
1227
+ "link" : "/home/produkte/test-berichte#kopfhoerer-test",
1228
+ "link_text" : "Zum Testbericht"
1229
+ },
1230
+ "nodes" : {
1231
+ "MetaData" : {
1232
+ "meta" : {
1233
+ "workspace" : "website",
1234
+ "jcr:uuid" : "7d102de3-8bf8-47c4-bbf4-e10db6ee62fc",
1235
+ "path" : "/home/orc_12/0/picture_teaser_items/02/MetaData",
1236
+ "name" : "MetaData",
1237
+ "jcr:primaryType" : "mgnl:metaData",
1238
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1239
+ "depth" : 6,
1240
+ "jcr:created" : "2010-10-13T11:51:45.082+02:00",
1241
+ "mixinNodeTypes" : [ ]
1242
+ },
1243
+ "properties" : {
1244
+ "mgnl:authorid" : "superuser",
1245
+ "mgnl:activatorid" : "superuser",
1246
+ "mgnl:creationdate" : "2010-10-13T11:51:45.082+02:00",
1247
+ "mgnl:lastaction" : "2012-10-05T15:25:05.901+02:00",
1248
+ "mgnl:template" : "box_picture_teaser_item",
1249
+ "mgnl:activated" : true,
1250
+ "mgnl:lastmodified" : "2012-09-20T16:40:53.237+02:00"
1251
+ },
1252
+ "nodes" : { }
1253
+ },
1254
+ "text_files" : {
1255
+ "meta" : {
1256
+ "workspace" : "website",
1257
+ "jcr:uuid" : "c5975aaf-bafd-4901-905f-9d4e11ef2fc5",
1258
+ "path" : "/home/orc_12/0/picture_teaser_items/02/text_files",
1259
+ "name" : "text_files",
1260
+ "jcr:primaryType" : "mgnl:contentNode",
1261
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1262
+ "depth" : 6,
1263
+ "jcr:created" : "2010-10-13T11:51:45.083+02:00",
1264
+ "mixinNodeTypes" : [ "mix:lockable" ]
1265
+ },
1266
+ "properties" : { },
1267
+ "nodes" : {
1268
+ "MetaData" : {
1269
+ "meta" : {
1270
+ "workspace" : "website",
1271
+ "jcr:uuid" : "d9eb0a2f-14a9-43b8-82c5-085f93279f43",
1272
+ "path" : "/home/orc_12/0/picture_teaser_items/02/text_files/MetaData",
1273
+ "name" : "MetaData",
1274
+ "jcr:primaryType" : "mgnl:metaData",
1275
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1276
+ "depth" : 7,
1277
+ "jcr:created" : "2010-10-13T11:51:45.083+02:00",
1278
+ "mixinNodeTypes" : [ ]
1279
+ },
1280
+ "properties" : {
1281
+ "mgnl:activatorid" : "superuser",
1282
+ "mgnl:creationdate" : "2010-10-13T11:51:45.083+02:00",
1283
+ "mgnl:lastaction" : "2012-10-05T15:25:05.901+02:00",
1284
+ "mgnl:activated" : true
1285
+ },
1286
+ "nodes" : { }
1287
+ }
1288
+ }
1289
+ },
1290
+ "sub_text_files" : {
1291
+ "meta" : {
1292
+ "workspace" : "website",
1293
+ "jcr:uuid" : "8edff1cd-9c6b-4d35-8ee6-51297fd13c31",
1294
+ "path" : "/home/orc_12/0/picture_teaser_items/02/sub_text_files",
1295
+ "name" : "sub_text_files",
1296
+ "jcr:primaryType" : "mgnl:contentNode",
1297
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1298
+ "depth" : 6,
1299
+ "jcr:created" : "2010-10-13T11:51:45.085+02:00",
1300
+ "mixinNodeTypes" : [ "mix:lockable" ]
1301
+ },
1302
+ "properties" : { },
1303
+ "nodes" : {
1304
+ "MetaData" : {
1305
+ "meta" : {
1306
+ "workspace" : "website",
1307
+ "jcr:uuid" : "4017fbba-cf37-4ba1-b110-50934590c09e",
1308
+ "path" : "/home/orc_12/0/picture_teaser_items/02/sub_text_files/MetaData",
1309
+ "name" : "MetaData",
1310
+ "jcr:primaryType" : "mgnl:metaData",
1311
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1312
+ "depth" : 7,
1313
+ "jcr:created" : "2010-10-13T11:51:45.085+02:00",
1314
+ "mixinNodeTypes" : [ ]
1315
+ },
1316
+ "properties" : {
1317
+ "mgnl:activatorid" : "superuser",
1318
+ "mgnl:creationdate" : "2010-10-13T11:51:45.085+02:00",
1319
+ "mgnl:lastaction" : "2012-10-05T15:25:05.902+02:00",
1320
+ "mgnl:activated" : true
1321
+ },
1322
+ "nodes" : { }
1323
+ }
1324
+ }
1325
+ }
1326
+ }
1327
+ },
1328
+ "00" : {
1329
+ "meta" : {
1330
+ "workspace" : "website",
1331
+ "jcr:uuid" : "b2d25e37-9745-4270-a9b0-32bf8d2b229e",
1332
+ "path" : "/home/orc_12/0/picture_teaser_items/00",
1333
+ "name" : "00",
1334
+ "jcr:primaryType" : "mgnl:contentNode",
1335
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1336
+ "depth" : 5,
1337
+ "jcr:created" : "2010-04-13T09:35:02.006+02:00",
1338
+ "mixinNodeTypes" : [ "mix:lockable" ]
1339
+ },
1340
+ "properties" : {
1341
+ "title" : "Finde einen Händler in deiner Nähe",
1342
+ "image" : "46a6c53c-0d63-41d3-b0be-bef86eccf138",
1343
+ "link" : "/meta_ch/bezugsquellen/haendlersuche",
1344
+ "text" : "<p>Besuche unseren Dealer Locator und erhalte eine &Uuml;bersicht &uuml;ber unsere H&auml;ndler in der Schweiz.</p>",
1345
+ "link_text" : "Zum Dealer Locator"
1346
+ },
1347
+ "nodes" : {
1348
+ "MetaData" : {
1349
+ "meta" : {
1350
+ "workspace" : "website",
1351
+ "jcr:uuid" : "c36b752b-166a-4e55-95d2-a3c936b85324",
1352
+ "path" : "/home/orc_12/0/picture_teaser_items/00/MetaData",
1353
+ "name" : "MetaData",
1354
+ "jcr:primaryType" : "mgnl:metaData",
1355
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1356
+ "depth" : 6,
1357
+ "jcr:created" : "2010-04-13T09:35:02.006+02:00",
1358
+ "mixinNodeTypes" : [ ]
1359
+ },
1360
+ "properties" : {
1361
+ "mgnl:authorid" : "superuser",
1362
+ "mgnl:activatorid" : "superuser",
1363
+ "mgnl:lastaction" : "2012-10-05T15:25:05.902+02:00",
1364
+ "mgnl:creationdate" : "2009-10-28T10:26:58.843+01:00",
1365
+ "mgnl:template" : "box_picture_teaser_item",
1366
+ "mgnl:activated" : true,
1367
+ "mgnl:lastmodified" : "2012-07-16T18:35:38.249+02:00"
1368
+ },
1369
+ "nodes" : { }
1370
+ },
1371
+ "text_files" : {
1372
+ "meta" : {
1373
+ "workspace" : "website",
1374
+ "jcr:uuid" : "1162c57b-176c-4e93-935a-4922bf0db96a",
1375
+ "path" : "/home/orc_12/0/picture_teaser_items/00/text_files",
1376
+ "name" : "text_files",
1377
+ "jcr:primaryType" : "mgnl:contentNode",
1378
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1379
+ "depth" : 6,
1380
+ "jcr:created" : "2010-04-13T09:35:02.006+02:00",
1381
+ "mixinNodeTypes" : [ "mix:lockable" ]
1382
+ },
1383
+ "properties" : { },
1384
+ "nodes" : {
1385
+ "MetaData" : {
1386
+ "meta" : {
1387
+ "workspace" : "website",
1388
+ "jcr:uuid" : "1129be00-eba6-4214-8dec-40916c8efb48",
1389
+ "path" : "/home/orc_12/0/picture_teaser_items/00/text_files/MetaData",
1390
+ "name" : "MetaData",
1391
+ "jcr:primaryType" : "mgnl:metaData",
1392
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1393
+ "depth" : 7,
1394
+ "jcr:created" : "2010-04-13T09:35:02.006+02:00",
1395
+ "mixinNodeTypes" : [ ]
1396
+ },
1397
+ "properties" : {
1398
+ "mgnl:authorid" : "superuser",
1399
+ "mgnl:activatorid" : "superuser",
1400
+ "mgnl:creationdate" : "2009-10-28T10:26:58.844+01:00",
1401
+ "mgnl:lastaction" : "2012-10-05T15:25:05.903+02:00",
1402
+ "mgnl:activated" : true,
1403
+ "mgnl:lastmodified" : "2009-10-28T13:07:02.256+01:00"
1404
+ },
1405
+ "nodes" : { }
1406
+ }
1407
+ }
1408
+ },
1409
+ "sub_text_files" : {
1410
+ "meta" : {
1411
+ "workspace" : "website",
1412
+ "jcr:uuid" : "015caee4-8415-48bf-bdfe-65b45f2e4848",
1413
+ "path" : "/home/orc_12/0/picture_teaser_items/00/sub_text_files",
1414
+ "name" : "sub_text_files",
1415
+ "jcr:primaryType" : "mgnl:contentNode",
1416
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1417
+ "depth" : 6,
1418
+ "jcr:created" : "2010-04-13T09:35:02.006+02:00",
1419
+ "mixinNodeTypes" : [ "mix:lockable" ]
1420
+ },
1421
+ "properties" : { },
1422
+ "nodes" : {
1423
+ "MetaData" : {
1424
+ "meta" : {
1425
+ "workspace" : "website",
1426
+ "jcr:uuid" : "4c526773-ce32-42c9-965c-276b7aac402b",
1427
+ "path" : "/home/orc_12/0/picture_teaser_items/00/sub_text_files/MetaData",
1428
+ "name" : "MetaData",
1429
+ "jcr:primaryType" : "mgnl:metaData",
1430
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1431
+ "depth" : 7,
1432
+ "jcr:created" : "2010-04-13T09:35:02.006+02:00",
1433
+ "mixinNodeTypes" : [ ]
1434
+ },
1435
+ "properties" : {
1436
+ "mgnl:activatorid" : "superuser",
1437
+ "mgnl:authorid" : "superuser",
1438
+ "mgnl:lastaction" : "2012-10-05T15:25:05.905+02:00",
1439
+ "mgnl:creationdate" : "2009-10-28T10:26:58.846+01:00",
1440
+ "mgnl:activated" : true,
1441
+ "mgnl:lastmodified" : "2009-10-28T13:07:02.267+01:00"
1442
+ },
1443
+ "nodes" : { }
1444
+ }
1445
+ }
1446
+ }
1447
+ }
1448
+ }
1449
+ }
1450
+ }
1451
+ }
1452
+ },
1453
+ "01" : {
1454
+ "meta" : {
1455
+ "workspace" : "website",
1456
+ "jcr:uuid" : "001f4a52-06df-460f-a600-b593589a6f33",
1457
+ "path" : "/home/orc_12/01",
1458
+ "name" : "01",
1459
+ "jcr:primaryType" : "mgnl:contentNode",
1460
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1461
+ "depth" : 3,
1462
+ "jcr:created" : "2012-05-23T09:51:09.906+02:00",
1463
+ "mixinNodeTypes" : [ "mix:lockable" ]
1464
+ },
1465
+ "properties" : {
1466
+ "plain_html" : "<p align=\"center\">\r\n<iframe id='aaf90314' name='aaf90314' src='http://d1.openx.org/afr.php?zoneid=270231&amp;cb=INSERT_RANDOM_NUMBER_HERE' frameborder='0' scrolling='no' width='752' height='140'><a href='http://d1.openx.org/ck.php?n=a445ec9e&amp;cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://d1.openx.org/avw.php?zoneid=270231&amp;cb=INSERT_RANDOM_NUMBER_HERE&amp;n=a445ec9e' border='0' alt='' /></a></iframe></p>\r\n"
1467
+ },
1468
+ "nodes" : {
1469
+ "MetaData" : {
1470
+ "meta" : {
1471
+ "workspace" : "website",
1472
+ "jcr:uuid" : "05996052-ec1e-408c-a0b3-242db17c758b",
1473
+ "path" : "/home/orc_12/01/MetaData",
1474
+ "name" : "MetaData",
1475
+ "jcr:primaryType" : "mgnl:metaData",
1476
+ "superTypes" : [ "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1477
+ "depth" : 4,
1478
+ "jcr:created" : "2012-05-23T09:51:09.906+02:00",
1479
+ "mixinNodeTypes" : [ ]
1480
+ },
1481
+ "properties" : {
1482
+ "mgnl:activatorid" : "superuser",
1483
+ "mgnl:authorid" : "superuser",
1484
+ "mgnl:lastaction" : "2012-10-05T15:25:05.905+02:00",
1485
+ "mgnl:creationdate" : "2012-05-23T09:51:09.906+02:00",
1486
+ "mgnl:template" : "box_html",
1487
+ "mgnl:activated" : true,
1488
+ "mgnl:lastmodified" : "2012-05-29T09:07:44.355+02:00"
1489
+ },
1490
+ "nodes" : { }
1491
+ }
1492
+ }
1493
+ }
1494
+ }
1495
+ }
1496
+ }
1497
+ } ]