card-mod-format 0.14.1 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/script/decko/clicks_and_hovers.js.coffee +49 -0
- data/assets/script/decko/decko.js.coffee +32 -0
- data/assets/script/decko/decko_jquery.js.coffee +25 -0
- data/assets/script/decko/slot.js.coffee +150 -0
- data/assets/script/decko/slot_ready.js.coffee +11 -0
- data/assets/script/decko/slotter.js.coffee +208 -0
- data/assets/script/jquery/jquery-ui.min.js +13 -0
- data/assets/script/jquery/jquery.autosize.js +274 -0
- data/assets/script/jquery/jquery.ui.autocomplete.html.js +41 -0
- data/assets/script/manifest.yml +38 -0
- data/assets/style/common.scss +73 -0
- data/assets/style/logo_and_credit.scss +24 -0
- data/assets/style/menu.scss +43 -0
- data/assets/style/messaging.scss +59 -0
- data/assets/style/misc.scss +90 -0
- data/assets/style/open_and_closed.scss +68 -0
- data/data/files/credit_image.svg +59 -0
- data/data/files/mod_format_script_asset_output/file.js +66 -0
- data/data/real.yml +67 -0
- data/lib/card/format/html_format.rb +0 -2
- data/lib/card/mod/format.rb +4 -0
- data/lib/card/path.rb +20 -20
- data/set/all/base.rb +1 -11
- data/set/all/content.rb +3 -11
- data/set/all/csv.rb +22 -74
- data/set/all/data.rb +2 -2
- data/set/all/demo.rb +6 -2
- data/set/all/error.rb +1 -1
- data/set/all/html/error.rb +1 -1
- data/set/all/html/head.rb +22 -12
- data/set/all/html/header.rb +10 -40
- data/set/all/html/header_wrap.haml +3 -4
- data/set/all/html/labeled.haml +1 -1
- data/set/all/html/menu.rb +36 -12
- data/set/all/html/views.rb +8 -17
- data/set/all/html/wrap.rb +5 -4
- data/set/all/html.rb +2 -3
- data/set/all/json.rb +1 -5
- data/set/right/head.rb +1 -0
- data/set/type/cardtype.rb +4 -6
- data/set/type/json.rb +1 -1
- data/set/type/number.rb +1 -16
- data/vendor/jquery_file_upload/LICENSE.txt +20 -0
- data/vendor/jquery_file_upload/README.md +224 -0
- data/vendor/jquery_file_upload/SECURITY.md +227 -0
- data/vendor/jquery_file_upload/VULNERABILITIES.md +118 -0
- data/vendor/jquery_file_upload/cors/postmessage.html +85 -0
- data/vendor/jquery_file_upload/cors/result.html +26 -0
- data/vendor/jquery_file_upload/css/jquery.fileupload-noscript.css +22 -0
- data/vendor/jquery_file_upload/css/jquery.fileupload-ui-noscript.css +17 -0
- data/vendor/jquery_file_upload/css/jquery.fileupload-ui.css +68 -0
- data/vendor/jquery_file_upload/css/jquery.fileupload.css +36 -0
- data/vendor/jquery_file_upload/docker-compose.yml +55 -0
- data/vendor/jquery_file_upload/img/loading.gif +0 -0
- data/vendor/jquery_file_upload/img/progressbar.gif +0 -0
- data/vendor/jquery_file_upload/index.html +357 -0
- data/vendor/jquery_file_upload/js/cors/jquery.postmessage-transport.js +126 -0
- data/vendor/jquery_file_upload/js/cors/jquery.xdr-transport.js +97 -0
- data/vendor/jquery_file_upload/js/demo.js +75 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload-audio.js +101 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload-image.js +347 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload-process.js +170 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload-ui.js +759 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload-validate.js +119 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload-video.js +101 -0
- data/vendor/jquery_file_upload/js/jquery.fileupload.js +1604 -0
- data/vendor/jquery_file_upload/js/jquery.iframe-transport.js +227 -0
- data/vendor/jquery_file_upload/js/vendor/jquery.ui.widget.js +805 -0
- data/vendor/jquery_file_upload/package-lock.json +6853 -0
- data/vendor/jquery_file_upload/package.json +116 -0
- data/vendor/jquery_file_upload/server/gae-python/app.yaml +18 -0
- data/vendor/jquery_file_upload/server/gae-python/main.py +204 -0
- data/vendor/jquery_file_upload/server/gae-python/static/favicon.ico +0 -0
- data/vendor/jquery_file_upload/server/gae-python/static/robots.txt +2 -0
- data/vendor/jquery_file_upload/server/php/Dockerfile +44 -0
- data/vendor/jquery_file_upload/server/php/UploadHandler.php +1480 -0
- data/vendor/jquery_file_upload/server/php/index.php +15 -0
- data/vendor/jquery_file_upload/server/php/php.ini +5 -0
- data/vendor/jquery_file_upload/test/index.html +49 -0
- data/vendor/jquery_file_upload/test/unit.js +989 -0
- data/vendor/jquery_file_upload/test/vendor/chai.js +10854 -0
- data/vendor/jquery_file_upload/test/vendor/mocha.css +325 -0
- data/vendor/jquery_file_upload/test/vendor/mocha.js +18178 -0
- data/vendor/jquery_file_upload/wdio/LICENSE.txt +20 -0
- data/vendor/jquery_file_upload/wdio/assets/black+white-3x2.jpg +0 -0
- data/vendor/jquery_file_upload/wdio/assets/black+white-60x40.gif +0 -0
- data/vendor/jquery_file_upload/wdio/conf/chrome.js +40 -0
- data/vendor/jquery_file_upload/wdio/conf/firefox.js +25 -0
- data/vendor/jquery_file_upload/wdio/hooks/index.js +36 -0
- data/vendor/jquery_file_upload/wdio/test/pages/file-upload.js +79 -0
- data/vendor/jquery_file_upload/wdio/test/specs/01-file-upload.js +25 -0
- data/vendor/jquery_file_upload/wdio/wdio.conf.js +4 -0
- data/vendor/jquery_rails/CHANGELOG.md +359 -0
- data/vendor/jquery_rails/CONTRIBUTING.md +132 -0
- data/vendor/jquery_rails/Gemfile +22 -0
- data/vendor/jquery_rails/MIT-LICENSE +21 -0
- data/vendor/jquery_rails/README.md +75 -0
- data/vendor/jquery_rails/Rakefile +59 -0
- data/vendor/jquery_rails/VERSIONS.md +62 -0
- data/vendor/jquery_rails/jquery-rails.gemspec +26 -0
- data/vendor/jquery_rails/lib/jquery/assert_select.rb +149 -0
- data/vendor/jquery_rails/lib/jquery/rails/engine.rb +6 -0
- data/vendor/jquery_rails/lib/jquery/rails/version.rb +9 -0
- data/vendor/jquery_rails/lib/jquery/rails.rb +8 -0
- data/vendor/jquery_rails/lib/jquery-rails.rb +1 -0
- data/vendor/jquery_rails/test/assert_select_jquery_test.rb +85 -0
- data/vendor/jquery_rails/test/test_helper.rb +6 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery.js +11008 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery.min.js +5 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery.min.map +1 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.js +9814 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.min.js +4 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery2.min.map +1 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.js +10364 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.min.js +2 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery3.min.map +1 -0
- data/vendor/jquery_rails/vendor/assets/javascripts/jquery_ujs.js +555 -0
- metadata +104 -7
@@ -0,0 +1,20 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright © 2019 Sebastian Tschan, https://blueimp.net
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
Binary file
|
Binary file
|
@@ -0,0 +1,40 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
/* eslint-disable jsdoc/valid-types */
|
4
|
+
/** @type WebdriverIO.Config */
|
5
|
+
const config = {
|
6
|
+
hostname: 'chromedriver',
|
7
|
+
path: '/',
|
8
|
+
capabilities: [
|
9
|
+
{
|
10
|
+
// Set maxInstances to 1 if screen recordings are enabled:
|
11
|
+
// maxInstances: 1,
|
12
|
+
browserName: 'chrome',
|
13
|
+
'goog:chromeOptions': {
|
14
|
+
// Disable headless mode if screen recordings are enabled:
|
15
|
+
args: ['--headless', '--window-size=1440,900']
|
16
|
+
}
|
17
|
+
}
|
18
|
+
],
|
19
|
+
logLevel: 'warn',
|
20
|
+
reporters: ['spec'],
|
21
|
+
framework: 'mocha',
|
22
|
+
mochaOpts: {
|
23
|
+
timeout: 60000
|
24
|
+
},
|
25
|
+
specs: ['test/specs/**/*.js'],
|
26
|
+
maximizeWindow: true,
|
27
|
+
screenshots: {
|
28
|
+
saveOnFail: true
|
29
|
+
},
|
30
|
+
videos: {
|
31
|
+
enabled: false,
|
32
|
+
resolution: '1440x900',
|
33
|
+
startDelay: 500,
|
34
|
+
stopDelay: 500
|
35
|
+
},
|
36
|
+
assetsDir: '/home/webdriver/assets/',
|
37
|
+
baseUrl: 'http://example'
|
38
|
+
}
|
39
|
+
|
40
|
+
exports.config = Object.assign({}, require('../hooks'), config)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
/* eslint-disable jsdoc/valid-types */
|
4
|
+
/** @type WebdriverIO.Config */
|
5
|
+
const config = {
|
6
|
+
hostname: 'geckodriver',
|
7
|
+
capabilities: [
|
8
|
+
{
|
9
|
+
// geckodriver supports no parallel sessions:
|
10
|
+
maxInstances: 1,
|
11
|
+
browserName: 'firefox',
|
12
|
+
'moz:firefoxOptions': {
|
13
|
+
//args: ['-headless', '--window-size=1440,900']
|
14
|
+
}
|
15
|
+
}
|
16
|
+
],
|
17
|
+
videos: {
|
18
|
+
enabled: true,
|
19
|
+
resolution: '1440x900',
|
20
|
+
startDelay: 500,
|
21
|
+
stopDelay: 500
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
exports.config = Object.assign({}, require('./chrome').config, config)
|
@@ -0,0 +1,36 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
/* global browser, Promise */
|
4
|
+
|
5
|
+
const cmds = require('wdio-screen-commands')
|
6
|
+
|
7
|
+
/* eslint-disable jsdoc/valid-types */
|
8
|
+
/** @type WebdriverIO.HookFunctionExtension */
|
9
|
+
const config = {
|
10
|
+
before: async () => {
|
11
|
+
// Add browser commands:
|
12
|
+
browser.addCommand('saveScreenshotByName', cmds.saveScreenshotByName)
|
13
|
+
browser.addCommand('saveAndDiffScreenshot', cmds.saveAndDiffScreenshot)
|
14
|
+
// Add element commands:
|
15
|
+
browser.addCommand('saveScreenshotByName', cmds.saveScreenshotByName, true)
|
16
|
+
browser.addCommand(
|
17
|
+
'saveAndDiffScreenshot',
|
18
|
+
cmds.saveAndDiffScreenshot,
|
19
|
+
true
|
20
|
+
)
|
21
|
+
if (browser.config.appium)
|
22
|
+
await browser.updateSettings(browser.config.appium)
|
23
|
+
if (browser.config.maximizeWindow) await browser.maximizeWindow()
|
24
|
+
},
|
25
|
+
beforeTest: async test => {
|
26
|
+
await cmds.startScreenRecording(test)
|
27
|
+
},
|
28
|
+
afterTest: async (test, context, result) => {
|
29
|
+
await Promise.all([
|
30
|
+
cmds.stopScreenRecording(test, result),
|
31
|
+
cmds.saveScreenshotByTest(test, result)
|
32
|
+
])
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
module.exports = config
|
@@ -0,0 +1,79 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
/* global browser, $, $$ */
|
4
|
+
/* eslint-disable class-methods-use-this */
|
5
|
+
|
6
|
+
class FileUpload {
|
7
|
+
get fileinput() {
|
8
|
+
return $('.fileinput-button input')
|
9
|
+
}
|
10
|
+
get start() {
|
11
|
+
return $('.fileupload-buttonbar .start')
|
12
|
+
}
|
13
|
+
get toggle() {
|
14
|
+
return $('.fileupload-buttonbar .toggle')
|
15
|
+
}
|
16
|
+
get remove() {
|
17
|
+
return $('.fileupload-buttonbar .delete')
|
18
|
+
}
|
19
|
+
get processing() {
|
20
|
+
return $$('.files .processing')
|
21
|
+
}
|
22
|
+
get uploads() {
|
23
|
+
return $$('.files .template-upload')
|
24
|
+
}
|
25
|
+
get downloads() {
|
26
|
+
return $$('.files .template-download')
|
27
|
+
}
|
28
|
+
get checked() {
|
29
|
+
return $$('.files .toggle:checked')
|
30
|
+
}
|
31
|
+
/**
|
32
|
+
* Opens the file upload form.
|
33
|
+
*
|
34
|
+
* @param {number} [timeout] Wait timeout
|
35
|
+
*/
|
36
|
+
async open(timeout) {
|
37
|
+
await browser.url('/')
|
38
|
+
await this.fileinput.waitForExist({ timeout })
|
39
|
+
}
|
40
|
+
/**
|
41
|
+
* Uploads files.
|
42
|
+
*
|
43
|
+
* @param {Array<string>} files Files to upload
|
44
|
+
* @param {number} [timeout] Wait timeout
|
45
|
+
*/
|
46
|
+
async upload(files, timeout) {
|
47
|
+
await this.fileinput.addValue(files.join('\n'))
|
48
|
+
await browser.waitUntil(async () => !(await this.processing.length), {
|
49
|
+
timeout
|
50
|
+
})
|
51
|
+
await this.start.click()
|
52
|
+
await browser.waitUntil(async () => !!(await this.downloads.length), {
|
53
|
+
timeout
|
54
|
+
})
|
55
|
+
await browser.waitUntil(async () => !(await this.uploads.length), {
|
56
|
+
timeout
|
57
|
+
})
|
58
|
+
}
|
59
|
+
/**
|
60
|
+
* Deletes uploaded files.
|
61
|
+
*
|
62
|
+
* @param {number} [timeout] Wait timeout
|
63
|
+
*/
|
64
|
+
async delete(timeout) {
|
65
|
+
await this.toggle.click()
|
66
|
+
await browser.waitUntil(
|
67
|
+
async () => (await this.downloads.length) === (await this.checked.length),
|
68
|
+
{
|
69
|
+
timeout
|
70
|
+
}
|
71
|
+
)
|
72
|
+
await this.remove.click()
|
73
|
+
await browser.waitUntil(async () => !(await this.downloads.length), {
|
74
|
+
timeout
|
75
|
+
})
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
module.exports = new FileUpload()
|
@@ -0,0 +1,25 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
/* global browser, describe, it */
|
4
|
+
|
5
|
+
const FileUpload = require('../pages/file-upload')
|
6
|
+
const assetsDir = browser.config.assetsDir
|
7
|
+
|
8
|
+
describe('File Upload', () => {
|
9
|
+
if (!assetsDir) return
|
10
|
+
|
11
|
+
it('uploads files', async () => {
|
12
|
+
await FileUpload.open()
|
13
|
+
await FileUpload.upload([
|
14
|
+
assetsDir + 'black+white-60x40.gif',
|
15
|
+
assetsDir + 'black+white-3x2.jpg'
|
16
|
+
])
|
17
|
+
await browser.saveAndDiffScreenshot('Files uploaded')
|
18
|
+
})
|
19
|
+
|
20
|
+
it('deletes files', async () => {
|
21
|
+
await FileUpload.open()
|
22
|
+
await FileUpload.delete()
|
23
|
+
await browser.saveAndDiffScreenshot('Files deleted')
|
24
|
+
})
|
25
|
+
})
|
@@ -0,0 +1,359 @@
|
|
1
|
+
## 4.3.3
|
2
|
+
|
3
|
+
- update jquery to 3.3.1
|
4
|
+
|
5
|
+
## 4.3.2
|
6
|
+
|
7
|
+
- update jquery to 3.3.0
|
8
|
+
- Add possibility to test HTML: all, attribute prefix, attribute contains,
|
9
|
+
attribute ends with, child, and class selectors
|
10
|
+
- Fix matching mutiple calls for the same selector/function exception
|
11
|
+
|
12
|
+
## 4.3.1
|
13
|
+
|
14
|
+
- update jquery to 3.2.1
|
15
|
+
|
16
|
+
## 4.3.0
|
17
|
+
|
18
|
+
- update jquery to 3.2.0
|
19
|
+
- Add possibility to test HTML attribute selectors
|
20
|
+
|
21
|
+
## 4.2.2
|
22
|
+
|
23
|
+
- update jquery to 3.1.1
|
24
|
+
|
25
|
+
## 4.2.1
|
26
|
+
|
27
|
+
- update jquery to 3.1.0
|
28
|
+
|
29
|
+
## 4.2.0
|
30
|
+
|
31
|
+
- Support jQuery 3.x
|
32
|
+
- Update jquery-ujs to 1.2.2
|
33
|
+
- Update jQuery to 1.12.4 and 2.2.4
|
34
|
+
|
35
|
+
## 4.1.1
|
36
|
+
|
37
|
+
- Update jQuery to 1.12.1 and 2.2.1
|
38
|
+
- Update jquery-ujs to 1.2.1
|
39
|
+
|
40
|
+
## 4.1.0
|
41
|
+
|
42
|
+
- Update jQuery to 1.12.0 and 2.2.0
|
43
|
+
- Update jquery-ujs to 1.2.0
|
44
|
+
|
45
|
+
## 4.0.5
|
46
|
+
|
47
|
+
- Specify that Ruby version 1.9.3+ is required
|
48
|
+
- Test on Ruby 2.2
|
49
|
+
- Update jquery-ujs from 1.0.4 to 1.1.0
|
50
|
+
|
51
|
+
## 4.0.4
|
52
|
+
|
53
|
+
- Fix CSP bypass vulnerability. CVE-2015-1840
|
54
|
+
|
55
|
+
## 4.0.1
|
56
|
+
|
57
|
+
- Fix RubyGems permission problem.
|
58
|
+
|
59
|
+
## 4.0.0
|
60
|
+
|
61
|
+
- Minimum dependency set to Rails 4.2
|
62
|
+
- Updated to jquery-ujs 1.0.2
|
63
|
+
- Support jQuery 1.x and 2.x
|
64
|
+
|
65
|
+
## 3.1.3 (16 June 2015)
|
66
|
+
|
67
|
+
- Fix CSP bypass vulnerability. CVE-2015-1840
|
68
|
+
|
69
|
+
## 3.1.2 (1 September 2014)
|
70
|
+
|
71
|
+
- Updated to jquery-ujs 1.0.1
|
72
|
+
|
73
|
+
## 3.1.1 (23 June 2014)
|
74
|
+
|
75
|
+
- Updated to jQuery 1.11.1
|
76
|
+
- Updated to jquery-ujs 1.0.0
|
77
|
+
|
78
|
+
## 3.1.0 (29 January 2014)
|
79
|
+
|
80
|
+
- Updated to jQuery 1.11.0
|
81
|
+
- Updated to latest jquery-ujs
|
82
|
+
- Added development rake task for updating jQuery
|
83
|
+
|
84
|
+
## 3.0.4 (10 July 2013)
|
85
|
+
|
86
|
+
- Fixed jQuery source map
|
87
|
+
|
88
|
+
## 3.0.3 (10 July 2013)
|
89
|
+
|
90
|
+
- Updated to jQuery 1.10.2
|
91
|
+
|
92
|
+
## 3.0.2 (04 July 2013)
|
93
|
+
|
94
|
+
- Updated to latest jquery-ujs
|
95
|
+
|
96
|
+
## 3.0.1 (07 June 2013)
|
97
|
+
|
98
|
+
- Updated to jQuery 1.10.1
|
99
|
+
- Removed jQuery UI from generator
|
100
|
+
|
101
|
+
## 3.0.0 (29 May 2013)
|
102
|
+
|
103
|
+
- Removed jQuery UI
|
104
|
+
|
105
|
+
## 2.3.0 (29 May 2013)
|
106
|
+
|
107
|
+
- Updated to jQuery 1.10.0
|
108
|
+
- Updated to jQuery UI 1.10.3
|
109
|
+
|
110
|
+
## 2.2.2 (29 May 2013)
|
111
|
+
|
112
|
+
- Updated to latest jquery-ujs
|
113
|
+
|
114
|
+
## 2.2.1 (08 February 2013)
|
115
|
+
|
116
|
+
- Updated to jQuery 1.9.1
|
117
|
+
- Updated to latest jquery-ujs
|
118
|
+
|
119
|
+
## 2.2.0 (19 January 2013)
|
120
|
+
|
121
|
+
- Updated to jQuery 1.9.0
|
122
|
+
- Updated to latest jquery-ujs
|
123
|
+
|
124
|
+
## 2.1.4 (26 November 2012)
|
125
|
+
|
126
|
+
- Updated to jQuery 1.8.3
|
127
|
+
- Updated to jQuery UI 1.9.2
|
128
|
+
- Rails 4 compatibility
|
129
|
+
- Rails 3.1 compatibility (without asset pipeline)
|
130
|
+
- Rails 3.0 compatibility
|
131
|
+
|
132
|
+
## 2.1.3 (24 September 2012)
|
133
|
+
|
134
|
+
- Updated to latest jquery-ujs
|
135
|
+
- Updated to jQuery 1.8.2
|
136
|
+
|
137
|
+
## 2.1.2 (06 September 2012)
|
138
|
+
|
139
|
+
- Updated to latest jquery-ujs
|
140
|
+
- required radio bugfix
|
141
|
+
- Updated to jQuery 1.8.1
|
142
|
+
|
143
|
+
## 2.1.1 (18 August 2012)
|
144
|
+
|
145
|
+
- Updated to latest jquery-ujs
|
146
|
+
- ajax:aborted:file bugfixes
|
147
|
+
|
148
|
+
## 2.1.0 (16 August 2012)
|
149
|
+
|
150
|
+
- Updated to latest jquery-ujs
|
151
|
+
- jQuery 1.8.0 compatibility
|
152
|
+
- Updated to jQuery 1.8.0
|
153
|
+
- Updated to jQuery UI 1.8.23
|
154
|
+
|
155
|
+
## 2.0.3 (16 August 2012)
|
156
|
+
|
157
|
+
- Updated to latest jquery-ujs
|
158
|
+
- created `rails:attachBindings` to allow for customization of $.rails object settings
|
159
|
+
- created `ajax:send` event to provide access to jqXHR object from ajax requests
|
160
|
+
- added support for `data-with-credentials`
|
161
|
+
|
162
|
+
## 2.0.2 (03 April 2012)
|
163
|
+
|
164
|
+
- Updated to jQuery 1.7.2
|
165
|
+
- Updated to jQuery UI 1.8.18
|
166
|
+
- Updated to latest jquery-ujs
|
167
|
+
- Override provided for obtaining `href`
|
168
|
+
- Edit `crossDomain` and `dataType` from `ajax:before` event
|
169
|
+
|
170
|
+
## 2.0.1 (28 February 2012)
|
171
|
+
|
172
|
+
- Fixed Rails 3.2 dependency issue
|
173
|
+
|
174
|
+
## 2.0 (20 December 2011)
|
175
|
+
|
176
|
+
- Minimum dependency set to Rails 3.2
|
177
|
+
|
178
|
+
## 1.0.19 (26 November 2011)
|
179
|
+
|
180
|
+
- Updated to jQuery 1.7.1
|
181
|
+
- Updated to latest jquery-ujs
|
182
|
+
- Fixed disabled links to re-enable when `ajax:before` or
|
183
|
+
`ajax:beforeSend` are canceled
|
184
|
+
- Switched from deprecated `live` to `delegate`
|
185
|
+
|
186
|
+
## 1.0.18 (18 November 2011)
|
187
|
+
|
188
|
+
- Updated to latest jquery-ujs
|
189
|
+
- Fixed event parameter for form submit event handlers in IE for
|
190
|
+
jQuery 1.6.x
|
191
|
+
- Fixed form submit event handlers for jQuery 1.7
|
192
|
+
|
193
|
+
## 1.0.17 (9 November 2011)
|
194
|
+
|
195
|
+
- Updated to jQuery 1.7
|
196
|
+
- Updated to latest jquery-ujs
|
197
|
+
- Moved file comment above function so it won't be included in
|
198
|
+
compressed version
|
199
|
+
|
200
|
+
## 1.0.16 (12 October 2011)
|
201
|
+
|
202
|
+
- Updated to jQuery 1.6.4
|
203
|
+
- Updated to jQuery UI 1.8.16
|
204
|
+
|
205
|
+
## 1.0.15 (12 October 2011)
|
206
|
+
|
207
|
+
- Updated to latest jquery-ujs
|
208
|
+
- Fixed formInputClickSelector `button[type]` for IE7
|
209
|
+
- Copy target attribute to generated form for `a[data-method]` links
|
210
|
+
- Return true (abort ajax) for ctrl- and meta-clicks on remote links
|
211
|
+
- Use jQuery `.prop()` for disabling/enabling elements
|
212
|
+
|
213
|
+
## 1.0.14 (08 September 2011)
|
214
|
+
|
215
|
+
- Updated to latest jquery-ujs
|
216
|
+
- Added `disable-with` support for links
|
217
|
+
- minor bug fixes
|
218
|
+
- Added `data-remote` support for change events of all input types
|
219
|
+
- Added install generator for Rails 3.1 with instructional message
|
220
|
+
|
221
|
+
## 1.0.13 (11 August 2011)
|
222
|
+
|
223
|
+
- Updated to latest jquery-ujs with `novalidate` support
|
224
|
+
- No more support for jquery older than v1.6
|
225
|
+
|
226
|
+
## 1.0.12 (23 June 2011)
|
227
|
+
|
228
|
+
- Updated to latest jquery-ujs with 'blank form action' and
|
229
|
+
data-remote support for select elements
|
230
|
+
|
231
|
+
## 1.0.11 (15 June 2011)
|
232
|
+
|
233
|
+
- Updated to latest jqueyr-ujs with cross-domain support
|
234
|
+
|
235
|
+
[See jquery-ujs issue 167](https://github.com/rails/jquery-ujs/pull/167) for relevant discussion
|
236
|
+
|
237
|
+
## 1.0.10 (13 June 2011)
|
238
|
+
|
239
|
+
- Updated to latest jqueyr-ujs with bug fixes
|
240
|
+
|
241
|
+
## 1.0.9 (25 May 2011)
|
242
|
+
|
243
|
+
- Merged with new rails repo (3.1 fix)
|
244
|
+
|
245
|
+
## 1.0.8 (25 May 2011)
|
246
|
+
|
247
|
+
- Updated to latest jquery-ujs with `[disabled][required]` fix
|
248
|
+
|
249
|
+
## 1.0.7 (21 May 2011)
|
250
|
+
|
251
|
+
- Fix assert_select_jquery's bad call to unescape_rjs
|
252
|
+
|
253
|
+
## 1.0.6 (21 May 2011)
|
254
|
+
|
255
|
+
- Updated to latest jquery-ujs with `data-params` support
|
256
|
+
|
257
|
+
## 1.0.5 (17 May 2011)
|
258
|
+
|
259
|
+
- Updated to latest jquery-ujs
|
260
|
+
- Remove old rails.js in Rails 3.0 generator
|
261
|
+
|
262
|
+
## 1.0.4 (17 May 2011)
|
263
|
+
|
264
|
+
- Fix exception in Rails 3.0 generator
|
265
|
+
|
266
|
+
## 1.0.3 (17 May 2011)
|
267
|
+
|
268
|
+
- Update to jQuery 1.6.1
|
269
|
+
- Remove useless --version generator option
|
270
|
+
|
271
|
+
## 1.0.2 (12 May 2011)
|
272
|
+
|
273
|
+
- Fix Rails 3.0 now that rails.js is named jquery_ujs.js
|
274
|
+
|
275
|
+
## 1.0.1 (10 May 2011)
|
276
|
+
|
277
|
+
- Stop downloading rails.js from GitHub
|
278
|
+
- Vendor jQuery UI for those who want it
|
279
|
+
- Fix assert_select_jquery now that Rails 3.1 has no RJS at all
|
280
|
+
- Fix rails dependency to just be railties
|
281
|
+
|
282
|
+
## 1.0.rc (3 May 2011)
|
283
|
+
|
284
|
+
- Rails 3.1 asset pipeline edition
|
285
|
+
- Removes generators and railties
|
286
|
+
- Just provides jquery.js and jquery_ujs.js
|
287
|
+
- Still compatible with Rails 3.0 via the old generator code
|
288
|
+
|
289
|
+
## 0.2.7 (5 February 2011)
|
290
|
+
|
291
|
+
- Updated to use jQuery 1.5 by default
|
292
|
+
|
293
|
+
## 0.2.6 (1 December 2010)
|
294
|
+
|
295
|
+
Feature:
|
296
|
+
|
297
|
+
- Updated to use jQuery 1.4.4 by default
|
298
|
+
|
299
|
+
## 0.2.5 (4 November 2010)
|
300
|
+
|
301
|
+
Bugfix:
|
302
|
+
|
303
|
+
- Download JQuery Rails UJS via HTTPS since Github is now HTTPS only
|
304
|
+
|
305
|
+
## 0.2.4 (16 October 2010)
|
306
|
+
|
307
|
+
Features:
|
308
|
+
|
309
|
+
- Updated to use the new jQuery 1.4.3 by default, with the IE .live() bug fixed
|
310
|
+
- Always download the newest 1.x release of jQuery UI
|
311
|
+
- Try to install unknown versions of jQuery, with fallback to the default
|
312
|
+
- Print informative messages in the correct Generator style
|
313
|
+
|
314
|
+
## 0.2.3 (13 October 2010)
|
315
|
+
|
316
|
+
Features:
|
317
|
+
|
318
|
+
- Support Edge Rails 3.1 by depending on Rails ~>3.0
|
319
|
+
- Add Sam Ruby's assert_select_jquery test helper method
|
320
|
+
- Use jquery.min only in production (and not in the test env)
|
321
|
+
|
322
|
+
## 0.2.2 (8 October 2010)
|
323
|
+
|
324
|
+
Feature:
|
325
|
+
|
326
|
+
- Depend on Rails >=3.0 && <4.0 for edge Rails compatibility
|
327
|
+
|
328
|
+
## 0.2.1 (2 October 2010)
|
329
|
+
|
330
|
+
Bugfix:
|
331
|
+
|
332
|
+
- Default to jQuery 1.4.1 as recommended by jQuery-ujs
|
333
|
+
due to a bug in 1.4.2 (http://jsbin.com/uboxu3/7/)
|
334
|
+
|
335
|
+
## 0.2 (2 October 2010)
|
336
|
+
|
337
|
+
Features:
|
338
|
+
|
339
|
+
- Allow specifying which version of jQuery to install
|
340
|
+
- Add generator tests (thanks, Louis T.)
|
341
|
+
- Automatically use non-minified JS in development mode
|
342
|
+
|
343
|
+
## 0.1.3 (16 September 2010)
|
344
|
+
|
345
|
+
Bugfix:
|
346
|
+
|
347
|
+
- allow javascript :defaults tag to be overridden
|
348
|
+
|
349
|
+
## 0.1.2 (18 August 2010)
|
350
|
+
|
351
|
+
Bugfix:
|
352
|
+
|
353
|
+
- check for jQueryUI in the right place
|
354
|
+
|
355
|
+
## 0.1.1 (16 August 2010)
|
356
|
+
|
357
|
+
Bugfix:
|
358
|
+
|
359
|
+
- fix generator by resolving namespace conflict between Jquery::Rails and ::Rails
|