Skip to content

Commit 1d1f3bc

Browse files
committed
Merge branch '1.11.x' of github.com:chamilo/chamilo-lms into 1.11.x
2 parents cb600c9 + ca2e7a5 commit 1d1f3bc

File tree

370 files changed

+9885
-4956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

370 files changed

+9885
-4956
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "datepair.js",
3+
"version": "0.4.17",
4+
"main": [
5+
"dist/datepair.js",
6+
"dist/jquery.datepair.js"
7+
],
8+
"ignore": [
9+
"**/.*",
10+
"node_modules",
11+
"components",
12+
"spec",
13+
"Gruntfile.js",
14+
"src",
15+
"bower_components",
16+
"test",
17+
"tests"
18+
],
19+
"homepage": "http://jonthornton.github.com/Datepair.js",
20+
"authors": [
21+
"Jon Thornton"
22+
],
23+
"description": "A javascript plugin for intelligently selecting date and time ranges inspired by Google Calendar.",
24+
"keywords": [
25+
"timepicker",
26+
"datepicker",
27+
"time",
28+
"date",
29+
"picker",
30+
"ui",
31+
"calendar",
32+
"input",
33+
"form"
34+
],
35+
"license": "MIT",
36+
"_release": "0.4.17",
37+
"_resolution": {
38+
"type": "version",
39+
"tag": "0.4.17",
40+
"commit": "8ab365ca593b66062bf4b611ed74a4f50616d64f"
41+
},
42+
"_source": "https://github.com/jonthornton/Datepair.js.git",
43+
"_target": "*",
44+
"_originalSource": "datepair"
45+
}
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
module.exports = function(grunt) {
2+
grunt.initConfig({
3+
pkg: grunt.file.readJSON('package.json'),
4+
meta: {
5+
banner: '/*!\n' +
6+
' * <%= pkg.name %> v<%= pkg.version %> - <%= pkg.description %>\n' +
7+
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %> - <%= pkg.homepage %>\n' +
8+
' * License: <%= pkg.license %>\n' +
9+
' */\n\n'
10+
},
11+
12+
rig: {
13+
options: {
14+
banner: '<%= meta.banner %>'
15+
},
16+
dist: {
17+
files: {
18+
'dist/datepair.js': ['src/wrapper.js'],
19+
'dist/jquery.datepair.js' : ['src/jquery.datepair.js'],
20+
}
21+
}
22+
},
23+
24+
uglify: {
25+
options: {
26+
banner: '<%= meta.banner %>',
27+
report: 'min'
28+
},
29+
dist: {
30+
files: {
31+
'dist/datepair.min.js': 'dist/datepair.js',
32+
'dist/jquery.datepair.min.js': ['dist/datepair.js', 'dist/jquery.datepair.js'],
33+
}
34+
}
35+
},
36+
jshint: {
37+
all: ['src/*.js']
38+
},
39+
40+
watch: {
41+
options : {
42+
atBegin : true
43+
},
44+
files: ['src/*.js'],
45+
tasks: ['rig']
46+
}
47+
});
48+
49+
grunt.loadNpmTasks('grunt-contrib-uglify');
50+
grunt.loadNpmTasks('grunt-rigger');
51+
grunt.loadNpmTasks('grunt-contrib-watch');
52+
grunt.loadNpmTasks('grunt-contrib-jshint');
53+
54+
grunt.registerTask('default', ['rig', 'uglify']);
55+
};
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "datepair.js",
3+
"version": "0.4.17",
4+
"main": ["dist/datepair.js", "dist/jquery.datepair.js"],
5+
"ignore": [
6+
"**/.*",
7+
"node_modules",
8+
"components",
9+
"spec",
10+
"Gruntfile.js",
11+
"src",
12+
"bower_components",
13+
"test",
14+
"tests"
15+
],
16+
"homepage": "http://jonthornton.github.com/Datepair.js",
17+
"authors": [
18+
"Jon Thornton"
19+
],
20+
"description": "A javascript plugin for intelligently selecting date and time ranges inspired by Google Calendar.",
21+
"keywords": [ "timepicker", "datepicker", "time", "date", "picker", "ui", "calendar", "input", "form" ],
22+
"license": "MIT"
23+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "datepair",
3+
"version": "0.4.10",
4+
"title": "Datepair.js",
5+
"description": "A plugin for intelligently selecting date and time ranges inspired by Google Calendar.",
6+
"author": {
7+
"name": "Jon Thornton",
8+
"email": "[email protected]",
9+
"url": "https://github.com/jonthornton"
10+
},
11+
"licenses": [
12+
{
13+
"type": "MIT",
14+
"url": "http://opensource.org/licenses/MIT"
15+
}
16+
],
17+
"dependencies": {
18+
"jquery": ">=1.7"
19+
},
20+
"keywords": [ "timepicker", "datepicker", "time", "date", "picker", "ui", "calendar", "input", "form" ],
21+
"homepage": "http://jonthornton.github.com/jquery-datepair/",
22+
"bugs": {
23+
"url": "https://github.com/jonthornton/jquery-datepair/issues"
24+
},
25+
"docs": "https://github.com/jonthornton/jquery-datepair",
26+
"download": "https://github.com/jonthornton/jquery-datepair"
27+
}

0 commit comments

Comments
 (0)