muck-engine 3.3.9 → 3.3.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (631) hide show
  1. data/VERSION +1 -1
  2. data/app/helpers/muck_engine_helper.rb +12 -0
  3. data/muck-engine.gemspec +630 -3
  4. data/test/app/controllers/admin/default_controller.rb +7 -0
  5. data/test/app/controllers/application_controller.rb +5 -0
  6. data/test/app/controllers/default_controller.rb +7 -0
  7. data/test/app/helpers/application_helper.rb +3 -0
  8. data/test/app/models/.keep +0 -0
  9. data/test/app/models/country.rb +13 -0
  10. data/test/app/models/language.rb +15 -0
  11. data/test/app/models/state.rb +13 -0
  12. data/test/app/models/user.rb +4 -0
  13. data/test/app/models/user_session.rb +2 -0
  14. data/test/app/views/admin/default/index.html.erb +1 -0
  15. data/test/app/views/default/index.html.erb +1 -0
  16. data/test/app/views/layouts/default.html.erb +22 -0
  17. data/test/autotest/discover.rb +2 -0
  18. data/test/config/application.rb +42 -0
  19. data/test/config/assets.yml +34 -0
  20. data/test/config/boot.rb +13 -0
  21. data/test/config/cucumber.yml +8 -0
  22. data/test/config/database.yml +23 -0
  23. data/test/config/environment.rb +5 -0
  24. data/test/config/environments/development.rb +26 -0
  25. data/test/config/environments/production.rb +49 -0
  26. data/test/config/environments/test.rb +35 -0
  27. data/test/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/config/initializers/inflections.rb +10 -0
  29. data/test/config/initializers/mime_types.rb +5 -0
  30. data/test/config/initializers/muck.rb +33 -0
  31. data/test/config/initializers/secret_token.rb +7 -0
  32. data/test/config/initializers/session_store.rb +8 -0
  33. data/test/config/routes.rb +4 -0
  34. data/test/db/.keep +0 -0
  35. data/test/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
  36. data/test/db/migrate/20090327231918_create_users.rb +40 -0
  37. data/test/db/migrate/20090402234137_create_languages.rb +18 -0
  38. data/test/db/migrate/20090426041056_create_countries.rb +15 -0
  39. data/test/db/migrate/20090426041103_create_states.rb +18 -0
  40. data/test/db/migrate/20090530170040_create_themes.rb +11 -0
  41. data/test/db/migrate/20090606153236_create_domain_themes.rb +13 -0
  42. data/test/db/migrate/20100123035450_create_access_codes.rb +19 -0
  43. data/test/db/migrate/20100123233654_create_access_code_requests.rb +14 -0
  44. data/test/db/migrate/20101117172951_add_name_to_access_code_requests.rb +9 -0
  45. data/test/db/migrate/20110303183433_add_sent_to_to_access_codes.rb +9 -0
  46. data/test/db/schema.rb +125 -0
  47. data/test/features/step_definitions/web_steps.rb +219 -0
  48. data/test/features/support/custom_env.rb +19 -0
  49. data/test/features/support/env.rb +58 -0
  50. data/test/features/support/paths.rb +33 -0
  51. data/test/lib/tasks/cucumber.rake +53 -0
  52. data/test/public/.htaccess +40 -0
  53. data/test/public/404.html +30 -0
  54. data/test/public/422.html +30 -0
  55. data/test/public/500.html +30 -0
  56. data/test/public/dispatch.rb +10 -0
  57. data/test/public/favicon.ico +0 -0
  58. data/test/public/images/admin/Home.gif +0 -0
  59. data/test/public/images/admin/roles.gif +0 -0
  60. data/test/public/images/admin/source/Home.png +0 -0
  61. data/test/public/images/admin/source/roles.png +0 -0
  62. data/test/public/images/admin/source/user.png +0 -0
  63. data/test/public/images/admin/user.gif +0 -0
  64. data/test/public/images/arrow_down.gif +0 -0
  65. data/test/public/images/arrow_left.gif +0 -0
  66. data/test/public/images/arrow_right.gif +0 -0
  67. data/test/public/images/arrow_up.gif +0 -0
  68. data/test/public/images/fancybox/blank.gif +0 -0
  69. data/test/public/images/fancybox/fancy_close.png +0 -0
  70. data/test/public/images/fancybox/fancy_closebox.png +0 -0
  71. data/test/public/images/fancybox/fancy_left.png +0 -0
  72. data/test/public/images/fancybox/fancy_loading.png +0 -0
  73. data/test/public/images/fancybox/fancy_nav_left.png +0 -0
  74. data/test/public/images/fancybox/fancy_nav_right.png +0 -0
  75. data/test/public/images/fancybox/fancy_progress.png +0 -0
  76. data/test/public/images/fancybox/fancy_right.png +0 -0
  77. data/test/public/images/fancybox/fancy_shadow_e.png +0 -0
  78. data/test/public/images/fancybox/fancy_shadow_n.png +0 -0
  79. data/test/public/images/fancybox/fancy_shadow_ne.png +0 -0
  80. data/test/public/images/fancybox/fancy_shadow_nw.png +0 -0
  81. data/test/public/images/fancybox/fancy_shadow_s.png +0 -0
  82. data/test/public/images/fancybox/fancy_shadow_se.png +0 -0
  83. data/test/public/images/fancybox/fancy_shadow_sw.png +0 -0
  84. data/test/public/images/fancybox/fancy_shadow_w.png +0 -0
  85. data/test/public/images/fancybox/fancy_title_left.png +0 -0
  86. data/test/public/images/fancybox/fancy_title_main.png +0 -0
  87. data/test/public/images/fancybox/fancy_title_over.png +0 -0
  88. data/test/public/images/fancybox/fancy_title_right.png +0 -0
  89. data/test/public/images/fancybox/fancybox-x.png +0 -0
  90. data/test/public/images/fancybox/fancybox-y.png +0 -0
  91. data/test/public/images/fancybox/fancybox.png +0 -0
  92. data/test/public/images/icon_no.gif +0 -0
  93. data/test/public/images/icon_success.gif +0 -0
  94. data/test/public/images/icons/accept.png +0 -0
  95. data/test/public/images/icons/add.png +0 -0
  96. data/test/public/images/icons/blue_guy.png +0 -0
  97. data/test/public/images/icons/button_background.png +0 -0
  98. data/test/public/images/icons/cancel.png +0 -0
  99. data/test/public/images/icons/close.png +0 -0
  100. data/test/public/images/icons/comment.png +0 -0
  101. data/test/public/images/icons/delete.png +0 -0
  102. data/test/public/images/icons/exclaim.png +0 -0
  103. data/test/public/images/icons/external.png +0 -0
  104. data/test/public/images/icons/feed.png +0 -0
  105. data/test/public/images/icons/grey_guy.png +0 -0
  106. data/test/public/images/icons/hide.png +0 -0
  107. data/test/public/images/icons/information.png +0 -0
  108. data/test/public/images/icons/minus.png +0 -0
  109. data/test/public/images/icons/pending.png +0 -0
  110. data/test/public/images/icons/question.png +0 -0
  111. data/test/public/images/icons/search_box.png +0 -0
  112. data/test/public/images/icons/star.png +0 -0
  113. data/test/public/images/icons/stop.png +0 -0
  114. data/test/public/images/icons/thumb_down.png +0 -0
  115. data/test/public/images/icons/thumb_up.png +0 -0
  116. data/test/public/images/icons/vote.png +0 -0
  117. data/test/public/images/loading.gif +0 -0
  118. data/test/public/images/nothing.png +0 -0
  119. data/test/public/images/profile_default.jpg +0 -0
  120. data/test/public/images/service_icons/16/amazon.png +0 -0
  121. data/test/public/images/service_icons/16/ask.png +0 -0
  122. data/test/public/images/service_icons/16/bibsonomy.png +0 -0
  123. data/test/public/images/service_icons/16/bing.png +0 -0
  124. data/test/public/images/service_icons/16/blogger.png +0 -0
  125. data/test/public/images/service_icons/16/bloglines.png +0 -0
  126. data/test/public/images/service_icons/16/citeulike.png +0 -0
  127. data/test/public/images/service_icons/16/clipmarks.png +0 -0
  128. data/test/public/images/service_icons/16/connotea.png +0 -0
  129. data/test/public/images/service_icons/16/dailymotion.png +0 -0
  130. data/test/public/images/service_icons/16/delicious.png +0 -0
  131. data/test/public/images/service_icons/16/digg.png +0 -0
  132. data/test/public/images/service_icons/16/diigo.png +0 -0
  133. data/test/public/images/service_icons/16/facebook.png +0 -0
  134. data/test/public/images/service_icons/16/feed.png +0 -0
  135. data/test/public/images/service_icons/16/fireeagle.png +0 -0
  136. data/test/public/images/service_icons/16/flickr.png +0 -0
  137. data/test/public/images/service_icons/16/fotolog.png +0 -0
  138. data/test/public/images/service_icons/16/friendfeed.png +0 -0
  139. data/test/public/images/service_icons/16/friendster.png +0 -0
  140. data/test/public/images/service_icons/16/furl.png +0 -0
  141. data/test/public/images/service_icons/16/goodreads.png +0 -0
  142. data/test/public/images/service_icons/16/google.png +0 -0
  143. data/test/public/images/service_icons/16/googleblog.png +0 -0
  144. data/test/public/images/service_icons/16/googlenews.png +0 -0
  145. data/test/public/images/service_icons/16/icerocket.png +0 -0
  146. data/test/public/images/service_icons/16/identica.png +0 -0
  147. data/test/public/images/service_icons/16/joost.png +0 -0
  148. data/test/public/images/service_icons/16/lastfm.png +0 -0
  149. data/test/public/images/service_icons/16/librarything.png +0 -0
  150. data/test/public/images/service_icons/16/linkedin.png +0 -0
  151. data/test/public/images/service_icons/16/livejournal.png +0 -0
  152. data/test/public/images/service_icons/16/magnolia.png +0 -0
  153. data/test/public/images/service_icons/16/mendeley.png +0 -0
  154. data/test/public/images/service_icons/16/metacafe.png +0 -0
  155. data/test/public/images/service_icons/16/mixx.png +0 -0
  156. data/test/public/images/service_icons/16/myspace.png +0 -0
  157. data/test/public/images/service_icons/16/netflix.png +0 -0
  158. data/test/public/images/service_icons/16/netvibes.png +0 -0
  159. data/test/public/images/service_icons/16/newsvine.png +0 -0
  160. data/test/public/images/service_icons/16/oai.png +0 -0
  161. data/test/public/images/service_icons/16/odeo.png +0 -0
  162. data/test/public/images/service_icons/16/opml.png +0 -0
  163. data/test/public/images/service_icons/16/pandora.png +0 -0
  164. data/test/public/images/service_icons/16/photobucket.png +0 -0
  165. data/test/public/images/service_icons/16/picasa.png +0 -0
  166. data/test/public/images/service_icons/16/polyvore.png +0 -0
  167. data/test/public/images/service_icons/16/pownce.png +0 -0
  168. data/test/public/images/service_icons/16/reddit.png +0 -0
  169. data/test/public/images/service_icons/16/simpy.png +0 -0
  170. data/test/public/images/service_icons/16/smugmug.png +0 -0
  171. data/test/public/images/service_icons/16/stumbleupon.png +0 -0
  172. data/test/public/images/service_icons/16/tag.png +0 -0
  173. data/test/public/images/service_icons/16/technorati.png +0 -0
  174. data/test/public/images/service_icons/16/tumblr.png +0 -0
  175. data/test/public/images/service_icons/16/twine.png +0 -0
  176. data/test/public/images/service_icons/16/twitter.png +0 -0
  177. data/test/public/images/service_icons/16/vimeo.png +0 -0
  178. data/test/public/images/service_icons/16/webshots.png +0 -0
  179. data/test/public/images/service_icons/16/wordpress.png +0 -0
  180. data/test/public/images/service_icons/16/xanga.png +0 -0
  181. data/test/public/images/service_icons/16/yahoo.png +0 -0
  182. data/test/public/images/service_icons/16/yelp.png +0 -0
  183. data/test/public/images/service_icons/16/youtube.png +0 -0
  184. data/test/public/images/service_icons/16/zooomr.png +0 -0
  185. data/test/public/images/service_icons/16/zotero.png +0 -0
  186. data/test/public/images/service_icons/24/amazon.png +0 -0
  187. data/test/public/images/service_icons/24/ask.png +0 -0
  188. data/test/public/images/service_icons/24/bibsonomy.png +0 -0
  189. data/test/public/images/service_icons/24/bing.png +0 -0
  190. data/test/public/images/service_icons/24/blogger.png +0 -0
  191. data/test/public/images/service_icons/24/bloglines.png +0 -0
  192. data/test/public/images/service_icons/24/citeulike.png +0 -0
  193. data/test/public/images/service_icons/24/clipmarks.png +0 -0
  194. data/test/public/images/service_icons/24/connotea.png +0 -0
  195. data/test/public/images/service_icons/24/dailymotion.png +0 -0
  196. data/test/public/images/service_icons/24/delicious.png +0 -0
  197. data/test/public/images/service_icons/24/digg.png +0 -0
  198. data/test/public/images/service_icons/24/diigo.png +0 -0
  199. data/test/public/images/service_icons/24/facebook.png +0 -0
  200. data/test/public/images/service_icons/24/feed.png +0 -0
  201. data/test/public/images/service_icons/24/fireeagle.png +0 -0
  202. data/test/public/images/service_icons/24/flickr.png +0 -0
  203. data/test/public/images/service_icons/24/fotolog.png +0 -0
  204. data/test/public/images/service_icons/24/friendfeed.png +0 -0
  205. data/test/public/images/service_icons/24/friendster.png +0 -0
  206. data/test/public/images/service_icons/24/furl.png +0 -0
  207. data/test/public/images/service_icons/24/goodreads.png +0 -0
  208. data/test/public/images/service_icons/24/google.png +0 -0
  209. data/test/public/images/service_icons/24/googleblog.png +0 -0
  210. data/test/public/images/service_icons/24/googlenews.png +0 -0
  211. data/test/public/images/service_icons/24/icerocket.png +0 -0
  212. data/test/public/images/service_icons/24/identica.png +0 -0
  213. data/test/public/images/service_icons/24/joost.png +0 -0
  214. data/test/public/images/service_icons/24/lastfm.png +0 -0
  215. data/test/public/images/service_icons/24/librarything.png +0 -0
  216. data/test/public/images/service_icons/24/linkedin.png +0 -0
  217. data/test/public/images/service_icons/24/livejournal.png +0 -0
  218. data/test/public/images/service_icons/24/magnolia.png +0 -0
  219. data/test/public/images/service_icons/24/mendeley.png +0 -0
  220. data/test/public/images/service_icons/24/metacafe.png +0 -0
  221. data/test/public/images/service_icons/24/mixx.png +0 -0
  222. data/test/public/images/service_icons/24/myspace.png +0 -0
  223. data/test/public/images/service_icons/24/netflix.png +0 -0
  224. data/test/public/images/service_icons/24/netvibes.png +0 -0
  225. data/test/public/images/service_icons/24/newsvine.png +0 -0
  226. data/test/public/images/service_icons/24/oai.png +0 -0
  227. data/test/public/images/service_icons/24/odeo.png +0 -0
  228. data/test/public/images/service_icons/24/opml.png +0 -0
  229. data/test/public/images/service_icons/24/pandora.png +0 -0
  230. data/test/public/images/service_icons/24/photobucket.png +0 -0
  231. data/test/public/images/service_icons/24/picasa.png +0 -0
  232. data/test/public/images/service_icons/24/polyvore.png +0 -0
  233. data/test/public/images/service_icons/24/pownce.png +0 -0
  234. data/test/public/images/service_icons/24/reddit.png +0 -0
  235. data/test/public/images/service_icons/24/simpy.png +0 -0
  236. data/test/public/images/service_icons/24/smugmug.png +0 -0
  237. data/test/public/images/service_icons/24/stumbleupon.png +0 -0
  238. data/test/public/images/service_icons/24/tag.png +0 -0
  239. data/test/public/images/service_icons/24/technorati.png +0 -0
  240. data/test/public/images/service_icons/24/tumblr.png +0 -0
  241. data/test/public/images/service_icons/24/twine.png +0 -0
  242. data/test/public/images/service_icons/24/twitter.png +0 -0
  243. data/test/public/images/service_icons/24/vimeo.png +0 -0
  244. data/test/public/images/service_icons/24/webshots.png +0 -0
  245. data/test/public/images/service_icons/24/wordpress.png +0 -0
  246. data/test/public/images/service_icons/24/xanga.png +0 -0
  247. data/test/public/images/service_icons/24/yahoo.png +0 -0
  248. data/test/public/images/service_icons/24/yelp.png +0 -0
  249. data/test/public/images/service_icons/24/youtube.png +0 -0
  250. data/test/public/images/service_icons/24/zooomr.png +0 -0
  251. data/test/public/images/service_icons/24/zotero.png +0 -0
  252. data/test/public/images/service_icons/48/amazon.png +0 -0
  253. data/test/public/images/service_icons/48/ask.png +0 -0
  254. data/test/public/images/service_icons/48/bibsonomy.png +0 -0
  255. data/test/public/images/service_icons/48/bing.png +0 -0
  256. data/test/public/images/service_icons/48/blogger.png +0 -0
  257. data/test/public/images/service_icons/48/bloglines.png +0 -0
  258. data/test/public/images/service_icons/48/citeulike.png +0 -0
  259. data/test/public/images/service_icons/48/clipmarks.png +0 -0
  260. data/test/public/images/service_icons/48/connotea.png +0 -0
  261. data/test/public/images/service_icons/48/dailymotion.png +0 -0
  262. data/test/public/images/service_icons/48/delicious.png +0 -0
  263. data/test/public/images/service_icons/48/digg.png +0 -0
  264. data/test/public/images/service_icons/48/diigo.png +0 -0
  265. data/test/public/images/service_icons/48/facebook.png +0 -0
  266. data/test/public/images/service_icons/48/feed.png +0 -0
  267. data/test/public/images/service_icons/48/fireeagle.png +0 -0
  268. data/test/public/images/service_icons/48/flickr.png +0 -0
  269. data/test/public/images/service_icons/48/fotolog.png +0 -0
  270. data/test/public/images/service_icons/48/friendfeed.png +0 -0
  271. data/test/public/images/service_icons/48/friendster.png +0 -0
  272. data/test/public/images/service_icons/48/furl.png +0 -0
  273. data/test/public/images/service_icons/48/goodreads.png +0 -0
  274. data/test/public/images/service_icons/48/google.png +0 -0
  275. data/test/public/images/service_icons/48/googleblog.png +0 -0
  276. data/test/public/images/service_icons/48/googlenews.png +0 -0
  277. data/test/public/images/service_icons/48/icerocket.png +0 -0
  278. data/test/public/images/service_icons/48/identica.png +0 -0
  279. data/test/public/images/service_icons/48/joost.png +0 -0
  280. data/test/public/images/service_icons/48/lastfm.png +0 -0
  281. data/test/public/images/service_icons/48/librarything.png +0 -0
  282. data/test/public/images/service_icons/48/linkedin.png +0 -0
  283. data/test/public/images/service_icons/48/livejournal.png +0 -0
  284. data/test/public/images/service_icons/48/magnolia.png +0 -0
  285. data/test/public/images/service_icons/48/mendeley.png +0 -0
  286. data/test/public/images/service_icons/48/metacafe.png +0 -0
  287. data/test/public/images/service_icons/48/mixx.png +0 -0
  288. data/test/public/images/service_icons/48/myspace.png +0 -0
  289. data/test/public/images/service_icons/48/netflix.png +0 -0
  290. data/test/public/images/service_icons/48/netvibes.png +0 -0
  291. data/test/public/images/service_icons/48/newsvine.png +0 -0
  292. data/test/public/images/service_icons/48/oai.png +0 -0
  293. data/test/public/images/service_icons/48/odeo.png +0 -0
  294. data/test/public/images/service_icons/48/opml.png +0 -0
  295. data/test/public/images/service_icons/48/pandora.png +0 -0
  296. data/test/public/images/service_icons/48/photobucket.png +0 -0
  297. data/test/public/images/service_icons/48/picasa.png +0 -0
  298. data/test/public/images/service_icons/48/polyvore.png +0 -0
  299. data/test/public/images/service_icons/48/pownce.png +0 -0
  300. data/test/public/images/service_icons/48/reddit.png +0 -0
  301. data/test/public/images/service_icons/48/simpy.png +0 -0
  302. data/test/public/images/service_icons/48/smugmug.png +0 -0
  303. data/test/public/images/service_icons/48/stumbleupon.png +0 -0
  304. data/test/public/images/service_icons/48/tag.png +0 -0
  305. data/test/public/images/service_icons/48/technorati.png +0 -0
  306. data/test/public/images/service_icons/48/tumblr.png +0 -0
  307. data/test/public/images/service_icons/48/twine.png +0 -0
  308. data/test/public/images/service_icons/48/twitter.png +0 -0
  309. data/test/public/images/service_icons/48/vimeo.png +0 -0
  310. data/test/public/images/service_icons/48/webshots.png +0 -0
  311. data/test/public/images/service_icons/48/wordpress.png +0 -0
  312. data/test/public/images/service_icons/48/xanga.png +0 -0
  313. data/test/public/images/service_icons/48/yahoo.png +0 -0
  314. data/test/public/images/service_icons/48/yelp.png +0 -0
  315. data/test/public/images/service_icons/48/youtube.png +0 -0
  316. data/test/public/images/service_icons/48/zooomr.png +0 -0
  317. data/test/public/images/service_icons/48/zotero.png +0 -0
  318. data/test/public/images/service_icons/60/amazon.png +0 -0
  319. data/test/public/images/service_icons/60/ask.png +0 -0
  320. data/test/public/images/service_icons/60/bibsonomy.png +0 -0
  321. data/test/public/images/service_icons/60/bing.png +0 -0
  322. data/test/public/images/service_icons/60/blogger.png +0 -0
  323. data/test/public/images/service_icons/60/bloglines.png +0 -0
  324. data/test/public/images/service_icons/60/citeulike.png +0 -0
  325. data/test/public/images/service_icons/60/clipmarks.png +0 -0
  326. data/test/public/images/service_icons/60/connotea.png +0 -0
  327. data/test/public/images/service_icons/60/dailymotion.png +0 -0
  328. data/test/public/images/service_icons/60/delicious.png +0 -0
  329. data/test/public/images/service_icons/60/digg.png +0 -0
  330. data/test/public/images/service_icons/60/diigo.png +0 -0
  331. data/test/public/images/service_icons/60/facebook.png +0 -0
  332. data/test/public/images/service_icons/60/feed.png +0 -0
  333. data/test/public/images/service_icons/60/fireeagle.png +0 -0
  334. data/test/public/images/service_icons/60/flickr.png +0 -0
  335. data/test/public/images/service_icons/60/fotolog.png +0 -0
  336. data/test/public/images/service_icons/60/friendfeed.png +0 -0
  337. data/test/public/images/service_icons/60/friendster.png +0 -0
  338. data/test/public/images/service_icons/60/furl.png +0 -0
  339. data/test/public/images/service_icons/60/goodreads.png +0 -0
  340. data/test/public/images/service_icons/60/google.png +0 -0
  341. data/test/public/images/service_icons/60/googleblog.png +0 -0
  342. data/test/public/images/service_icons/60/googlenews.png +0 -0
  343. data/test/public/images/service_icons/60/icerocket.png +0 -0
  344. data/test/public/images/service_icons/60/identica.png +0 -0
  345. data/test/public/images/service_icons/60/joost.png +0 -0
  346. data/test/public/images/service_icons/60/lastfm.png +0 -0
  347. data/test/public/images/service_icons/60/librarything.png +0 -0
  348. data/test/public/images/service_icons/60/linkedin.png +0 -0
  349. data/test/public/images/service_icons/60/livejournal.png +0 -0
  350. data/test/public/images/service_icons/60/magnolia.png +0 -0
  351. data/test/public/images/service_icons/60/mendeley.png +0 -0
  352. data/test/public/images/service_icons/60/metacafe.png +0 -0
  353. data/test/public/images/service_icons/60/mixx.png +0 -0
  354. data/test/public/images/service_icons/60/myspace.png +0 -0
  355. data/test/public/images/service_icons/60/netflix.png +0 -0
  356. data/test/public/images/service_icons/60/netvibes.png +0 -0
  357. data/test/public/images/service_icons/60/newsvine.png +0 -0
  358. data/test/public/images/service_icons/60/oai.png +0 -0
  359. data/test/public/images/service_icons/60/odeo.png +0 -0
  360. data/test/public/images/service_icons/60/opml.png +0 -0
  361. data/test/public/images/service_icons/60/pandora.png +0 -0
  362. data/test/public/images/service_icons/60/photobucket.png +0 -0
  363. data/test/public/images/service_icons/60/picasa.png +0 -0
  364. data/test/public/images/service_icons/60/polyvore.png +0 -0
  365. data/test/public/images/service_icons/60/pownce.png +0 -0
  366. data/test/public/images/service_icons/60/reddit.png +0 -0
  367. data/test/public/images/service_icons/60/simpy.png +0 -0
  368. data/test/public/images/service_icons/60/smugmug.png +0 -0
  369. data/test/public/images/service_icons/60/stumbleupon.png +0 -0
  370. data/test/public/images/service_icons/60/tag.png +0 -0
  371. data/test/public/images/service_icons/60/technorati.png +0 -0
  372. data/test/public/images/service_icons/60/tumblr.png +0 -0
  373. data/test/public/images/service_icons/60/twine.png +0 -0
  374. data/test/public/images/service_icons/60/twitter.png +0 -0
  375. data/test/public/images/service_icons/60/vimeo.png +0 -0
  376. data/test/public/images/service_icons/60/webshots.png +0 -0
  377. data/test/public/images/service_icons/60/wordpress.png +0 -0
  378. data/test/public/images/service_icons/60/xanga.png +0 -0
  379. data/test/public/images/service_icons/60/yahoo.png +0 -0
  380. data/test/public/images/service_icons/60/yelp.png +0 -0
  381. data/test/public/images/service_icons/60/youtube.png +0 -0
  382. data/test/public/images/service_icons/60/zooomr.png +0 -0
  383. data/test/public/images/service_icons/60/zotero.png +0 -0
  384. data/test/public/images/service_icons/facebook_friend_links.jpg +0 -0
  385. data/test/public/images/service_icons/facebook_my_links.jpg +0 -0
  386. data/test/public/images/service_icons/source/Aquaticus_Social_Icon_template_by_jwloh.psd +0 -0
  387. data/test/public/images/service_icons/source/Google.psd +0 -0
  388. data/test/public/images/service_icons/source/Quake 9 Design.webloc b/data/test/public/images/service_icons/source/Quake 9 → Design.webloc +0 -0
  389. data/test/public/images/service_icons/source/ReadMe.rtf +52 -0
  390. data/test/public/images/service_icons/source/amazon.png +0 -0
  391. data/test/public/images/service_icons/source/aquaticus.social.png +0 -0
  392. data/test/public/images/service_icons/source/ask.png +0 -0
  393. data/test/public/images/service_icons/source/ask.psd +0 -0
  394. data/test/public/images/service_icons/source/bibsonomy.png +0 -0
  395. data/test/public/images/service_icons/source/bibsonomy.psd +0 -0
  396. data/test/public/images/service_icons/source/bing.png +0 -0
  397. data/test/public/images/service_icons/source/bing.psd +0 -0
  398. data/test/public/images/service_icons/source/blogger.png +0 -0
  399. data/test/public/images/service_icons/source/bloglines.png +0 -0
  400. data/test/public/images/service_icons/source/bloglines.psd +0 -0
  401. data/test/public/images/service_icons/source/citeulike.png +0 -0
  402. data/test/public/images/service_icons/source/clipmarks.png +0 -0
  403. data/test/public/images/service_icons/source/connotea.png +0 -0
  404. data/test/public/images/service_icons/source/connotea.psd +0 -0
  405. data/test/public/images/service_icons/source/dailymotion.png +0 -0
  406. data/test/public/images/service_icons/source/delicious.png +0 -0
  407. data/test/public/images/service_icons/source/digg.png +0 -0
  408. data/test/public/images/service_icons/source/diigo.png +0 -0
  409. data/test/public/images/service_icons/source/facebook.png +0 -0
  410. data/test/public/images/service_icons/source/feed.png +0 -0
  411. data/test/public/images/service_icons/source/fireeagle.psd +0 -0
  412. data/test/public/images/service_icons/source/flickr.png +0 -0
  413. data/test/public/images/service_icons/source/fotolog.png +0 -0
  414. data/test/public/images/service_icons/source/friendfeed.png +0 -0
  415. data/test/public/images/service_icons/source/friendster.png +0 -0
  416. data/test/public/images/service_icons/source/furl.png +0 -0
  417. data/test/public/images/service_icons/source/goodreads.png +0 -0
  418. data/test/public/images/service_icons/source/google.png +0 -0
  419. data/test/public/images/service_icons/source/googleblog.png +0 -0
  420. data/test/public/images/service_icons/source/googlenews.png +0 -0
  421. data/test/public/images/service_icons/source/icerocket.png +0 -0
  422. data/test/public/images/service_icons/source/icerocket.psd +0 -0
  423. data/test/public/images/service_icons/source/identica.png +0 -0
  424. data/test/public/images/service_icons/source/joost.png +0 -0
  425. data/test/public/images/service_icons/source/lastfm.png +0 -0
  426. data/test/public/images/service_icons/source/librarything.png +0 -0
  427. data/test/public/images/service_icons/source/linkedin.png +0 -0
  428. data/test/public/images/service_icons/source/livejournal.png +0 -0
  429. data/test/public/images/service_icons/source/magnolia.png +0 -0
  430. data/test/public/images/service_icons/source/mendeley.png +0 -0
  431. data/test/public/images/service_icons/source/metacafe.png +0 -0
  432. data/test/public/images/service_icons/source/metacafe.psd +0 -0
  433. data/test/public/images/service_icons/source/mixx.png +0 -0
  434. data/test/public/images/service_icons/source/myspace.png +0 -0
  435. data/test/public/images/service_icons/source/netflix.png +0 -0
  436. data/test/public/images/service_icons/source/netvibes.png +0 -0
  437. data/test/public/images/service_icons/source/newsvine.png +0 -0
  438. data/test/public/images/service_icons/source/oai.png +0 -0
  439. data/test/public/images/service_icons/source/odeo.png +0 -0
  440. data/test/public/images/service_icons/source/opml.png +0 -0
  441. data/test/public/images/service_icons/source/pandora.png +0 -0
  442. data/test/public/images/service_icons/source/photobucket.png +0 -0
  443. data/test/public/images/service_icons/source/picasa.png +0 -0
  444. data/test/public/images/service_icons/source/polyvore.png +0 -0
  445. data/test/public/images/service_icons/source/pownce.png +0 -0
  446. data/test/public/images/service_icons/source/reddit.png +0 -0
  447. data/test/public/images/service_icons/source/simpy.png +0 -0
  448. data/test/public/images/service_icons/source/smugmug.png +0 -0
  449. data/test/public/images/service_icons/source/stumbleupon.png +0 -0
  450. data/test/public/images/service_icons/source/tag.png +0 -0
  451. data/test/public/images/service_icons/source/technorati.png +0 -0
  452. data/test/public/images/service_icons/source/template.png +0 -0
  453. data/test/public/images/service_icons/source/tumblr.png +0 -0
  454. data/test/public/images/service_icons/source/twine.png +0 -0
  455. data/test/public/images/service_icons/source/twine.psd +0 -0
  456. data/test/public/images/service_icons/source/twitter.png +0 -0
  457. data/test/public/images/service_icons/source/vimeo.png +0 -0
  458. data/test/public/images/service_icons/source/webshots.png +0 -0
  459. data/test/public/images/service_icons/source/wordpress.png +0 -0
  460. data/test/public/images/service_icons/source/xanga.png +0 -0
  461. data/test/public/images/service_icons/source/yahoo.png +0 -0
  462. data/test/public/images/service_icons/source/yelp.png +0 -0
  463. data/test/public/images/service_icons/source/youtube.png +0 -0
  464. data/test/public/images/service_icons/source/zooomr.png +0 -0
  465. data/test/public/images/service_icons/source/zotero.png +0 -0
  466. data/test/public/images/spinner.gif +0 -0
  467. data/test/public/images/sprites.png +0 -0
  468. data/test/public/javascripts/application.js +2 -0
  469. data/test/public/javascripts/fancyzoom.min.js +1 -0
  470. data/test/public/javascripts/jquery/colorpicker.js +450 -0
  471. data/test/public/javascripts/jquery/jquery-ui-1.8.9.custom.min.js +781 -0
  472. data/test/public/javascripts/jquery/jquery-ui.js +781 -0
  473. data/test/public/javascripts/jquery/jquery.easing.js +46 -0
  474. data/test/public/javascripts/jquery/jquery.fancybox.js +44 -0
  475. data/test/public/javascripts/jquery/jquery.form.js +675 -0
  476. data/test/public/javascripts/jquery/jquery.jgrowl.js +9 -0
  477. data/test/public/javascripts/jquery/jquery.js +16 -0
  478. data/test/public/javascripts/jquery/jquery.metadata.min.js +13 -0
  479. data/test/public/javascripts/jquery/jquery.mousewheel.js +13 -0
  480. data/test/public/javascripts/jquery/jquery.queryString.js +33 -0
  481. data/test/public/javascripts/jquery/jquery.swapimage.js +66 -0
  482. data/test/public/javascripts/jquery/jquery.swapimage.min.js +11 -0
  483. data/test/public/javascripts/jquery/jquery.timers.js +138 -0
  484. data/test/public/javascripts/jquery/jquery.tips.js +75 -0
  485. data/test/public/javascripts/muck-countries.js +50 -0
  486. data/test/public/javascripts/muck-src.js +147 -0
  487. data/test/public/javascripts/muck-users.js +24 -0
  488. data/test/public/javascripts/muck.js +149 -0
  489. data/test/public/javascripts/muck_admin.js +0 -0
  490. data/test/public/javascripts/muck_countries.js +50 -0
  491. data/test/public/javascripts/muck_time/en.js +53 -0
  492. data/test/public/javascripts/tree.js +107 -0
  493. data/test/public/robots.txt +1 -0
  494. data/test/public/stylesheets/.keep +0 -0
  495. data/test/public/stylesheets/admin.css +73 -0
  496. data/test/public/stylesheets/application.css +0 -0
  497. data/test/public/stylesheets/blueprint/ie.css +26 -0
  498. data/test/public/stylesheets/blueprint/liquid_screen.css +203 -0
  499. data/test/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
  500. data/test/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
  501. data/test/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
  502. data/test/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
  503. data/test/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
  504. data/test/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
  505. data/test/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
  506. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
  507. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
  508. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
  509. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
  510. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
  511. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  512. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
  513. data/test/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
  514. data/test/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
  515. data/test/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
  516. data/test/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
  517. data/test/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
  518. data/test/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
  519. data/test/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
  520. data/test/public/stylesheets/blueprint/print.css +30 -0
  521. data/test/public/stylesheets/blueprint/screen.css +251 -0
  522. data/test/public/stylesheets/blueprint/sprite.css +1 -0
  523. data/test/public/stylesheets/blueprint/src/forms.css +49 -0
  524. data/test/public/stylesheets/blueprint/src/grid.css +213 -0
  525. data/test/public/stylesheets/blueprint/src/grid.png +0 -0
  526. data/test/public/stylesheets/blueprint/src/ie.css +59 -0
  527. data/test/public/stylesheets/blueprint/src/print.css +85 -0
  528. data/test/public/stylesheets/blueprint/src/reset.css +38 -0
  529. data/test/public/stylesheets/blueprint/src/typography.css +105 -0
  530. data/test/public/stylesheets/flick/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  531. data/test/public/stylesheets/flick/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
  532. data/test/public/stylesheets/flick/images/ui-bg_flat_55_ffffff_40x100.png +0 -0
  533. data/test/public/stylesheets/flick/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  534. data/test/public/stylesheets/flick/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  535. data/test/public/stylesheets/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png +0 -0
  536. data/test/public/stylesheets/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png +0 -0
  537. data/test/public/stylesheets/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
  538. data/test/public/stylesheets/flick/images/ui-icons_0073ea_256x240.png +0 -0
  539. data/test/public/stylesheets/flick/images/ui-icons_454545_256x240.png +0 -0
  540. data/test/public/stylesheets/flick/images/ui-icons_666666_256x240.png +0 -0
  541. data/test/public/stylesheets/flick/images/ui-icons_ff0084_256x240.png +0 -0
  542. data/test/public/stylesheets/flick/images/ui-icons_ffffff_256x240.png +0 -0
  543. data/test/public/stylesheets/flick/jquery-ui-1.8.1.custom.css +486 -0
  544. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
  545. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
  546. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
  547. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
  548. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
  549. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
  550. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  551. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
  552. data/test/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
  553. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
  554. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
  555. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
  556. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
  557. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
  558. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
  559. data/test/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
  560. data/test/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
  561. data/test/public/stylesheets/jquery/cupertino/jquery-ui-1.7.2.custom.css +160 -0
  562. data/test/public/stylesheets/jquery/jquery.autocomplete.css +15 -0
  563. data/test/public/stylesheets/jquery/jquery.fancybox.css +77 -0
  564. data/test/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  565. data/test/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  566. data/test/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  567. data/test/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  568. data/test/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  569. data/test/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  570. data/test/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  571. data/test/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  572. data/test/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  573. data/test/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  574. data/test/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  575. data/test/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  576. data/test/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  577. data/test/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  578. data/test/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  579. data/test/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
  580. data/test/public/stylesheets/jquery/redmond/jquery-ui-1.7.2.custom.css +160 -0
  581. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  582. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  583. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  584. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  585. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  586. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  587. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  588. data/test/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  589. data/test/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
  590. data/test/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  591. data/test/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
  592. data/test/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
  593. data/test/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  594. data/test/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
  595. data/test/public/stylesheets/jquery/smoothness/jquery-ui-1.7.2.custom.css +160 -0
  596. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  597. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  598. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  599. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  600. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  601. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  602. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  603. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  604. data/test/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  605. data/test/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  606. data/test/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  607. data/test/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  608. data/test/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  609. data/test/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  610. data/test/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
  611. data/test/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.2.custom.css +160 -0
  612. data/test/public/stylesheets/jquery/ui-lightness/jquery-ui-1.8.4.custom.css +572 -0
  613. data/test/public/stylesheets/muck-users.css +10 -0
  614. data/test/public/stylesheets/reset.css +0 -0
  615. data/test/public/stylesheets/styles.css +94 -0
  616. data/test/public/stylesheets/themes/blue/styles.css +1 -0
  617. data/test/public/stylesheets/themes/red/styles.css +1 -0
  618. data/test/script/cucumber +10 -0
  619. data/test/script/rails +6 -0
  620. data/test/spec/controllers/admin/default_controller_spec.rb +39 -0
  621. data/test/spec/controllers/default_controller_spec.rb +189 -0
  622. data/test/spec/controllers/helper_controller_spec.rb +29 -0
  623. data/test/spec/helpers/muck_admin_helper_spec.rb +19 -0
  624. data/test/spec/helpers/muck_engine_helper_spec.rb +177 -0
  625. data/test/spec/mailers/basic_mailer_spec.rb +24 -0
  626. data/test/spec/models/country_spec.rb +84 -0
  627. data/test/spec/models/language_spec.rb +29 -0
  628. data/test/spec/models/state_spec.rb +12 -0
  629. data/test/spec/spec_helper.rb +5 -0
  630. data/test/test/fixtures/rails.png +0 -0
  631. metadata +631 -4
@@ -0,0 +1,10 @@
1
+ /*sign in*/
2
+ #sign_in{width:400px;}
3
+ #sign_in_form label{display:block;}
4
+
5
+ /*register*/
6
+ #registration{width:400px;}
7
+ span#email-availibility span.available { color:green; }
8
+ span#email-availibility span.unavailable { color:#B61E12; }
9
+
10
+ #access-code-not-found-msg a{text-decoration:underline;}
File without changes
@@ -0,0 +1,94 @@
1
+ /* general */
2
+ .center{text-align:center;}
3
+ #popup_wrapper{width:auto;}
4
+ .waiting{margin:3px 0;padding-left:20px;background:transparent url('/images/spinner.gif') no-repeat scroll left bottom;}
5
+
6
+ /* forms */
7
+ input{margin:0 10px 5px 0;padding:4px;font-size:1.3em;}
8
+ input[type="text"],input[type="password"]{border:1px solid #8f8685;}
9
+ input[type="checkbox"]{border:none;margin-bottom:0px;}
10
+ input[type="radio"]{border:none;}
11
+ textarea{font-size:1.4em;margin:0 10px 0 0;padding:4px;border:1px solid #8f8685;}
12
+ label{font-size:1.5em;font-weight:bold;margin:0 10px 5px 0;padding:0px;display:block;}
13
+ form em{color:#b61e12;font-style:normal;font-size:90%;}
14
+ form hr{border:1px solid #e3e0c3;height:1px;margin:15px 0;}
15
+ fieldset span.var{margin:2px 5px 5px 18px;display:block;}
16
+ fieldset{border:none;margin:0;padding:0;}
17
+ form fieldset{margin:0 0 2px;padding:0px;}
18
+ form fieldset input[type="text"],form fieldset input[type="password"]{width:500px;}
19
+ .common-form{width:500px;margin:40px auto;}
20
+ .wide-form h1, .common-form h1{font-size:1.8em;}
21
+ .wide-form{width:700px;margin:40px auto;}
22
+ .form-item{float:left;}
23
+ .common-content{width:500px;margin:40px auto;font-size:1.2em;color:#555;}
24
+ .button-link {background-color:transparent;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;}
25
+
26
+ /*images*/
27
+ .tiny{width:24px;height:24px;}
28
+ .icon{width:50px;height:50px;}
29
+ .thumb{width:100px;height:100px;}
30
+ .medium{width:300px;height:300px;}
31
+
32
+ /*icons*/
33
+ ul.icon-list{margin:0;padding:0;list-style:none;}
34
+ ul.icon-list a{display:inline-block;margin:2px 0;padding:2px 0 5px 28px;text-decoration:none;}
35
+
36
+ /* tips */
37
+ .availability{color:#b61e12;position:absolute;}
38
+ .hidden-tips{display:none;}
39
+ .required-tip{color:#555555;font-size:1.2em;margin:0pt;font-weight:bolder;height:0px;}
40
+ .tip{position:absolute;z-index:2000;border:2px solid #CCCCCC;background-color:#fff;width:400px;}
41
+ #tip-title{font-size:1.1em;background-color:#CCCCCC;text-align:left;padding:2px 0px 5px 8px;font-weight:bold;}
42
+ #tip-main{padding:10px;color:#333333;}
43
+ #tip-main p,#tip-main ul{font-size:1.3em;}
44
+ #tip-main p{margin:3px 0;}
45
+ #tip-header{position:absolute;z-index:101;background-repeat:no-repeat;}
46
+ .tip-content{width:100%;}
47
+ .top-tip{margin:0px 0px 12px 0px;}
48
+ .top-tip #tip-header{background-image:url(/images/arrow_down.gif);height:10px;width:23px;}
49
+ .left-tip{margin-right:12px;}
50
+ .left-tip #tip-header{background-image:url(/images/arrow_right.gif);height:23px;width:11px;top:-2px;left:12px;background-position:right top;width:100%;}
51
+ .bottom-tip{margin:12px 0px 0px 0px;}
52
+ .bottom-tip #tip-header{background-image:url(/images/arrow_up.gif);left:0px;height:10px;width:23px;top:-12px;}
53
+ .right-tip{margin:1px 0px 0px 12px;}
54
+ .right-tip #tip-header{background-image:url(/images/arrow_left.gif);left:-12px;height:23px;width:10px;top:-3px;}
55
+ .bottom-tip #tip-header, .right-tip #tip-header{background-position:left top;}
56
+
57
+ /*jGrowl*/
58
+ div.jGrowl{padding:10px;z-index:9999;color:#fff;font-size:12px;}
59
+ /** Special IE6 Style Positioning **/
60
+ div.ie6{position:absolute;}
61
+ div.ie6.top-right{right:auto;bottom:auto;left:expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth :document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft :document.body.scrollLeft ) ) + 'px' );top:expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop :document.body.scrollTop ) ) + 'px' );}
62
+ div.ie6.top-left{left:expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft :document.body.scrollLeft ) ) + 'px' );top:expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop :document.body.scrollTop ) ) + 'px' );}
63
+ div.ie6.bottom-right{left:expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth :document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft :document.body.scrollLeft ) ) + 'px' );top:expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight :document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop :document.body.scrollTop ) ) + 'px' );}
64
+ div.ie6.bottom-left{left:expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft :document.body.scrollLeft ) ) + 'px' );top:expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight :document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop :document.body.scrollTop ) ) + 'px' );}
65
+ div.ie6.center{left:expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft :document.body.scrollLeft ) ) + 'px' );top:expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop :document.body.scrollTop ) ) + 'px' );width:100%;}
66
+ /** Normal Style Positions **/
67
+ body > div.jGrowl{position:fixed;}
68
+ body > div.jGrowl.top-left{left:0px;top:0px;}
69
+ body > div.jGrowl.top-right{right:0px;top:0px;}
70
+ body > div.jGrowl.bottom-left{left:0px;bottom:0px;}
71
+ body > div.jGrowl.bottom-right{right:0px;bottom:0px;}
72
+ body > div.jGrowl.center{top:0px;width:50%;left:25%;}
73
+ /** Cross Browser Styling **/
74
+ div.center div.jGrowl-notification,div.center div.jGrowl-closer{margin-left:auto;margin-right:auto;}
75
+ div.jGrowl div.jGrowl-notification,div.jGrowl div.jGrowl-closer{background-color:#000;opacity:.85;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=85);zoom:1;width:235px;padding:10px;margin-top:5px;margin-bottom:5px;font-family:Tahoma,Arial,Helvetica,sans-serif;font-size:1em;text-align:left;display:none;-moz-border-radius:5px;-webkit-border-radius:5px;}
76
+ div.jGrowl div.jGrowl-notification{min-height:40px;}
77
+ div.jGrowl div.jGrowl-notification div.header{font-weight:bold;font-size:.85em;}
78
+ div.jGrowl div.jGrowl-notification div.close{z-index:99;float:right;font-weight:bold;font-size:1em;cursor:pointer;}
79
+ div.jGrowl div.jGrowl-closer{padding-top:4px;padding-bottom:4px;cursor:pointer;font-size:.9em;font-weight:bold;text-align:center;}
80
+ /** Hide jGrowl when printing **/
81
+ @media print{div.jGrowl{display:none;}
82
+ }
83
+
84
+
85
+ /* Errors */
86
+ .help-box{font-size:1.2em;color:#555;}
87
+ .fieldWithErrors input{border:solid 2px #B61E12;}
88
+ #errorExplanation{padding:7px;padding-bottom:12px;margin-bottom:20px;}
89
+ #errorExplanation h2{text-align:left;font-weight:bold;padding:5px 5px 5px 15px;font-size:16px;background-color:#B61E12;color:#fff;}
90
+ #errorExplanation p{color:#333;margin-bottom:0;padding:5px;}
91
+ #errorExplanation ul li{list-style:square;}
92
+
93
+ /* support */
94
+ .support-information{font-size:9px;color:#333;}
@@ -0,0 +1 @@
1
+ /*Add styles specific to your theme here*/
@@ -0,0 +1 @@
1
+ /*Add styles specific to your theme here*/
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
4
+ if vendored_cucumber_bin
5
+ load File.expand_path(vendored_cucumber_bin)
6
+ else
7
+ require 'rubygems' unless ENV['NO_RUBYGEMS']
8
+ require 'cucumber'
9
+ load Cucumber::BINARY
10
+ end
data/test/script/rails ADDED
@@ -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,39 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe Admin::Muck::DefaultController do
4
+
5
+ render_views
6
+
7
+ describe "logged in as admin" do
8
+
9
+ before(:each) do
10
+ User.destroy_all
11
+ activate_authlogic
12
+ @admin = Factory(:user)
13
+ @admin_role = Factory(:role, :rolename => 'administrator')
14
+ @admin.roles << @admin_role
15
+ login_as @admin
16
+ end
17
+
18
+ describe "GET to admin index" do
19
+ before(:each) do
20
+ get :index
21
+ end
22
+ it { should respond_with :success }
23
+ it { should render_template :index }
24
+ end
25
+
26
+ end
27
+
28
+ describe "not logged in" do
29
+ before(:each) do
30
+ get :index
31
+ end
32
+ it { should respond_with :redirect }
33
+ end
34
+
35
+ end
36
+
37
+
38
+
39
+
@@ -0,0 +1,189 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe DefaultController do
4
+
5
+ render_views
6
+
7
+ it "should detect the iphone" do
8
+ controller.should be_an_instance_of(DefaultController)
9
+ end
10
+
11
+ end
12
+
13
+
14
+
15
+ # # Detect the iphone. Just call this method in a before filter:
16
+ # # before_filter :adjust_format_for_iphone
17
+ # def adjust_format_for_iphone
18
+ # request.format = :iphone if iphone_user_agent?
19
+ # end
20
+ #
21
+ # # Request from an iPhone or iPod touch? (Mobile Safari user agent)
22
+ # def iphone_user_agent?
23
+ # request.env["HTTP_USER_AGENT"] && request.env["HTTP_USER_AGENT"][/(Mobile\/.+Safari)/]
24
+ # end
25
+ #
26
+ # # Output a simple javascript message
27
+ # def page_alert(message)
28
+ # render :template => 'shared/page_alert'
29
+ # end
30
+ #
31
+ # # **********************************************
32
+ # # Locale methods
33
+ # # I18n methods from:
34
+ # # http://guides.rubyonrails.org/i18n.html
35
+ # # http://zargony.com/2009/01/09/selecting-the-locale-for-a-request
36
+ # def discover_locale
37
+ # I18n.locale = extract_locale_from_user_selection || extract_locale_from_tld || extract_locale_from_subdomain || extract_locale_from_headers || I18n.default_locale
38
+ # end
39
+ #
40
+ # def extract_locale_from_browser
41
+ # if http_lang = request.env["HTTP_ACCEPT_LANGUAGE"] and ! http_lang.blank?
42
+ # browser_locale = http_lang[/^[a-z]{2}/i].downcase + '-' + http_lang[3,2].upcase
43
+ # browser_locale.sub!(/-US/, '')
44
+ # end
45
+ # nil
46
+ # end
47
+ #
48
+ # def extract_locale_from_user_selection
49
+ # extract_locale_from_url || extract_locale_from_cookie
50
+ # end
51
+ #
52
+ # def extract_locale_from_url
53
+ # if !params[:locale].blank? && I18n.available_locales.include?(params[:locale].to_sym)
54
+ # cookies['locale'] = { :value => params[:locale], :expires => 1.year.from_now }
55
+ # params[:locale].to_sym
56
+ # end
57
+ # end
58
+ #
59
+ # def extract_locale_from_cookie
60
+ # if cookies['locale'] && I18n.available_locales.include?(cookies['locale'].to_sym)
61
+ # cookies['locale'].to_sym
62
+ # end
63
+ # end
64
+ #
65
+ # def extract_locale_from_headers
66
+ # if http_lang = request.headers["HTTP_ACCEPT_LANGUAGE"] and ! http_lang.blank?
67
+ # preferred_locales = http_lang.split(',').map { |l| l.split(';').first }
68
+ # accepted_locales = preferred_locales.select { |l| I18n.available_locales.include?(l.to_sym) }
69
+ # accepted_locales.empty? ? nil : accepted_locales.first.to_sym
70
+ # end
71
+ # end
72
+ #
73
+ # # Get locale from top-level domain or return nil if such locale is not available
74
+ # # You have to put something like: # 127.0.0.1 application.com
75
+ # # 127.0.0.1 application.it # 127.0.0.1 application.pl
76
+ # # in your /etc/hosts file to try this out locally
77
+ # def extract_locale_from_tld
78
+ # parsed_locale = request.host.split('.').last
79
+ # (I18n.available_locales.include? parsed_locale) ? parsed_locale.to_sym : nil
80
+ # end
81
+ #
82
+ # # Get locale code from request subdomain (like http://it.application.local:3000)
83
+ # # You have to put something like:
84
+ # # 127.0.0.1 gr.application.local
85
+ # # in your /etc/hosts file to try this out locally
86
+ # def extract_locale_from_subdomain
87
+ # parsed_locale = request.subdomains.first
88
+ # if !parsed_locale.blank?
89
+ # I18n.available_locales.include?(parsed_locale.to_sym) ? parsed_locale.to_sym : nil
90
+ # else
91
+ # nil
92
+ # end
93
+ # end
94
+ #
95
+ # # **********************************************
96
+ # # Paging methods
97
+ # def setup_paging
98
+ # @page = (params[:page] || 1).to_i
99
+ # @page = 1 if @page < 1
100
+ # @per_page = (params[:per_page] || (RAILS_ENV=='test' ? 1 : 40)).to_i
101
+ # end
102
+ #
103
+ # def set_will_paginate_string
104
+ # # Because I18n.locale are dynamically determined in ApplicationController,
105
+ # # it should not put in config/initializers/will_paginate.rb
106
+ # WillPaginate::ViewHelpers.pagination_options[:previous_label] = t('muck.general.previous')
107
+ # WillPaginate::ViewHelpers.pagination_options[:next_label] = t('muck.general.next')
108
+ # end
109
+ #
110
+ # # **********************************************
111
+ # # Email methods
112
+ #
113
+ # # Use send_form_email to send the contents of any form to the support email address
114
+ # def send_form_email(params, subject)
115
+ # body = []
116
+ # params.each_pair { |k,v| body << "#{k}: #{v}" }
117
+ # BasicMailer.mail(:subject => subject, :body => body.join("\n")).deliver
118
+ # end
119
+ #
120
+ # # **********************************************
121
+ # # Parent methods
122
+ #
123
+ # # Builds parameters that can be appended to a url to indicate the object's parent.
124
+ # # Note that this method should only be used when absolutely needed. The preferred method is
125
+ # # to use polymorhpic_url. For example:
126
+ # # polymorphic_url([@parent, feeds])
127
+ # # edit_polymorphic_url([@parent, @item])
128
+ # def make_parent_params(parent)
129
+ # if parent.blank?
130
+ # {}
131
+ # else
132
+ # { :parent_id => parent.id, :parent_type => parent.class.to_s }
133
+ # end
134
+ # end
135
+ #
136
+ # # Attempts to create an @parent object using params
137
+ # # or the url.
138
+ # # scope: Friendly id can require a scope to find the object. Pass the scope as needed.
139
+ # # ignore: Names to ignore. For example if the url is /foo/1/bar?thing_id=1
140
+ # # you might want to ignore thing_id so pass :thing.
141
+ # def setup_parent(args = {})
142
+ # @parent = get_parent(args)
143
+ # if @parent.blank?
144
+ # render :text => t('muck.engine.missing_parent_error')
145
+ # return false
146
+ # end
147
+ # end
148
+ #
149
+ # # Tries to get parent using parent_type and parent_id from the url.
150
+ # # If that fails and attempt is then made using find_parent
151
+ # # parameters:
152
+ # # scope: Friendly id can require a scope to find the object. Pass the scope as needed.
153
+ # # ignore: Names to ignore. For example if the url is /foo/1/bar?thing_id=1
154
+ # # you might want to ignore thing_id so pass :thing.
155
+ # def get_parent(args = {})
156
+ # if params[:parent_type].blank? || params[:parent_id].blank?
157
+ # find_parent(args)
158
+ # else
159
+ # klass = params[:parent_type].to_s.constantize
160
+ # if args.has_key?(:scope)
161
+ # klass.find(params[:parent_id], :scope => args[:scope])
162
+ # else
163
+ # klass.find(params[:parent_id])
164
+ # end
165
+ # end
166
+ # end
167
+ #
168
+ # # Searches the params to try and find an entry ending with _id
169
+ # # ie article_id, user_id, etc. Will return the first value found.
170
+ # # parameters:
171
+ # # scope: Friendly id can require a scope to find the object. Pass the scope as needed.
172
+ # # ignore: Names to ignore. For example if the url is /foo/1/bar?thing_id=1
173
+ # # you might want to ignore thing_id so pass 'thing' to be ignored.
174
+ # def find_parent(args = {})
175
+ # ignore = args.delete(:ignore) || []
176
+ # ignore.flatten!
177
+ # params.each do |name, value|
178
+ # if name =~ /(.+)_id$/
179
+ # if !ignore.include?($1)
180
+ # if args.has_key?(:scope)
181
+ # return $1.classify.constantize.find(value, :scope => args[:scope])
182
+ # else
183
+ # return $1.classify.constantize.find(value)
184
+ # end
185
+ # end
186
+ # end
187
+ # end
188
+ # nil
189
+ # end
@@ -0,0 +1,29 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe Muck::HelperController do
4
+
5
+ render_views
6
+
7
+ describe "load_states_for_country" do
8
+ before(:all) do
9
+ @country = Factory(:country)
10
+ @state = Factory(:state, :country => @country)
11
+ @canada = Factory(:country, :abbreviation => 'CA')
12
+ @us = Factory(:country, :abbreviation => 'US')
13
+ @other_country = Factory(:country)
14
+ end
15
+ it "should load" do
16
+ get_load_states_for_country
17
+ should respond_with :success
18
+ end
19
+ it "should include state in resulting json" do
20
+ get_load_states_for_country
21
+ @response.body.should include(@state.name)
22
+ end
23
+ end
24
+
25
+ def get_load_states_for_country
26
+ get :load_states_for_country, :id => @country.to_param, :format => 'json'
27
+ end
28
+
29
+ end
@@ -0,0 +1,19 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe MuckAdminHelper do
4
+
5
+ describe "header_nav_item_image" do
6
+ it "will output a background style with an image" do
7
+ header_nav_item = mock(:header_nav_item)
8
+ header_nav_item.stub!(:image).and_return('something.gif')
9
+ helper.header_nav_item_image(header_nav_item).should include("background-image:url('something.gif');")
10
+ end
11
+ end
12
+
13
+ describe "hide_admin_messages" do
14
+ it "will hide admin messages" do
15
+ helper.hide_admin_messages.should include(".hide();")
16
+ end
17
+ end
18
+
19
+ end
@@ -0,0 +1,177 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe MuckEngineHelper do
4
+
5
+ describe "http_protocol" do
6
+ describe "secure request" do
7
+ it "returns https when ssl is true" do
8
+ helper.http_protocol(true).should == 'https://'
9
+ end
10
+ it "returns https when request is ssl" do
11
+ helper.request.should_receive(:ssl?).and_return(true)
12
+ helper.http_protocol.should == 'https://'
13
+ end
14
+ end
15
+ describe "normal request" do
16
+ it "returns http when ssl is false" do
17
+ helper.http_protocol(false).should == 'http://'
18
+ end
19
+ it "returns http when request is not ssl" do
20
+ helper.request.should_receive(:ssl?).and_return(false)
21
+ helper.http_protocol.should == 'http://'
22
+ end
23
+ end
24
+ end
25
+
26
+ describe "jquery_json_message" do
27
+ it "shouldn't render growl" do
28
+ MuckEngine.configuration.growl_enabled = false
29
+ message_dom_id = "user_12"
30
+ helper.jquery_json_message(message_dom_id).should include(message_dom_id)
31
+ helper.jquery_json_message(message_dom_id).should include("html(json.message);")
32
+ helper.jquery_json_message(message_dom_id).should include("show();")
33
+ end
34
+ it "should render growl" do
35
+ MuckEngine.configuration.growl_enabled = true
36
+ helper.jquery_json_message.should include("jGrowl")
37
+ end
38
+ end
39
+
40
+ describe "country_scripts" do
41
+ it "should render country scripts" do
42
+ pending "figure out how to test country_scripts #{__FILE__}"
43
+ #helper.country_scripts.should include('muck_countries')
44
+ end
45
+ it "shouldn't render country scripts" do
46
+ @@country_scripts_included = true
47
+ helper.country_scripts.should be_blank
48
+ end
49
+ end
50
+
51
+ describe "muck_form_for" do
52
+ pending "test muck_form_for #{__FILE__}"
53
+ end
54
+
55
+ describe "show_hide_on_click" do
56
+ it "should render show/hide jquery script" do
57
+ helper.show_hide_on_click('id_to_show', 'id_to_hide').should include("jQuery('#id_to_show')")
58
+ helper.show_hide_on_click('id_to_show', 'id_to_hide').should include("jQuery('#id_to_hide')")
59
+ end
60
+ end
61
+
62
+ describe "html_summarize_by_chars" do
63
+ it "should remove html and summarize to 270 chars" do
64
+ html = "<div>This <span>text</span> will need to be reduced down to characters without any html.</div>"
65
+ result = helper.html_summarize_by_chars(html, 30)
66
+ result.should == "This text will need to be..."
67
+ end
68
+ end
69
+
70
+ describe "truncate_words" do
71
+ it "should build a string 157 chars long" do
72
+ text = "Kimball was born to Solomon Farnham Kimball and Anna Spaulding in Sheldon, Franklin County, Vermont. Kimball's forefathers arrived in America from England and started"
73
+ helper.truncate_words(text, 5, ' ...').length.should == "Kimball was born to Solomon ...".length
74
+ end
75
+ it "should not crash if string is nil" do
76
+ text = nil
77
+ helper.truncate_words(text, 5, ' ...').length.should == 0
78
+ end
79
+ end
80
+
81
+ describe "truncate_on_word" do
82
+ it "should build a string 157 chars long" do
83
+ text = "Kimball was born to Solomon Farnham Kimball and Anna Spaulding in Sheldon, Franklin County, Vermont. Kimball's forefathers arrived in America from England and started"
84
+ helper.truncate_on_word(text, 160, ' ...').length.should == 158
85
+ end
86
+ it "should not crash if string is nil" do
87
+ text = nil
88
+ helper.truncate_on_word(text, 160, ' ...').length.should == 0
89
+ end
90
+ end
91
+
92
+ describe "locale_link" do
93
+ it "should prepend the locale to a domain without a subdomain" do
94
+ helper.request.stub(:host).and_return('folksemantic.com')
95
+ helper.locale_link('Espanol','es').should == '<a href="http://es.folksemantic.com">Espanol</a>'
96
+ end
97
+ it "should use www as the subdomain when switching to english" do
98
+ helper.request.host = 'es.folksemantic.com'
99
+ Language.should_receive(:supported_locale?).with('es').and_return(true)
100
+ helper.locale_link('English','en').should == '<a href="http://www.folksemantic.com">English</a>'
101
+ end
102
+ it "should leave the path alone when prepending a locale subdomain" do
103
+ helper.request.host = 'folksemantic.com'
104
+ helper.request.stub!(:fullpath).and_return('/login')
105
+ helper.locale_link('Espanol','es').should == '<a href="http://es.folksemantic.com/login">Espanol</a>'
106
+ end
107
+ it "should replace the www subdomain with the specified locale" do
108
+ helper.request.host = 'www.folksemantic.com'
109
+ helper.locale_link('Espanol','es').should == '<a href="http://es.folksemantic.com">Espanol</a>'
110
+ end
111
+ it "should replace locale subdomains with the specified locale" do
112
+ helper.request.host = 'fr.folksemantic.com'
113
+ Language.should_receive(:supported_locale?).with('fr').and_return(true)
114
+ helper.locale_link('Espanol','es').should == '<a href="http://es.folksemantic.com">Espanol</a>'
115
+ end
116
+ it "should specify the locale in the query string when the domain is localhost" do
117
+ helper.request.host = 'localhost'
118
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost?locale=es">Espanol</a>'
119
+ end
120
+ it "should replace the locale query parameter when working from localhost if another locale is already specified" do
121
+ helper.request.host = 'localhost'
122
+ helper.request.stub!(:fullpath).and_return('/login')
123
+ helper.request.env['query_string'] = 'locale=fr'
124
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost/login?locale=es">Espanol</a>'
125
+ end
126
+ it "should specify the locale in the query string when the domain is an ip address" do
127
+ helper.request.host = '155.23.322.13'
128
+ helper.locale_link('Espanol','es').should == '<a href="http://155.23.322.13?locale=es">Espanol</a>'
129
+ end
130
+ it "should prepend the locale if multiple submdomains are specified and the first is not www" do
131
+ helper.request.host = 'math.folksemantic.com'
132
+ helper.locale_link('Espanol','es').should == '<a href="http://es.math.folksemantic.com">Espanol</a>'
133
+ end
134
+ it "should replace the www subdomain if multiple submdomains are specified and the first is www" do
135
+ helper.request.host = 'www.math.folksemantic.com'
136
+ helper.locale_link('Espanol','es').should == '<a href="http://es.math.folksemantic.com">Espanol</a>'
137
+ end
138
+ describe "localhost:3000" do
139
+ it "should leave the port alone when doing a locale rewrite" do
140
+ helper.request.host = 'localhost'
141
+ helper.request.port = 3000
142
+ helper.request.stub(:host_with_port).and_return("localhost:3000")
143
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost:3000?locale=es">Espanol</a>'
144
+ end
145
+ it "should leave the port alone when doing a locale rewrite on a request that includes a path" do
146
+ helper.request.host = 'localhost'
147
+ helper.request.port = 3000
148
+ helper.request.stub(:host_with_port).and_return("localhost:3000")
149
+ helper.request.stub!(:fullpath).and_return('/users/admin')
150
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost:3000/users/admin?locale=es">Espanol</a>'
151
+ end
152
+ it "should leave the port alone when doing a locale rewrite on a request that includes a path and already specifies a locale" do
153
+ helper.request.host = 'localhost'
154
+ helper.request.port = 3000
155
+ helper.request.stub(:host_with_port).and_return("localhost:3000")
156
+ helper.request.stub!(:fullpath).and_return('/users/admin?locale=fr')
157
+ helper.request.env['query_string'] = 'locale=fr'
158
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost:3000/users/admin?locale=es">Espanol</a>'
159
+ end
160
+ it "should leave the rest of the query string alone when replacing the locale parameter" do
161
+ helper.request.host = 'localhost'
162
+ helper.request.port = 3000
163
+ helper.request.stub(:host_with_port).and_return("localhost:3000")
164
+ helper.request.stub!(:fullpath).and_return('/users/admin?test=false&locale=fr')
165
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost:3000/users/admin?test=false&amp;locale=es">Espanol</a>'
166
+ end
167
+ it "should append the locale parameter when other query string parameters are specified" do
168
+ helper.request.host = 'localhost'
169
+ helper.request.port = 3000
170
+ helper.request.stub(:host_with_port).and_return("localhost:3000")
171
+ helper.request.stub!(:fullpath).and_return('/users/admin?test=false')
172
+ helper.locale_link('Espanol','es').should == '<a href="http://localhost:3000/users/admin?test=false&amp;locale=es">Espanol</a>'
173
+ end
174
+ end
175
+ end
176
+ end
177
+