muck-profiles 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.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +41 -0
- data/Rakefile +78 -0
- data/VERSION +1 -0
- data/app/controllers/admin/muck/profiles_controller.rb +10 -0
- data/app/controllers/muck/profiles_controller.rb +55 -0
- data/app/helpers/muck_profiles_helper.rb +3 -0
- data/app/views/admin/profiles/edit.html.erb +0 -0
- data/app/views/profiles/edit.html.erb +16 -0
- data/app/views/profiles/index.html.erb +0 -0
- data/app/views/profiles/show.html.erb +0 -0
- data/config/muck_profiles_routes.rb +11 -0
- data/db/migrate/20090512013727_create_profiles.rb +21 -0
- data/install.rb +1 -0
- data/lib/active_record/acts/muck_profile.rb +50 -0
- data/lib/active_record/has/muck_profile.rb +37 -0
- data/lib/muck_profiles.rb +5 -0
- data/lib/muck_profiles/initialize_routes.rb +8 -0
- data/lib/muck_profiles/tasks.rb +27 -0
- data/locales/en.yml +5 -0
- data/muck-profiles.gemspec +320 -0
- data/pkg/muck-profiles-0.1.0.gem +0 -0
- data/rails/init.rb +4 -0
- data/tasks/rails.rake +1 -0
- data/test/rails_root/.gitignore +8 -0
- data/test/rails_root/.rake_tasks +103 -0
- data/test/rails_root/Capfile +3 -0
- data/test/rails_root/Rakefile +15 -0
- data/test/rails_root/app/controllers/application_controller.rb +12 -0
- data/test/rails_root/app/controllers/default_controller.rb +7 -0
- data/test/rails_root/app/helpers/application_helper.rb +3 -0
- data/test/rails_root/app/models/.keep +0 -0
- data/test/rails_root/app/models/profile.rb +3 -0
- data/test/rails_root/app/models/user.rb +15 -0
- data/test/rails_root/app/models/user_session.rb +2 -0
- data/test/rails_root/app/views/default/index.html.erb +0 -0
- data/test/rails_root/app/views/layouts/default.html.erb +26 -0
- data/test/rails_root/config/boot.rb +109 -0
- data/test/rails_root/config/database.yml +14 -0
- data/test/rails_root/config/environment.rb +25 -0
- data/test/rails_root/config/environments/development.rb +19 -0
- data/test/rails_root/config/environments/production.rb +1 -0
- data/test/rails_root/config/environments/test.rb +33 -0
- data/test/rails_root/config/global_config.yml +18 -0
- data/test/rails_root/config/initializers/inflections.rb +10 -0
- data/test/rails_root/config/initializers/mime_types.rb +5 -0
- data/test/rails_root/config/initializers/requires.rb +13 -0
- data/test/rails_root/config/initializers/session_store.rb +8 -0
- data/test/rails_root/config/routes.rb +9 -0
- data/test/rails_root/db/.keep +0 -0
- data/test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
- data/test/rails_root/db/migrate/20090512013727_create_profiles.rb +21 -0
- data/test/rails_root/db/migrate/20090602041838_create_users.rb +39 -0
- data/test/rails_root/db/schema.rb +142 -0
- data/test/rails_root/features/step_definitions/webrat_steps.rb +99 -0
- data/test/rails_root/features/support/env.rb +14 -0
- data/test/rails_root/public/.htaccess +40 -0
- data/test/rails_root/public/404.html +30 -0
- data/test/rails_root/public/422.html +30 -0
- data/test/rails_root/public/500.html +30 -0
- data/test/rails_root/public/dispatch.rb +10 -0
- data/test/rails_root/public/favicon.ico +0 -0
- data/test/rails_root/public/images/arrow_left.gif +0 -0
- data/test/rails_root/public/images/arrow_right.gif +0 -0
- data/test/rails_root/public/images/blue/preview.gif +0 -0
- data/test/rails_root/public/images/icons/accept.png +0 -0
- data/test/rails_root/public/images/icons/add.png +0 -0
- data/test/rails_root/public/images/icons/delete.png +0 -0
- data/test/rails_root/public/images/icons/vote.png +0 -0
- data/test/rails_root/public/images/loading.gif +0 -0
- data/test/rails_root/public/images/profile_default.jpg +0 -0
- data/test/rails_root/public/images/rails.png +0 -0
- data/test/rails_root/public/images/red/preview.gif +0 -0
- data/test/rails_root/public/images/spinner.gif +0 -0
- data/test/rails_root/public/images/sprites.png +0 -0
- data/test/rails_root/public/javascripts/application.js +2 -0
- data/test/rails_root/public/javascripts/builder.js +136 -0
- data/test/rails_root/public/javascripts/controls.js +963 -0
- data/test/rails_root/public/javascripts/dragdrop.js +972 -0
- data/test/rails_root/public/javascripts/effects.js +1120 -0
- data/test/rails_root/public/javascripts/fancyzoom.min.js +1 -0
- data/test/rails_root/public/javascripts/jquery/jquery-ui.js +273 -0
- data/test/rails_root/public/javascripts/jquery/jquery.form.js +637 -0
- data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +2 -0
- data/test/rails_root/public/javascripts/jquery/jquery.js +19 -0
- data/test/rails_root/public/javascripts/jquery/jquery.tips.js +69 -0
- data/test/rails_root/public/javascripts/muck.js +76 -0
- data/test/rails_root/public/javascripts/muck_activities.js +100 -0
- data/test/rails_root/public/javascripts/prototype.js +4225 -0
- data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
- data/test/rails_root/public/javascripts/slider.js +277 -0
- data/test/rails_root/public/javascripts/sound.js +60 -0
- data/test/rails_root/public/robots.txt +1 -0
- data/test/rails_root/public/stylesheets/.keep +0 -0
- data/test/rails_root/public/stylesheets/admin.css +12 -0
- data/test/rails_root/public/stylesheets/blueprint/ie.css +26 -0
- data/test/rails_root/public/stylesheets/blueprint/liquid_screen.css +203 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
- data/test/rails_root/public/stylesheets/blueprint/print.css +30 -0
- data/test/rails_root/public/stylesheets/blueprint/screen.css +251 -0
- data/test/rails_root/public/stylesheets/blueprint/sprite.css +1 -0
- data/test/rails_root/public/stylesheets/blueprint/src/forms.css +49 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.css +213 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/src/ie.css +59 -0
- data/test/rails_root/public/stylesheets/blueprint/src/print.css +85 -0
- data/test/rails_root/public/stylesheets/blueprint/src/reset.css +38 -0
- data/test/rails_root/public/stylesheets/blueprint/src/typography.css +105 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/reset.css +0 -0
- data/test/rails_root/public/stylesheets/styles.css +79 -0
- data/test/rails_root/public/stylesheets/themes/blue/styles.css +1 -0
- data/test/rails_root/public/stylesheets/themes/red/styles.css +1 -0
- data/test/rails_root/script/about +3 -0
- data/test/rails_root/script/breakpointer +3 -0
- data/test/rails_root/script/console +3 -0
- data/test/rails_root/script/create_project.rb +52 -0
- data/test/rails_root/script/cucumber +7 -0
- data/test/rails_root/script/dbconsole +3 -0
- data/test/rails_root/script/destroy +3 -0
- data/test/rails_root/script/generate +3 -0
- data/test/rails_root/script/performance/benchmarker +3 -0
- data/test/rails_root/script/performance/profiler +3 -0
- data/test/rails_root/script/performance/request +3 -0
- data/test/rails_root/script/plugin +3 -0
- data/test/rails_root/script/process/inspector +3 -0
- data/test/rails_root/script/process/reaper +3 -0
- data/test/rails_root/script/process/spawner +3 -0
- data/test/rails_root/script/runner +3 -0
- data/test/rails_root/script/server +3 -0
- data/test/rails_root/test/factories.rb +56 -0
- data/test/rails_root/test/functional/.keep +0 -0
- data/test/rails_root/test/functional/admin/profiles_controller_test.rb +30 -0
- data/test/rails_root/test/functional/profiles_controller_test.rb +16 -0
- data/test/rails_root/test/integration/.keep +0 -0
- data/test/rails_root/test/mocks/development/.keep +0 -0
- data/test/rails_root/test/mocks/test/.keep +0 -0
- data/test/rails_root/test/shoulda_macros/controller.rb +45 -0
- data/test/rails_root/test/shoulda_macros/models.rb +50 -0
- data/test/rails_root/test/test_helper.rb +38 -0
- data/test/rails_root/test/unit/.keep +0 -0
- data/test/rails_root/test/unit/profile_test.rb +0 -0
- data/test/rails_root/test/unit/user_test.rb +21 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/README +43 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +62 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
- data/uninstall.rb +1 -0
- metadata +331 -0
|
File without changes
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/* forms */
|
|
2
|
+
input{margin:0 10px 5px 0;padding:4px;font-size:1.3em;}
|
|
3
|
+
input[type="text"],input[type="password"]{border:1px solid #8f8685;}
|
|
4
|
+
input[type="checkbox"]{border:none;margin-bottom:0px;}
|
|
5
|
+
input[type="radio"]{border:none;}
|
|
6
|
+
textarea{font-size:1.4em;margin:0 10px 0 0;padding:4px;border:1px solid #8f8685;}
|
|
7
|
+
label{font-size:1.5em;font-weight:bold;margin:0 10px 5px 0;padding:0px;display:block;}
|
|
8
|
+
form em{color:#b61e12;font-style:normal;font-size:90%;}
|
|
9
|
+
form hr{border:1px solid #e3e0c3;height:1px;margin:15px 0;}
|
|
10
|
+
fieldset span.var{margin:2px 5px 5px 18px;display:block;}
|
|
11
|
+
fieldset{border:none;margin:0;padding:0;}
|
|
12
|
+
form fieldset{margin:0 0 2px;padding:0px;}
|
|
13
|
+
form fieldset input[type="text"],form fieldset input[type="password"]{width:500px;}
|
|
14
|
+
.common-form{width:500px;margin:40px auto;}
|
|
15
|
+
.common-form h1{font-size:1.8em;}
|
|
16
|
+
.form-item{float:left;}
|
|
17
|
+
.common-content{width:500px;margin:40px auto;font-size:1.2em;color:#555;}
|
|
18
|
+
.button-link {background-color:transparent;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;}
|
|
19
|
+
|
|
20
|
+
/*images*/
|
|
21
|
+
.icon{width:50px;height:50px;}
|
|
22
|
+
.thumb{width:100px;height:100px;}
|
|
23
|
+
.medium{width:300px;height:300px;}
|
|
24
|
+
|
|
25
|
+
/* tips */
|
|
26
|
+
.availability{color:#b61e12;}
|
|
27
|
+
.hidden-tips{display:none;}
|
|
28
|
+
.required-tip{color:#555555;font-size:1.2em;margin:0pt;font-weight:bolder;height:0px;}
|
|
29
|
+
.tip{position:absolute;z-index:100;border:2px solid #CCCCCC;background-color:#fff;width:400px;}
|
|
30
|
+
#tip-title{font-size:1.1em;background-color:#CCCCCC;text-align:left;padding:2px 0px 5px 8px;font-weight:bold;}
|
|
31
|
+
#tip-main{padding:10px;color:#333333;}
|
|
32
|
+
#tip-main p,#tip-main ul{font-size:1.3em;}
|
|
33
|
+
#tip-main p{margin:3px 0;}
|
|
34
|
+
#tip-header{position:absolute;z-index:101;background-repeat:no-repeat;}
|
|
35
|
+
.tip-content{width:100%;}
|
|
36
|
+
.top-tip{margin:0px 0px 12px 0px;}
|
|
37
|
+
.top-tip #tip-header{background-image:url(/images/arrow_down.gif);height:10px;width:23px;}
|
|
38
|
+
.left-tip{margin-right:12px;}
|
|
39
|
+
.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%;}
|
|
40
|
+
.bottom-tip{margin:12px 0px 0px 0px;}
|
|
41
|
+
.bottom-tip #tip-header{background-image:url(/images/arrow_up.gif);left:0px;height:10px;width:23px;top:-12px;}
|
|
42
|
+
.right-tip{margin:1px 0px 0px 12px;}
|
|
43
|
+
.right-tip #tip-header{background-image:url(/images/arrow_left.gif);left:-12px;height:23px;width:10px;top:-3px;}
|
|
44
|
+
.bottom-tip #tip-header, .right-tip #tip-header{background-position:left top;}
|
|
45
|
+
|
|
46
|
+
/*jGrowl*/
|
|
47
|
+
div.jGrowl{padding:10px;z-index:9999;}
|
|
48
|
+
/** Special IE6 Style Positioning **/
|
|
49
|
+
div.ie6{position:absolute;}
|
|
50
|
+
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' );}
|
|
51
|
+
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' );}
|
|
52
|
+
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' );}
|
|
53
|
+
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' );}
|
|
54
|
+
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%;}
|
|
55
|
+
/** Normal Style Positions **/
|
|
56
|
+
body > div.jGrowl{position:fixed;}
|
|
57
|
+
body > div.jGrowl.top-left{left:0px;top:0px;}
|
|
58
|
+
body > div.jGrowl.top-right{right:0px;top:0px;}
|
|
59
|
+
body > div.jGrowl.bottom-left{left:0px;bottom:0px;}
|
|
60
|
+
body > div.jGrowl.bottom-right{right:0px;bottom:0px;}
|
|
61
|
+
body > div.jGrowl.center{top:0px;width:50%;left:25%;}
|
|
62
|
+
/** Cross Browser Styling **/
|
|
63
|
+
div.center div.jGrowl-notification,div.center div.jGrowl-closer{margin-left:auto;margin-right:auto;}
|
|
64
|
+
div.jGrowl div.jGrowl-notification,div.jGrowl div.jGrowl-closer{background-color:#F0F7F9;color:#000;opacity:.95;filter:alpha(opacity = 95);zoom:1;width:550px;padding:10px;margin-top:5px;margin-bottom:5px;font-size:1.5em;text-align:left;display:none;-moz-border-radius:5px;-webkit-border-radius:5px;border:solid 3px #555;}
|
|
65
|
+
div.jGrowl div.jGrowl-notification{min-height:40px;}
|
|
66
|
+
div.jGrowl div.jGrowl-notification div.header{font-weight:bold;font-size:1.6em;}
|
|
67
|
+
div.jGrowl div.jGrowl-notification div.close{float:right;font-weight:bold;font-size:2em;cursor:pointer;color:#555;}
|
|
68
|
+
div.jGrowl div.jGrowl-notification div.close:hover{color:#ccc;}
|
|
69
|
+
div.jGrowl div.jGrowl-closer{height:15px;padding-top:4px;padding-bottom:4px;cursor:pointer;font-size:11px;font-weight:bold;text-align:center;}
|
|
70
|
+
div.jGrowl div.jGrowl-notification .notice, div.jGrowl div.jGrowl-notification .error, div.jGrowl div.jGrowl-notification .success{background:none;border:none;}
|
|
71
|
+
div.jGrowl div.jGrowl-notification h2{text-align:left;font-weight:bold;padding:5px 5px 5px 15px;font-size:1.1em;}
|
|
72
|
+
|
|
73
|
+
/* Errors */
|
|
74
|
+
.help-box{font-size:1.2em;color:#555;}
|
|
75
|
+
.fieldWithErrors input{border:solid 2px #B61E12;}
|
|
76
|
+
#errorExplanation{padding:7px;padding-bottom:12px;margin-bottom:20px;}
|
|
77
|
+
#errorExplanation h2{text-align:left;font-weight:bold;padding:5px 5px 5px 15px;font-size:16px;background-color:#B61E12;color:#fff;}
|
|
78
|
+
#errorExplanation p{color:#333;margin-bottom:0;padding:5px;}
|
|
79
|
+
#errorExplanation ul li{list-style:square;}
|
|
@@ -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,52 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'rubygems'
|
|
3
|
+
require 'activesupport'
|
|
4
|
+
require 'pathname'
|
|
5
|
+
|
|
6
|
+
project_name = ARGV[0]
|
|
7
|
+
fail("Usage: #{File.basename(__FILE__)} new_project_name") unless project_name
|
|
8
|
+
fail("Project name must only contain [a-z0-9_]") unless project_name =~ /^[a-z0-9_]+$/
|
|
9
|
+
|
|
10
|
+
base_directory = Pathname.new(File.join(File.dirname(__FILE__), '..', '..')).realpath
|
|
11
|
+
project_directory = base_directory + project_name
|
|
12
|
+
fail("Project directory (#{project_directory}) already exists") if project_directory.exist?
|
|
13
|
+
|
|
14
|
+
template_url = "git@github.com:thoughtbot/rails-template.git"
|
|
15
|
+
changeme = "CHANGEME"
|
|
16
|
+
|
|
17
|
+
def run(cmd)
|
|
18
|
+
puts "Running '#{cmd}'"
|
|
19
|
+
out = `#{cmd}`
|
|
20
|
+
if $? != 0
|
|
21
|
+
fail "Command #{cmd} failed: #$?\n#{out}"
|
|
22
|
+
end
|
|
23
|
+
out
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def search_and_replace(file, search, replace)
|
|
27
|
+
if File.file?(file)
|
|
28
|
+
contents = File.read(file)
|
|
29
|
+
if contents[search]
|
|
30
|
+
puts "Replacing #{search} with #{replace} in #{file}"
|
|
31
|
+
contents.gsub!(search, replace)
|
|
32
|
+
File.open(file, "w") { |f| f << contents }
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
run("mkdir #{project_directory}")
|
|
38
|
+
Dir.chdir(project_directory) or fail("Couldn't change to #{project_directory}")
|
|
39
|
+
run("git init")
|
|
40
|
+
run("git remote add template #{template_url}")
|
|
41
|
+
run("git pull template master")
|
|
42
|
+
|
|
43
|
+
Dir.glob("#{project_directory}/**/*").each do |file|
|
|
44
|
+
search_and_replace(file, changeme, project_name)
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
run("git commit -a -m 'Initial commit'")
|
|
48
|
+
|
|
49
|
+
puts
|
|
50
|
+
puts "Now login to github and add a new project named '#{project_name.humanize.titleize}'"
|
|
51
|
+
|
|
52
|
+
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Factory.sequence :email do |n|
|
|
2
|
+
"somebody#{n}@example.com"
|
|
3
|
+
end
|
|
4
|
+
|
|
5
|
+
Factory.sequence :login do |n|
|
|
6
|
+
"inquire#{n}"
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
Factory.sequence :name do |n|
|
|
10
|
+
"a_name#{n}"
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
Factory.sequence :abbr do |n|
|
|
14
|
+
"abbr#{n}"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
Factory.sequence :description do |n|
|
|
18
|
+
"This is the description: #{n}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Factory.define :state do |f|
|
|
22
|
+
f.name { Factory.next(:name) }
|
|
23
|
+
f.abbreviation { Factory.next(:abbr) }
|
|
24
|
+
f.country {|a| a.association(:country) }
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
Factory.define :country do |f|
|
|
28
|
+
f.name { Factory.next(:name) }
|
|
29
|
+
f.abbreviation { Factory.next(:abbr) }
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
Factory.define :user do |f|
|
|
33
|
+
f.login { Factory.next(:login) }
|
|
34
|
+
f.email { Factory.next(:email) }
|
|
35
|
+
f.password 'inquire_pass'
|
|
36
|
+
f.password_confirmation 'inquire_pass'
|
|
37
|
+
f.first_name 'test'
|
|
38
|
+
f.last_name 'guy'
|
|
39
|
+
f.terms_of_service true
|
|
40
|
+
f.activated_at DateTime.now
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
Factory.define :content_page do |f|
|
|
44
|
+
f.creator {|a| a.association(:user)}
|
|
45
|
+
f.title { Factory.next(:name) }
|
|
46
|
+
f.body_raw { Factory.next(:description) }
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
Factory.define :permission do |f|
|
|
50
|
+
f.role {|a| a.association(:role)}
|
|
51
|
+
f.user {|a| a.association(:user)}
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
Factory.define :role do |f|
|
|
55
|
+
f.rolename 'administrator'
|
|
56
|
+
end
|
|
File without changes
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
|
2
|
+
|
|
3
|
+
class Admin::Muck::ProfilesControllerTest < ActionController::TestCase
|
|
4
|
+
|
|
5
|
+
tests Admin::Muck::ProfilesController
|
|
6
|
+
|
|
7
|
+
should_require_login :edit => :get
|
|
8
|
+
should_require_role(:admin, '/login', :index)
|
|
9
|
+
|
|
10
|
+
context "logged in as admin" do
|
|
11
|
+
|
|
12
|
+
setup do
|
|
13
|
+
@admin = Factory(:user)
|
|
14
|
+
@admin_role = Factory(:role, :rolename => 'administrator')
|
|
15
|
+
@admin.roles << @admin_role
|
|
16
|
+
activate_authlogic
|
|
17
|
+
login_as @admin
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
context "GET edit" do
|
|
21
|
+
setup do
|
|
22
|
+
get :edit
|
|
23
|
+
end
|
|
24
|
+
should_respond_with :success
|
|
25
|
+
should_render_template :edit
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
|
2
|
+
|
|
3
|
+
class Muck::ProfilesControllerTest < ActionController::TestCase
|
|
4
|
+
|
|
5
|
+
tests Muck::ProfilesController
|
|
6
|
+
|
|
7
|
+
context "GET show" do
|
|
8
|
+
setup do
|
|
9
|
+
@user = Factory(:user)
|
|
10
|
+
get :show, :id => @user.to_param
|
|
11
|
+
end
|
|
12
|
+
should_respond_with :success
|
|
13
|
+
should_render_template :show
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
module MuckControllerMacros
|
|
2
|
+
|
|
3
|
+
def should_require_login(*args)
|
|
4
|
+
args = Hash[*args]
|
|
5
|
+
login_url = args.delete :login_url
|
|
6
|
+
args.each do |action, verb|
|
|
7
|
+
should "Require login for '#{action}' action" do
|
|
8
|
+
send(verb, action)
|
|
9
|
+
assert_redirected_to(login_url)
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def should_require_role(role, redirect_url, *actions)
|
|
15
|
+
actions.each do |action|
|
|
16
|
+
should "require role for '#{action}' action" do
|
|
17
|
+
get(action)
|
|
18
|
+
ensure_flash(/permission/i)
|
|
19
|
+
assert_response :redirect
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
#from: http://blog.internautdesign.com/2008/9/11/more-on-custom-shoulda-macros-scoping-of-instance-variables
|
|
25
|
+
def should_not_allow action, object, url= "/login", msg=nil
|
|
26
|
+
msg ||= "a #{object.class.to_s.downcase}"
|
|
27
|
+
should "not be able to #{action} #{msg}" do
|
|
28
|
+
object = eval(object, self.send(:binding), __FILE__, __LINE__)
|
|
29
|
+
get action, :id => object.id
|
|
30
|
+
assert_redirected_to url
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def should_allow action, object, msg=nil
|
|
35
|
+
msg ||= "a #{object.class.to_s.downcase}"
|
|
36
|
+
should "be able to #{action} #{msg}" do
|
|
37
|
+
object = eval(object, self.send(:binding), __FILE__, __LINE__)
|
|
38
|
+
get action, :id => object.id
|
|
39
|
+
assert_response :success
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
ActionController::TestCase.extend(MuckControllerMacros)
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
module ShouldaModelMacros
|
|
2
|
+
|
|
3
|
+
def self.should_whitelist(*attributes)
|
|
4
|
+
bad_scripts = [
|
|
5
|
+
%|';alert(String.fromCharCode(88,83,83))//\';alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>|,
|
|
6
|
+
%|'';!--"<XSS>=&{()}|,
|
|
7
|
+
%|<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>|,
|
|
8
|
+
%|<IMG SRC="javascript:alert('XSS');">|,
|
|
9
|
+
%|<IMG SRC=javascript:alert('XSS')>|,
|
|
10
|
+
%|<IMG SRC=JaVaScRiPt:alert('XSS')>|,
|
|
11
|
+
%|<IMG SRC=JaVaScRiPt:alert('XSS')>|,
|
|
12
|
+
%|<IMG SRC=`javascript:alert("RSnake says, 'XSS'")`>|,
|
|
13
|
+
%|<IMG """><SCRIPT>alert("XSS")</SCRIPT>">|,
|
|
14
|
+
%|<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>|,
|
|
15
|
+
%|<A HREF="h
|
|
16
|
+
tt p://6	6.000146.0x7.147/">XSS</A>|,
|
|
17
|
+
%|<script>alert('message');</script>| ]
|
|
18
|
+
|
|
19
|
+
klass = model_class
|
|
20
|
+
attributes.each do |attribute|
|
|
21
|
+
attribute = attribute.to_sym
|
|
22
|
+
should "white list #{attribute}" do
|
|
23
|
+
assert object = klass.find(:first), "Can't find first #{klass}"
|
|
24
|
+
bad_scripts.each do |bad_value|
|
|
25
|
+
object.send("#{attribute}=", bad_value)
|
|
26
|
+
object.save
|
|
27
|
+
clean_value = object.send("#{attribute}")
|
|
28
|
+
assert !clean_value.include?(bad_value), "#{attribute} is not white listed. #{bad_value} made it through"
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def should_accept_nested_attributes_for(*attr_names)
|
|
35
|
+
klass = self.name.gsub(/Test$/, '').constantize
|
|
36
|
+
|
|
37
|
+
context "#{klass}" do
|
|
38
|
+
attr_names.each do |association_name|
|
|
39
|
+
should "accept nested attrs for #{association_name}" do
|
|
40
|
+
assert klass.instance_methods.include?("#{association_name}_attributes="),
|
|
41
|
+
"#{klass} does not accept nested attributes for #{association_name}"
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
class ActiveSupport::TestCase
|
|
49
|
+
extend ShouldaModelMacros
|
|
50
|
+
end
|