lolita 3.4.3 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +37 -36
- data/Gemfile +31 -29
- data/README.md +147 -147
- data/Rakefile +17 -7
- data/app/assets/javascripts/lolita/application.js +5 -6
- data/app/assets/javascripts/lolita/tab.js +98 -100
- data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
- data/app/assets/stylesheets/lolita/PIE.htc +81 -81
- data/app/assets/stylesheets/lolita/application.css +7 -6
- data/app/assets/stylesheets/lolita/default.css.erb +169 -169
- data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
- data/app/assets/stylesheets/lolita/style.css.erb +554 -553
- data/app/assets/stylesheets/tinymce/skins/lolita/content.inline.min.css +1 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/content.min.css +1 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/readme.md +1 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce-small.eot +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce-small.svg +175 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce-small.ttf +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce-small.woff +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce.eot +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce.svg +153 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce.ttf +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/fonts/tinymce.woff +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/img/anchor.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/img/loader.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/img/object.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/img/trans.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/img/wline.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/skin.ie7.min.css +1 -0
- data/app/assets/stylesheets/tinymce/skins/lolita/skin.min.css +2 -0
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/helpers/components/lolita/configuration_component.rb +21 -21
- data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
- data/app/views/components/lolita/configuration/columns/body/_display.html.haml +1 -1
- data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
- data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/field/string/text/_display.html.haml +4 -7
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/tab/_display.html.haml +4 -4
- data/app/views/components/lolita/configuration/tabs/_form.html.haml +7 -6
- data/app/views/components/lolita/configuration/tabs/yo.html +1 -0
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_gap.html.erb +8 -8
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_page.html.erb +12 -12
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
- data/app/views/lolita/info/index.html.erb +232 -232
- data/author +1 -1
- data/config/locales/sv_SE.yml +37 -0
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +22 -19
- data/lib/generators/lolita/uninstall_generator.rb +76 -71
- data/lib/generators/templates/lolita.rb +17 -14
- data/lib/generators/templates/tinymce.yml +22 -0
- data/lib/lolita.rb +142 -141
- data/lib/lolita/adapter/abstract_adapter.rb +17 -16
- data/lib/lolita/adapter/active_record.rb +229 -227
- data/lib/lolita/adapter/common_helper.rb +220 -221
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +244 -241
- data/lib/lolita/components/base.rb +10 -12
- data/lib/lolita/configuration.rb +61 -61
- data/lib/lolita/configuration/column.rb +170 -181
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/hidden.rb +12 -12
- data/lib/lolita/configuration/field/integer.rb +11 -11
- data/lib/lolita/configuration/field/string.rb +16 -16
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/filter.rb +130 -116
- data/lib/lolita/configuration/list.rb +201 -201
- data/lib/lolita/configuration/search.rb +105 -105
- data/lib/lolita/controllers/component_helpers.rb +156 -156
- data/lib/lolita/controllers/internal_helpers.rb +74 -71
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +54 -54
- data/lib/lolita/navigation/tree.rb +132 -132
- data/lib/lolita/rails/engine.rb +29 -24
- data/lib/lolita/rails/routes.rb +133 -129
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/search/simple.rb +75 -75
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/system_configuration/base.rb +182 -178
- data/lib/lolita/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +30 -30
- data/lolita.gemspec +35 -34
- data/spec/adapter/common_helper_spec.rb +96 -96
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +23 -23
- data/spec/configuration/field_spec.rb +117 -118
- data/spec/configuration/filter_spec.rb +145 -131
- data/spec/configuration/tab_spec.rb +184 -187
- data/spec/configuration/tabs_spec.rb +116 -120
- data/spec/generators/lolita/install_generator_spec.rb +70 -55
- data/spec/generators/lolita/uninstall_generator_spec.rb +65 -49
- data/spec/helpers/url_for_spec.rb +8 -0
- data/spec/orm/active_record.rb +53 -0
- data/spec/orm/mongoid.rb +2 -13
- data/spec/orm/mongoid.yml +6 -0
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/orm/active_record/address.rb +3 -0
- data/spec/rails_app/app/orm/active_record/category.rb +16 -0
- data/spec/rails_app/app/orm/active_record/comment.rb +4 -0
- data/spec/rails_app/app/orm/active_record/post.rb +24 -0
- data/spec/rails_app/app/orm/active_record/preference.rb +4 -0
- data/spec/rails_app/app/orm/active_record/profile.rb +9 -0
- data/spec/rails_app/app/orm/active_record/tag.rb +2 -0
- data/spec/rails_app/app/{mongoid → orm/mongoid}/address.rb +7 -7
- data/spec/rails_app/app/{mongoid → orm/mongoid}/category.rb +18 -19
- data/spec/rails_app/app/{mongoid → orm/mongoid}/comment.rb +5 -5
- data/spec/rails_app/app/{mongoid → orm/mongoid}/post.rb +30 -30
- data/spec/rails_app/app/{mongoid → orm/mongoid}/preference.rb +5 -5
- data/spec/rails_app/app/{mongoid → orm/mongoid}/profile.rb +13 -14
- data/spec/rails_app/app/{mongoid → orm/mongoid}/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/application.rb +34 -33
- data/spec/rails_app/config/boot.rb +7 -8
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/development.rb +22 -23
- data/spec/rails_app/config/environments/production.rb +37 -37
- data/spec/rails_app/config/environments/test.rb +36 -37
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +4 -3
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/spec_helper.rb +44 -51
- data/spec/support/cleaner.rb +12 -0
- data/vendor/assets/javascripts/application_vendor_lolita.js +5 -4
- data/vendor/assets/javascripts/jquery-numeric.js +279 -279
- data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
- data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
- metadata +105 -72
- data/lib/tasks/tinymce-assets.rake +0 -7
- data/spec/adapter_helper.rb +0 -43
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +0 -66
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +0 -117
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/butt2.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/button-bg.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/buttons.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/down_arrow.gif +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/fade-butt.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/icons.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/items.gif +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/menu-arrow.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/menu-check.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/progress.gif +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/tabs.gif +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/img/toolbarbg.png +0 -0
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +0 -988
data/spec/spec_helper.rb
CHANGED
@@ -1,51 +1,44 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'bundler/setup'
|
3
|
-
unless ENV['CI']
|
4
|
-
require 'pry-byebug'
|
5
|
-
end
|
6
|
-
# require 'simplecov'
|
7
|
-
# SimpleCov.start do
|
8
|
-
|
9
|
-
#end
|
10
|
-
ENV["lolita-env"] = "rails"
|
11
|
-
|
12
|
-
#Bundler.setup(:default,:rails,:test,:development)
|
13
|
-
require 'benchmark'
|
14
|
-
Benchmark.bm do |x|
|
15
|
-
x.report("Loading ORM: ") do
|
16
|
-
LOLITA_ORM
|
17
|
-
require "orm/#{LOLITA_ORM}"
|
18
|
-
end
|
19
|
-
if
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
require '
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
end
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
collection.remove
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler/setup'
|
3
|
+
unless ENV['CI']
|
4
|
+
require 'pry-byebug'
|
5
|
+
end
|
6
|
+
# require 'simplecov'
|
7
|
+
# SimpleCov.start do
|
8
|
+
|
9
|
+
#end
|
10
|
+
ENV["lolita-env"] = "rails"
|
11
|
+
|
12
|
+
#Bundler.setup(:default,:rails,:test,:development)
|
13
|
+
require 'benchmark'
|
14
|
+
Benchmark.bm do |x|
|
15
|
+
x.report("Loading ORM: ") do
|
16
|
+
LOLITA_ORM = ENV["LOLITA_ORM"] || :active_record
|
17
|
+
require "orm/#{LOLITA_ORM}"
|
18
|
+
end
|
19
|
+
if LOLITA_ORM == 'mongoid'
|
20
|
+
require 'kaminari'
|
21
|
+
Kaminari::Hooks.init
|
22
|
+
end
|
23
|
+
if ENV["lolita-env"] == "rails"
|
24
|
+
x.report("Loading rails: ") do
|
25
|
+
require 'rails'
|
26
|
+
require 'lolita'
|
27
|
+
Lolita.load!
|
28
|
+
require 'rails_app/config/environment'
|
29
|
+
require 'rspec/rails'
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
x.report("Loading test stuff: ") do
|
34
|
+
require 'ffaker'
|
35
|
+
end
|
36
|
+
x.report("Loading factories") do
|
37
|
+
Dir["#{File.dirname(__FILE__)}/fabricators/**/*_fabricator.rb"].each {|f| require f}
|
38
|
+
end
|
39
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*[^_spec].rb"].each {|f| require f}
|
40
|
+
RSpec.configure do |config|
|
41
|
+
config.mock_with :rspec
|
42
|
+
config.order = "rand:3455"
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
RSpec.configure do |config|
|
2
|
+
if LOLITA_ORM == :active_record
|
3
|
+
config.use_transactional_fixtures = false
|
4
|
+
end
|
5
|
+
DatabaseCleaner.strategy = :truncation
|
6
|
+
|
7
|
+
config.around(:each) do |example|
|
8
|
+
DatabaseCleaner.start
|
9
|
+
example.run
|
10
|
+
DatabaseCleaner.clean
|
11
|
+
end
|
12
|
+
end
|
@@ -1,4 +1,5 @@
|
|
1
|
-
//
|
2
|
-
//= require modernizr_1_7_min
|
3
|
-
//= require jquery-numeric
|
4
|
-
//=
|
1
|
+
//
|
2
|
+
//= require modernizr_1_7_min
|
3
|
+
//= require jquery-numeric
|
4
|
+
//= require tinymce-jquery
|
5
|
+
//= require_self
|
@@ -1,280 +1,280 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright (c) 2006-2011 Sam Collett (http://www.texotela.co.uk)
|
4
|
-
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
|
-
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
6
|
-
*
|
7
|
-
* Version 1.3.1
|
8
|
-
* Demo: http://www.texotela.co.uk/code/jquery/numeric/
|
9
|
-
*
|
10
|
-
*/
|
11
|
-
(function($) {
|
12
|
-
/*
|
13
|
-
* Allows only valid characters to be entered into input boxes.
|
14
|
-
* Note: fixes value when pasting via Ctrl+V, but not when using the mouse to paste
|
15
|
-
* side-effect: Ctrl+A does not work, though you can still use the mouse to select (or double-click to select all)
|
16
|
-
*
|
17
|
-
* @name numeric
|
18
|
-
* @param config { decimal : "." , negative : true }
|
19
|
-
* @param callback A function that runs if the number is not valid (fires onblur)
|
20
|
-
* @author Sam Collett (http://www.texotela.co.uk)
|
21
|
-
* @example $(".numeric").numeric();
|
22
|
-
* @example $(".numeric").numeric(","); // use , as separater
|
23
|
-
* @example $(".numeric").numeric({ decimal : "," }); // use , as separator
|
24
|
-
* @example $(".numeric").numeric({ negative : false }); // do not allow negative values
|
25
|
-
* @example $(".numeric").numeric(null, callback); // use default values, pass on the 'callback' function
|
26
|
-
*
|
27
|
-
*/
|
28
|
-
$.fn.numeric = function(config, callback)
|
29
|
-
{
|
30
|
-
if(typeof config === 'boolean')
|
31
|
-
{
|
32
|
-
config = { decimal: config };
|
33
|
-
}
|
34
|
-
config = config || {};
|
35
|
-
// if config.negative undefined, set to true (default is to allow negative numbers)
|
36
|
-
if(typeof config.negative == "undefined") config.negative = true;
|
37
|
-
// set decimal point
|
38
|
-
var decimal = (config.decimal === false) ? "" : config.decimal || ".";
|
39
|
-
// allow negatives
|
40
|
-
var negative = (config.negative === true) ? true : false;
|
41
|
-
// callback function
|
42
|
-
var callback = typeof callback == "function" ? callback : function(){};
|
43
|
-
// set data and methods
|
44
|
-
return this.data("numeric.decimal", decimal).data("numeric.negative", negative).data("numeric.callback", callback).keypress($.fn.numeric.keypress).keyup($.fn.numeric.keyup).blur($.fn.numeric.blur);
|
45
|
-
}
|
46
|
-
|
47
|
-
$.fn.numeric.keypress = function(e)
|
48
|
-
{
|
49
|
-
// get decimal character and determine if negatives are allowed
|
50
|
-
var decimal = $.data(this, "numeric.decimal");
|
51
|
-
var negative = $.data(this, "numeric.negative");
|
52
|
-
// get the key that was pressed
|
53
|
-
var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
|
54
|
-
// allow enter/return key (only when in an input box)
|
55
|
-
if(key == 13 && this.nodeName.toLowerCase() == "input")
|
56
|
-
{
|
57
|
-
return true;
|
58
|
-
}
|
59
|
-
else if(key == 13)
|
60
|
-
{
|
61
|
-
return false;
|
62
|
-
}
|
63
|
-
var allow = false;
|
64
|
-
// allow Ctrl+A
|
65
|
-
if((e.ctrlKey && key == 97 /* firefox */) || (e.ctrlKey && key == 65) /* opera */) return true;
|
66
|
-
// allow Ctrl+X (cut)
|
67
|
-
if((e.ctrlKey && key == 120 /* firefox */) || (e.ctrlKey && key == 88) /* opera */) return true;
|
68
|
-
// allow Ctrl+C (copy)
|
69
|
-
if((e.ctrlKey && key == 99 /* firefox */) || (e.ctrlKey && key == 67) /* opera */) return true;
|
70
|
-
// allow Ctrl+Z (undo)
|
71
|
-
if((e.ctrlKey && key == 122 /* firefox */) || (e.ctrlKey && key == 90) /* opera */) return true;
|
72
|
-
// allow or deny Ctrl+V (paste), Shift+Ins
|
73
|
-
if((e.ctrlKey && key == 118 /* firefox */) || (e.ctrlKey && key == 86) /* opera */
|
74
|
-
|| (e.shiftKey && key == 45)) return true;
|
75
|
-
// if a number was not pressed
|
76
|
-
if(key < 48 || key > 57)
|
77
|
-
{
|
78
|
-
var value = $(this).val();
|
79
|
-
/* '-' only allowed at start and if negative numbers allowed */
|
80
|
-
if(value.indexOf("-") != 0 && negative && key == 45 && (value.length == 0 || ($.fn.getSelectionStart(this)) == 0)) return true;
|
81
|
-
/* only one decimal separator allowed */
|
82
|
-
if(decimal && key == decimal.charCodeAt(0) && value.indexOf(decimal) != -1)
|
83
|
-
{
|
84
|
-
allow = false;
|
85
|
-
}
|
86
|
-
// check for other keys that have special purposes
|
87
|
-
if(
|
88
|
-
key != 8 /* backspace */ &&
|
89
|
-
key != 9 /* tab */ &&
|
90
|
-
key != 13 /* enter */ &&
|
91
|
-
key != 35 /* end */ &&
|
92
|
-
key != 36 /* home */ &&
|
93
|
-
key != 37 /* left */ &&
|
94
|
-
key != 39 /* right */ &&
|
95
|
-
key != 46 /* del */
|
96
|
-
)
|
97
|
-
{
|
98
|
-
allow = false;
|
99
|
-
}
|
100
|
-
else
|
101
|
-
{
|
102
|
-
// for detecting special keys (listed above)
|
103
|
-
// IE does not support 'charCode' and ignores them in keypress anyway
|
104
|
-
if(typeof e.charCode != "undefined")
|
105
|
-
{
|
106
|
-
// special keys have 'keyCode' and 'which' the same (e.g. backspace)
|
107
|
-
if(e.keyCode == e.which && e.which != 0)
|
108
|
-
{
|
109
|
-
allow = true;
|
110
|
-
// . and delete share the same code, don't allow . (will be set to true later if it is the decimal point)
|
111
|
-
if(e.which == 46) allow = false;
|
112
|
-
}
|
113
|
-
// or keyCode != 0 and 'charCode'/'which' = 0
|
114
|
-
else if(e.keyCode != 0 && e.charCode == 0 && e.which == 0)
|
115
|
-
{
|
116
|
-
allow = true;
|
117
|
-
}
|
118
|
-
}
|
119
|
-
}
|
120
|
-
// if key pressed is the decimal and it is not already in the field
|
121
|
-
if(decimal && key == decimal.charCodeAt(0))
|
122
|
-
{
|
123
|
-
if(value.indexOf(decimal) == -1)
|
124
|
-
{
|
125
|
-
allow = true;
|
126
|
-
}
|
127
|
-
else
|
128
|
-
{
|
129
|
-
allow = false;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
}
|
133
|
-
else
|
134
|
-
{
|
135
|
-
allow = true;
|
136
|
-
}
|
137
|
-
return allow;
|
138
|
-
}
|
139
|
-
|
140
|
-
$.fn.numeric.keyup = function(e)
|
141
|
-
{
|
142
|
-
var val = $(this).value;
|
143
|
-
if(val && val.length > 0)
|
144
|
-
{
|
145
|
-
// get carat (cursor) position
|
146
|
-
var carat = $.fn.getSelectionStart(this);
|
147
|
-
// get decimal character and determine if negatives are allowed
|
148
|
-
var decimal = $.data(this, "numeric.decimal");
|
149
|
-
var negative = $.data(this, "numeric.negative");
|
150
|
-
|
151
|
-
// prepend a 0 if necessary
|
152
|
-
if(decimal != "")
|
153
|
-
{
|
154
|
-
// find decimal point
|
155
|
-
var dot = val.indexOf(decimal);
|
156
|
-
// if dot at start, add 0 before
|
157
|
-
if(dot == 0)
|
158
|
-
{
|
159
|
-
this.value = "0" + val;
|
160
|
-
}
|
161
|
-
// if dot at position 1, check if there is a - symbol before it
|
162
|
-
if(dot == 1 && val.charAt(0) == "-")
|
163
|
-
{
|
164
|
-
this.value = "-0" + val.substring(1);
|
165
|
-
}
|
166
|
-
val = this.value;
|
167
|
-
}
|
168
|
-
|
169
|
-
// if pasted in, only allow the following characters
|
170
|
-
var validChars = [0,1,2,3,4,5,6,7,8,9,'-',decimal];
|
171
|
-
// get length of the value (to loop through)
|
172
|
-
var length = val.length;
|
173
|
-
// loop backwards (to prevent going out of bounds)
|
174
|
-
for(var i = length - 1; i >= 0; i--)
|
175
|
-
{
|
176
|
-
var ch = val.charAt(i);
|
177
|
-
// remove '-' if it is in the wrong place
|
178
|
-
if(i != 0 && ch == "-")
|
179
|
-
{
|
180
|
-
val = val.substring(0, i) + val.substring(i + 1);
|
181
|
-
}
|
182
|
-
// remove character if it is at the start, a '-' and negatives aren't allowed
|
183
|
-
else if(i == 0 && !negative && ch == "-")
|
184
|
-
{
|
185
|
-
val = val.substring(1);
|
186
|
-
}
|
187
|
-
var validChar = false;
|
188
|
-
// loop through validChars
|
189
|
-
for(var j = 0; j < validChars.length; j++)
|
190
|
-
{
|
191
|
-
// if it is valid, break out the loop
|
192
|
-
if(ch == validChars[j])
|
193
|
-
{
|
194
|
-
validChar = true;
|
195
|
-
break;
|
196
|
-
}
|
197
|
-
}
|
198
|
-
// if not a valid character, or a space, remove
|
199
|
-
if(!validChar || ch == " ")
|
200
|
-
{
|
201
|
-
val = val.substring(0, i) + val.substring(i + 1);
|
202
|
-
}
|
203
|
-
}
|
204
|
-
// remove extra decimal characters
|
205
|
-
var firstDecimal = val.indexOf(decimal);
|
206
|
-
if(firstDecimal > 0)
|
207
|
-
{
|
208
|
-
for(var i = length - 1; i > firstDecimal; i--)
|
209
|
-
{
|
210
|
-
var ch = val.charAt(i);
|
211
|
-
// remove decimal character
|
212
|
-
if(ch == decimal)
|
213
|
-
{
|
214
|
-
val = val.substring(0, i) + val.substring(i + 1);
|
215
|
-
}
|
216
|
-
}
|
217
|
-
}
|
218
|
-
// set the value and prevent the cursor moving to the end
|
219
|
-
this.value = val;
|
220
|
-
$.fn.setSelection(this, carat);
|
221
|
-
}
|
222
|
-
}
|
223
|
-
|
224
|
-
$.fn.numeric.blur = function()
|
225
|
-
{
|
226
|
-
var decimal = $.data(this, "numeric.decimal");
|
227
|
-
var callback = $.data(this, "numeric.callback");
|
228
|
-
var val = this.value;
|
229
|
-
if(val != "")
|
230
|
-
{
|
231
|
-
var re = new RegExp("^\\d+$|\\d*" + decimal + "\\d+");
|
232
|
-
if(!re.exec(val))
|
233
|
-
{
|
234
|
-
callback.apply(this);
|
235
|
-
}
|
236
|
-
}
|
237
|
-
}
|
238
|
-
|
239
|
-
$.fn.removeNumeric = function()
|
240
|
-
{
|
241
|
-
return this.data("numeric.decimal", null).data("numeric.negative", null).data("numeric.callback", null).unbind("keypress", $.fn.numeric.keypress).unbind("blur", $.fn.numeric.blur);
|
242
|
-
}
|
243
|
-
|
244
|
-
// Based on code from http://javascript.nwbox.com/cursor_position/ (Diego Perini <dperini@nwbox.com>)
|
245
|
-
$.fn.getSelectionStart = function(o)
|
246
|
-
{
|
247
|
-
if (o.createTextRange)
|
248
|
-
{
|
249
|
-
var r = document.selection.createRange().duplicate();
|
250
|
-
r.moveEnd('character', o.value.length);
|
251
|
-
if (r.text == '') return o.value.length;
|
252
|
-
return o.value.lastIndexOf(r.text);
|
253
|
-
} else return o.selectionStart;
|
254
|
-
}
|
255
|
-
|
256
|
-
// set the selection, o is the object (input), p is the position ([start, end] or just start)
|
257
|
-
$.fn.setSelection = function(o, p)
|
258
|
-
{
|
259
|
-
// if p is number, start and end are the same
|
260
|
-
if(typeof p == "number") p = [p, p];
|
261
|
-
// only set if p is an array of length 2
|
262
|
-
if(p && p.constructor == Array && p.length == 2)
|
263
|
-
{
|
264
|
-
if (o.createTextRange)
|
265
|
-
{
|
266
|
-
var r = o.createTextRange();
|
267
|
-
r.collapse(true);
|
268
|
-
r.moveStart('character', p[0]);
|
269
|
-
r.moveEnd('character', p[1]);
|
270
|
-
r.select();
|
271
|
-
}
|
272
|
-
else if(o.setSelectionRange)
|
273
|
-
{
|
274
|
-
o.focus();
|
275
|
-
o.setSelectionRange(p[0], p[1]);
|
276
|
-
}
|
277
|
-
}
|
278
|
-
}
|
279
|
-
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright (c) 2006-2011 Sam Collett (http://www.texotela.co.uk)
|
4
|
+
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
|
+
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
6
|
+
*
|
7
|
+
* Version 1.3.1
|
8
|
+
* Demo: http://www.texotela.co.uk/code/jquery/numeric/
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
(function($) {
|
12
|
+
/*
|
13
|
+
* Allows only valid characters to be entered into input boxes.
|
14
|
+
* Note: fixes value when pasting via Ctrl+V, but not when using the mouse to paste
|
15
|
+
* side-effect: Ctrl+A does not work, though you can still use the mouse to select (or double-click to select all)
|
16
|
+
*
|
17
|
+
* @name numeric
|
18
|
+
* @param config { decimal : "." , negative : true }
|
19
|
+
* @param callback A function that runs if the number is not valid (fires onblur)
|
20
|
+
* @author Sam Collett (http://www.texotela.co.uk)
|
21
|
+
* @example $(".numeric").numeric();
|
22
|
+
* @example $(".numeric").numeric(","); // use , as separater
|
23
|
+
* @example $(".numeric").numeric({ decimal : "," }); // use , as separator
|
24
|
+
* @example $(".numeric").numeric({ negative : false }); // do not allow negative values
|
25
|
+
* @example $(".numeric").numeric(null, callback); // use default values, pass on the 'callback' function
|
26
|
+
*
|
27
|
+
*/
|
28
|
+
$.fn.numeric = function(config, callback)
|
29
|
+
{
|
30
|
+
if(typeof config === 'boolean')
|
31
|
+
{
|
32
|
+
config = { decimal: config };
|
33
|
+
}
|
34
|
+
config = config || {};
|
35
|
+
// if config.negative undefined, set to true (default is to allow negative numbers)
|
36
|
+
if(typeof config.negative == "undefined") config.negative = true;
|
37
|
+
// set decimal point
|
38
|
+
var decimal = (config.decimal === false) ? "" : config.decimal || ".";
|
39
|
+
// allow negatives
|
40
|
+
var negative = (config.negative === true) ? true : false;
|
41
|
+
// callback function
|
42
|
+
var callback = typeof callback == "function" ? callback : function(){};
|
43
|
+
// set data and methods
|
44
|
+
return this.data("numeric.decimal", decimal).data("numeric.negative", negative).data("numeric.callback", callback).keypress($.fn.numeric.keypress).keyup($.fn.numeric.keyup).blur($.fn.numeric.blur);
|
45
|
+
}
|
46
|
+
|
47
|
+
$.fn.numeric.keypress = function(e)
|
48
|
+
{
|
49
|
+
// get decimal character and determine if negatives are allowed
|
50
|
+
var decimal = $.data(this, "numeric.decimal");
|
51
|
+
var negative = $.data(this, "numeric.negative");
|
52
|
+
// get the key that was pressed
|
53
|
+
var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
|
54
|
+
// allow enter/return key (only when in an input box)
|
55
|
+
if(key == 13 && this.nodeName.toLowerCase() == "input")
|
56
|
+
{
|
57
|
+
return true;
|
58
|
+
}
|
59
|
+
else if(key == 13)
|
60
|
+
{
|
61
|
+
return false;
|
62
|
+
}
|
63
|
+
var allow = false;
|
64
|
+
// allow Ctrl+A
|
65
|
+
if((e.ctrlKey && key == 97 /* firefox */) || (e.ctrlKey && key == 65) /* opera */) return true;
|
66
|
+
// allow Ctrl+X (cut)
|
67
|
+
if((e.ctrlKey && key == 120 /* firefox */) || (e.ctrlKey && key == 88) /* opera */) return true;
|
68
|
+
// allow Ctrl+C (copy)
|
69
|
+
if((e.ctrlKey && key == 99 /* firefox */) || (e.ctrlKey && key == 67) /* opera */) return true;
|
70
|
+
// allow Ctrl+Z (undo)
|
71
|
+
if((e.ctrlKey && key == 122 /* firefox */) || (e.ctrlKey && key == 90) /* opera */) return true;
|
72
|
+
// allow or deny Ctrl+V (paste), Shift+Ins
|
73
|
+
if((e.ctrlKey && key == 118 /* firefox */) || (e.ctrlKey && key == 86) /* opera */
|
74
|
+
|| (e.shiftKey && key == 45)) return true;
|
75
|
+
// if a number was not pressed
|
76
|
+
if(key < 48 || key > 57)
|
77
|
+
{
|
78
|
+
var value = $(this).val();
|
79
|
+
/* '-' only allowed at start and if negative numbers allowed */
|
80
|
+
if(value.indexOf("-") != 0 && negative && key == 45 && (value.length == 0 || ($.fn.getSelectionStart(this)) == 0)) return true;
|
81
|
+
/* only one decimal separator allowed */
|
82
|
+
if(decimal && key == decimal.charCodeAt(0) && value.indexOf(decimal) != -1)
|
83
|
+
{
|
84
|
+
allow = false;
|
85
|
+
}
|
86
|
+
// check for other keys that have special purposes
|
87
|
+
if(
|
88
|
+
key != 8 /* backspace */ &&
|
89
|
+
key != 9 /* tab */ &&
|
90
|
+
key != 13 /* enter */ &&
|
91
|
+
key != 35 /* end */ &&
|
92
|
+
key != 36 /* home */ &&
|
93
|
+
key != 37 /* left */ &&
|
94
|
+
key != 39 /* right */ &&
|
95
|
+
key != 46 /* del */
|
96
|
+
)
|
97
|
+
{
|
98
|
+
allow = false;
|
99
|
+
}
|
100
|
+
else
|
101
|
+
{
|
102
|
+
// for detecting special keys (listed above)
|
103
|
+
// IE does not support 'charCode' and ignores them in keypress anyway
|
104
|
+
if(typeof e.charCode != "undefined")
|
105
|
+
{
|
106
|
+
// special keys have 'keyCode' and 'which' the same (e.g. backspace)
|
107
|
+
if(e.keyCode == e.which && e.which != 0)
|
108
|
+
{
|
109
|
+
allow = true;
|
110
|
+
// . and delete share the same code, don't allow . (will be set to true later if it is the decimal point)
|
111
|
+
if(e.which == 46) allow = false;
|
112
|
+
}
|
113
|
+
// or keyCode != 0 and 'charCode'/'which' = 0
|
114
|
+
else if(e.keyCode != 0 && e.charCode == 0 && e.which == 0)
|
115
|
+
{
|
116
|
+
allow = true;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
// if key pressed is the decimal and it is not already in the field
|
121
|
+
if(decimal && key == decimal.charCodeAt(0))
|
122
|
+
{
|
123
|
+
if(value.indexOf(decimal) == -1)
|
124
|
+
{
|
125
|
+
allow = true;
|
126
|
+
}
|
127
|
+
else
|
128
|
+
{
|
129
|
+
allow = false;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
else
|
134
|
+
{
|
135
|
+
allow = true;
|
136
|
+
}
|
137
|
+
return allow;
|
138
|
+
}
|
139
|
+
|
140
|
+
$.fn.numeric.keyup = function(e)
|
141
|
+
{
|
142
|
+
var val = $(this).value;
|
143
|
+
if(val && val.length > 0)
|
144
|
+
{
|
145
|
+
// get carat (cursor) position
|
146
|
+
var carat = $.fn.getSelectionStart(this);
|
147
|
+
// get decimal character and determine if negatives are allowed
|
148
|
+
var decimal = $.data(this, "numeric.decimal");
|
149
|
+
var negative = $.data(this, "numeric.negative");
|
150
|
+
|
151
|
+
// prepend a 0 if necessary
|
152
|
+
if(decimal != "")
|
153
|
+
{
|
154
|
+
// find decimal point
|
155
|
+
var dot = val.indexOf(decimal);
|
156
|
+
// if dot at start, add 0 before
|
157
|
+
if(dot == 0)
|
158
|
+
{
|
159
|
+
this.value = "0" + val;
|
160
|
+
}
|
161
|
+
// if dot at position 1, check if there is a - symbol before it
|
162
|
+
if(dot == 1 && val.charAt(0) == "-")
|
163
|
+
{
|
164
|
+
this.value = "-0" + val.substring(1);
|
165
|
+
}
|
166
|
+
val = this.value;
|
167
|
+
}
|
168
|
+
|
169
|
+
// if pasted in, only allow the following characters
|
170
|
+
var validChars = [0,1,2,3,4,5,6,7,8,9,'-',decimal];
|
171
|
+
// get length of the value (to loop through)
|
172
|
+
var length = val.length;
|
173
|
+
// loop backwards (to prevent going out of bounds)
|
174
|
+
for(var i = length - 1; i >= 0; i--)
|
175
|
+
{
|
176
|
+
var ch = val.charAt(i);
|
177
|
+
// remove '-' if it is in the wrong place
|
178
|
+
if(i != 0 && ch == "-")
|
179
|
+
{
|
180
|
+
val = val.substring(0, i) + val.substring(i + 1);
|
181
|
+
}
|
182
|
+
// remove character if it is at the start, a '-' and negatives aren't allowed
|
183
|
+
else if(i == 0 && !negative && ch == "-")
|
184
|
+
{
|
185
|
+
val = val.substring(1);
|
186
|
+
}
|
187
|
+
var validChar = false;
|
188
|
+
// loop through validChars
|
189
|
+
for(var j = 0; j < validChars.length; j++)
|
190
|
+
{
|
191
|
+
// if it is valid, break out the loop
|
192
|
+
if(ch == validChars[j])
|
193
|
+
{
|
194
|
+
validChar = true;
|
195
|
+
break;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
// if not a valid character, or a space, remove
|
199
|
+
if(!validChar || ch == " ")
|
200
|
+
{
|
201
|
+
val = val.substring(0, i) + val.substring(i + 1);
|
202
|
+
}
|
203
|
+
}
|
204
|
+
// remove extra decimal characters
|
205
|
+
var firstDecimal = val.indexOf(decimal);
|
206
|
+
if(firstDecimal > 0)
|
207
|
+
{
|
208
|
+
for(var i = length - 1; i > firstDecimal; i--)
|
209
|
+
{
|
210
|
+
var ch = val.charAt(i);
|
211
|
+
// remove decimal character
|
212
|
+
if(ch == decimal)
|
213
|
+
{
|
214
|
+
val = val.substring(0, i) + val.substring(i + 1);
|
215
|
+
}
|
216
|
+
}
|
217
|
+
}
|
218
|
+
// set the value and prevent the cursor moving to the end
|
219
|
+
this.value = val;
|
220
|
+
$.fn.setSelection(this, carat);
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
$.fn.numeric.blur = function()
|
225
|
+
{
|
226
|
+
var decimal = $.data(this, "numeric.decimal");
|
227
|
+
var callback = $.data(this, "numeric.callback");
|
228
|
+
var val = this.value;
|
229
|
+
if(val != "")
|
230
|
+
{
|
231
|
+
var re = new RegExp("^\\d+$|\\d*" + decimal + "\\d+");
|
232
|
+
if(!re.exec(val))
|
233
|
+
{
|
234
|
+
callback.apply(this);
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
$.fn.removeNumeric = function()
|
240
|
+
{
|
241
|
+
return this.data("numeric.decimal", null).data("numeric.negative", null).data("numeric.callback", null).unbind("keypress", $.fn.numeric.keypress).unbind("blur", $.fn.numeric.blur);
|
242
|
+
}
|
243
|
+
|
244
|
+
// Based on code from http://javascript.nwbox.com/cursor_position/ (Diego Perini <dperini@nwbox.com>)
|
245
|
+
$.fn.getSelectionStart = function(o)
|
246
|
+
{
|
247
|
+
if (o.createTextRange)
|
248
|
+
{
|
249
|
+
var r = document.selection.createRange().duplicate();
|
250
|
+
r.moveEnd('character', o.value.length);
|
251
|
+
if (r.text == '') return o.value.length;
|
252
|
+
return o.value.lastIndexOf(r.text);
|
253
|
+
} else return o.selectionStart;
|
254
|
+
}
|
255
|
+
|
256
|
+
// set the selection, o is the object (input), p is the position ([start, end] or just start)
|
257
|
+
$.fn.setSelection = function(o, p)
|
258
|
+
{
|
259
|
+
// if p is number, start and end are the same
|
260
|
+
if(typeof p == "number") p = [p, p];
|
261
|
+
// only set if p is an array of length 2
|
262
|
+
if(p && p.constructor == Array && p.length == 2)
|
263
|
+
{
|
264
|
+
if (o.createTextRange)
|
265
|
+
{
|
266
|
+
var r = o.createTextRange();
|
267
|
+
r.collapse(true);
|
268
|
+
r.moveStart('character', p[0]);
|
269
|
+
r.moveEnd('character', p[1]);
|
270
|
+
r.select();
|
271
|
+
}
|
272
|
+
else if(o.setSelectionRange)
|
273
|
+
{
|
274
|
+
o.focus();
|
275
|
+
o.setSelectionRange(p[0], p[1]);
|
276
|
+
}
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
280
|
})(jQuery);
|