sunrise-widgets 0.1.0

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 (268) hide show
  1. data/Gemfile +34 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +21 -0
  4. data/Rakefile +27 -0
  5. data/app/controllers/manage/widgets_controller.rb +33 -0
  6. data/app/views/manage/widgets/_form.html.erb +21 -0
  7. data/app/views/manage/widgets/_model_filter.html.erb +40 -0
  8. data/app/views/manage/widgets/_widget.html.erb +41 -0
  9. data/app/views/manage/widgets/edit.html.erb +6 -0
  10. data/app/views/manage/widgets/index.html.erb +30 -0
  11. data/app/views/manage/widgets/new.html.erb +6 -0
  12. data/app/views/manage/widgets/show.html.erb +29 -0
  13. data/config/locales/ru.yml +18 -0
  14. data/config/locales/uk.yml +18 -0
  15. data/config/routes.rb +5 -0
  16. data/lib/generators/sunrise/widgets/USAGE +12 -0
  17. data/lib/generators/sunrise/widgets/install_generator.rb +40 -0
  18. data/lib/generators/sunrise/widgets/templates/create_widgets.rb +24 -0
  19. data/lib/generators/sunrise/widgets/templates/widget.rb +6 -0
  20. data/lib/generators/sunrise/widgets/templates/widget_position.rb +14 -0
  21. data/lib/generators/sunrise/widgets/templates/widget_sweeper.rb +21 -0
  22. data/lib/generators/sunrise/widgets/templates/widget_type.rb +15 -0
  23. data/lib/sunrise/models/widget.rb +39 -0
  24. data/lib/sunrise/widgets/engine.rb +18 -0
  25. data/lib/sunrise/widgets/version.rb +5 -0
  26. data/lib/sunrise/widgets.rb +12 -0
  27. data/lib/sunrise-widgets.rb +1 -0
  28. data/spec/controllers/manage/widgets_controller_spec.rb +95 -0
  29. data/spec/dummy/Rakefile +7 -0
  30. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  31. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  32. data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
  33. data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
  34. data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
  35. data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
  36. data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
  37. data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
  38. data/spec/dummy/app/models/defaults/ability.rb +39 -0
  39. data/spec/dummy/app/models/defaults/asset.rb +7 -0
  40. data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
  41. data/spec/dummy/app/models/defaults/avatar.rb +37 -0
  42. data/spec/dummy/app/models/defaults/header.rb +5 -0
  43. data/spec/dummy/app/models/defaults/page.rb +5 -0
  44. data/spec/dummy/app/models/defaults/picture.rb +35 -0
  45. data/spec/dummy/app/models/defaults/position_type.rb +7 -0
  46. data/spec/dummy/app/models/defaults/role.rb +20 -0
  47. data/spec/dummy/app/models/defaults/role_type.rb +8 -0
  48. data/spec/dummy/app/models/defaults/structure.rb +16 -0
  49. data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
  50. data/spec/dummy/app/models/defaults/user.rb +47 -0
  51. data/spec/dummy/app/views/layouts/application.html.erb +37 -0
  52. data/spec/dummy/app/views/pages/show.html.erb +2 -0
  53. data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
  54. data/spec/dummy/config/application.rb +47 -0
  55. data/spec/dummy/config/application.yml.sample +4 -0
  56. data/spec/dummy/config/boot.rb +10 -0
  57. data/spec/dummy/config/database.yml +22 -0
  58. data/spec/dummy/config/database.yml.sample +34 -0
  59. data/spec/dummy/config/environment.rb +5 -0
  60. data/spec/dummy/config/environments/development.rb +26 -0
  61. data/spec/dummy/config/environments/production.rb +49 -0
  62. data/spec/dummy/config/environments/test.rb +35 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/devise.rb +204 -0
  65. data/spec/dummy/config/initializers/inflections.rb +10 -0
  66. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  67. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  68. data/spec/dummy/config/initializers/session_store.rb +8 -0
  69. data/spec/dummy/config/initializers/simple_form.rb +93 -0
  70. data/spec/dummy/config/initializers/sunrise.rb +7 -0
  71. data/spec/dummy/config/locales/devise.en.yml +53 -0
  72. data/spec/dummy/config/locales/en.yml +5 -0
  73. data/spec/dummy/config/locales/simple_form.en.yml +24 -0
  74. data/spec/dummy/config/logrotate-config.sample +9 -0
  75. data/spec/dummy/config/nginx-config-passenger.sample +51 -0
  76. data/spec/dummy/config/routes.rb +64 -0
  77. data/spec/dummy/config.ru +4 -0
  78. data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
  79. data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
  80. data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
  81. data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
  82. data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
  83. data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
  84. data/spec/dummy/db/migrate/20110801161138_sunrise_create_widgets.rb +24 -0
  85. data/spec/dummy/db/seeds.rb +25 -0
  86. data/spec/dummy/db/test.sqlite3 +0 -0
  87. data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
  88. data/spec/dummy/log/development.log +5 -0
  89. data/spec/dummy/log/production.log +0 -0
  90. data/spec/dummy/log/server.log +0 -0
  91. data/spec/dummy/log/test.log +2324 -0
  92. data/spec/dummy/public/404.html +26 -0
  93. data/spec/dummy/public/422.html +26 -0
  94. data/spec/dummy/public/500.html +26 -0
  95. data/spec/dummy/public/favicon.ico +0 -0
  96. data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
  97. data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
  98. data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
  99. data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
  100. data/spec/dummy/public/images/manage/arrow.png +0 -0
  101. data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
  102. data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
  103. data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
  104. data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
  105. data/spec/dummy/public/images/manage/but_bg.png +0 -0
  106. data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
  107. data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
  108. data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
  109. data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
  110. data/spec/dummy/public/images/manage/but_gr.gif +0 -0
  111. data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
  112. data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
  113. data/spec/dummy/public/images/manage/but_search.gif +0 -0
  114. data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
  115. data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
  116. data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
  117. data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
  118. data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
  119. data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
  120. data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
  121. data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
  122. data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
  123. data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
  124. data/spec/dummy/public/images/manage/dot.gif +0 -0
  125. data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
  126. data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
  127. data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
  128. data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
  129. data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
  130. data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
  131. data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
  132. data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
  133. data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
  134. data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
  135. data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
  136. data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
  137. data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
  138. data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
  139. data/spec/dummy/public/images/manage/empty.gif +0 -0
  140. data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
  141. data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
  142. data/spec/dummy/public/images/manage/flag_en.gif +0 -0
  143. data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
  144. data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
  145. data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
  146. data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
  147. data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
  148. data/spec/dummy/public/images/manage/foto.jpg +0 -0
  149. data/spec/dummy/public/images/manage/ico_add.gif +0 -0
  150. data/spec/dummy/public/images/manage/ico_del.gif +0 -0
  151. data/spec/dummy/public/images/manage/ico_down.gif +0 -0
  152. data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
  153. data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
  154. data/spec/dummy/public/images/manage/ico_up.gif +0 -0
  155. data/spec/dummy/public/images/manage/input_bg.gif +0 -0
  156. data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
  157. data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
  158. data/spec/dummy/public/images/manage/mp3.png +0 -0
  159. data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
  160. data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
  161. data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
  162. data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
  163. data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
  164. data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
  165. data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
  166. data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
  167. data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
  168. data/spec/dummy/public/images/manage/preloader.gif +0 -0
  169. data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
  170. data/spec/dummy/public/images/manage/select_bg.gif +0 -0
  171. data/spec/dummy/public/images/manage/select_corn.gif +0 -0
  172. data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
  173. data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
  174. data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
  175. data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
  176. data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
  177. data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
  178. data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
  179. data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
  180. data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
  181. data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
  182. data/spec/dummy/public/images/manage/top_corn.gif +0 -0
  183. data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
  184. data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
  185. data/spec/dummy/public/images/manage/transp_cross.png +0 -0
  186. data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
  187. data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
  188. data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
  189. data/spec/dummy/public/images/manage/user_ico.gif +0 -0
  190. data/spec/dummy/public/images/manage/user_pic.gif +0 -0
  191. data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
  192. data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
  193. data/spec/dummy/public/javascripts/application.js +2 -0
  194. data/spec/dummy/public/javascripts/controls.js +965 -0
  195. data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
  196. data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
  197. data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
  198. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  199. data/spec/dummy/public/javascripts/effects.js +1123 -0
  200. data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
  201. data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
  202. data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
  203. data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
  204. data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
  205. data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
  206. data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
  207. data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
  208. data/spec/dummy/public/javascripts/manage.js +294 -0
  209. data/spec/dummy/public/javascripts/preloader.js +47 -0
  210. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  211. data/spec/dummy/public/javascripts/rails.js +331 -0
  212. data/spec/dummy/public/stylesheets/application.css +1 -0
  213. data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
  214. data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
  215. data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
  216. data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
  217. data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
  218. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
  219. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
  220. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
  221. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
  222. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
  223. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
  224. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
  225. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
  226. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
  227. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
  228. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
  229. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
  230. data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
  231. data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
  232. data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
  233. data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
  234. data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
  235. data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
  236. data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
  237. data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
  238. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  239. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  240. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  241. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  242. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  243. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  244. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  245. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  246. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
  247. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  248. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
  249. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
  250. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  251. data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
  252. data/spec/dummy/script/rails +6 -0
  253. data/spec/factories/structure_factory.rb +22 -0
  254. data/spec/factories/user_factory.rb +48 -0
  255. data/spec/factories/widget_factory.rb +12 -0
  256. data/spec/generators/install_generator_spec.rb +27 -0
  257. data/spec/integration/navigation_spec.rb +9 -0
  258. data/spec/models/widget_spec.rb +30 -0
  259. data/spec/spec.opts +2 -0
  260. data/spec/spec_helper.rb +57 -0
  261. data/spec/sunrise_widgets_spec.rb +7 -0
  262. data/spec/support/helpers/controller_macros.rb +40 -0
  263. data/spec/tmp/app/models/widget.rb +6 -0
  264. data/spec/tmp/app/models/widget_position.rb +14 -0
  265. data/spec/tmp/app/models/widget_type.rb +15 -0
  266. data/spec/tmp/app/sweepers/widget_sweeper.rb +21 -0
  267. data/spec/tmp/db/migrate/20110818113026_sunrise_create_widgets.rb +24 -0
  268. metadata +587 -0
@@ -0,0 +1,34 @@
1
+ # And be sure to use new-style password hashing:
2
+ # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
3
+ development:
4
+ adapter: mysql2
5
+ encoding: utf8
6
+ reconnect: false
7
+ database: dummy
8
+ pool: 5
9
+ username: root
10
+ password:
11
+ socket: /var/run/mysqld/mysqld.sock
12
+
13
+ # Warning: The database defined as "test" will be erased and
14
+ # re-generated from your development database when you run "rake".
15
+ # Do not set this db to the same as development or production.
16
+ test:
17
+ adapter: mysql2
18
+ encoding: utf8
19
+ reconnect: false
20
+ database: dummy_test
21
+ pool: 5
22
+ username: root
23
+ password:
24
+ socket: /var/run/mysqld/mysqld.sock
25
+
26
+ production:
27
+ adapter: mysql2
28
+ encoding: utf8
29
+ reconnect: true
30
+ database: dummy
31
+ pool: 5
32
+ username: root
33
+ password:
34
+ socket: /var/run/mysqld/mysqld.sock
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,26 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the webserver when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_view.debug_rjs = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Don't care if the mailer can't send
18
+ config.action_mailer.raise_delivery_errors = false
19
+
20
+ # Print deprecation notices to the Rails logger
21
+ config.active_support.deprecation = :log
22
+
23
+ # Only use best-standards-support built into browsers
24
+ config.action_dispatch.best_standards_support = :builtin
25
+ end
26
+
@@ -0,0 +1,49 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The production environment is meant for finished, "live" apps.
5
+ # Code is not reloaded between requests
6
+ config.cache_classes = true
7
+
8
+ # Full error reports are disabled and caching is turned on
9
+ config.consider_all_requests_local = false
10
+ config.action_controller.perform_caching = true
11
+
12
+ # Specifies the header that your server uses for sending files
13
+ config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
+
15
+ # For nginx:
16
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
+
18
+ # If you have no front-end server that supports something like X-Sendfile,
19
+ # just comment this out and Rails will serve the files
20
+
21
+ # See everything in the log (default is :info)
22
+ # config.log_level = :debug
23
+
24
+ # Use a different logger for distributed setups
25
+ # config.logger = SyslogLogger.new
26
+
27
+ # Use a different cache store in production
28
+ # config.cache_store = :mem_cache_store
29
+
30
+ # Disable Rails's static asset server
31
+ # In production, Apache or nginx will already do this
32
+ config.serve_static_assets = false
33
+
34
+ # Enable serving of images, stylesheets, and javascripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+ # Disable delivery errors, bad email addresses will be ignored
38
+ # config.action_mailer.raise_delivery_errors = false
39
+
40
+ # Enable threaded mode
41
+ # config.threadsafe!
42
+
43
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
+ # the I18n.default_locale when a translation can not be found)
45
+ config.i18n.fallbacks = true
46
+
47
+ # Send deprecation notices to registered listeners
48
+ config.active_support.deprecation = :notify
49
+ end
@@ -0,0 +1,35 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Log error messages when you accidentally call methods on nil.
11
+ config.whiny_nils = true
12
+
13
+ # Show full error reports and disable caching
14
+ config.consider_all_requests_local = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Raise exceptions instead of rendering exception templates
18
+ config.action_dispatch.show_exceptions = false
19
+
20
+ # Disable request forgery protection in test environment
21
+ config.action_controller.allow_forgery_protection = false
22
+
23
+ # Tell Action Mailer not to deliver emails to the real world.
24
+ # The :test delivery method accumulates sent emails in the
25
+ # ActionMailer::Base.deliveries array.
26
+ config.action_mailer.delivery_method = :test
27
+
28
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
29
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
30
+ # like if you have constraints or database-specific column types
31
+ # config.active_record.schema_format = :sql
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,204 @@
1
+ # Use this hook to configure devise mailer, warden hooks and so forth. The first
2
+ # four configuration values can also be set straight in your models.
3
+ Devise.setup do |config|
4
+ # ==> Mailer Configuration
5
+ # Configure the e-mail address which will be shown in DeviseMailer.
6
+ config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
7
+
8
+ # Configure the class responsible to send e-mails.
9
+ # config.mailer = "Devise::Mailer"
10
+
11
+ # ==> ORM configuration
12
+ # Load and configure the ORM. Supports :active_record (default) and
13
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
14
+ # available as additional gems.
15
+ require 'devise/orm/active_record'
16
+
17
+ # ==> Configuration for any authentication mechanism
18
+ # Configure which keys are used when authenticating a user. The default is
19
+ # just :email. You can configure it to use [:username, :subdomain], so for
20
+ # authenticating a user, both parameters are required. Remember that those
21
+ # parameters are used only when authenticating and not when retrieving from
22
+ # session. If you need permissions, you should implement that in a before filter.
23
+ # You can also supply a hash where the value is a boolean determining whether
24
+ # or not authentication should be aborted when the value is not present.
25
+ # config.authentication_keys = [ :email ]
26
+
27
+ # Configure parameters from the request object used for authentication. Each entry
28
+ # given should be a request method and it will automatically be passed to the
29
+ # find_for_authentication method and considered in your model lookup. For instance,
30
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
31
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
32
+ # config.request_keys = []
33
+
34
+ # Configure which authentication keys should be case-insensitive.
35
+ # These keys will be downcased upon creating or modifying a user and when used
36
+ # to authenticate or find a user. Default is :email.
37
+ config.case_insensitive_keys = [ :email ]
38
+
39
+ # Configure which authentication keys should have whitespace stripped.
40
+ # These keys will have whitespace before and after removed upon creating or
41
+ # modifying a user and when used to authenticate or find a user. Default is :email.
42
+ config.strip_whitespace_keys = [ :email ]
43
+
44
+ # Tell if authentication through request.params is enabled. True by default.
45
+ # config.params_authenticatable = true
46
+
47
+ # Tell if authentication through HTTP Basic Auth is enabled. False by default.
48
+ # config.http_authenticatable = false
49
+
50
+ # If http headers should be returned for AJAX requests. True by default.
51
+ # config.http_authenticatable_on_xhr = true
52
+
53
+ # The realm used in Http Basic Authentication. "Application" by default.
54
+ # config.http_authentication_realm = "Application"
55
+
56
+ # It will change confirmation, password recovery and other workflows
57
+ # to behave the same regardless if the e-mail provided was right or wrong.
58
+ # Does not affect registerable.
59
+ # config.paranoid = true
60
+
61
+ # ==> Configuration for :database_authenticatable
62
+ # For bcrypt, this is the cost for hashing the password and defaults to 10. If
63
+ # using other encryptors, it sets how many times you want the password re-encrypted.
64
+ config.stretches = 10
65
+
66
+ # Setup a pepper to generate the encrypted password.
67
+ # config.pepper = "6c4680fcdb1a6e0853a15109768de7a7685550498210d5a9d5a25bf6934cc4d1c50378ed2db70f46e9fce4bbe7f1c3dfdc4c3fb957c0d10343420c676feb7e37"
68
+
69
+ # ==> Configuration for :confirmable
70
+ # The time you want to give your user to confirm his account. During this time
71
+ # he will be able to access your application without confirming. Default is 0.days
72
+ # When confirm_within is zero, the user won't be able to sign in without confirming.
73
+ # You can use this to let your user access some features of your application
74
+ # without confirming the account, but blocking it after a certain period
75
+ # (ie 2 days).
76
+ # config.confirm_within = 2.days
77
+
78
+ # Defines which key will be used when confirming an account
79
+ # config.confirmation_keys = [ :email ]
80
+
81
+ # ==> Configuration for :rememberable
82
+ # The time the user will be remembered without asking for credentials again.
83
+ # config.remember_for = 2.weeks
84
+
85
+ # If true, a valid remember token can be re-used between multiple browsers.
86
+ # config.remember_across_browsers = true
87
+
88
+ # If true, extends the user's remember period when remembered via cookie.
89
+ # config.extend_remember_period = false
90
+
91
+ # If true, uses the password salt as remember token. This should be turned
92
+ # to false if you are not using database authenticatable.
93
+ config.use_salt_as_remember_token = true
94
+
95
+ # Options to be passed to the created cookie. For instance, you can set
96
+ # :secure => true in order to force SSL only cookies.
97
+ # config.cookie_options = {}
98
+
99
+ # ==> Configuration for :validatable
100
+ # Range for password length. Default is 6..128.
101
+ # config.password_length = 6..128
102
+
103
+ # Regex to use to validate the email address
104
+ # config.email_regexp = /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i
105
+
106
+ # ==> Configuration for :timeoutable
107
+ # The time you want to timeout the user session without activity. After this
108
+ # time the user will be asked for credentials again. Default is 30 minutes.
109
+ # config.timeout_in = 30.minutes
110
+
111
+ # ==> Configuration for :lockable
112
+ # Defines which strategy will be used to lock an account.
113
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
114
+ # :none = No lock strategy. You should handle locking by yourself.
115
+ # config.lock_strategy = :failed_attempts
116
+
117
+ # Defines which key will be used when locking and unlocking an account
118
+ # config.unlock_keys = [ :email ]
119
+
120
+ # Defines which strategy will be used to unlock an account.
121
+ # :email = Sends an unlock link to the user email
122
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
123
+ # :both = Enables both strategies
124
+ # :none = No unlock strategy. You should handle unlocking by yourself.
125
+ # config.unlock_strategy = :both
126
+
127
+ # Number of authentication tries before locking an account if lock_strategy
128
+ # is failed attempts.
129
+ # config.maximum_attempts = 20
130
+
131
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
132
+ # config.unlock_in = 1.hour
133
+
134
+ # ==> Configuration for :recoverable
135
+ #
136
+ # Defines which key will be used when recovering the password for an account
137
+ # config.reset_password_keys = [ :email ]
138
+
139
+ # Time interval you can reset your password with a reset password key.
140
+ # Don't put a too small interval or your users won't have the time to
141
+ # change their passwords.
142
+ config.reset_password_within = 2.hours
143
+
144
+ # ==> Configuration for :encryptable
145
+ # Allow you to use another encryption algorithm besides bcrypt (default). You can use
146
+ # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
147
+ # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
148
+ # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
149
+ # REST_AUTH_SITE_KEY to pepper)
150
+ # config.encryptor = :sha512
151
+
152
+ # ==> Configuration for :token_authenticatable
153
+ # Defines name of the authentication token params key
154
+ # config.token_authentication_key = :auth_token
155
+
156
+ # If true, authentication through token does not store user in session and needs
157
+ # to be supplied on each request. Useful if you are using the token as API token.
158
+ # config.stateless_token = false
159
+
160
+ # ==> Scopes configuration
161
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
162
+ # "users/sessions/new". It's turned off by default because it's slower if you
163
+ # are using only default views.
164
+ # config.scoped_views = false
165
+
166
+ # Configure the default scope given to Warden. By default it's the first
167
+ # devise role declared in your routes (usually :user).
168
+ # config.default_scope = :user
169
+
170
+ # Configure sign_out behavior.
171
+ # Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
172
+ # The default is true, which means any logout action will sign out all active scopes.
173
+ # config.sign_out_all_scopes = true
174
+
175
+ # ==> Navigation configuration
176
+ # Lists the formats that should be treated as navigational. Formats like
177
+ # :html, should redirect to the sign in page when the user does not have
178
+ # access, but formats like :xml or :json, should return 401.
179
+ #
180
+ # If you have any extra navigational formats, like :iphone or :mobile, you
181
+ # should add them to the navigational formats lists.
182
+ #
183
+ # The :"*/*" and "*/*" formats below is required to match Internet
184
+ # Explorer requests.
185
+ # config.navigational_formats = [:"*/*", "*/*", :html]
186
+
187
+ # The default HTTP method used to sign out a resource. Default is :delete.
188
+ config.sign_out_via = :delete
189
+
190
+ # ==> OmniAuth
191
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
192
+ # up on your models and hooks.
193
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
194
+
195
+ # ==> Warden configuration
196
+ # If you want to use other strategies, that are not supported by Devise, or
197
+ # change the failure app, you can configure them inside the config.warden block.
198
+ #
199
+ # config.warden do |manager|
200
+ # manager.failure_app = AnotherApp
201
+ # manager.intercept_401 = false
202
+ # manager.default_strategies(:scope => :user).unshift :some_external_strategy
203
+ # end
204
+ end
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '8cc0e14ed7abe67bd9154ae3c89bb212b44cd1433a41e9a9af9f82d9ba2e703f2da2bbe0627e65a856f4cb58c387c826bf7086e3e7c780ce516d6c6116ff456a'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,93 @@
1
+ # Use this setup block to configure all options available in SimpleForm.
2
+ SimpleForm.setup do |config|
3
+ # Components used by the form builder to generate a complete input. You can remove
4
+ # any of them, change the order, or even add your own components to the stack.
5
+ # config.components = [ :placeholder, :label_input, :hint, :error ]
6
+
7
+ # Default tag used on hints.
8
+ # config.hint_tag = :span
9
+
10
+ # CSS class to add to all hint tags.
11
+ # config.hint_class = :hint
12
+
13
+ # CSS class used on errors.
14
+ # config.error_class = :error
15
+
16
+ # Default tag used on errors.
17
+ # config.error_tag = :span
18
+
19
+ # Method used to tidy up errors.
20
+ # config.error_method = :first
21
+
22
+ # Default tag used for error notification helper.
23
+ # config.error_notification_tag = :p
24
+
25
+ # CSS class to add for error notification helper.
26
+ # config.error_notification_class = :error_notification
27
+
28
+ # ID to add for error notification helper.
29
+ # config.error_notification_id = nil
30
+
31
+ # You can wrap all inputs in a pre-defined tag.
32
+ # config.wrapper_tag = :div
33
+
34
+ # CSS class to add to all wrapper tags.
35
+ # config.wrapper_class = :input
36
+
37
+ # CSS class to add to the wrapper if the field has errors.
38
+ # config.wrapper_error_class = :field_with_errors
39
+
40
+ # You can wrap a collection of radio/check boxes in a pre-defined tag, defaulting to none.
41
+ # config.collection_wrapper_tag = nil
42
+
43
+ # You can wrap each item in a collection of radio/check boxes with a tag, defaulting to span.
44
+ # config.item_wrapper_tag = :span
45
+
46
+ # Series of attempts to detect a default label method for collection.
47
+ # config.collection_label_methods = [ :to_label, :name, :title, :to_s ]
48
+
49
+ # Series of attempts to detect a default value method for collection.
50
+ # config.collection_value_methods = [ :id, :to_s ]
51
+
52
+ # How the label text should be generated altogether with the required text.
53
+ # config.label_text = lambda { |label, required| "#{required} #{label}" }
54
+
55
+ # You can define the class to use on all labels. Default is nil.
56
+ # config.label_class = nil
57
+
58
+ # You can define the class to use on all forms. Default is simple_form.
59
+ # config.form_class = :simple_form
60
+
61
+ # Whether attributes are required by default (or not). Default is true.
62
+ # config.required_by_default = true
63
+
64
+ # Tell browsers whether to use default HTML5 validations (novalidate option).
65
+ # Default is enabled.
66
+ # config.browser_validations = true
67
+
68
+ # Determines whether HTML5 types (:email, :url, :search, :tel) and attributes
69
+ # (e.g. required) are used or not. True by default.
70
+ # Having this on in non-HTML5 compliant sites can cause odd behavior in
71
+ # HTML5-aware browsers such as Chrome.
72
+ # config.html5 = true
73
+
74
+ # Custom mappings for input types. This should be a hash containing a regexp
75
+ # to match as key, and the input type that will be used when the field name
76
+ # matches the regexp as value.
77
+ # config.input_mappings = { /count/ => :integer }
78
+
79
+ # Collection of methods to detect if a file type was given.
80
+ # config.file_methods = [ :mounted_as, :file?, :public_filename ]
81
+
82
+ # Default priority for time_zone inputs.
83
+ # config.time_zone_priority = nil
84
+
85
+ # Default priority for country inputs.
86
+ # config.country_priority = nil
87
+
88
+ # Default size for text inputs.
89
+ # config.default_input_size = 50
90
+
91
+ # When false, do not use translations for labels, hints or placeholders.
92
+ # config.translate = true
93
+ end
@@ -0,0 +1,7 @@
1
+ # Use this hook to configure sunrise
2
+ if Object.const_defined?("Sunrise")
3
+ Sunrise.setup do |config|
4
+ # Flash keys
5
+ #config.flash_keys = [ :success, :failure ]
6
+ end
7
+ end
@@ -0,0 +1,53 @@
1
+ # Additional translations at http://github.com/plataformatec/devise/wiki/I18n
2
+
3
+ en:
4
+ errors:
5
+ messages:
6
+ expired: "has expired, please request a new one"
7
+ not_found: "not found"
8
+ already_confirmed: "was already confirmed, please try signing in"
9
+ not_locked: "was not locked"
10
+ not_saved:
11
+ one: "1 error prohibited this %{resource} from being saved:"
12
+ other: "%{count} errors prohibited this %{resource} from being saved:"
13
+
14
+ devise:
15
+ failure:
16
+ already_authenticated: 'You are already signed in.'
17
+ unauthenticated: 'You need to sign in or sign up before continuing.'
18
+ unconfirmed: 'You have to confirm your account before continuing.'
19
+ locked: 'Your account is locked.'
20
+ invalid: 'Invalid email or password.'
21
+ invalid_token: 'Invalid authentication token.'
22
+ timeout: 'Your session expired, please sign in again to continue.'
23
+ inactive: 'Your account was not activated yet.'
24
+ sessions:
25
+ signed_in: 'Signed in successfully.'
26
+ signed_out: 'Signed out successfully.'
27
+ passwords:
28
+ send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
29
+ updated: 'Your password was changed successfully. You are now signed in.'
30
+ send_paranoid_instructions: "If your e-mail exists on our database, you will receive a password recovery link on your e-mail"
31
+ confirmations:
32
+ send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
33
+ send_paranoid_instructions: 'If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.'
34
+ confirmed: 'Your account was successfully confirmed. You are now signed in.'
35
+ registrations:
36
+ signed_up: 'Welcome! You have signed up successfully.'
37
+ inactive_signed_up: 'You have signed up successfully. However, we could not sign you in because your account is %{reason}.'
38
+ updated: 'You updated your account successfully.'
39
+ destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
40
+ unlocks:
41
+ send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
42
+ unlocked: 'Your account was successfully unlocked. You are now signed in.'
43
+ send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.'
44
+ omniauth_callbacks:
45
+ success: 'Successfully authorized from %{kind} account.'
46
+ failure: 'Could not authorize you from %{kind} because "%{reason}".'
47
+ mailer:
48
+ confirmation_instructions:
49
+ subject: 'Confirmation instructions'
50
+ reset_password_instructions:
51
+ subject: 'Reset password instructions'
52
+ unlock_instructions:
53
+ subject: 'Unlock Instructions'
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,24 @@
1
+ en:
2
+ simple_form:
3
+ "yes": 'Yes'
4
+ "no": 'No'
5
+ required:
6
+ text: 'required'
7
+ mark: '*'
8
+ # You can uncomment the line below if you need to overwrite the whole required html.
9
+ # When using html, text and mark won't be used.
10
+ # html: '<abbr title="required">*</abbr>'
11
+ error_notification:
12
+ default_message: "Some errors were found, please take a look:"
13
+ # Labels and hints examples
14
+ # labels:
15
+ # password: 'Password'
16
+ # user:
17
+ # new:
18
+ # email: 'E-mail para efetuar o sign in.'
19
+ # edit:
20
+ # email: 'E-mail.'
21
+ # hints:
22
+ # username: 'User name to sign in.'
23
+ # password: 'No special characters, please.'
24
+
@@ -0,0 +1,9 @@
1
+ /var/www/gems/sunrise-questions/spec/dummy/log/*.log {
2
+ copytruncate
3
+ daily
4
+ rotate 4
5
+ missingok
6
+ notifempty
7
+ compress
8
+ nodelaycompress
9
+ }
@@ -0,0 +1,51 @@
1
+ # You may add here your
2
+ # server {
3
+ # ...
4
+ # }
5
+ # statements for each of your virtual hosts
6
+
7
+
8
+ server {
9
+ listen 80;
10
+ server_name .dummy.brainberry.com.ua;
11
+
12
+ server_tokens off;
13
+
14
+ gzip on;
15
+ gzip_proxied any;
16
+ gzip_min_length 1100;
17
+ gzip_buffers 12 4k;
18
+ gzip_types text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
19
+
20
+ client_max_body_size 200M;
21
+ client_body_buffer_size 128k;
22
+ client_header_timeout 60;
23
+ client_body_timeout 260;
24
+ send_timeout 260;
25
+ keepalive_timeout 60;
26
+
27
+ large_client_header_buffers 4 4k;
28
+ client_header_buffer_size 1k;
29
+
30
+ connection_pool_size 256;
31
+ ignore_invalid_headers on;
32
+ postpone_output 1460;
33
+ output_buffers 4 32k;
34
+ request_pool_size 4k;
35
+
36
+ passenger_enabled on;
37
+ rails_env production;
38
+ # rack_env production;
39
+
40
+ root /var/www/gems/sunrise-questions/spec/dummy/public;
41
+
42
+ location ~ /\.[^\/]+ {
43
+ return 404;
44
+ }
45
+
46
+ location ~* ^.+\.(jpg|jpeg|gif|png|css|js|swf|ico|mov|flv|fla|pdf|zip|rar|doc|xls)$
47
+ {
48
+ expires 12h;
49
+ add_header Cache-Control private;
50
+ }
51
+ }