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,91 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI Terminal widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puiterminal", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
welcomeMessage: '',
|
10
|
+
prompt:'prime $',
|
11
|
+
handler: null
|
12
|
+
},
|
13
|
+
|
14
|
+
_create: function() {
|
15
|
+
this.element.addClass('pui-terminal ui-widget ui-widget-content ui-corner-all')
|
16
|
+
.append('<div>' + this.options.welcomeMessage + '</div>')
|
17
|
+
.append('<div class="pui-terminal-content"></div>')
|
18
|
+
.append('<div><span class="pui-terminal-prompt">' + this.options.prompt + '</span>' +
|
19
|
+
'<input type="text" class="pui-terminal-input" autocomplete="off"></div>' );
|
20
|
+
|
21
|
+
this.promptContainer = this.element.find('> div:last-child > span.pui-terminal-prompt');
|
22
|
+
this.content = this.element.children('.pui-terminal-content');
|
23
|
+
this.input = this.promptContainer.next();
|
24
|
+
this.commands = [];
|
25
|
+
this.commandIndex = 0;
|
26
|
+
|
27
|
+
this._bindEvents();
|
28
|
+
},
|
29
|
+
|
30
|
+
_bindEvents: function() {
|
31
|
+
var $this = this;
|
32
|
+
|
33
|
+
this.input.on('keydown.terminal', function(e) {
|
34
|
+
var keyCode = $.ui.keyCode;
|
35
|
+
|
36
|
+
switch(e.which) {
|
37
|
+
case keyCode.UP:
|
38
|
+
if($this.commandIndex > 0) {
|
39
|
+
$this.input.val($this.commands[--$this.commandIndex]);
|
40
|
+
}
|
41
|
+
|
42
|
+
e.preventDefault();
|
43
|
+
break;
|
44
|
+
|
45
|
+
case keyCode.DOWN:
|
46
|
+
if($this.commandIndex < ($this.commands.length - 1)) {
|
47
|
+
$this.input.val($this.commands[++$this.commandIndex]);
|
48
|
+
}
|
49
|
+
else {
|
50
|
+
$this.commandIndex = $this.commands.length;
|
51
|
+
$this.input.val('');
|
52
|
+
}
|
53
|
+
|
54
|
+
e.preventDefault();
|
55
|
+
break;
|
56
|
+
|
57
|
+
case keyCode.ENTER:
|
58
|
+
case keyCode.NUMPAD_ENTER:
|
59
|
+
$this._processCommand();
|
60
|
+
|
61
|
+
e.preventDefault();
|
62
|
+
break;
|
63
|
+
}
|
64
|
+
});
|
65
|
+
},
|
66
|
+
|
67
|
+
_processCommand: function() {
|
68
|
+
var command = this.input.val();
|
69
|
+
this.commands.push();
|
70
|
+
this.commandIndex++;
|
71
|
+
|
72
|
+
if(this.options.handler && $.type(this.options.handler) === 'function') {
|
73
|
+
this.options.handler.call(this, command, this._updateContent);
|
74
|
+
}
|
75
|
+
},
|
76
|
+
|
77
|
+
_updateContent: function(content) {
|
78
|
+
var commandResponseContainer = $('<div></div>');
|
79
|
+
commandResponseContainer.append('<span>' + this.options.prompt + '</span><span class="pui-terminal-command">' + this.input.val() + '</span>')
|
80
|
+
.append('<div>' + content + '</div>').appendTo(this.content);
|
81
|
+
|
82
|
+
this.input.val('');
|
83
|
+
this.element.scrollTop(this.content.height());
|
84
|
+
},
|
85
|
+
|
86
|
+
clear: function() {
|
87
|
+
this.content.html('');
|
88
|
+
this.input.val('');
|
89
|
+
}
|
90
|
+
});
|
91
|
+
});
|
@@ -0,0 +1,124 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeFaces Tooltip Widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puitooltip", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
showEvent: 'mouseover',
|
10
|
+
hideEvent: 'mouseout',
|
11
|
+
showEffect: 'fade',
|
12
|
+
hideEffect: null,
|
13
|
+
showEffectSpeed: 'normal',
|
14
|
+
hideEffectSpeed: 'normal',
|
15
|
+
my: 'left top',
|
16
|
+
at: 'right bottom',
|
17
|
+
showDelay: 150
|
18
|
+
},
|
19
|
+
|
20
|
+
_create: function() {
|
21
|
+
this.options.showEvent = this.options.showEvent + '.puitooltip';
|
22
|
+
this.options.hideEvent = this.options.hideEvent + '.puitooltip';
|
23
|
+
|
24
|
+
if(this.element.get(0) === document) {
|
25
|
+
this._bindGlobal();
|
26
|
+
}
|
27
|
+
else {
|
28
|
+
this._bindTarget();
|
29
|
+
}
|
30
|
+
},
|
31
|
+
|
32
|
+
_bindGlobal: function() {
|
33
|
+
this.container = $('<div class="pui-tooltip pui-tooltip-global ui-widget ui-widget-content ui-corner-all pui-shadow" />').appendTo(document.body);
|
34
|
+
this.globalSelector = 'a,:input,:button,img';
|
35
|
+
var $this = this;
|
36
|
+
|
37
|
+
$(document).off(this.options.showEvent + ' ' + this.options.hideEvent, this.globalSelector)
|
38
|
+
.on(this.options.showEvent, this.globalSelector, null, function() {
|
39
|
+
var target = $(this),
|
40
|
+
title = target.attr('title');
|
41
|
+
|
42
|
+
if(title) {
|
43
|
+
$this.container.text(title);
|
44
|
+
$this.globalTitle = title;
|
45
|
+
$this.target = target;
|
46
|
+
target.attr('title', '');
|
47
|
+
$this.show();
|
48
|
+
}
|
49
|
+
})
|
50
|
+
.on(this.options.hideEvent, this.globalSelector, null, function() {
|
51
|
+
var target = $(this);
|
52
|
+
|
53
|
+
if($this.globalTitle) {
|
54
|
+
$this.container.hide();
|
55
|
+
target.attr('title', $this.globalTitle);
|
56
|
+
$this.globalTitle = null;
|
57
|
+
$this.target = null;
|
58
|
+
}
|
59
|
+
});
|
60
|
+
|
61
|
+
var resizeNS = 'resize.puitooltip';
|
62
|
+
$(window).unbind(resizeNS).bind(resizeNS, function() {
|
63
|
+
if($this.container.is(':visible')) {
|
64
|
+
$this._align();
|
65
|
+
}
|
66
|
+
});
|
67
|
+
},
|
68
|
+
|
69
|
+
_bindTarget: function() {
|
70
|
+
this.container = $('<div class="pui-tooltip ui-widget ui-widget-content ui-corner-all pui-shadow" />').appendTo(document.body);
|
71
|
+
|
72
|
+
var $this = this;
|
73
|
+
this.element.off(this.options.showEvent + ' ' + this.options.hideEvent)
|
74
|
+
.on(this.options.showEvent, function() {
|
75
|
+
$this.show();
|
76
|
+
})
|
77
|
+
.on(this.options.hideEvent, function() {
|
78
|
+
$this.hide();
|
79
|
+
});
|
80
|
+
|
81
|
+
this.container.html(this.options.content);
|
82
|
+
|
83
|
+
this.element.removeAttr('title');
|
84
|
+
this.target = this.element;
|
85
|
+
|
86
|
+
var resizeNS = 'resize.' + this.element.attr('id');
|
87
|
+
$(window).unbind(resizeNS).bind(resizeNS, function() {
|
88
|
+
if($this.container.is(':visible')) {
|
89
|
+
$this._align();
|
90
|
+
}
|
91
|
+
});
|
92
|
+
},
|
93
|
+
|
94
|
+
_align: function() {
|
95
|
+
this.container.css({
|
96
|
+
left:'',
|
97
|
+
top:'',
|
98
|
+
'z-index': ++PUI.zindex
|
99
|
+
})
|
100
|
+
.position({
|
101
|
+
my: this.options.my,
|
102
|
+
at: this.options.at,
|
103
|
+
of: this.target
|
104
|
+
});
|
105
|
+
},
|
106
|
+
|
107
|
+
show: function() {
|
108
|
+
var $this = this;
|
109
|
+
|
110
|
+
this.timeout = setTimeout(function() {
|
111
|
+
$this._align();
|
112
|
+
$this.container.show($this.options.showEffect, {}, $this.options.showEffectSpeed);
|
113
|
+
}, this.options.showDelay);
|
114
|
+
},
|
115
|
+
|
116
|
+
hide: function() {
|
117
|
+
clearTimeout(this.timeout);
|
118
|
+
|
119
|
+
this.container.hide(this.options.hideEffect, {}, this.options.hideEffectSpeed, function() {
|
120
|
+
$(this).css('z-index', '');
|
121
|
+
});
|
122
|
+
}
|
123
|
+
});
|
124
|
+
});
|
@@ -0,0 +1,138 @@
|
|
1
|
+
/**
|
2
|
+
* jQuery plugin for getting position of cursor in textarea
|
3
|
+
*
|
4
|
+
* @author Bevis Zhao (i@bevis.me, http://bevis.me)
|
5
|
+
*/
|
6
|
+
$(function() {
|
7
|
+
|
8
|
+
var calculator = {
|
9
|
+
// key styles
|
10
|
+
primaryStyles: ['fontFamily', 'fontSize', 'fontWeight', 'fontVariant', 'fontStyle',
|
11
|
+
'paddingLeft', 'paddingTop', 'paddingBottom', 'paddingRight',
|
12
|
+
'marginLeft', 'marginTop', 'marginBottom', 'marginRight',
|
13
|
+
'borderLeftColor', 'borderTopColor', 'borderBottomColor', 'borderRightColor',
|
14
|
+
'borderLeftStyle', 'borderTopStyle', 'borderBottomStyle', 'borderRightStyle',
|
15
|
+
'borderLeftWidth', 'borderTopWidth', 'borderBottomWidth', 'borderRightWidth',
|
16
|
+
'line-height', 'outline'],
|
17
|
+
|
18
|
+
specificStyle: {
|
19
|
+
'word-wrap': 'break-word',
|
20
|
+
'overflow-x': 'hidden',
|
21
|
+
'overflow-y': 'auto'
|
22
|
+
},
|
23
|
+
|
24
|
+
simulator : $('<div id="textarea_simulator"/>').css({
|
25
|
+
position: 'absolute',
|
26
|
+
top: 0,
|
27
|
+
left: 0,
|
28
|
+
visibility: 'hidden'
|
29
|
+
}).appendTo(document.body),
|
30
|
+
|
31
|
+
toHtml : function(text) {
|
32
|
+
return text.replace(/\n/g, '<br>')
|
33
|
+
.split(' ').join('<span style="white-space:prev-wrap"> </span>');
|
34
|
+
},
|
35
|
+
// calculate position
|
36
|
+
getCaretPosition: function() {
|
37
|
+
var cal = calculator, self = this, element = self[0], elementOffset = self.offset();
|
38
|
+
|
39
|
+
// IE has easy way to get caret offset position
|
40
|
+
if ($.browser.msie) {
|
41
|
+
// must get focus first
|
42
|
+
element.focus();
|
43
|
+
var range = document.selection.createRange();
|
44
|
+
$('#hskeywords').val(element.scrollTop);
|
45
|
+
return {
|
46
|
+
left: range.boundingLeft - elementOffset.left,
|
47
|
+
top: parseInt(range.boundingTop) - elementOffset.top + element.scrollTop
|
48
|
+
+ document.documentElement.scrollTop + parseInt(self.getComputedStyle("fontSize"))
|
49
|
+
};
|
50
|
+
}
|
51
|
+
cal.simulator.empty();
|
52
|
+
// clone primary styles to imitate textarea
|
53
|
+
$.each(cal.primaryStyles, function(index, styleName) {
|
54
|
+
self.cloneStyle(cal.simulator, styleName);
|
55
|
+
});
|
56
|
+
|
57
|
+
// caculate width and height
|
58
|
+
cal.simulator.css($.extend({
|
59
|
+
'width': self.width(),
|
60
|
+
'height': self.height()
|
61
|
+
}, cal.specificStyle));
|
62
|
+
|
63
|
+
var value = self.val(), cursorPosition = self.getCursorPosition();
|
64
|
+
var beforeText = value.substring(0, cursorPosition),
|
65
|
+
afterText = value.substring(cursorPosition);
|
66
|
+
|
67
|
+
var before = $('<span class="before"/>').html(cal.toHtml(beforeText)),
|
68
|
+
focus = $('<span class="focus"/>'),
|
69
|
+
after = $('<span class="after"/>').html(cal.toHtml(afterText));
|
70
|
+
|
71
|
+
cal.simulator.append(before).append(focus).append(after);
|
72
|
+
var focusOffset = focus.offset(), simulatorOffset = cal.simulator.offset();
|
73
|
+
// alert(focusOffset.left + ',' + simulatorOffset.left + ',' + element.scrollLeft);
|
74
|
+
return {
|
75
|
+
top: focusOffset.top - simulatorOffset.top - element.scrollTop
|
76
|
+
// calculate and add the font height except Firefox
|
77
|
+
+ ($.browser.mozilla ? 0 : parseInt(self.getComputedStyle("fontSize"))),
|
78
|
+
left: focus[0].offsetLeft - cal.simulator[0].offsetLeft - element.scrollLeft
|
79
|
+
};
|
80
|
+
}
|
81
|
+
};
|
82
|
+
|
83
|
+
$.fn.extend({
|
84
|
+
getComputedStyle: function(styleName) {
|
85
|
+
if (this.length == 0) return;
|
86
|
+
var thiz = this[0];
|
87
|
+
var result = this.css(styleName);
|
88
|
+
result = result || ($.browser.msie ?
|
89
|
+
thiz.currentStyle[styleName]:
|
90
|
+
document.defaultView.getComputedStyle(thiz, null)[styleName]);
|
91
|
+
return result;
|
92
|
+
},
|
93
|
+
// easy clone method
|
94
|
+
cloneStyle: function(target, styleName) {
|
95
|
+
var styleVal = this.getComputedStyle(styleName);
|
96
|
+
if (!!styleVal) {
|
97
|
+
$(target).css(styleName, styleVal);
|
98
|
+
}
|
99
|
+
},
|
100
|
+
cloneAllStyle: function(target, style) {
|
101
|
+
var thiz = this[0];
|
102
|
+
for (var styleName in thiz.style) {
|
103
|
+
var val = thiz.style[styleName];
|
104
|
+
typeof val == 'string' || typeof val == 'number'
|
105
|
+
? this.cloneStyle(target, styleName)
|
106
|
+
: NaN;
|
107
|
+
}
|
108
|
+
},
|
109
|
+
getCursorPosition : function() {
|
110
|
+
var thiz = this[0], result = 0;
|
111
|
+
if ('selectionStart' in thiz) {
|
112
|
+
result = thiz.selectionStart;
|
113
|
+
} else if('selection' in document) {
|
114
|
+
var range = document.selection.createRange();
|
115
|
+
if (parseInt($.browser.version) > 6) {
|
116
|
+
thiz.focus();
|
117
|
+
var length = document.selection.createRange().text.length;
|
118
|
+
range.moveStart('character', - thiz.value.length);
|
119
|
+
result = range.text.length - length;
|
120
|
+
} else {
|
121
|
+
var bodyRange = document.body.createTextRange();
|
122
|
+
bodyRange.moveToElementText(thiz);
|
123
|
+
for (; bodyRange.compareEndPoints("StartToStart", range) < 0; result++)
|
124
|
+
bodyRange.moveStart('character', 1);
|
125
|
+
for (var i = 0; i <= result; i ++){
|
126
|
+
if (thiz.value.charAt(i) == '\n')
|
127
|
+
result++;
|
128
|
+
}
|
129
|
+
var enterCount = thiz.value.split('\n').length - 1;
|
130
|
+
result -= enterCount;
|
131
|
+
return result;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
return result;
|
135
|
+
},
|
136
|
+
getCaretPosition: calculator.getCaretPosition
|
137
|
+
});
|
138
|
+
});
|
@@ -0,0 +1,239 @@
|
|
1
|
+
/**
|
2
|
+
* @license Rangy Text Inputs, a cross-browser textarea and text input library plug-in for jQuery.
|
3
|
+
*
|
4
|
+
* Part of Rangy, a cross-browser JavaScript range and selection library
|
5
|
+
* http://code.google.com/p/rangy/
|
6
|
+
*
|
7
|
+
* Depends on jQuery 1.0 or later.
|
8
|
+
*
|
9
|
+
* Copyright 2010, Tim Down
|
10
|
+
* Licensed under the MIT license.
|
11
|
+
* Version: 0.1.205
|
12
|
+
* Build date: 5 November 2010
|
13
|
+
*/
|
14
|
+
(function($) {
|
15
|
+
var UNDEF = "undefined";
|
16
|
+
var getSelection, setSelection, deleteSelectedText, deleteText, insertText;
|
17
|
+
var replaceSelectedText, surroundSelectedText, extractSelectedText, collapseSelection;
|
18
|
+
|
19
|
+
// Trio of isHost* functions taken from Peter Michaux's article:
|
20
|
+
// http://peter.michaux.ca/articles/feature-detection-state-of-the-art-browser-scripting
|
21
|
+
function isHostMethod(object, property) {
|
22
|
+
var t = typeof object[property];
|
23
|
+
return t === "function" || (!!(t == "object" && object[property])) || t == "unknown";
|
24
|
+
}
|
25
|
+
|
26
|
+
function isHostProperty(object, property) {
|
27
|
+
return typeof(object[property]) != UNDEF;
|
28
|
+
}
|
29
|
+
|
30
|
+
function isHostObject(object, property) {
|
31
|
+
return !!(typeof(object[property]) == "object" && object[property]);
|
32
|
+
}
|
33
|
+
|
34
|
+
function fail(reason) {
|
35
|
+
if (window.console && window.console.log) {
|
36
|
+
window.console.log("TextInputs module for Rangy not supported in your browser. Reason: " + reason);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
function adjustOffsets(el, start, end) {
|
41
|
+
if (start < 0) {
|
42
|
+
start += el.value.length;
|
43
|
+
}
|
44
|
+
if (typeof end == UNDEF) {
|
45
|
+
end = start;
|
46
|
+
}
|
47
|
+
if (end < 0) {
|
48
|
+
end += el.value.length;
|
49
|
+
}
|
50
|
+
return { start: start, end: end };
|
51
|
+
}
|
52
|
+
|
53
|
+
function makeSelection(el, start, end) {
|
54
|
+
return {
|
55
|
+
start: start,
|
56
|
+
end: end,
|
57
|
+
length: end - start,
|
58
|
+
text: el.value.slice(start, end)
|
59
|
+
};
|
60
|
+
}
|
61
|
+
|
62
|
+
function getBody() {
|
63
|
+
return isHostObject(document, "body") ? document.body : document.getElementsByTagName("body")[0];
|
64
|
+
}
|
65
|
+
|
66
|
+
$(document).ready(function() {
|
67
|
+
var testTextArea = document.createElement("textarea");
|
68
|
+
|
69
|
+
getBody().appendChild(testTextArea);
|
70
|
+
|
71
|
+
if (isHostProperty(testTextArea, "selectionStart") && isHostProperty(testTextArea, "selectionEnd")) {
|
72
|
+
getSelection = function(el) {
|
73
|
+
var start = el.selectionStart, end = el.selectionEnd;
|
74
|
+
return makeSelection(el, start, end);
|
75
|
+
};
|
76
|
+
|
77
|
+
setSelection = function(el, startOffset, endOffset) {
|
78
|
+
var offsets = adjustOffsets(el, startOffset, endOffset);
|
79
|
+
el.selectionStart = offsets.start;
|
80
|
+
el.selectionEnd = offsets.end;
|
81
|
+
};
|
82
|
+
|
83
|
+
collapseSelection = function(el, toStart) {
|
84
|
+
if (toStart) {
|
85
|
+
el.selectionEnd = el.selectionStart;
|
86
|
+
} else {
|
87
|
+
el.selectionStart = el.selectionEnd;
|
88
|
+
}
|
89
|
+
};
|
90
|
+
} else if (isHostMethod(testTextArea, "createTextRange") && isHostObject(document, "selection") &&
|
91
|
+
isHostMethod(document.selection, "createRange")) {
|
92
|
+
|
93
|
+
getSelection = function(el) {
|
94
|
+
var start = 0, end = 0, normalizedValue, textInputRange, len, endRange;
|
95
|
+
var range = document.selection.createRange();
|
96
|
+
|
97
|
+
if (range && range.parentElement() == el) {
|
98
|
+
len = el.value.length;
|
99
|
+
|
100
|
+
normalizedValue = el.value.replace(/\r\n/g, "\n");
|
101
|
+
textInputRange = el.createTextRange();
|
102
|
+
textInputRange.moveToBookmark(range.getBookmark());
|
103
|
+
endRange = el.createTextRange();
|
104
|
+
endRange.collapse(false);
|
105
|
+
if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) {
|
106
|
+
start = end = len;
|
107
|
+
} else {
|
108
|
+
start = -textInputRange.moveStart("character", -len);
|
109
|
+
start += normalizedValue.slice(0, start).split("\n").length - 1;
|
110
|
+
if (textInputRange.compareEndPoints("EndToEnd", endRange) > -1) {
|
111
|
+
end = len;
|
112
|
+
} else {
|
113
|
+
end = -textInputRange.moveEnd("character", -len);
|
114
|
+
end += normalizedValue.slice(0, end).split("\n").length - 1;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
return makeSelection(el, start, end);
|
120
|
+
};
|
121
|
+
|
122
|
+
// Moving across a line break only counts as moving one character in a TextRange, whereas a line break in
|
123
|
+
// the textarea value is two characters. This function corrects for that by converting a text offset into a
|
124
|
+
// range character offset by subtracting one character for every line break in the textarea prior to the
|
125
|
+
// offset
|
126
|
+
var offsetToRangeCharacterMove = function(el, offset) {
|
127
|
+
return offset - (el.value.slice(0, offset).split("\r\n").length - 1);
|
128
|
+
};
|
129
|
+
|
130
|
+
setSelection = function(el, startOffset, endOffset) {
|
131
|
+
var offsets = adjustOffsets(el, startOffset, endOffset);
|
132
|
+
var range = el.createTextRange();
|
133
|
+
var startCharMove = offsetToRangeCharacterMove(el, offsets.start);
|
134
|
+
range.collapse(true);
|
135
|
+
if (offsets.start == offsets.end) {
|
136
|
+
range.move("character", startCharMove);
|
137
|
+
} else {
|
138
|
+
range.moveEnd("character", offsetToRangeCharacterMove(el, offsets.end));
|
139
|
+
range.moveStart("character", startCharMove);
|
140
|
+
}
|
141
|
+
range.select();
|
142
|
+
};
|
143
|
+
|
144
|
+
collapseSelection = function(el, toStart) {
|
145
|
+
var range = document.selection.createRange();
|
146
|
+
range.collapse(toStart);
|
147
|
+
range.select();
|
148
|
+
};
|
149
|
+
} else {
|
150
|
+
getBody().removeChild(testTextArea);
|
151
|
+
fail("No means of finding text input caret position");
|
152
|
+
return;
|
153
|
+
}
|
154
|
+
|
155
|
+
// Clean up
|
156
|
+
getBody().removeChild(testTextArea);
|
157
|
+
|
158
|
+
deleteText = function(el, start, end, moveSelection) {
|
159
|
+
var val;
|
160
|
+
if (start != end) {
|
161
|
+
val = el.value;
|
162
|
+
el.value = val.slice(0, start) + val.slice(end);
|
163
|
+
}
|
164
|
+
if (moveSelection) {
|
165
|
+
setSelection(el, start, start);
|
166
|
+
}
|
167
|
+
};
|
168
|
+
|
169
|
+
deleteSelectedText = function(el) {
|
170
|
+
var sel = getSelection(el);
|
171
|
+
deleteText(el, sel.start, sel.end, true);
|
172
|
+
};
|
173
|
+
|
174
|
+
extractSelectedText = function(el) {
|
175
|
+
var sel = getSelection(el), val;
|
176
|
+
if (sel.start != sel.end) {
|
177
|
+
val = el.value;
|
178
|
+
el.value = val.slice(0, sel.start) + val.slice(sel.end);
|
179
|
+
}
|
180
|
+
setSelection(el, sel.start, sel.start);
|
181
|
+
return sel.text;
|
182
|
+
};
|
183
|
+
|
184
|
+
insertText = function(el, text, index, moveSelection) {
|
185
|
+
var val = el.value, caretIndex;
|
186
|
+
el.value = val.slice(0, index) + text + val.slice(index);
|
187
|
+
if (moveSelection) {
|
188
|
+
caretIndex = index + text.length;
|
189
|
+
setSelection(el, caretIndex, caretIndex);
|
190
|
+
}
|
191
|
+
};
|
192
|
+
|
193
|
+
replaceSelectedText = function(el, text) {
|
194
|
+
var sel = getSelection(el), val = el.value;
|
195
|
+
el.value = val.slice(0, sel.start) + text + val.slice(sel.end);
|
196
|
+
var caretIndex = sel.start + text.length;
|
197
|
+
setSelection(el, caretIndex, caretIndex);
|
198
|
+
};
|
199
|
+
|
200
|
+
surroundSelectedText = function(el, before, after) {
|
201
|
+
var sel = getSelection(el), val = el.value;
|
202
|
+
|
203
|
+
el.value = val.slice(0, sel.start) + before + sel.text + after + val.slice(sel.end);
|
204
|
+
var startIndex = sel.start + before.length;
|
205
|
+
var endIndex = startIndex + sel.length;
|
206
|
+
setSelection(el, startIndex, endIndex);
|
207
|
+
};
|
208
|
+
|
209
|
+
function jQuerify(func, returnThis) {
|
210
|
+
return function() {
|
211
|
+
var el = this.jquery ? this[0] : this;
|
212
|
+
var nodeName = el.nodeName.toLowerCase();
|
213
|
+
|
214
|
+
if (el.nodeType == 1 && (nodeName == "textarea" || (nodeName == "input" && el.type == "text"))) {
|
215
|
+
var args = [el].concat(Array.prototype.slice.call(arguments));
|
216
|
+
var result = func.apply(this, args);
|
217
|
+
if (!returnThis) {
|
218
|
+
return result;
|
219
|
+
}
|
220
|
+
}
|
221
|
+
if (returnThis) {
|
222
|
+
return this;
|
223
|
+
}
|
224
|
+
};
|
225
|
+
}
|
226
|
+
|
227
|
+
$.fn.extend({
|
228
|
+
getSelection: jQuerify(getSelection, false),
|
229
|
+
setSelection: jQuerify(setSelection, true),
|
230
|
+
collapseSelection: jQuerify(collapseSelection, true),
|
231
|
+
deleteSelectedText: jQuerify(deleteSelectedText, true),
|
232
|
+
deleteText: jQuerify(deleteText, true),
|
233
|
+
extractSelectedText: jQuerify(extractSelectedText, false),
|
234
|
+
insertText: jQuerify(insertText, true),
|
235
|
+
replaceSelectedText: jQuerify(replaceSelectedText, true),
|
236
|
+
surroundSelectedText: jQuerify(surroundSelectedText, true)
|
237
|
+
});
|
238
|
+
});
|
239
|
+
})(jQuery);
|