prime-rails 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/app/assets/images/images/loading.gif +0 -0
- data/app/assets/images/images/messages.png +0 -0
- data/app/assets/images/images/ornament.png +0 -0
- data/app/assets/images/images/password-meter.png +0 -0
- data/app/assets/javascripts/js/accordion/accordion.js +134 -0
- data/app/assets/javascripts/js/autocomplete/autocomplete.js +439 -0
- data/app/assets/javascripts/js/button/button.js +98 -0
- data/app/assets/javascripts/js/checkbox/checkbox.js +117 -0
- data/app/assets/javascripts/js/core/core.js +60 -0
- data/app/assets/javascripts/js/datatable/datatable.js +334 -0
- data/app/assets/javascripts/js/dialog/dialog.js +485 -0
- data/app/assets/javascripts/js/dropdown/dropdown.js +546 -0
- data/app/assets/javascripts/js/fieldset/fieldset.js +68 -0
- data/app/assets/javascripts/js/galleria/galleria.js +221 -0
- data/app/assets/javascripts/js/growl/growl.js +98 -0
- data/app/assets/javascripts/js/inputtext/inputtext.js +40 -0
- data/app/assets/javascripts/js/inputtextarea/inputtextarea.js +360 -0
- data/app/assets/javascripts/js/lightbox/lightbox.js +343 -0
- data/app/assets/javascripts/js/menu/menu.js +689 -0
- data/app/assets/javascripts/js/notify/notify.js +79 -0
- data/app/assets/javascripts/js/paginator/paginator.js +280 -0
- data/app/assets/javascripts/js/panel/panel.js +170 -0
- data/app/assets/javascripts/js/password/password.js +157 -0
- data/app/assets/javascripts/js/progressbar/progressbar.js +92 -0
- data/app/assets/javascripts/js/radiobutton/radiobutton.js +94 -0
- data/app/assets/javascripts/js/rating/rating.js +87 -0
- data/app/assets/javascripts/js/spinner/spinner.js +227 -0
- data/app/assets/javascripts/js/tabview/tabview.js +153 -0
- data/app/assets/javascripts/js/terminal/terminal.js +91 -0
- data/app/assets/javascripts/js/tooltip/tooltip.js +124 -0
- data/app/assets/javascripts/plugins/cursorposition.js +138 -0
- data/app/assets/javascripts/plugins/rangyinput.js +239 -0
- data/app/assets/javascripts/primefaces-core.js +1253 -0
- data/app/assets/javascripts/primefaces-rails.js +152 -0
- data/app/assets/javascripts/primeui.js +5577 -0
- data/app/assets/stylesheets/css/primeui/css/accordion/accordion.css +39 -0
- data/app/assets/stylesheets/css/primeui/css/autocomplete/autocomplete.css +100 -0
- data/app/assets/stylesheets/css/primeui/css/button/button.css +75 -0
- data/app/assets/stylesheets/css/primeui/css/checkbox/checkbox.css +23 -0
- data/app/assets/stylesheets/css/primeui/css/core/core.css +5 -0
- data/app/assets/stylesheets/css/primeui/css/datatable/datatable.css +60 -0
- data/app/assets/stylesheets/css/primeui/css/dialog/dialog.css +36 -0
- data/app/assets/stylesheets/css/primeui/css/dropdown/dropdown.css +96 -0
- data/app/assets/stylesheets/css/primeui/css/fieldset/fieldset.css +15 -0
- data/app/assets/stylesheets/css/primeui/css/galleria/galleria.css +77 -0
- data/app/assets/stylesheets/css/primeui/css/growl/growl.css +78 -0
- data/app/assets/stylesheets/css/primeui/css/inputtext/inputtext.css +11 -0
- data/app/assets/stylesheets/css/primeui/css/inputtextarea/inputtextarea.css +4 -0
- data/app/assets/stylesheets/css/primeui/css/lightbox/lightbox.css +52 -0
- data/app/assets/stylesheets/css/primeui/css/menu/menu.css +391 -0
- data/app/assets/stylesheets/css/primeui/css/notify/notify.css +27 -0
- data/app/assets/stylesheets/css/primeui/css/paginator/paginator.css +61 -0
- data/app/assets/stylesheets/css/primeui/css/panel/panel.css +51 -0
- data/app/assets/stylesheets/css/primeui/css/password/password.css +20 -0
- data/app/assets/stylesheets/css/primeui/css/progressbar/progressbar.css +22 -0
- data/app/assets/stylesheets/css/primeui/css/radiobutton/radiobutton.css +20 -0
- data/app/assets/stylesheets/css/primeui/css/rating/images/rating.png +0 -0
- data/app/assets/stylesheets/css/primeui/css/rating/rating.css +37 -0
- data/app/assets/stylesheets/css/primeui/css/spinner/spinner.css +46 -0
- data/app/assets/stylesheets/css/primeui/css/tabview/tabview.css +124 -0
- data/app/assets/stylesheets/css/primeui/css/terminal/terminal.css +25 -0
- data/app/assets/stylesheets/css/primeui/css/tooltip/tooltip.css +5 -0
- data/app/assets/stylesheets/css/primeui/primeui.css +1453 -0
- data/app/assets/stylesheets/jquery-ui.css +53 -0
- data/app/assets/stylesheets/themes/afterdark/images/ui-icons-dark.png +0 -0
- data/app/assets/stylesheets/themes/afterdark/images/ui-icons-light.png +0 -0
- data/app/assets/stylesheets/themes/afterdark/theme.css +435 -0
- data/app/assets/stylesheets/themes/afternoon/images/ui-icons-dark.png +0 -0
- data/app/assets/stylesheets/themes/afternoon/images/ui-icons-light.png +0 -0
- data/app/assets/stylesheets/themes/afternoon/theme.css +443 -0
- data/app/assets/stylesheets/themes/afterwork/images/ui-icons-dark.png +0 -0
- data/app/assets/stylesheets/themes/afterwork/images/ui-icons-light.png +0 -0
- data/app/assets/stylesheets/themes/afterwork/theme.css +442 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_0_2d5972_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_0_4f4f4f_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_100_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-hard_80_85b2cb_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-hard_80_c4c4c4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-hard_80_e3e3e3_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-soft_100_c4c4c4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-soft_75_85b2cb_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_inset-hard_65_85b2cb_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_inset-hard_65_c4c4c4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_2d5972_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_38667f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_3a6983_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_616161_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_898989_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/theme.css +1251 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_4ca300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_bbbbbb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_ededed_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_ffcf29_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/theme.css +269 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-icons_004276_256x240.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-icons_cc0000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/theme.css +269 -0
- data/app/assets/stylesheets/themes/bluesky/images/active.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/default.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/header.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_flat_15_cd0a0a_40x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-hard_70_000000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-soft_100_deedf7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-soft_25_ffef8f_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_3d80b3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_72a7cf_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/theme.css +262 -0
- data/app/assets/stylesheets/themes/bootstrap/images/ui-icons_333333_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bootstrap/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bootstrap/theme.css +918 -0
- data/app/assets/stylesheets/themes/casablanca/images/active.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/default.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/header.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/hover.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/theme.css +262 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_flat_50_575757_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_20_3d3d3d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_20_474747_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_40_0099e0_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_gloss-wave_25_333333_500x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_0099e0_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_a83300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_eeeeee_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/theme.css +273 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_3d80b3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/theme.css +269 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/theme.css +269 -0
- data/app/assets/stylesheets/themes/delta/images/icons_16.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/jGrowl-close.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/modalClose.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/modalClose@2x.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/slider_handles.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/slider_handles@2x.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/theme.css +671 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_flat_40_292929_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_00498f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_98d2fb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/theme.css +269 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_55_994d53_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_55_fafafa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_734d99_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_8d78a5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_a8a3ae_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_ebccce_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/theme.css +269 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_flat_0_e69700_40x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_0a82eb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_0b54d5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/theme.css +270 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_0073ea_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_666666_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_ff0084_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/theme.css +269 -0
- data/app/assets/stylesheets/themes/glass-x/images/active.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/default.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/header.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/theme.css +276 -0
- data/app/assets/stylesheets/themes/home/images/active.png +0 -0
- data/app/assets/stylesheets/themes/home/images/default.png +0 -0
- data/app/assets/stylesheets/themes/home/images/header.png +0 -0
- data/app/assets/stylesheets/themes/home/images/hover.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_diagonals-thick_8_333333_40x40.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_flat_65_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_glass_40_111111_1x400.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_glass_55_1c1c1c_1x400.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_inset-hard_45_cd0a0a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_inset-hard_55_ffeb80_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_4ca300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_bbbbbb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_ededed_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_ffcf29_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/theme.css +273 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_88a206_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_c02669_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/theme.css +269 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_c47a23_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_cb672b_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_f08000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_f35f07_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_ff7519_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/theme.css +269 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_4eb305_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_72b42d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/theme.css +269 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_100_18181f_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_100_583d3d_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_10_3d4858_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_highlight-soft_15_191921_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_highlight-soft_15_32323d_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_highlight-soft_35_191921_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_inset-soft_35_191921_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_8fddff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_a1ddff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_f4f4f9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_fafafa_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_ff8f8f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/theme.css +268 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_9bcc60_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_add978_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_f1fd86_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/theme.css +269 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_3383bb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_70b2e1_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_999999_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_fbc856_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/theme.css +269 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_b83400_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/theme.css +269 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/theme.css +269 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_diagonals-thick_50_00a6dd_40x40.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_flat_100_f1f1f1_40x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_242122_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_65358a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_8A56B2_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_9eca38_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_ca3838_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_35_00a6dd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_inset-soft_100_e1e1e1_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_inset-soft_15_242122_1x100 - Copy.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_inset-soft_15_242122_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_00a6dd_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_304915_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_d399ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_eaffb9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_f4f4f9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_fafafa_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_ff8f8f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/theme.css +301 -0
- data/app/assets/stylesheets/themes/sam/images/sprite.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-default.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/theme.css +303 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/theme.css +269 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_808080_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_847e71_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_8dc262_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_eeeeee_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/theme.css +269 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_flat_55_999999_40x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_glass_45_0078ae_1x400.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_0078ae_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_056b93_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_e0fdff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_f5e175_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_f7a50d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_fcd113_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/theme.css +269 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_3d3d3d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_bd7b00_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_d19405_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_eb990f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_ed9f26_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_fadc7a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_ffe180_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/theme.css +269 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_070603_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_efec9f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_ff7519_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/theme.css +269 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_flat_0_303030_40x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_000000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_1f1f1f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_9fda58_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_b8ec79_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/theme.css +269 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_a83300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_cccccc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/theme.css +269 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/theme.css +269 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_666666_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_aaaaaa_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_bbbbbb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_c98000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_cccccc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_f29a00_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/theme.css +269 -0
- data/app/helpers/breadcrumb_helper.rb +51 -0
- data/app/helpers/dialog_helper.rb +34 -0
- data/app/helpers/fieldset_helper.rb +35 -0
- data/app/helpers/panel_helper.rb +35 -0
- data/app/helpers/progressbar_helper.rb +31 -0
- data/app/helpers/tabview_helper.rb +54 -0
- data/app/helpers/tooltip_helper.rb +35 -0
- data/app/views/prime-rails/_breadcrumbs.html.erb +10 -0
- data/lib/generators/primerails/install/install_generator.rb +47 -0
- data/lib/generators/primerails/install/templates/application.css +7 -0
- data/lib/generators/primerails/install/templates/application.js +11 -0
- data/lib/generators/primerails/install/templates/primerails_and_overrides.css +5 -0
- data/lib/prime/rails/engine.rb +22 -0
- data/lib/prime/rails/form_helper.rb +19 -0
- data/lib/prime/rails/form_tag_helper.rb +139 -0
- data/lib/prime/rails/prime-rails-breadcrumbs.rb +43 -0
- data/lib/prime/rails/primerails.rb +3 -0
- data/lib/prime/rails/tags/text_area.rb +32 -0
- data/lib/prime/rails/tags/text_field.rb +26 -0
- data/lib/prime/rails/utils.rb +28 -0
- data/lib/prime/rails/version.rb +5 -0
- data/lib/prime-rails.rb +1 -0
- metadata +681 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI progressbar widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puiprogressbar", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
value: 0,
|
10
|
+
labelTemplate: '{value}%',
|
11
|
+
complete: null,
|
12
|
+
easing: 'easeInOutCirc',
|
13
|
+
effectSpeed: 'normal',
|
14
|
+
showLabel: true
|
15
|
+
},
|
16
|
+
|
17
|
+
_create: function() {
|
18
|
+
this.element.addClass('pui-progressbar ui-widget ui-widget-content ui-corner-all')
|
19
|
+
.append('<div class="pui-progressbar-value ui-widget-header ui-corner-all"></div>')
|
20
|
+
.append('<div class="pui-progressbar-label"></div>');
|
21
|
+
|
22
|
+
this.jqValue = this.element.children('.pui-progressbar-value');
|
23
|
+
this.jqLabel = this.element.children('.pui-progressbar-label');
|
24
|
+
|
25
|
+
if(this.options.value !==0) {
|
26
|
+
this._setValue(this.options.value, false);
|
27
|
+
}
|
28
|
+
|
29
|
+
this.enableARIA();
|
30
|
+
},
|
31
|
+
|
32
|
+
_setValue: function(value, animate) {
|
33
|
+
var anim = (animate === undefined || animate) ? true : false;
|
34
|
+
|
35
|
+
if(value >= 0 && value <= 100) {
|
36
|
+
if(value === 0) {
|
37
|
+
this.jqValue.hide().css('width', '0%').removeClass('ui-corner-right');
|
38
|
+
|
39
|
+
this.jqLabel.hide();
|
40
|
+
}
|
41
|
+
else {
|
42
|
+
if(anim) {
|
43
|
+
this.jqValue.show().animate({
|
44
|
+
'width': value + '%'
|
45
|
+
}, this.options.effectSpeed, this.options.easing);
|
46
|
+
}
|
47
|
+
else {
|
48
|
+
this.jqValue.show().css('width', value + '%');
|
49
|
+
}
|
50
|
+
|
51
|
+
if(this.options.labelTemplate && this.options.showLabel) {
|
52
|
+
var formattedLabel = this.options.labelTemplate.replace(/{value}/gi, value);
|
53
|
+
|
54
|
+
this.jqLabel.html(formattedLabel).show();
|
55
|
+
}
|
56
|
+
|
57
|
+
if(value === 100) {
|
58
|
+
this._trigger('complete');
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
this.options.value = value;
|
63
|
+
this.element.attr('aria-valuenow', value);
|
64
|
+
}
|
65
|
+
},
|
66
|
+
|
67
|
+
_getValue: function() {
|
68
|
+
return this.options.value;
|
69
|
+
},
|
70
|
+
|
71
|
+
enableARIA: function() {
|
72
|
+
this.element.attr('role', 'progressbar')
|
73
|
+
.attr('aria-valuemin', 0)
|
74
|
+
.attr('aria-valuenow', this.options.value)
|
75
|
+
.attr('aria-valuemax', 100);
|
76
|
+
},
|
77
|
+
|
78
|
+
_setOption: function(key, value) {
|
79
|
+
if(key === 'value') {
|
80
|
+
this._setValue(value);
|
81
|
+
}
|
82
|
+
|
83
|
+
$.Widget.prototype._setOption.apply(this, arguments);
|
84
|
+
},
|
85
|
+
|
86
|
+
_destroy: function() {
|
87
|
+
|
88
|
+
}
|
89
|
+
|
90
|
+
});
|
91
|
+
|
92
|
+
});
|
@@ -0,0 +1,94 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI radiobutton widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
var checkedRadios = {};
|
7
|
+
|
8
|
+
$.widget("primeui.puiradiobutton", {
|
9
|
+
|
10
|
+
_create: function() {
|
11
|
+
this.element.wrap('<div class="pui-radiobutton ui-widget"><div class="ui-helper-hidden-accessible"></div></div>');
|
12
|
+
this.container = this.element.parent().parent();
|
13
|
+
this.box = $('<div class="pui-radiobutton-box ui-widget pui-radiobutton-relative ui-state-default">').appendTo(this.container);
|
14
|
+
this.icon = $('<span class="pui-radiobutton-icon pui-c"></span>').appendTo(this.box);
|
15
|
+
this.disabled = this.element.prop('disabled');
|
16
|
+
this.label = $('label[for="' + this.element.attr('id') + '"]');
|
17
|
+
|
18
|
+
if(this.element.prop('checked')) {
|
19
|
+
this.box.addClass('ui-state-active');
|
20
|
+
this.icon.addClass('ui-icon ui-icon-bullet');
|
21
|
+
checkedRadios[this.element.attr('name')] = this.box;
|
22
|
+
}
|
23
|
+
|
24
|
+
if(this.disabled) {
|
25
|
+
this.box.addClass('ui-state-disabled');
|
26
|
+
} else {
|
27
|
+
this._bindEvents();
|
28
|
+
}
|
29
|
+
},
|
30
|
+
|
31
|
+
_bindEvents: function() {
|
32
|
+
var $this = this;
|
33
|
+
|
34
|
+
this.box.on('mouseover.puiradiobutton', function() {
|
35
|
+
if(!$this._isChecked())
|
36
|
+
$this.box.addClass('ui-state-hover');
|
37
|
+
}).on('mouseout.puiradiobutton', function() {
|
38
|
+
if(!$this._isChecked())
|
39
|
+
$this.box.removeClass('ui-state-hover');
|
40
|
+
}).on('click.puiradiobutton', function() {
|
41
|
+
if(!$this._isChecked()) {
|
42
|
+
$this.element.trigger('click');
|
43
|
+
|
44
|
+
if($.browser.msie && parseInt($.browser.version) < 9) {
|
45
|
+
$this.element.trigger('change');
|
46
|
+
}
|
47
|
+
}
|
48
|
+
});
|
49
|
+
|
50
|
+
if(this.label.length > 0) {
|
51
|
+
this.label.on('click.puiradiobutton', function(e) {
|
52
|
+
$this.element.trigger('click');
|
53
|
+
|
54
|
+
e.preventDefault();
|
55
|
+
});
|
56
|
+
}
|
57
|
+
|
58
|
+
this.element.focus(function() {
|
59
|
+
if($this._isChecked()) {
|
60
|
+
$this.box.removeClass('ui-state-active');
|
61
|
+
}
|
62
|
+
|
63
|
+
$this.box.addClass('ui-state-focus');
|
64
|
+
})
|
65
|
+
.blur(function() {
|
66
|
+
if($this._isChecked()) {
|
67
|
+
$this.box.addClass('ui-state-active');
|
68
|
+
}
|
69
|
+
|
70
|
+
$this.box.removeClass('ui-state-focus');
|
71
|
+
})
|
72
|
+
.change(function(e) {
|
73
|
+
var name = $this.element.attr('name');
|
74
|
+
if(checkedRadios[name]) {
|
75
|
+
checkedRadios[name].removeClass('ui-state-active ui-state-focus ui-state-hover').children('.pui-radiobutton-icon').removeClass('ui-icon ui-icon-bullet');
|
76
|
+
}
|
77
|
+
|
78
|
+
$this.icon.addClass('ui-icon ui-icon-bullet');
|
79
|
+
if(!$this.element.is(':focus')) {
|
80
|
+
$this.box.addClass('ui-state-active');
|
81
|
+
}
|
82
|
+
|
83
|
+
checkedRadios[name] = $this.box;
|
84
|
+
|
85
|
+
$this._trigger('change', null);
|
86
|
+
});
|
87
|
+
},
|
88
|
+
|
89
|
+
_isChecked: function() {
|
90
|
+
return this.element.prop('checked');
|
91
|
+
}
|
92
|
+
});
|
93
|
+
|
94
|
+
});
|
@@ -0,0 +1,87 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI rating widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puirating", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
stars: 5,
|
10
|
+
cancel: true
|
11
|
+
},
|
12
|
+
|
13
|
+
_create: function() {
|
14
|
+
var input = this.element;
|
15
|
+
|
16
|
+
input.wrap('<div />');
|
17
|
+
this.container = input.parent();
|
18
|
+
this.container.addClass('pui-rating');
|
19
|
+
|
20
|
+
var inputVal = input.val(),
|
21
|
+
value = inputVal == '' ? null : parseInt(inputVal);
|
22
|
+
|
23
|
+
if(this.options.cancel) {
|
24
|
+
this.container.append('<div class="pui-rating-cancel"><a></a></div>');
|
25
|
+
}
|
26
|
+
|
27
|
+
for(var i = 0; i < this.options.stars; i++) {
|
28
|
+
var styleClass = (value > i) ? "pui-rating-star pui-rating-star-on" : "pui-rating-star";
|
29
|
+
|
30
|
+
this.container.append('<div class="' + styleClass + '"><a></a></div>');
|
31
|
+
}
|
32
|
+
|
33
|
+
this.stars = this.container.children('.pui-rating-star');
|
34
|
+
|
35
|
+
if(input.prop('disabled')) {
|
36
|
+
this.container.addClass('ui-state-disabled');
|
37
|
+
}
|
38
|
+
else if(!input.prop('readonly')){
|
39
|
+
this._bindEvents();
|
40
|
+
}
|
41
|
+
},
|
42
|
+
|
43
|
+
_bindEvents: function() {
|
44
|
+
var $this = this;
|
45
|
+
|
46
|
+
this.stars.click(function() {
|
47
|
+
var value = $this.stars.index(this) + 1; //index starts from zero
|
48
|
+
|
49
|
+
$this.setValue(value);
|
50
|
+
});
|
51
|
+
|
52
|
+
this.container.children('.pui-rating-cancel').hover(function() {
|
53
|
+
$(this).toggleClass('pui-rating-cancel-hover');
|
54
|
+
})
|
55
|
+
.click(function() {
|
56
|
+
$this.cancel();
|
57
|
+
});
|
58
|
+
},
|
59
|
+
|
60
|
+
cancel: function() {
|
61
|
+
this.element.val('');
|
62
|
+
|
63
|
+
this.stars.filter('.pui-rating-star-on').removeClass('pui-rating-star-on');
|
64
|
+
|
65
|
+
this._trigger('cancel', null);
|
66
|
+
},
|
67
|
+
|
68
|
+
getValue: function() {
|
69
|
+
var inputVal = this.element.val();
|
70
|
+
|
71
|
+
return inputVal == '' ? null : parseInt(inputVal);
|
72
|
+
},
|
73
|
+
|
74
|
+
setValue: function(value) {
|
75
|
+
this.element.val(value);
|
76
|
+
|
77
|
+
//update visuals
|
78
|
+
this.stars.removeClass('pui-rating-star-on');
|
79
|
+
for(var i = 0; i < value; i++) {
|
80
|
+
this.stars.eq(i).addClass('pui-rating-star-on');
|
81
|
+
}
|
82
|
+
|
83
|
+
this._trigger('rate', null, value);
|
84
|
+
}
|
85
|
+
});
|
86
|
+
|
87
|
+
});
|
@@ -0,0 +1,227 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI spinner widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puispinner", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
step: 1.0
|
10
|
+
},
|
11
|
+
|
12
|
+
_create: function() {
|
13
|
+
var input = this.element,
|
14
|
+
disabled = input.prop('disabled');
|
15
|
+
|
16
|
+
input.puiinputtext().addClass('pui-spinner-input').wrap('<span class="pui-spinner ui-widget ui-corner-all" />');
|
17
|
+
this.wrapper = input.parent();
|
18
|
+
this.wrapper.append('<a class="pui-spinner-button pui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n"></span></span></a><a class="pui-spinner-button pui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s"></span></span></a>');
|
19
|
+
this.upButton = this.wrapper.children('a.pui-spinner-up');
|
20
|
+
this.downButton = this.wrapper.children('a.pui-spinner-down');
|
21
|
+
this.options.step = this.options.step||1;
|
22
|
+
|
23
|
+
if(parseInt(this.options.step) === 0) {
|
24
|
+
this.options.precision = this.options.step.toString().split(/[,]|[.]/)[1].length;
|
25
|
+
}
|
26
|
+
|
27
|
+
this._initValue();
|
28
|
+
|
29
|
+
if(!disabled&&!input.prop('readonly')) {
|
30
|
+
this._bindEvents();
|
31
|
+
}
|
32
|
+
|
33
|
+
if(disabled) {
|
34
|
+
this.wrapper.addClass('ui-state-disabled');
|
35
|
+
}
|
36
|
+
|
37
|
+
//aria
|
38
|
+
input.attr({
|
39
|
+
'role': 'spinner'
|
40
|
+
,'aria-multiline': false
|
41
|
+
,'aria-valuenow': this.value
|
42
|
+
});
|
43
|
+
|
44
|
+
if(this.options.min != undefined)
|
45
|
+
input.attr('aria-valuemin', this.options.min);
|
46
|
+
|
47
|
+
if(this.options.max != undefined)
|
48
|
+
input.attr('aria-valuemax', this.options.max);
|
49
|
+
|
50
|
+
if(input.prop('disabled'))
|
51
|
+
input.attr('aria-disabled', true);
|
52
|
+
|
53
|
+
if(input.prop('readonly'))
|
54
|
+
input.attr('aria-readonly', true);
|
55
|
+
},
|
56
|
+
|
57
|
+
|
58
|
+
_bindEvents: function() {
|
59
|
+
var $this = this;
|
60
|
+
|
61
|
+
//visuals for spinner buttons
|
62
|
+
this.wrapper.children('.pui-spinner-button')
|
63
|
+
.mouseover(function() {
|
64
|
+
$(this).addClass('ui-state-hover');
|
65
|
+
}).mouseout(function() {
|
66
|
+
$(this).removeClass('ui-state-hover ui-state-active');
|
67
|
+
|
68
|
+
if($this.timer) {
|
69
|
+
clearInterval($this.timer);
|
70
|
+
}
|
71
|
+
}).mouseup(function() {
|
72
|
+
clearInterval($this.timer);
|
73
|
+
$(this).removeClass('ui-state-active').addClass('ui-state-hover');
|
74
|
+
}).mousedown(function(e) {
|
75
|
+
var element = $(this),
|
76
|
+
dir = element.hasClass('pui-spinner-up') ? 1 : -1;
|
77
|
+
|
78
|
+
element.removeClass('ui-state-hover').addClass('ui-state-active');
|
79
|
+
|
80
|
+
if($this.element.is(':not(:focus)')) {
|
81
|
+
$this.element.focus();
|
82
|
+
}
|
83
|
+
|
84
|
+
$this._repeat(null, dir);
|
85
|
+
|
86
|
+
//keep focused
|
87
|
+
e.preventDefault();
|
88
|
+
});
|
89
|
+
|
90
|
+
this.element.keydown(function (e) {
|
91
|
+
var keyCode = $.ui.keyCode;
|
92
|
+
|
93
|
+
switch(e.which) {
|
94
|
+
case keyCode.UP:
|
95
|
+
$this._spin($this.options.step);
|
96
|
+
break;
|
97
|
+
|
98
|
+
case keyCode.DOWN:
|
99
|
+
$this._spin(-1 * $this.options.step);
|
100
|
+
break;
|
101
|
+
|
102
|
+
default:
|
103
|
+
//do nothing
|
104
|
+
break;
|
105
|
+
}
|
106
|
+
})
|
107
|
+
.keyup(function () {
|
108
|
+
$this._updateValue();
|
109
|
+
})
|
110
|
+
.blur(function () {
|
111
|
+
$this._format();
|
112
|
+
})
|
113
|
+
.focus(function () {
|
114
|
+
//remove formatting
|
115
|
+
$this.element.val($this.value);
|
116
|
+
});
|
117
|
+
|
118
|
+
//mousewheel
|
119
|
+
this.element.bind('mousewheel', function(event, delta) {
|
120
|
+
if($this.element.is(':focus')) {
|
121
|
+
if(delta > 0)
|
122
|
+
$this._spin($this.options.step);
|
123
|
+
else
|
124
|
+
$this._spin(-1 * $this.options.step);
|
125
|
+
|
126
|
+
return false;
|
127
|
+
}
|
128
|
+
});
|
129
|
+
},
|
130
|
+
|
131
|
+
_repeat: function(interval, dir) {
|
132
|
+
var $this = this,
|
133
|
+
i = interval || 500;
|
134
|
+
|
135
|
+
clearTimeout(this.timer);
|
136
|
+
this.timer = setTimeout(function() {
|
137
|
+
$this._repeat(40, dir);
|
138
|
+
}, i);
|
139
|
+
|
140
|
+
this._spin(this.options.step * dir);
|
141
|
+
},
|
142
|
+
|
143
|
+
_toFixed: function (value, precision) {
|
144
|
+
var power = Math.pow(10, precision||0);
|
145
|
+
return String(Math.round(value * power) / power);
|
146
|
+
},
|
147
|
+
|
148
|
+
_spin: function(step) {
|
149
|
+
var newValue;
|
150
|
+
currentValue = this.value ? this.value : 0;
|
151
|
+
|
152
|
+
if(this.options.precision)
|
153
|
+
newValue = parseFloat(this._toFixed(currentValue + step, this.options.precision));
|
154
|
+
else
|
155
|
+
newValue = parseInt(currentValue + step);
|
156
|
+
|
157
|
+
if(this.options.min != undefined && newValue < this.options.min) {
|
158
|
+
newValue = this.options.min;
|
159
|
+
}
|
160
|
+
|
161
|
+
if(this.options.max != undefined && newValue > this.options.max) {
|
162
|
+
newValue = this.options.max;
|
163
|
+
}
|
164
|
+
|
165
|
+
this.element.val(newValue).attr('aria-valuenow', newValue);
|
166
|
+
this.value = newValue;
|
167
|
+
|
168
|
+
this.element.trigger('change');
|
169
|
+
},
|
170
|
+
|
171
|
+
_updateValue: function() {
|
172
|
+
var value = this.element.val();
|
173
|
+
|
174
|
+
if(value == '') {
|
175
|
+
if(this.options.min != undefined)
|
176
|
+
this.value = this.options.min;
|
177
|
+
else
|
178
|
+
this.value = 0;
|
179
|
+
}
|
180
|
+
else {
|
181
|
+
if(this.options.step)
|
182
|
+
value = parseFloat(value);
|
183
|
+
else
|
184
|
+
value = parseInt(value);
|
185
|
+
|
186
|
+
if(!isNaN(value)) {
|
187
|
+
this.value = value;
|
188
|
+
}
|
189
|
+
}
|
190
|
+
},
|
191
|
+
|
192
|
+
_initValue: function() {
|
193
|
+
var value = this.element.val();
|
194
|
+
|
195
|
+
if(value == '') {
|
196
|
+
if(this.options.min != undefined)
|
197
|
+
this.value = this.options.min;
|
198
|
+
else
|
199
|
+
this.value = 0;
|
200
|
+
}
|
201
|
+
else {
|
202
|
+
if(this.options.prefix)
|
203
|
+
value = value.split(this.options.prefix)[1];
|
204
|
+
|
205
|
+
if(this.options.suffix)
|
206
|
+
value = value.split(this.options.suffix)[0];
|
207
|
+
|
208
|
+
if(this.options.step)
|
209
|
+
this.value = parseFloat(value);
|
210
|
+
else
|
211
|
+
this.value = parseInt(value);
|
212
|
+
}
|
213
|
+
},
|
214
|
+
|
215
|
+
_format: function() {
|
216
|
+
var value = this.value;
|
217
|
+
|
218
|
+
if(this.options.prefix)
|
219
|
+
value = this.options.prefix + value;
|
220
|
+
|
221
|
+
if(this.options.suffix)
|
222
|
+
value = value + this.options.suffix;
|
223
|
+
|
224
|
+
this.element.val(value);
|
225
|
+
}
|
226
|
+
});
|
227
|
+
});
|
@@ -0,0 +1,153 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI tabview widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puitabview", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
activeIndex:0
|
10
|
+
,orientation:'top'
|
11
|
+
},
|
12
|
+
|
13
|
+
_create: function() {
|
14
|
+
var element = this.element;
|
15
|
+
|
16
|
+
element.addClass('pui-tabview ui-widget ui-widget-content ui-corner-all ui-hidden-container')
|
17
|
+
.children('ul').addClass('pui-tabview-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all')
|
18
|
+
.children('li').addClass('ui-state-default ui-corner-top');
|
19
|
+
|
20
|
+
element.addClass('pui-tabview-' + this.options.orientation);
|
21
|
+
|
22
|
+
element.children('div').addClass('pui-tabview-panels').children().addClass('pui-tabview-panel ui-widget-content ui-corner-bottom');
|
23
|
+
|
24
|
+
element.find('> ul.pui-tabview-nav > li').eq(this.options.activeIndex).addClass('pui-tabview-selected ui-state-active');
|
25
|
+
element.find('> div.pui-tabview-panels > div.pui-tabview-panel:not(:eq(' + this.options.activeIndex + '))').addClass('ui-helper-hidden');
|
26
|
+
|
27
|
+
this.navContainer = element.children('.pui-tabview-nav');
|
28
|
+
this.panelContainer = element.children('.pui-tabview-panels');
|
29
|
+
|
30
|
+
this._bindEvents();
|
31
|
+
},
|
32
|
+
|
33
|
+
_bindEvents: function() {
|
34
|
+
var $this = this;
|
35
|
+
|
36
|
+
//Tab header events
|
37
|
+
this.navContainer.children('li')
|
38
|
+
.on('mouseover.tabview', function(e) {
|
39
|
+
var element = $(this);
|
40
|
+
if(!element.hasClass('ui-state-disabled')&&!element.hasClass('ui-state-active')) {
|
41
|
+
element.addClass('ui-state-hover');
|
42
|
+
}
|
43
|
+
})
|
44
|
+
.on('mouseout.tabview', function(e) {
|
45
|
+
var element = $(this);
|
46
|
+
if(!element.hasClass('ui-state-disabled')&&!element.hasClass('ui-state-active')) {
|
47
|
+
element.removeClass('ui-state-hover');
|
48
|
+
}
|
49
|
+
})
|
50
|
+
.on('click.tabview', function(e) {
|
51
|
+
var element = $(this);
|
52
|
+
|
53
|
+
if($(e.target).is(':not(.ui-icon-close)')) {
|
54
|
+
var index = element.index();
|
55
|
+
|
56
|
+
if(!element.hasClass('ui-state-disabled') && index != $this.options.selected) {
|
57
|
+
$this.select(index);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
e.preventDefault();
|
62
|
+
});
|
63
|
+
|
64
|
+
//Closable tabs
|
65
|
+
this.navContainer.find('li .ui-icon-close')
|
66
|
+
.on('click.tabview', function(e) {
|
67
|
+
var index = $(this).parent().index();
|
68
|
+
|
69
|
+
$this.remove(index);
|
70
|
+
|
71
|
+
e.preventDefault();
|
72
|
+
});
|
73
|
+
},
|
74
|
+
|
75
|
+
select: function(index) {
|
76
|
+
this.options.selected = index;
|
77
|
+
|
78
|
+
var newPanel = this.panelContainer.children().eq(index),
|
79
|
+
headers = this.navContainer.children(),
|
80
|
+
oldHeader = headers.filter('.ui-state-active'),
|
81
|
+
newHeader = headers.eq(newPanel.index()),
|
82
|
+
oldPanel = this.panelContainer.children('.pui-tabview-panel:visible'),
|
83
|
+
$this = this;
|
84
|
+
|
85
|
+
//aria
|
86
|
+
oldPanel.attr('aria-hidden', true);
|
87
|
+
oldHeader.attr('aria-expanded', false);
|
88
|
+
newPanel.attr('aria-hidden', false);
|
89
|
+
newHeader.attr('aria-expanded', true);
|
90
|
+
|
91
|
+
if(this.options.effect) {
|
92
|
+
oldPanel.hide(this.options.effect.name, null, this.options.effect.duration, function() {
|
93
|
+
oldHeader.removeClass('pui-tabview-selected ui-state-active');
|
94
|
+
|
95
|
+
newHeader.removeClass('ui-state-hover').addClass('pui-tabview-selected ui-state-active');
|
96
|
+
newPanel.show($this.options.name, null, $this.options.effect.duration, function() {
|
97
|
+
$this._trigger('change', null, index);
|
98
|
+
});
|
99
|
+
});
|
100
|
+
}
|
101
|
+
else {
|
102
|
+
oldHeader.removeClass('pui-tabview-selected ui-state-active');
|
103
|
+
oldPanel.hide();
|
104
|
+
|
105
|
+
newHeader.removeClass('ui-state-hover').addClass('pui-tabview-selected ui-state-active');
|
106
|
+
newPanel.show();
|
107
|
+
|
108
|
+
this._trigger('change', null, index);
|
109
|
+
}
|
110
|
+
},
|
111
|
+
|
112
|
+
remove: function(index) {
|
113
|
+
var header = this.navContainer.children().eq(index),
|
114
|
+
panel = this.panelContainer.children().eq(index);
|
115
|
+
|
116
|
+
this._trigger('close', null, index);
|
117
|
+
|
118
|
+
header.remove();
|
119
|
+
panel.remove();
|
120
|
+
|
121
|
+
//active next tab if active tab is removed
|
122
|
+
if(index == this.options.selected) {
|
123
|
+
var newIndex = this.options.selected == this.getLength() ? this.options.selected - 1: this.options.selected;
|
124
|
+
this.select(newIndex);
|
125
|
+
}
|
126
|
+
},
|
127
|
+
|
128
|
+
getLength: function() {
|
129
|
+
return this.navContainer.children().length;
|
130
|
+
},
|
131
|
+
|
132
|
+
getActiveIndex: function() {
|
133
|
+
return this.options.selected;
|
134
|
+
},
|
135
|
+
|
136
|
+
_markAsLoaded: function(panel) {
|
137
|
+
panel.data('loaded', true);
|
138
|
+
},
|
139
|
+
|
140
|
+
_isLoaded: function(panel) {
|
141
|
+
return panel.data('loaded') == true;
|
142
|
+
},
|
143
|
+
|
144
|
+
disable: function(index) {
|
145
|
+
this.navContainer.children().eq(index).addClass('ui-state-disabled');
|
146
|
+
},
|
147
|
+
|
148
|
+
enable: function(index) {
|
149
|
+
this.navContainer.children().eq(index).removeClass('ui-state-disabled');
|
150
|
+
}
|
151
|
+
|
152
|
+
});
|
153
|
+
});
|