Skip to content

Commit 496c64f

Browse files
committed
Merge with 1.11.x
2 parents d891e26 + 41dcd3b commit 496c64f

File tree

859 files changed

+42337
-69519
lines changed

Some content is hidden

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

859 files changed

+42337
-69519
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Cache directories
2-
!app/cache/.htaccess
3-
42
/app/bootstrap.php.cache
53
/app/cache/*
64
!app/cache/.gitkeep
5+
!app/cache/.htaccess
76
/app/config/parameters.yml
87
/app/logs/*
98
!app/logs/.gitkeep

app/AppKernel.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ public function registerBundles()
3737
new Knp\Bundle\MarkdownBundle\KnpMarkdownBundle(),
3838
// Data grid
3939
new APY\DataGridBundle\APYDataGridBundle(),
40+
new Chamilo\FaqBundle\ChamiloFaqBundle(),
41+
new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
42+
new A2lix\TranslationFormBundle\A2lixTranslationFormBundle(),
4043

4144
// Sonata
4245
new Sonata\EasyExtendsBundle\SonataEasyExtendsBundle(),
@@ -50,7 +53,6 @@ public function registerBundles()
5053
new Sonata\NotificationBundle\SonataNotificationBundle(),
5154
new Sonata\DatagridBundle\SonataDatagridBundle(),
5255
new Sonata\MediaBundle\SonataMediaBundle(),
53-
//new Sonata\TranslationBundle\SonataTranslationBundle(),
5456
new Sonata\PageBundle\SonataPageBundle(),
5557

5658
new Spy\TimelineBundle\SpyTimelineBundle(),
@@ -85,6 +87,7 @@ public function registerBundles()
8587
new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
8688
new FM\ElfinderBundle\FMElfinderBundle(),
8789
new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
90+
new Knp\DoctrineBehaviors\Bundle\DoctrineBehaviorsBundle(),
8891

8992
// User
9093
new FOS\UserBundle\FOSUserBundle(),

app/Migrations/Schema/V111/Version20160330103045.php

+191
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?php
2+
/* For licensing terms, see /license.txt */
3+
4+
namespace Application\Migrations\Schema\V111;
5+
6+
use Application\Migrations\AbstractMigrationChamilo;
7+
use Doctrine\DBAL\Schema\Schema;
8+
9+
/**
10+
* Class Version20160331103600
11+
*/
12+
class Version20160331103600 extends AbstractMigrationChamilo
13+
{
14+
/**
15+
* @param Schema $schema
16+
*
17+
* @throws \Doctrine\DBAL\Schema\SchemaException
18+
*/
19+
public function up(Schema $schema)
20+
{
21+
$this->addSettingCurrent(
22+
'teacher_can_select_course_template',
23+
null,
24+
'radio',
25+
'Course',
26+
'true',
27+
'TeacherCanSelectCourseTemplateTitle',
28+
'TeacherCanSelectCourseTemplateComment',
29+
null,
30+
'',
31+
1,
32+
true,
33+
false,
34+
[
35+
['value' => 'true', 'text' => 'Yes'],
36+
['value' => 'false', 'text' => 'No'],
37+
]
38+
);
39+
}
40+
41+
/**
42+
* @param Schema $schema
43+
*/
44+
public function down(Schema $schema)
45+
{
46+
47+
}
48+
}

app/Resources/public/assets/blueimp-load-image/.bower.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "blueimp-load-image",
33
"homepage": "https://github.com/blueimp/JavaScript-Load-Image",
4-
"version": "2.6.0",
5-
"_release": "2.6.0",
4+
"version": "2.6.1",
5+
"_release": "2.6.1",
66
"_resolution": {
77
"type": "version",
8-
"tag": "v2.6.0",
9-
"commit": "e6864b8a8be83ff88a1596899fc96c6d6cde19c0"
8+
"tag": "v2.6.1",
9+
"commit": "e96ea2ce372c84b26d6cb6556ca2d8d2b32c163e"
1010
},
1111
"_source": "git://github.com/blueimp/JavaScript-Load-Image.git",
1212
"_target": ">=1.13.0",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = require('./js/load-image')
2+
3+
require('./js/load-image-exif')
4+
require('./js/load-image-exif-map')
5+
require('./js/load-image-meta')
6+
require('./js/load-image-orientation')

app/Resources/public/assets/blueimp-load-image/js/load-image-exif-map.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'use strict'
1919
if (typeof define === 'function' && define.amd) {
2020
// Register as an anonymous AMD module:
21-
define(['load-image', 'load-image-exif'], factory)
21+
define(['./load-image', './load-image-exif'], factory)
2222
} else if (typeof module === 'object' && module.exports) {
2323
factory(require('./load-image'), require('./load-image-exif'))
2424
} else {

app/Resources/public/assets/blueimp-load-image/js/load-image-exif.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'use strict'
1616
if (typeof define === 'function' && define.amd) {
1717
// Register as an anonymous AMD module:
18-
define(['load-image', 'load-image-meta'], factory)
18+
define(['./load-image', './load-image-meta'], factory)
1919
} else if (typeof module === 'object' && module.exports) {
2020
factory(require('./load-image'), require('./load-image-meta'))
2121
} else {

app/Resources/public/assets/blueimp-load-image/js/load-image-meta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict'
2020
if (typeof define === 'function' && define.amd) {
2121
// Register as an anonymous AMD module:
22-
define(['load-image'], factory)
22+
define(['./load-image'], factory)
2323
} else if (typeof module === 'object' && module.exports) {
2424
factory(require('./load-image'))
2525
} else {

app/Resources/public/assets/blueimp-load-image/js/load-image-orientation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'use strict'
1616
if (typeof define === 'function' && define.amd) {
1717
// Register as an anonymous AMD module:
18-
define(['load-image'], factory)
18+
define(['./load-image'], factory)
1919
} else if (typeof module === 'object' && module.exports) {
2020
factory(require('./load-image'))
2121
} else {

app/Resources/public/assets/blueimp-load-image/js/load-image.all.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/Resources/public/assets/blueimp-load-image/js/load-image.all.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/Resources/public/assets/blueimp-load-image/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "blueimp-load-image",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
4+
"main": "index.js",
45
"title": "JavaScript Load Image",
56
"description": "JavaScript Load Image is a library to load images provided as File or Blob objects or via URL. It returns an optionally scaled and/or cropped HTML img or canvas element. It also provides a method to parse image meta data to extract Exif tags and thumbnails and to restore the complete image header after resizing.",
67
"keywords": [
@@ -35,7 +36,7 @@
3536
"uglify-js": "2.6.1"
3637
},
3738
"scripts": {
38-
"test": "standard js/*.js test/*.js && mocha-phantomjs test/index.html",
39+
"test": "standard *.js js/*.js test/*.js && mocha-phantomjs test/index.html",
3940
"build": "cd js && uglifyjs load-image.js load-image-orientation.js load-image-meta.js load-image-exif.js load-image-exif-map.js -c -m -o load-image.all.min.js --source-map load-image.all.min.js.map",
4041
"preversion": "npm test",
4142
"version": "npm run build && git add -A js",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "bootstrap",
3+
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4+
"keywords": [
5+
"css",
6+
"js",
7+
"less",
8+
"mobile-first",
9+
"responsive",
10+
"front-end",
11+
"framework",
12+
"web"
13+
],
14+
"homepage": "http://getbootstrap.com",
15+
"license": "MIT",
16+
"moduleType": "globals",
17+
"main": [
18+
"less/bootstrap.less",
19+
"dist/js/bootstrap.js"
20+
],
21+
"ignore": [
22+
"/.*",
23+
"_config.yml",
24+
"CNAME",
25+
"composer.json",
26+
"CONTRIBUTING.md",
27+
"docs",
28+
"js/tests",
29+
"test-infra"
30+
],
31+
"dependencies": {
32+
"jquery": "1.9.1 - 2"
33+
},
34+
"version": "3.3.6",
35+
"_release": "3.3.6",
36+
"_resolution": {
37+
"type": "version",
38+
"tag": "v3.3.6",
39+
"commit": "81df608a40bf0629a1dc08e584849bb1e43e0b7a"
40+
},
41+
"_source": "git://github.com/twbs/bootstrap.git",
42+
"_target": "3.*",
43+
"_originalSource": "bootstrap"
44+
}

app/Resources/public/assets/bootstrap/.editorconfig

-14
This file was deleted.

app/Resources/public/assets/bootstrap/.gitattributes

-15
This file was deleted.

app/Resources/public/assets/bootstrap/.gitignore

-38
This file was deleted.

app/Resources/public/assets/bootstrap/.travis.yml

-45
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.
2+
3+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
4+
5+
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.

app/Resources/public/assets/bootstrap/CNAME

-1
This file was deleted.

0 commit comments

Comments
 (0)