odania_core 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/odania/info.js.coffee +3 -0
  3. data/app/assets/javascripts/odania_core_protected/application.js +16 -0
  4. data/app/assets/stylesheets/odania/info.css.scss +3 -0
  5. data/app/assets/stylesheets/odania_core_protected/application.css +13 -0
  6. data/app/assets/stylesheets/odania_core_protected/style.css.scss +1 -0
  7. data/app/controllers/admin/odania/menu_items_controller.rb +1 -1
  8. data/app/controllers/admin/odania/sites_controller.rb +1 -0
  9. data/app/controllers/admin_controller.rb +1 -1
  10. data/app/controllers/odania/info_controller.rb +35 -0
  11. data/app/controllers/protected/dashboard_controller.rb +4 -0
  12. data/app/controllers/protected_controller.rb +9 -0
  13. data/app/helpers/odania/info_helper.rb +2 -0
  14. data/app/mailers/odania/notify.rb +13 -0
  15. data/app/views/admin/odania/contents/_form.html.erb +1 -11
  16. data/app/views/admin/odania/contents/index.html.erb +2 -2
  17. data/app/views/admin/odania/languages/_form.html.erb +3 -14
  18. data/app/views/admin/odania/languages/index.html.erb +2 -2
  19. data/app/views/admin/odania/menu_items/_form.html.erb +9 -17
  20. data/app/views/admin/odania/menu_items/index.html.erb +2 -2
  21. data/app/views/admin/odania/menus/_form.html.erb +5 -15
  22. data/app/views/admin/odania/menus/index.html.erb +2 -2
  23. data/app/views/admin/odania/shared/_menu.html.erb +1 -1
  24. data/app/views/admin/odania/sites/_form.html.erb +34 -24
  25. data/app/views/admin/odania/sites/index.html.erb +2 -2
  26. data/app/views/layouts/odania_core/application.html.erb +2 -0
  27. data/app/views/layouts/odania_core/protected.html.erb +27 -0
  28. data/app/views/odania/common/_footer.html.erb +15 -0
  29. data/app/views/odania/info/_copyright.html.erb +446 -0
  30. data/app/views/odania/info/contact.html.erb +23 -0
  31. data/app/views/odania/info/contact_send.html.erb +3 -0
  32. data/app/views/odania/info/imprint.html.erb +9 -0
  33. data/app/views/odania/info/terms_and_conditions.html.erb +3 -0
  34. data/app/views/odania/notify/contact_form.html.erb +5 -0
  35. data/app/views/odania/notify/notify_admin.html.erb +3 -0
  36. data/app/views/odania/shared/_errors.html.erb +11 -0
  37. data/app/views/protected/dashboard/index.html.erb +2 -0
  38. data/app/views/protected/odania/shared/_menu.html.erb +10 -0
  39. data/config/locales/de.yml +14 -0
  40. data/config/locales/en.yml +14 -0
  41. data/config/routes.rb +8 -3
  42. data/db/migrate/20140512153554_add_email_info_to_site.rb +6 -0
  43. data/db/migrate/20140512161811_add_imprint_terms_to_site.rb +6 -0
  44. data/lib/odania.rb +10 -1
  45. data/lib/odania/admin.rb +9 -9
  46. data/lib/odania/disabled_background_job.rb +7 -0
  47. data/lib/odania/protected.rb +12 -0
  48. data/{app/models → lib}/odania/target_type.rb +0 -0
  49. data/lib/odania_core/engine.rb +1 -0
  50. data/lib/odania_core/version.rb +1 -1
  51. data/lib/tasks/odania_core_tasks.rake +3 -2
  52. data/test/controllers/admin/odania/dashboard_controller_test.rb +17 -0
  53. data/test/controllers/odania/deliver_controller_test.rb +1 -0
  54. data/test/controllers/protected/odania/dashboard_controller_test.rb +17 -0
  55. data/test/dummy/config/database.yml +5 -0
  56. data/test/dummy/config/environments/development.rb +1 -0
  57. data/test/dummy/db/development.sqlite3 +0 -0
  58. data/test/dummy/db/schema.rb +40 -15
  59. data/test/dummy/db/test.sqlite3 +0 -0
  60. data/test/dummy/log/development.log +8181 -0
  61. data/test/dummy/log/test.log +58765 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/050eb77fb84c3d5b11b2c335ffc2066e +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/071ed495ead612a4b476446e41911790 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/1162767bf7dd2fa8a0729a9b74c5d262 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/13ebf9a23c7bcd470cced5e3c026b2c6 +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/1aabd31da5b9fb20f92ccb6aab02693e +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/31320b4010a117d38d5ae980db673d0f +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/31bf03ea315906104e90565c1755f93b +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/51ceb5283b390c7096cb51c446afff14 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/542e319febac79296c8eed4cba6b1278 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/5546cd8a339e2685f326f6e3aa7137d1 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/5896f3bd71adf47dbc97c8b096de89e5 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/64ae089382b7b1071cb7f81859a2c7e5 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/6a2d6a50e71f610e9622c7b00b89d9fb +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/6c591a1043d02ec6818da184e63bab27 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/6ef2e646e5df37d1a2b8eb4c95227732 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/70a571034fb5b24b25ea62e490854fb5 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/80c0164f49a2ca6316e174f9cd881828 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/89feb1399fd506496e0895a9dcbf266d +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/8a390d01d219afed891a2ccf558900f9 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/91ad661f834d4764233be7b4cd1eced4 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/9257ec40a4a608c323010e1a7a392875 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/a22b9e077056434affa1f7096cac526c +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/a6253055c7af3ad275675a529405f9dc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/a934f78fb9f28b5be1ffaf3ad9c7d679 +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/aa2496eee87838cc6a8e82fe1835c7dc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/aee29c6618c315a907c84a7244f9a2d5 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/b568cecbb1f2095238d9752c06eaad12 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/b94fc2358ebd35d7593676da3994abf7 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/bb77c7d971ba740bb9555b56a5088922 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/bc22e41c8d34b097603e2810ff80b480 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/c133b830eef0f8ce6c50a77c77db6811 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/c24ede15fd68a27d8eebc1a5a6bf38f8 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/c7fadd1caf1cf9bb073f2d4084867691 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/cadf3a38b8b2f76f9ae9c40702c51e94 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/d555fdabd9f9917902c297ff3eda35d0 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/d7607942ea55ac942ea171ffc90e3dd5 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/df6de1f873ddd3bab5ffa2351513b502 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/e2bc5f3022f0c1b1c5d8a2ec9bdaed19 +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/e346e8a32395f2f19c4d78d375b1ba43 +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/e5421896b8e264a2b7ab1292b19bed91 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/e57d372b6f0705bbce9d24c6c2eea1b1 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/e5c003ee1e62f83c11e2fd7e05aae7a7 +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/e771808797300a059aa4f25f6eb4a6ee +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/ea93a450546497582e332129b7ffcf78 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/ee73b2f7e7a7da30173f3b379a9f56b5 +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/f37943f3484e4587c579b17f68a6cfd3 +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/fa2c538304a3dcad8e7c80d01bd98c60 +0 -0
  109. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_alerts.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_badges.scssc +0 -0
  111. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_breadcrumbs.scssc +0 -0
  112. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_button-groups.scssc +0 -0
  113. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_buttons.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_carousel.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_close.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_code.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_component-animations.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_dropdowns.scssc +0 -0
  119. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_forms.scssc +0 -0
  120. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_glyphicons.scssc +0 -0
  121. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_grid.scssc +0 -0
  122. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_input-groups.scssc +0 -0
  123. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_jumbotron.scssc +0 -0
  124. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_labels.scssc +0 -0
  125. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_list-group.scssc +0 -0
  126. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_media.scssc +0 -0
  127. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_mixins.scssc +0 -0
  128. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_modals.scssc +0 -0
  129. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_navbar.scssc +0 -0
  130. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_navs.scssc +0 -0
  131. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_normalize.scssc +0 -0
  132. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_pager.scssc +0 -0
  133. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_pagination.scssc +0 -0
  134. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_panels.scssc +0 -0
  135. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_popovers.scssc +0 -0
  136. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_print.scssc +0 -0
  137. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_progress-bars.scssc +0 -0
  138. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_responsive-embed.scssc +0 -0
  139. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_responsive-utilities.scssc +0 -0
  140. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_scaffolding.scssc +0 -0
  141. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_tables.scssc +0 -0
  142. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_thumbnails.scssc +0 -0
  143. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_tooltip.scssc +0 -0
  144. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_type.scssc +0 -0
  145. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_utilities.scssc +0 -0
  146. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_variables.scssc +0 -0
  147. data/test/dummy/tmp/cache/assets/test/sass/2b7ccad7fb6114fd0a5a8b81d489610eacf18cf0/_wells.scssc +0 -0
  148. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_alerts.scssc +0 -0
  149. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_background-variant.scssc +0 -0
  150. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_border-radius.scssc +0 -0
  151. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_buttons.scssc +0 -0
  152. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_center-block.scssc +0 -0
  153. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_clearfix.scssc +0 -0
  154. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_forms.scssc +0 -0
  155. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_gradients.scssc +0 -0
  156. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_grid-framework.scssc +0 -0
  157. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_grid.scssc +0 -0
  158. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_hide-text.scssc +0 -0
  159. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_image.scssc +0 -0
  160. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_labels.scssc +0 -0
  161. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_list-group.scssc +0 -0
  162. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_nav-divider.scssc +0 -0
  163. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_nav-vertical-align.scssc +0 -0
  164. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_opacity.scssc +0 -0
  165. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_pagination.scssc +0 -0
  166. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_panels.scssc +0 -0
  167. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_progress-bar.scssc +0 -0
  168. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_reset-filter.scssc +0 -0
  169. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_resize.scssc +0 -0
  170. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_responsive-visibility.scssc +0 -0
  171. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_size.scssc +0 -0
  172. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_tab-focus.scssc +0 -0
  173. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_table-row.scssc +0 -0
  174. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_text-emphasis.scssc +0 -0
  175. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_text-overflow.scssc +0 -0
  176. data/test/dummy/tmp/cache/assets/test/sass/57a5a5754a391e1824a99986aaadb87b7246422e/_vendor-prefixes.scssc +0 -0
  177. data/test/dummy/tmp/cache/assets/test/sass/c06fcf877e5e9b8d4ce79dea27898637e9ebd9b4/style.css.scssc +0 -0
  178. data/test/dummy/tmp/cache/assets/test/sass/d1478c0804bb496464f45966578d0e36ddcf39be/bootstrap.scssc +0 -0
  179. data/test/dummy/tmp/cache/assets/test/sprockets/00289b41bea74006a2d4648acce101be +0 -0
  180. data/test/dummy/tmp/cache/assets/test/sprockets/0e64b52b8b7f3783434b8fc77ba80746 +0 -0
  181. data/test/dummy/tmp/cache/assets/test/sprockets/14fc0938a29aa79bb2321e823afa2a53 +0 -0
  182. data/test/dummy/tmp/cache/assets/test/sprockets/2628a4fb3534fad4c570f9d7db75f185 +0 -0
  183. data/test/dummy/tmp/cache/assets/test/sprockets/2b87fb40c41ad357ed7e0b82ba32cd03 +0 -0
  184. data/test/dummy/tmp/cache/assets/test/sprockets/340cbee014f1b02efe5524acdc72279e +0 -0
  185. data/test/dummy/tmp/cache/assets/test/sprockets/45c583874d0e047bf054aae066ad66f3 +0 -0
  186. data/test/dummy/tmp/cache/assets/test/sprockets/464e9c589a85f96b8a0c6b4db98b721b +0 -0
  187. data/test/dummy/tmp/cache/assets/test/sprockets/5736e9fa3c5e61402273619daeb9dda4 +0 -0
  188. data/test/dummy/tmp/cache/assets/test/sprockets/610c5b9a96d0a2f6fa708281748fa43a +0 -0
  189. data/test/dummy/tmp/cache/assets/test/sprockets/7b998a880b2b33edff7260851f35b673 +0 -0
  190. data/test/dummy/tmp/cache/assets/test/sprockets/7f77f75866eff4aa14cff532de023873 +0 -0
  191. data/test/dummy/tmp/cache/assets/test/sprockets/8a7112fe0def097e8ce96fcd2ed9ee82 +0 -0
  192. data/test/dummy/tmp/cache/assets/test/sprockets/8d8d40db7c8757a3e15481173abc4d2f +0 -0
  193. data/test/dummy/tmp/cache/assets/test/sprockets/91fc71cf7102d1e9000e63477feccfa8 +0 -0
  194. data/test/dummy/tmp/cache/assets/test/sprockets/aa2496eee87838cc6a8e82fe1835c7dc +0 -0
  195. data/test/dummy/tmp/cache/assets/test/sprockets/b1f2012aef9055f8d4a97dcad14010fe +0 -0
  196. data/test/dummy/tmp/cache/assets/test/sprockets/c24ede15fd68a27d8eebc1a5a6bf38f8 +0 -0
  197. data/test/dummy/tmp/cache/assets/test/sprockets/d8ebcc4e0bb18e81039b7b81b658e1bc +0 -0
  198. data/test/dummy/tmp/cache/assets/test/sprockets/f68a094a9d20eb0f8df24564219ca878 +0 -0
  199. data/test/dummy/tmp/pids/server.pid +1 -0
  200. data/test/integration/disabled_background_job_test.rb +28 -0
  201. data/test/support/test_setup.rb +1 -0
  202. metadata +307 -37
@@ -1,6 +1,6 @@
1
1
  <h1>Listing admin_sites</h1>
2
2
 
3
- <table>
3
+ <table class="table">
4
4
  <thead>
5
5
  <tr>
6
6
  <th>Name</th>
@@ -36,6 +36,6 @@
36
36
  </tbody>
37
37
  </table>
38
38
 
39
- <br>
39
+ <br/>
40
40
 
41
41
  <%= link_to 'New Site', new_admin_odania_site_path %>
@@ -50,6 +50,8 @@
50
50
  </div>
51
51
  </div>
52
52
 
53
+ <%= render :partial => 'odania/common/footer' %>
54
+
53
55
  <%= current_site.tracking_code.html_safe %>
54
56
  </body>
55
57
  </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>OdaniaCore</title>
5
+ <%= stylesheet_link_tag 'odania_core_protected/application', media: 'all' %>
6
+ <%= javascript_include_tag 'odania_core_protected/application' %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <div class="container-fluid">
12
+ <div class="row-fluid">
13
+ <div class="col-md-3" style="margin-top: 60px;">
14
+ <div class="well sidebar-nav">
15
+ <%= render partial: 'protected/odania/shared/menu' %>
16
+ </div>
17
+ </div>
18
+
19
+ <div class="col-md-9 hfeed" style="margin-top: 60px;">
20
+ <%= render :partial => 'odania/shared/flashes' %>
21
+ <%= yield %>
22
+ </div>
23
+ </div>
24
+ </div>
25
+
26
+ </body>
27
+ </html>
@@ -0,0 +1,15 @@
1
+ <footer>
2
+ <p>
3
+ <span style="text-align:left;float:left">&copy; <%= Time.now.year %>
4
+ <a href="http://www.odania-it.com" target="_blank">Mike Petersen Odania IT</a>
5
+ </span>
6
+
7
+ <span style="text-align:right;float:right">
8
+ <%= link_to t('odania.Imprint'), imprint_path(locale: I18n.locale.to_s) %>
9
+ &nbsp;|&nbsp;
10
+ <%= link_to t('odania.Contact'), contact_path(locale: I18n.locale.to_s) %>
11
+ &nbsp;|&nbsp;
12
+ <%= link_to t('odania.Terms and Conditions'), terms_and_conditions_path(locale: I18n.locale.to_s) %>
13
+ </span>
14
+ </p>
15
+ </footer>
@@ -0,0 +1,446 @@
1
+ <pre>
2
+ © innovari - Fotolia.com
3
+ © Andrae Martyna - Fotolia.com
4
+ © Angie Lingnau - Fotolia.com
5
+ © Tonis Pan - Fotolia.com
6
+ © Ralf Kraft - Fotolia.com
7
+ © Pixi - Fotolia.com
8
+ © Michael Rosskothen - Fotolia.com
9
+ © mates - Fotolia.com
10
+ © sharpner - Fotolia.com
11
+ © Algol - Fotolia.com
12
+ © AlienCat - Fotolia.com
13
+ © Andreas Meyer - Fotolia.com
14
+ © s-girly - Fotolia.com
15
+ © alunico - Fotolia.com
16
+ © Andreas Meyer - Fotolia.com
17
+ © Michael Rosskothen - Fotolia.com
18
+ © DM7 - Fotolia.com
19
+ © crazycolors - Fotolia.com
20
+ © eyecat - Fotolia.com
21
+ © andilevkin - Fotolia.com
22
+ © kjolak - Fotolia.com
23
+ © kiki - Fotolia.com
24
+ © Stefan Thiermayer - Fotolia.com
25
+ © audit - Fotolia.com
26
+ © Tom - Fotolia.com
27
+ © Ancello - Fotolia.com
28
+ © Ralf Kraft - Fotolia.com
29
+ © Andreas Meyer - Fotolia.com
30
+ © Sukkubus - Fotolia.com
31
+ © Paul Fleet - Fotolia.com
32
+ © Michael Ransburg - Fotolia.com
33
+ © Goran Bogicevic - Fotolia.com
34
+ © 3drenderings - Fotolia.com
35
+ © Paul Moore - Fotolia.com
36
+ © jonnysek - Fotolia.com
37
+ © Eagle - Fotolia.com
38
+ © NataliyaF - Fotolia.com
39
+ © Eugene Ost - Fotolia.com
40
+ © kelley - Fotolia.com
41
+ © Enver Djaparov - Fotolia.com
42
+ © magann - Fotolia.com
43
+ © Dimitar Marinov - Fotolia.com
44
+ © aleksandr mukhortov - Fotolia.com
45
+ © Grant Wilson - Fotolia.com
46
+ © sad - Fotolia.com
47
+ © Sergey Ilin - Fotolia.com
48
+ © Avatar - Fotolia.com
49
+ © Sergey Volkov - Fotolia.com
50
+ © Dimitar Marinov - Fotolia.com
51
+ © magann - Fotolia.com
52
+ © Bertold Werkmann - Fotolia.com
53
+ © Ralf Kraft - Fotolia.com
54
+ © Algol - Fotolia.com
55
+ © Russ Allen - Fotolia.com
56
+ © Olga Rut'ko - Fotolia.com
57
+ © Magnum - Fotolia.com
58
+ © LostINtrancE - Fotolia.com
59
+ © Mark Rasmussen - Fotolia.com
60
+ © sharpner - Fotolia.com
61
+ © mheld - Fotolia.com
62
+ © Paul Moore - Fotolia.com
63
+ © Bertold Werkmann - Fotolia.com
64
+ © Kamiya Ichiro - Fotolia.com
65
+ © Sergey Volkov - Fotolia.com
66
+ © raven - Fotolia.com
67
+ © Yang MingQi - Fotolia.com
68
+ © Goran Bogicevic - Fotolia.com
69
+ © ersonmars - Fotolia.com
70
+ © Levi73 - Fotolia.com
71
+ © DXfoto.com - Fotolia.com
72
+ © Eagle - Fotolia.com
73
+ © Aleksandr Ugorenkov - Fotolia.com
74
+ © axel lauer - Fotolia.com
75
+ © mb66 - Fotolia.com
76
+ © 3drenderings - Fotolia.com
77
+ © s-girly - Fotolia.com
78
+ © Wampa - Fotolia.com
79
+ © Andrey Zyk - Fotolia.com
80
+ © Dmitriy Raykin - Fotolia.com
81
+ © Ralf Kraft - Fotolia.com
82
+ © amorphis - Fotolia.com
83
+ © Sprinter81 - Fotolia.com
84
+ © Andreas Meyer - Fotolia.com
85
+ © Ancello - Fotolia.com
86
+ © Ralf Kraft - Fotolia.com
87
+ © Alla Brezinskaya - Fotolia.com
88
+ © AlienCat - Fotolia.com
89
+ © Andreas Meyer - Fotolia.com
90
+ © Mariano Heluani - Fotolia.com
91
+ © Alperium - Fotolia.com
92
+ © Francesco Carta - Fotolia.com
93
+ © Igo - Fotolia.com
94
+ © Alperium - Fotolia.com
95
+ © Daniel J. - Fotolia.com
96
+ © Foxy_A - Fotolia.com
97
+ © studiogriffon.com - Fotolia.com
98
+ © Sprinter81 - Fotolia.com
99
+ © Alperium - Fotolia.com
100
+ © mates - Fotolia.com
101
+ © Aradan - Fotolia.com
102
+ © Oleg Kulakov - Fotolia.com
103
+ © Paul Fleet - Fotolia.com
104
+ © Wolfsjunge - Fotolia.com
105
+ © Kovalenko Inna - Fotolia.com
106
+ © fred goldstein - Fotolia.com
107
+ © marog-pixcells - Fotolia.com
108
+ © Designer_Andrea - Fotolia.com
109
+ © lbvfbhfrfhbyf - Fotolia.com
110
+ © Jürgen Priewe - Fotolia.com
111
+ © pandore - Fotolia.com
112
+ © braverabbit - Fotolia.com
113
+ © Dmitry Vereshchagin - Fotolia.com
114
+ © Andreas Meyer - Fotolia.com
115
+ © Sossi - Fotolia.com
116
+ © S - Fotolia.com
117
+ © chungking - Fotolia.com
118
+ © Valentina R. - Fotolia.com
119
+ © electriceye - Fotolia.com
120
+ © Alx - Fotolia.com
121
+ © Emmanuel MARZIN - Fotolia.com
122
+ © OMKAR A.V - Fotolia.com
123
+ © Kevkel - Fotolia.com
124
+ © sigitas lukosevicius - Fotolia.com
125
+ © Aelita - Fotolia.com
126
+ © Andreas Meyer - Fotolia.com
127
+ © mates - Fotolia.com
128
+ © Sandra van der Steen - Fotolia.com
129
+ © Kotov - Fotolia.com
130
+ © zurabi - Fotolia.com
131
+ © piumadaquila.com - Fotolia.com
132
+ © pzAxe - Fotolia.com
133
+ © Yahia LOUKKAL - Fotolia.com
134
+ © Freesurf - Fotolia.com
135
+ © Fyle - Fotolia.com
136
+ © innovari - Fotolia.com
137
+ © TM - Design - Fotolia.com
138
+ © shockfactor - Fotolia.com
139
+ © Dark Vectorangel - Fotolia.com
140
+ © typomaniac - Fotolia.com
141
+ © Andreas Meyer - Fotolia.com
142
+ © Doreen Schlösser - Fotolia.com
143
+ © Visual Concepts - Fotolia.com
144
+ © MACLEG - Fotolia.com
145
+ © Andreas Meyer - Fotolia.com
146
+ © Bedridin Avdyli - Fotolia.com
147
+ © Sukkubus - Fotolia.com
148
+ © Marina Zlochin - Fotolia.com
149
+ © sam richter - Fotolia.com
150
+ © LoopAll - Fotolia.com
151
+ © Andreas Meyer - Fotolia.com
152
+ © Sossi - Fotolia.com
153
+ © styleuneed - Fotolia.com
154
+ © Frank F. Haub - Fotolia.com
155
+ © wdohm - Fotolia.com
156
+ © cantas - Fotolia.com
157
+ © chrisharvey - Fotolia.com
158
+ © sarah5 - Fotolia.com
159
+ © pixelorb - Fotolia.com
160
+ © Jesse-lee Lang - Fotolia.com
161
+ © debert - Fotolia.com
162
+ © Visual Concepts - Fotolia.com
163
+ © Erhan Ergin - Fotolia.com
164
+ © zentilia - Fotolia.com
165
+ © Petr Mašek - Fotolia.com
166
+ © StarJumper - Fotolia.com
167
+ © Georg Lehnerer - Fotolia.com
168
+ © Yarche - Fotolia.com
169
+ © HOWARD - Fotolia.com
170
+ © Tjefferson - Fotolia.com
171
+ © James Thew - Fotolia.com
172
+ © Andreas Meyer - Fotolia.com
173
+ © ELEN - Fotolia.com
174
+ © Spooky2006 - Fotolia.com
175
+ © DX - Fotolia.com
176
+ © Dimitar Marinov - Fotolia.com
177
+ © Iuliia KOVALOVA - Fotolia.com
178
+ © bsilvia - Fotolia.com
179
+ © Kovalenko Inna - Fotolia.com
180
+ © ceejay - Fotolia.com
181
+ © John Takai - Fotolia.com
182
+ © gl0ck - Fotolia.com
183
+ © Doreen Schlösser - Fotolia.com
184
+ © Brian Jackson - Fotolia.com
185
+ © innovari - Fotolia.com
186
+ © Valery Sibrikov - Fotolia.com
187
+ © anna - Fotolia.com
188
+ © Lars Böhme - Fotolia.com
189
+ © Joonarkan - Fotolia.com
190
+ © XJ6652 - Fotolia.com
191
+ © lenka - Fotolia.com
192
+ © ELEN - Fotolia.com
193
+ © phecsone - Fotolia.com
194
+ © Torsten Schon - Fotolia.com
195
+ © MACLEG - Fotolia.com
196
+ © James Thew - Fotolia.com
197
+ © Stephen Coburn - Fotolia.com
198
+ © 3drenderings - Fotolia.com
199
+ © xjbxjhxm - Fotolia.com
200
+ © photlook - Fotolia.com
201
+ © Valery Sibrikov - Fotolia.com
202
+ © ivan gusev - Fotolia.com
203
+ © Keith Wheatley - Fotolia.com
204
+ © Stefan Thiermayer - Fotolia.com
205
+ © Valery Sibrikov - Fotolia.com
206
+ © Algol - Fotolia.com
207
+ © bARTiko - Fotolia.com
208
+ © 3drenderings - Fotolia.com
209
+ © sharpner - Fotolia.com
210
+ © Valery Sibrikov - Fotolia.com
211
+ © Vasiliy Koval - Fotolia.com
212
+ © goce risteski - Fotolia.com
213
+ © Andreas Meyer - Fotolia.com
214
+ © Ericos - Fotolia.com
215
+ © FotoWorx - Fotolia.com
216
+ © A. Zaytsev - Fotolia.com
217
+ © Neiromobile - Fotolia.com
218
+ © wdohm - Fotolia.com
219
+ © Tetastock - Fotolia.com
220
+ © Goran Bogicevic - Fotolia.com
221
+ © Maxim Petrichuk - Fotolia.com
222
+ © A. Zaytsev - Fotolia.com
223
+ © 3drenderings - Fotolia.com
224
+ © Valery Sibrikov - Fotolia.com
225
+ © Hot Mama - Fotolia.com
226
+ © NataliyaF - Fotolia.com
227
+ © romantiche - Fotolia.com
228
+ © Valery Sibrikov - Fotolia.com
229
+ © Zanna Vilkova - Fotolia.com
230
+ © Valery Sibrikov - Fotolia.com
231
+ © ksena32@ukrpost.ua - Fotolia.com
232
+ © sigitas lukosevicius - Fotolia.com
233
+ © swisshippo - Fotolia.com
234
+ © magann - Fotolia.com
235
+ © Ralf Kraft - Fotolia.com
236
+ © Valery Sibrikov - Fotolia.com
237
+ © Alexey Shkitenkov - Fotolia.com
238
+ © anna - Fotolia.com
239
+ © 3drenderings - Fotolia.com
240
+ © Dmitry Knorre - Fotolia.com
241
+ © sharpner - Fotolia.com
242
+ © Aradan - Fotolia.com
243
+ © Valery Sibrikov - Fotolia.com
244
+ © Oleg Kulakov - Fotolia.com
245
+ © coco194 - Fotolia.com
246
+ © asiln - Fotolia.com
247
+ © Maksym Yemelyanov - Fotolia.com
248
+ © styleuneed - Fotolia.com
249
+ © Vanessa - Fotolia.com
250
+ © Andreas Meyer - Fotolia.com
251
+ © Ralf Kraft - Fotolia.com
252
+ © typomaniac - Fotolia.com
253
+ © astral113 - Fotolia.com
254
+ © Daniel Burch - Fotolia.com
255
+ © Adam Przezak - Fotolia.com
256
+ © Mark Payne - Fotolia.com
257
+ © Aleksandr Lobanov - Fotolia.com
258
+ © daseaford - Fotolia.com
259
+ © Alexandr Sidorov - Fotolia.com
260
+ © 3drenderings - Fotolia.com
261
+ © Maxim Pavlov - Fotolia.com
262
+ © petrafler - Fotolia.com
263
+ © mates - Fotolia.com
264
+ © Volodymyr Leus - Fotolia.com
265
+ © Aptyp_koK - Fotolia.com
266
+ © Sprinter81 - Fotolia.com
267
+ © Keith Flint - Fotolia.com
268
+ © s-girly - Fotolia.com
269
+ © DX - Fotolia.com
270
+ © Andreas Meyer - Fotolia.com
271
+ © Tyler Olson - Fotolia.com
272
+ © frenta - Fotolia.com
273
+ © Andrey Kiselev - Fotolia.com
274
+ © Tetastock - Fotolia.com
275
+ © Andreas Wechsel - Fotolia.com
276
+ © by-studio - Fotolia.com
277
+ © VegasX - Fotolia.com
278
+ © by-studio - Fotolia.com
279
+ © Tetastock - Fotolia.com
280
+ © braverabbit - Fotolia.com
281
+ © Alx - Fotolia.com
282
+ © Petersen - Fotolia.com
283
+ © CenturionStudio.it - Fotolia.com
284
+ © goce risteski - Fotolia.com
285
+ © ernandopacheco - Fotolia.com
286
+ © Julián Rovagnati - Fotolia.com
287
+ © PhotoStocker - Fotolia.com
288
+ © robootb - Fotolia.com
289
+ © adsheyn - Fotolia.com
290
+ © CenturionStudio.it - Fotolia.com
291
+ © Piotr Przeszlo - Fotolia.com
292
+ © Leonid Dorfman - Fotolia.com
293
+ © ktsdesign - Fotolia.com
294
+ © Kovalenko Inna - Fotolia.com
295
+ © 25 - Fotolia.com
296
+ © Stephi - Fotolia.com
297
+ © Yang MingQi - Fotolia.com
298
+ © Oleksandr Rozhkov - Fotolia.com
299
+ © Visual Concepts - Fotolia.com
300
+ © Visaro - Fotolia.com
301
+ © CenturionStudio.it - Fotolia.com
302
+ © Rob Bouwman - Fotolia.com
303
+ © Michael Shake - Fotolia.com
304
+ © Ericos - Fotolia.com
305
+ © Dark Vectorangel - Fotolia.com
306
+ © Michael Rosskothen - Fotolia.com
307
+ © Frank Schöttke - Fotolia.com
308
+ © Zelfit - Fotolia.com
309
+ © Terry Morris - Fotolia.com
310
+ © nstnad - Fotolia.com
311
+ © Zelfit - Fotolia.com
312
+ © Denys Rudyi - Fotolia.com
313
+ © Dmitry Gool - Fotolia.com
314
+ © decs - Fotolia.com
315
+ © EnmaAi - Fotolia.com
316
+ © Kareem Saady - Fotolia.com
317
+ © aromas - Fotolia.com
318
+ © V. Yakobchuk - Fotolia.com
319
+ © jossdiim - Fotolia.com
320
+ © 3desc - Fotolia.com
321
+ © koya79 - Fotolia.com
322
+ © Ralf Kraft - Fotolia.com
323
+ © Russ Allen - Fotolia.com
324
+ © innovari - Fotolia.com
325
+ © goce risteski - Fotolia.com
326
+ © Ingus Evertovskis - Fotolia.com
327
+ © Андрей Маханько - Fotolia.com
328
+ © Paul Moore - Fotolia.com
329
+ © Connfetti - Fotolia.com
330
+ © AlienCat - Fotolia.com
331
+ © Roman Butskykh - Fotolia.com
332
+ © Steve Young - Fotolia.com
333
+ © Bertold Werkmann - Fotolia.com
334
+ © Tetastock - Fotolia.com
335
+ © AlienCat - Fotolia.com
336
+ © York - Fotolia.com
337
+ © DM7 - Fotolia.com
338
+ © Spectral-Design - Fotolia.com
339
+ © Ralf Kraft - Fotolia.com
340
+ © Peter Galbraith - Fotolia.com
341
+ © Andreas Meyer - Fotolia.com
342
+ © York - Fotolia.com
343
+ © Matthias Haas - Fotolia.com
344
+ © gabriela63 - Fotolia.com
345
+ © Tetastock - Fotolia.com
346
+ © braverabbit - Fotolia.com
347
+ © Kalle Kolodziej - Fotolia.com
348
+ © Thomas Jansa - Fotolia.com
349
+ © Dark Vectorangel - Fotolia.com
350
+ © dommel55 - Fotolia.com
351
+ © Kobold-knopf81 - Fotolia.com
352
+ © Wolfsjunge - Fotolia.com
353
+ © s-girly - Fotolia.com
354
+ © Illimity - Fotolia.com
355
+ © Eagle - Fotolia.com
356
+ © fotofrank - Fotolia.com
357
+ © Dieter Hahn - Fotolia.com
358
+ © Ancello - Fotolia.com
359
+ © goldenangel - Fotolia.com
360
+ © Dmitry Knorre - Fotolia.com
361
+ © Rémi BORNET - Fotolia.com
362
+ © monamakela.com - Fotolia.com
363
+ © Giuseppe Porzani - Fotolia.com
364
+ © Spectral-Design - Fotolia.com
365
+ © Andreas Meyer - Fotolia.com
366
+ © boninchen - Fotolia.com
367
+ © dragonxxl - Fotolia.com
368
+ © Bertold Werkmann - Fotolia.com
369
+ © robotcity - Fotolia.com
370
+ © innovari - Fotolia.com
371
+ © Wolfsjunge - Fotolia.com
372
+ © Vladislav Ociacia - Fotolia.com
373
+ © Avark69 - Fotolia.com
374
+ © s-girly - Fotolia.com
375
+ © Dieter Hahn - Fotolia.com
376
+ © Eagle - Fotolia.com
377
+ © TebNad - Fotolia.com
378
+ © Alec Maharad - Fotolia.com
379
+ © Bionic Media - Fotolia.com
380
+ © Jose Gil - Fotolia.com
381
+ © s-girly - Fotolia.com
382
+ © Goran Bogicevic - Fotolia.com
383
+ © abdulsatarid - Fotolia.com
384
+ © Andreas Meyer - Fotolia.com
385
+ © Michael Rosskothen - Fotolia.com
386
+ © -= PHANTOM =- - Fotolia.com
387
+ © innovari - Fotolia.com
388
+ © africanstuff - Fotolia.com
389
+ © asrawolf - Fotolia.com
390
+ © s-girly - Fotolia.com
391
+ © Mushy - Fotolia.com
392
+ © Gary Scott - Fotolia.com
393
+ © s-girly - Fotolia.com
394
+ © Goran Bogicevic - Fotolia.com
395
+ © ronstik - Fotolia.com
396
+ © Sergey - Fotolia.com
397
+ © Joss - Fotolia.com
398
+ © Paweł Burgiel - Fotolia.com
399
+ © Stian Iversen - Fotolia.com
400
+ © s-girly - Fotolia.com
401
+ © Paul Moore - Fotolia.com
402
+ © thieury - Fotolia.com
403
+ © anubiscz - Fotolia.com
404
+ © Alexey Bragin - Fotolia.com
405
+ © Vadim Ponomarenko - Fotolia.com
406
+ © Gabriele Rohde - Fotolia.com
407
+ © s-girly - Fotolia.com
408
+ © bumer - Fotolia.com
409
+ © Andreas Meyer - Fotolia.com
410
+ © Steve Thompson - Fotolia.com
411
+ © Gary Scott - Fotolia.com
412
+ © James Steidl - Fotolia.com
413
+ © Gennady Poddubny - Fotolia.com
414
+ © yarchyk - Fotolia.com
415
+ © scoutingstock - Fotolia.com
416
+ © Ralf Kraft - Fotolia.com
417
+ © drx - Fotolia.com
418
+ © Michal Adamczyk - Fotolia.com
419
+ © Witold Krasowski - Fotolia.com
420
+ © FlyFishka - Fotolia.com
421
+ © Goran Bogicevic - Fotolia.com
422
+ © coolcat55 - Fotolia.com
423
+ © xygo_bg - Fotolia.com
424
+ © Nguyen Thai - Fotolia.com
425
+ © pilarts - Fotolia.com
426
+ © Nerlich Images - Fotolia.com
427
+ © alder - Fotolia.com
428
+ © TM - Design - Fotolia.com
429
+ © Udo Reitter - Fotolia.com
430
+ © Ralf Kraft - Fotolia.com
431
+ © Andrea Danti - Fotolia.com
432
+ © Zhann - Fotolia.com
433
+ © Nerlich Images - Fotolia.com
434
+ © Ralf Kraft - Fotolia.com
435
+ © Roman Kolenko - Fotolia.com
436
+ © Neliana Kostadinova - Fotolia.com
437
+ © ANK - Fotolia.com
438
+ © Doc RaBe - Fotolia.com
439
+ © Alberto Masnovo - Fotolia.com
440
+ © senoldo - Fotolia.com
441
+ © ra2 studio - Fotolia.com
442
+ © Jan Engel - Fotolia.com
443
+ © lesniewski - Fotolia.com
444
+ © kittisak_taramas - Fotolia.com
445
+ © wladi - Fotolia.com
446
+ </pre>