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,360 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI inputtextarea widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puiinputtextarea", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
autoResize: false
|
10
|
+
,autoComplete: false
|
11
|
+
,maxlength: null
|
12
|
+
,counter: null
|
13
|
+
,counterTemplate: '{0}'
|
14
|
+
,minQueryLength: 3
|
15
|
+
,queryDelay: 700
|
16
|
+
},
|
17
|
+
|
18
|
+
_create: function() {
|
19
|
+
var $this = this;
|
20
|
+
|
21
|
+
this.element.puiinputtext();
|
22
|
+
|
23
|
+
if(this.options.autoResize) {
|
24
|
+
this.options.rowsDefault = this.element.attr('rows');
|
25
|
+
this.options.colsDefault = this.element.attr('cols');
|
26
|
+
|
27
|
+
this.element.addClass('pui-inputtextarea-resizable');
|
28
|
+
|
29
|
+
this.element.keyup(function() {
|
30
|
+
$this._resize();
|
31
|
+
}).focus(function() {
|
32
|
+
$this._resize();
|
33
|
+
}).blur(function() {
|
34
|
+
$this._resize();
|
35
|
+
});
|
36
|
+
}
|
37
|
+
|
38
|
+
if(this.options.maxlength) {
|
39
|
+
this.element.keyup(function(e) {
|
40
|
+
var value = $this.element.val(),
|
41
|
+
length = value.length;
|
42
|
+
|
43
|
+
if(length > $this.options.maxlength) {
|
44
|
+
$this.element.val(value.substr(0, $this.options.maxlength));
|
45
|
+
}
|
46
|
+
|
47
|
+
if($this.options.counter) {
|
48
|
+
$this._updateCounter();
|
49
|
+
}
|
50
|
+
});
|
51
|
+
}
|
52
|
+
|
53
|
+
if(this.options.counter) {
|
54
|
+
this._updateCounter();
|
55
|
+
}
|
56
|
+
|
57
|
+
if(this.options.autoComplete) {
|
58
|
+
this._initAutoComplete();
|
59
|
+
}
|
60
|
+
},
|
61
|
+
|
62
|
+
_updateCounter: function() {
|
63
|
+
var value = this.element.val(),
|
64
|
+
length = value.length;
|
65
|
+
|
66
|
+
if(this.options.counter) {
|
67
|
+
var remaining = this.options.maxlength - length,
|
68
|
+
remainingText = this.options.counterTemplate.replace('{0}', remaining);
|
69
|
+
|
70
|
+
this.options.counter.text(remainingText);
|
71
|
+
}
|
72
|
+
},
|
73
|
+
|
74
|
+
_resize: function() {
|
75
|
+
var linesCount = 0,
|
76
|
+
lines = this.element.val().split('\n');
|
77
|
+
|
78
|
+
for(var i = lines.length-1; i >= 0 ; --i) {
|
79
|
+
linesCount += Math.floor((lines[i].length / this.options.colsDefault) + 1);
|
80
|
+
}
|
81
|
+
|
82
|
+
var newRows = (linesCount >= this.options.rowsDefault) ? (linesCount + 1) : this.options.rowsDefault;
|
83
|
+
|
84
|
+
this.element.attr('rows', newRows);
|
85
|
+
},
|
86
|
+
|
87
|
+
|
88
|
+
_initAutoComplete: function() {
|
89
|
+
var panelMarkup = '<div id="' + this.id + '_panel" class="pui-autocomplete-panel ui-widget-content ui-corner-all ui-helper-hidden ui-shadow"></div>',
|
90
|
+
$this = this;
|
91
|
+
|
92
|
+
this.panel = $(panelMarkup).appendTo(document.body);
|
93
|
+
|
94
|
+
this.element.keyup(function(e) {
|
95
|
+
var keyCode = $.ui.keyCode;
|
96
|
+
|
97
|
+
switch(e.which) {
|
98
|
+
|
99
|
+
case keyCode.UP:
|
100
|
+
case keyCode.LEFT:
|
101
|
+
case keyCode.DOWN:
|
102
|
+
case keyCode.RIGHT:
|
103
|
+
case keyCode.ENTER:
|
104
|
+
case keyCode.NUMPAD_ENTER:
|
105
|
+
case keyCode.TAB:
|
106
|
+
case keyCode.SPACE:
|
107
|
+
case keyCode.CONTROL:
|
108
|
+
case keyCode.ALT:
|
109
|
+
case keyCode.ESCAPE:
|
110
|
+
case 224: //mac command
|
111
|
+
//do not search
|
112
|
+
break;
|
113
|
+
|
114
|
+
default:
|
115
|
+
var query = $this._extractQuery();
|
116
|
+
if(query && query.length >= $this.options.minQueryLength) {
|
117
|
+
|
118
|
+
//Cancel the search request if user types within the timeout
|
119
|
+
if($this.timeout) {
|
120
|
+
$this._clearTimeout($this.timeout);
|
121
|
+
}
|
122
|
+
|
123
|
+
$this.timeout = setTimeout(function() {
|
124
|
+
$this.search(query);
|
125
|
+
}, $this.options.queryDelay);
|
126
|
+
|
127
|
+
}
|
128
|
+
break;
|
129
|
+
}
|
130
|
+
|
131
|
+
}).keydown(function(e) {
|
132
|
+
var overlayVisible = $this.panel.is(':visible'),
|
133
|
+
keyCode = $.ui.keyCode;
|
134
|
+
|
135
|
+
switch(e.which) {
|
136
|
+
case keyCode.UP:
|
137
|
+
case keyCode.LEFT:
|
138
|
+
if(overlayVisible) {
|
139
|
+
var highlightedItem = $this.items.filter('.ui-state-highlight'),
|
140
|
+
prev = highlightedItem.length == 0 ? $this.items.eq(0) : highlightedItem.prev();
|
141
|
+
|
142
|
+
if(prev.length == 1) {
|
143
|
+
highlightedItem.removeClass('ui-state-highlight');
|
144
|
+
prev.addClass('ui-state-highlight');
|
145
|
+
|
146
|
+
if($this.options.scrollHeight) {
|
147
|
+
PUI.scrollInView($this.panel, prev);
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
e.preventDefault();
|
152
|
+
}
|
153
|
+
else {
|
154
|
+
$this._clearTimeout();
|
155
|
+
}
|
156
|
+
break;
|
157
|
+
|
158
|
+
case keyCode.DOWN:
|
159
|
+
case keyCode.RIGHT:
|
160
|
+
if(overlayVisible) {
|
161
|
+
var highlightedItem = $this.items.filter('.ui-state-highlight'),
|
162
|
+
next = highlightedItem.length == 0 ? _self.items.eq(0) : highlightedItem.next();
|
163
|
+
|
164
|
+
if(next.length == 1) {
|
165
|
+
highlightedItem.removeClass('ui-state-highlight');
|
166
|
+
next.addClass('ui-state-highlight');
|
167
|
+
|
168
|
+
if($this.options.scrollHeight) {
|
169
|
+
PUI.scrollInView($this.panel, next);
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
e.preventDefault();
|
174
|
+
}
|
175
|
+
else {
|
176
|
+
$this._clearTimeout();
|
177
|
+
}
|
178
|
+
break;
|
179
|
+
|
180
|
+
case keyCode.ENTER:
|
181
|
+
case keyCode.NUMPAD_ENTER:
|
182
|
+
if(overlayVisible) {
|
183
|
+
$this.items.filter('.ui-state-highlight').trigger('click');
|
184
|
+
|
185
|
+
e.preventDefault();
|
186
|
+
}
|
187
|
+
else {
|
188
|
+
$this._clearTimeout();
|
189
|
+
}
|
190
|
+
break;
|
191
|
+
|
192
|
+
case keyCode.SPACE:
|
193
|
+
case keyCode.CONTROL:
|
194
|
+
case keyCode.ALT:
|
195
|
+
case keyCode.BACKSPACE:
|
196
|
+
case keyCode.ESCAPE:
|
197
|
+
case 224: //mac command
|
198
|
+
$this._clearTimeout();
|
199
|
+
|
200
|
+
if(overlayVisible) {
|
201
|
+
$this._hide();
|
202
|
+
}
|
203
|
+
break;
|
204
|
+
|
205
|
+
case keyCode.TAB:
|
206
|
+
$this._clearTimeout();
|
207
|
+
|
208
|
+
if(overlayVisible) {
|
209
|
+
$this.items.filter('.ui-state-highlight').trigger('click');
|
210
|
+
$this._hide();
|
211
|
+
}
|
212
|
+
break;
|
213
|
+
}
|
214
|
+
});
|
215
|
+
|
216
|
+
//hide panel when outside is clicked
|
217
|
+
$(document.body).bind('mousedown.puiinputtextarea', function (e) {
|
218
|
+
if($this.panel.is(":hidden")) {
|
219
|
+
return;
|
220
|
+
}
|
221
|
+
var offset = $this.panel.offset();
|
222
|
+
if(e.target === $this.element.get(0)) {
|
223
|
+
return;
|
224
|
+
}
|
225
|
+
|
226
|
+
if (e.pageX < offset.left ||
|
227
|
+
e.pageX > offset.left + $this.panel.width() ||
|
228
|
+
e.pageY < offset.top ||
|
229
|
+
e.pageY > offset.top + $this.panel.height()) {
|
230
|
+
$this._hide();
|
231
|
+
}
|
232
|
+
});
|
233
|
+
|
234
|
+
//Hide overlay on resize
|
235
|
+
var resizeNS = 'resize.' + this.id;
|
236
|
+
$(window).unbind(resizeNS).bind(resizeNS, function() {
|
237
|
+
if($this.panel.is(':visible')) {
|
238
|
+
$this._hide();
|
239
|
+
}
|
240
|
+
});
|
241
|
+
},
|
242
|
+
|
243
|
+
_bindDynamicEvents: function() {
|
244
|
+
var $this = this;
|
245
|
+
|
246
|
+
//visuals and click handler for items
|
247
|
+
this.items.bind('mouseover', function() {
|
248
|
+
var item = $(this);
|
249
|
+
|
250
|
+
if(!item.hasClass('ui-state-highlight')) {
|
251
|
+
$this.items.filter('.ui-state-highlight').removeClass('ui-state-highlight');
|
252
|
+
item.addClass('ui-state-highlight');
|
253
|
+
}
|
254
|
+
})
|
255
|
+
.bind('click', function(event) {
|
256
|
+
var item = $(this),
|
257
|
+
itemValue = item.attr('data-item-value'),
|
258
|
+
insertValue = itemValue.substring($this.query.length);
|
259
|
+
|
260
|
+
$this.element.focus();
|
261
|
+
|
262
|
+
$this.element.insertText(insertValue, $this.element.getSelection().start, true);
|
263
|
+
|
264
|
+
$this._hide();
|
265
|
+
|
266
|
+
$this._trigger("itemselect", event, item);
|
267
|
+
});
|
268
|
+
},
|
269
|
+
|
270
|
+
_clearTimeout: function() {
|
271
|
+
if(this.timeout) {
|
272
|
+
clearTimeout(this.timeout);
|
273
|
+
}
|
274
|
+
|
275
|
+
this.timeout = null;
|
276
|
+
},
|
277
|
+
|
278
|
+
_extractQuery: function() {
|
279
|
+
var end = this.element.getSelection().end,
|
280
|
+
result = /\S+$/.exec(this.element.get(0).value.slice(0, end)),
|
281
|
+
lastWord = result ? result[0] : null;
|
282
|
+
|
283
|
+
return lastWord;
|
284
|
+
},
|
285
|
+
|
286
|
+
search: function(q) {
|
287
|
+
this.query = q;
|
288
|
+
|
289
|
+
var request = {
|
290
|
+
query: q
|
291
|
+
};
|
292
|
+
|
293
|
+
if(this.options.completeSource) {
|
294
|
+
this.options.completeSource.call(this, request, this._handleResponse);
|
295
|
+
}
|
296
|
+
},
|
297
|
+
|
298
|
+
_handleResponse: function(data) {
|
299
|
+
this.panel.html('');
|
300
|
+
|
301
|
+
var listContainer = $('<ul class="pui-autocomplete-items pui-autocomplete-list ui-widget-content ui-widget ui-corner-all ui-helper-reset"></ul>');
|
302
|
+
|
303
|
+
for(var i = 0; i < data.length; i++) {
|
304
|
+
var item = $('<li class="pui-autocomplete-item pui-autocomplete-list-item ui-corner-all"></li>');
|
305
|
+
item.attr('data-item-value', data[i].value);
|
306
|
+
item.text(data[i].label);
|
307
|
+
|
308
|
+
listContainer.append(item);
|
309
|
+
}
|
310
|
+
|
311
|
+
this.panel.append(listContainer).show();
|
312
|
+
this.items = this.panel.find('.pui-autocomplete-item');
|
313
|
+
|
314
|
+
this._bindDynamicEvents();
|
315
|
+
|
316
|
+
if(this.items.length > 0) {
|
317
|
+
//highlight first item
|
318
|
+
this.items.eq(0).addClass('ui-state-highlight');
|
319
|
+
|
320
|
+
//adjust height
|
321
|
+
if(this.options.scrollHeight && this.panel.height() > this.options.scrollHeight) {
|
322
|
+
this.panel.height(this.options.scrollHeight);
|
323
|
+
}
|
324
|
+
|
325
|
+
if(this.panel.is(':hidden')) {
|
326
|
+
this._show();
|
327
|
+
}
|
328
|
+
else {
|
329
|
+
this._alignPanel(); //with new items
|
330
|
+
}
|
331
|
+
|
332
|
+
}
|
333
|
+
else {
|
334
|
+
this.panel.hide();
|
335
|
+
}
|
336
|
+
},
|
337
|
+
|
338
|
+
_alignPanel: function() {
|
339
|
+
var pos = this.element.getCaretPosition(),
|
340
|
+
offset = this.element.offset();
|
341
|
+
|
342
|
+
this.panel.css({
|
343
|
+
'left': offset.left + pos.left,
|
344
|
+
'top': offset.top + pos.top,
|
345
|
+
'width': this.element.innerWidth()
|
346
|
+
});
|
347
|
+
},
|
348
|
+
|
349
|
+
_show: function() {
|
350
|
+
this._alignPanel();
|
351
|
+
|
352
|
+
this.panel.show();
|
353
|
+
},
|
354
|
+
|
355
|
+
_hide: function() {
|
356
|
+
this.panel.hide();
|
357
|
+
}
|
358
|
+
});
|
359
|
+
|
360
|
+
});
|
@@ -0,0 +1,343 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI Lightbox Widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puilightbox", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
iframeWidth: 640,
|
10
|
+
iframeHeight: 480,
|
11
|
+
iframe: false
|
12
|
+
},
|
13
|
+
|
14
|
+
_create: function() {
|
15
|
+
this.options.mode = this.options.iframe ? 'iframe' : (this.element.children('div').length == 1) ? 'inline' : 'image';
|
16
|
+
|
17
|
+
var dom = '<div class="pui-lightbox ui-widget ui-helper-hidden ui-corner-all pui-shadow">';
|
18
|
+
dom += '<div class="pui-lightbox-content-wrapper">';
|
19
|
+
dom += '<a class="ui-state-default pui-lightbox-nav-left ui-corner-right ui-helper-hidden"><span class="ui-icon ui-icon-carat-1-w">go</span></a>';
|
20
|
+
dom += '<div class="pui-lightbox-content ui-corner-all"></div>';
|
21
|
+
dom += '<a class="ui-state-default pui-lightbox-nav-right ui-corner-left ui-helper-hidden"><span class="ui-icon ui-icon-carat-1-e">go</span></a>';
|
22
|
+
dom += '</div>';
|
23
|
+
dom += '<div class="pui-lightbox-caption ui-widget-header"><span class="pui-lightbox-caption-text"></span>';
|
24
|
+
dom += '<a class="pui-lightbox-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick"></span></a><div style="clear:both" /></div>';
|
25
|
+
dom += '</div>';
|
26
|
+
|
27
|
+
this.panel = $(dom).appendTo(document.body);
|
28
|
+
this.contentWrapper = this.panel.children('.pui-lightbox-content-wrapper');
|
29
|
+
this.content = this.contentWrapper.children('.pui-lightbox-content');
|
30
|
+
this.caption = this.panel.children('.pui-lightbox-caption');
|
31
|
+
this.captionText = this.caption.children('.pui-lightbox-caption-text');
|
32
|
+
this.closeIcon = this.caption.children('.pui-lightbox-close');
|
33
|
+
|
34
|
+
if(this.options.mode === 'image') {
|
35
|
+
this._setupImaging();
|
36
|
+
}
|
37
|
+
else if(this.options.mode === 'inline') {
|
38
|
+
this._setupInline();
|
39
|
+
}
|
40
|
+
else if(this.options.mode === 'iframe') {
|
41
|
+
this._setupIframe();
|
42
|
+
}
|
43
|
+
|
44
|
+
this._bindCommonEvents();
|
45
|
+
|
46
|
+
this.links.data('puilightbox-trigger', true).find('*').data('puilightbox-trigger', true);
|
47
|
+
this.closeIcon.data('puilightbox-trigger', true).find('*').data('puilightbox-trigger', true);
|
48
|
+
},
|
49
|
+
|
50
|
+
_bindCommonEvents: function() {
|
51
|
+
var $this = this;
|
52
|
+
|
53
|
+
this.closeIcon.hover(function() {
|
54
|
+
$(this).toggleClass('ui-state-hover');
|
55
|
+
}).click(function(e) {
|
56
|
+
$this.hide();
|
57
|
+
e.preventDefault();
|
58
|
+
});
|
59
|
+
|
60
|
+
//hide when outside is clicked
|
61
|
+
$(document.body).bind('click.pui-lightbox', function (e) {
|
62
|
+
if($this.isHidden()) {
|
63
|
+
return;
|
64
|
+
}
|
65
|
+
|
66
|
+
//do nothing if target is the link
|
67
|
+
var target = $(e.target);
|
68
|
+
if(target.data('puilightbox-trigger')) {
|
69
|
+
return;
|
70
|
+
}
|
71
|
+
|
72
|
+
//hide if mouse is outside of lightbox
|
73
|
+
var offset = $this.panel.offset();
|
74
|
+
if(e.pageX < offset.left ||
|
75
|
+
e.pageX > offset.left + $this.panel.width() ||
|
76
|
+
e.pageY < offset.top ||
|
77
|
+
e.pageY > offset.top + $this.panel.height()) {
|
78
|
+
|
79
|
+
$this.hide();
|
80
|
+
}
|
81
|
+
});
|
82
|
+
|
83
|
+
//sync window resize
|
84
|
+
$(window).resize(function() {
|
85
|
+
if(!$this.isHidden()) {
|
86
|
+
$(document.body).children('.ui-widget-overlay').css({
|
87
|
+
'width': $(document).width()
|
88
|
+
,'height': $(document).height()
|
89
|
+
});
|
90
|
+
}
|
91
|
+
});
|
92
|
+
},
|
93
|
+
|
94
|
+
_setupImaging: function() {
|
95
|
+
var $this = this;
|
96
|
+
|
97
|
+
this.links = this.element.children('a');
|
98
|
+
this.content.append('<img class="ui-helper-hidden"></img>');
|
99
|
+
this.imageDisplay = this.content.children('img');
|
100
|
+
this.navigators = this.contentWrapper.children('a');
|
101
|
+
|
102
|
+
this.imageDisplay.load(function() {
|
103
|
+
var image = $(this);
|
104
|
+
|
105
|
+
$this._scaleImage(image);
|
106
|
+
|
107
|
+
//coordinates to center overlay
|
108
|
+
var leftOffset = ($this.panel.width() - image.width()) / 2,
|
109
|
+
topOffset = ($this.panel.height() - image.height()) / 2;
|
110
|
+
|
111
|
+
//resize content for new image
|
112
|
+
$this.content.removeClass('pui-lightbox-loading').animate({
|
113
|
+
width: image.width()
|
114
|
+
,height: image.height()
|
115
|
+
},
|
116
|
+
500,
|
117
|
+
function() {
|
118
|
+
//show image
|
119
|
+
image.fadeIn();
|
120
|
+
$this._showNavigators();
|
121
|
+
$this.caption.slideDown();
|
122
|
+
});
|
123
|
+
|
124
|
+
$this.panel.animate({
|
125
|
+
left: '+=' + leftOffset
|
126
|
+
,top: '+=' + topOffset
|
127
|
+
}, 500);
|
128
|
+
});
|
129
|
+
|
130
|
+
this.navigators.hover(function() {
|
131
|
+
$(this).toggleClass('ui-state-hover');
|
132
|
+
})
|
133
|
+
.click(function(e) {
|
134
|
+
var nav = $(this);
|
135
|
+
|
136
|
+
$this._hideNavigators();
|
137
|
+
|
138
|
+
if(nav.hasClass('pui-lightbox-nav-left')) {
|
139
|
+
var index = $this.current == 0 ? $this.links.length - 1 : $this.current - 1;
|
140
|
+
|
141
|
+
$this.links.eq(index).trigger('click');
|
142
|
+
}
|
143
|
+
else {
|
144
|
+
var index = $this.current == $this.links.length - 1 ? 0 : $this.current + 1;
|
145
|
+
|
146
|
+
$this.links.eq(index).trigger('click');
|
147
|
+
}
|
148
|
+
|
149
|
+
e.preventDefault();
|
150
|
+
});
|
151
|
+
|
152
|
+
this.links.click(function(e) {
|
153
|
+
var link = $(this);
|
154
|
+
|
155
|
+
if($this.isHidden()) {
|
156
|
+
$this.content.addClass('pui-lightbox-loading').width(32).height(32);
|
157
|
+
$this.show();
|
158
|
+
}
|
159
|
+
else {
|
160
|
+
$this.imageDisplay.fadeOut(function() {
|
161
|
+
//clear for onload scaling
|
162
|
+
$(this).css({
|
163
|
+
'width': 'auto'
|
164
|
+
,'height': 'auto'
|
165
|
+
});
|
166
|
+
|
167
|
+
$this.content.addClass('pui-lightbox-loading');
|
168
|
+
});
|
169
|
+
|
170
|
+
$this.caption.slideUp();
|
171
|
+
}
|
172
|
+
|
173
|
+
setTimeout(function() {
|
174
|
+
$this.imageDisplay.attr('src', link.attr('href'));
|
175
|
+
$this.current = link.index();
|
176
|
+
|
177
|
+
var title = link.attr('title');
|
178
|
+
if(title) {
|
179
|
+
$this.captionText.html(title);
|
180
|
+
}
|
181
|
+
}, 1000);
|
182
|
+
|
183
|
+
|
184
|
+
e.preventDefault();
|
185
|
+
});
|
186
|
+
},
|
187
|
+
|
188
|
+
_scaleImage: function(image) {
|
189
|
+
var win = $(window),
|
190
|
+
winWidth = win.width(),
|
191
|
+
winHeight = win.height(),
|
192
|
+
imageWidth = image.width(),
|
193
|
+
imageHeight = image.height(),
|
194
|
+
ratio = imageHeight / imageWidth;
|
195
|
+
|
196
|
+
if(imageWidth >= winWidth && ratio <= 1){
|
197
|
+
imageWidth = winWidth * 0.75;
|
198
|
+
imageHeight = imageWidth * ratio;
|
199
|
+
}
|
200
|
+
else if(imageHeight >= winHeight){
|
201
|
+
imageHeight = winHeight * 0.75;
|
202
|
+
imageWidth = imageHeight / ratio;
|
203
|
+
}
|
204
|
+
|
205
|
+
image.css({
|
206
|
+
'width':imageWidth + 'px'
|
207
|
+
,'height':imageHeight + 'px'
|
208
|
+
})
|
209
|
+
},
|
210
|
+
|
211
|
+
_setupInline: function() {
|
212
|
+
this.links = this.element.children('a');
|
213
|
+
this.inline = this.element.children('div').addClass('pui-lightbox-inline');
|
214
|
+
this.inline.appendTo(this.content).show();
|
215
|
+
var $this = this;
|
216
|
+
|
217
|
+
this.links.click(function(e) {
|
218
|
+
$this.show();
|
219
|
+
|
220
|
+
var title = $(this).attr('title');
|
221
|
+
if(title) {
|
222
|
+
$this.captionText.html(title);
|
223
|
+
$this.caption.slideDown();
|
224
|
+
}
|
225
|
+
|
226
|
+
e.preventDefault();
|
227
|
+
});
|
228
|
+
},
|
229
|
+
|
230
|
+
_setupIframe: function() {
|
231
|
+
var $this = this;
|
232
|
+
this.links = this.element;
|
233
|
+
this.iframe = $('<iframe frameborder="0" style="width:' + this.options.iframeWidth + 'px;height:'
|
234
|
+
+ this.options.iframeHeight + 'px;border:0 none; display: block;"></iframe>').appendTo(this.content);
|
235
|
+
|
236
|
+
if(this.options.iframeTitle) {
|
237
|
+
this.iframe.attr('title', this.options.iframeTitle);
|
238
|
+
}
|
239
|
+
|
240
|
+
this.element.click(function(e) {
|
241
|
+
if(!$this.iframeLoaded) {
|
242
|
+
$this.content.addClass('pui-lightbox-loading').css({
|
243
|
+
width: $this.options.iframeWidth
|
244
|
+
,height: $this.options.iframeHeight
|
245
|
+
});
|
246
|
+
|
247
|
+
$this.show();
|
248
|
+
|
249
|
+
$this.iframe.on('load', function() {
|
250
|
+
$this.iframeLoaded = true;
|
251
|
+
$this.content.removeClass('pui-lightbox-loading');
|
252
|
+
})
|
253
|
+
.attr('src', $this.element.attr('href'));
|
254
|
+
}
|
255
|
+
else {
|
256
|
+
$this.show();
|
257
|
+
}
|
258
|
+
|
259
|
+
var title = $this.element.attr('title');
|
260
|
+
if(title) {
|
261
|
+
$this.caption.html(title);
|
262
|
+
$this.caption.slideDown();
|
263
|
+
}
|
264
|
+
|
265
|
+
e.preventDefault();
|
266
|
+
});
|
267
|
+
},
|
268
|
+
|
269
|
+
show: function() {
|
270
|
+
this.center();
|
271
|
+
|
272
|
+
this.panel.css('z-index', ++PUI.zindex).show();
|
273
|
+
|
274
|
+
if(!this.modality) {
|
275
|
+
this._enableModality();
|
276
|
+
}
|
277
|
+
|
278
|
+
this._trigger('show');
|
279
|
+
},
|
280
|
+
|
281
|
+
hide: function() {
|
282
|
+
this.panel.fadeOut();
|
283
|
+
this._disableModality();
|
284
|
+
this.caption.hide();
|
285
|
+
|
286
|
+
if(this.options.mode === 'image') {
|
287
|
+
this.imageDisplay.hide().attr('src', '').removeAttr('style');
|
288
|
+
this._hideNavigators();
|
289
|
+
}
|
290
|
+
|
291
|
+
this._trigger('hide');
|
292
|
+
},
|
293
|
+
|
294
|
+
center: function() {
|
295
|
+
var win = $(window),
|
296
|
+
left = (win.width() / 2 ) - (this.panel.width() / 2),
|
297
|
+
top = (win.height() / 2 ) - (this.panel.height() / 2);
|
298
|
+
|
299
|
+
this.panel.css({
|
300
|
+
'left': left,
|
301
|
+
'top': top
|
302
|
+
});
|
303
|
+
},
|
304
|
+
|
305
|
+
_enableModality: function() {
|
306
|
+
this.modality = $('<div class="ui-widget-overlay"></div>')
|
307
|
+
.css({
|
308
|
+
'width': $(document).width()
|
309
|
+
,'height': $(document).height()
|
310
|
+
,'z-index': this.panel.css('z-index') - 1
|
311
|
+
})
|
312
|
+
.appendTo(document.body);
|
313
|
+
},
|
314
|
+
|
315
|
+
_disableModality: function() {
|
316
|
+
this.modality.remove();
|
317
|
+
this.modality = null;
|
318
|
+
},
|
319
|
+
|
320
|
+
_showNavigators: function() {
|
321
|
+
this.navigators.zIndex(this.imageDisplay.zIndex() + 1).show();
|
322
|
+
},
|
323
|
+
|
324
|
+
_hideNavigators: function() {
|
325
|
+
this.navigators.hide();
|
326
|
+
},
|
327
|
+
|
328
|
+
isHidden: function() {
|
329
|
+
return this.panel.is(':hidden');
|
330
|
+
},
|
331
|
+
|
332
|
+
showURL: function(opt) {
|
333
|
+
if(opt.width)
|
334
|
+
this.iframe.attr('width', opt.width);
|
335
|
+
if(opt.height)
|
336
|
+
this.iframe.attr('height', opt.height);
|
337
|
+
|
338
|
+
this.iframe.attr('src', opt.src);
|
339
|
+
|
340
|
+
this.show();
|
341
|
+
}
|
342
|
+
});
|
343
|
+
});
|