forked from extern/egroupware
remove ckeditor from api bundle (it does not work, is already minified and uglify work a lot faster without)
This commit is contained in:
parent
0badf82d7b
commit
ecb4b7e74a
@ -36,7 +36,7 @@ module.exports = function (grunt) {
|
|||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
uglify: {
|
uglify: {
|
||||||
options: {
|
options: {
|
||||||
banner: "\/*! build <%= grunt.template.today() %> *\/\n",
|
banner: "\/*!\n * EGroupware (http:\/\/www.egroupware.org\/) minified Javascript\n *\n * full sources are available under https:\/\/svn.stylite.de\/viewvc\/egroupware\/\n *\n * build <%= grunt.template.today() %>\n *\/\n",
|
||||||
mangle: false,
|
mangle: false,
|
||||||
sourceMap: true,
|
sourceMap: true,
|
||||||
screwIE8: true
|
screwIE8: true
|
||||||
@ -88,7 +88,6 @@ module.exports = function (grunt) {
|
|||||||
"phpgwapi\/js\/dhtmlxMenu\/sources\/ext\/dhtmlxmenu_ext.js",
|
"phpgwapi\/js\/dhtmlxMenu\/sources\/ext\/dhtmlxmenu_ext.js",
|
||||||
"phpgwapi\/js\/egw_action\/egw_menu_dhtmlx.js",
|
"phpgwapi\/js\/egw_action\/egw_menu_dhtmlx.js",
|
||||||
"phpgwapi\/js\/jquery\/chosen\/chosen.jquery.js",
|
"phpgwapi\/js\/jquery\/chosen\/chosen.jquery.js",
|
||||||
"phpgwapi\/js\/ckeditor\/ckeditor.js",
|
|
||||||
"phpgwapi\/js\/ckeditor\/config.js"
|
"phpgwapi\/js\/ckeditor\/config.js"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
14
calendar/js/app.min.js
vendored
14
calendar/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
8
etemplate/js/etemplate2.min.js
vendored
8
etemplate/js/etemplate2.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
8
mail/js/app.min.js
vendored
8
mail/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,6 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "EGroupware",
|
"name": "EGroupware",
|
||||||
"version": "16.1",
|
"description": "EGroupware is a groupware suite in PHP and Javascript: http://www.egroupware.org/",
|
||||||
|
"license": "GPL-2.0",
|
||||||
|
"version": "16.1.001",
|
||||||
|
"dependencies": {},
|
||||||
|
"repository": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "^0.4.5",
|
"grunt": "^0.4.5",
|
||||||
"grunt-contrib-uglify": "^0.11.1"
|
"grunt-contrib-uglify": "^0.11.1"
|
||||||
|
@ -2094,24 +2094,14 @@ abstract class egw_framework
|
|||||||
{
|
{
|
||||||
$minurl = '/'.$bundle.'/js/app.min.js';
|
$minurl = '/'.$bundle.'/js/app.min.js';
|
||||||
}
|
}
|
||||||
if (isset($minurl) && file_exists(EGW_SERVER_ROOT.$minurl))
|
$max_modified = 0;
|
||||||
|
$to_include = array_merge($to_include, self::bundle_urls($bundles[$bundle], $max_modified, $minurl));
|
||||||
|
// check if bundle-config is more recent then
|
||||||
|
if ($max_modified > $bundles_ts)
|
||||||
{
|
{
|
||||||
if (!isset($to_include[$minurl]))
|
// force new bundle config by deleting cached one and call ourself again
|
||||||
{
|
egw_cache::unsetTree(__CLASS__, 'bundles');
|
||||||
$to_include[$minurl] = $minurl.'?'.filemtime(EGW_SERVER_ROOT.$minurl);
|
return self::bundle_js_includes($js_includes);
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$max_modified = 0;
|
|
||||||
$to_include = array_merge($to_include, self::bundle_urls($bundles[$bundle], $max_modified));
|
|
||||||
// check if bundle-config is more recent then
|
|
||||||
if ($max_modified > $bundles_ts)
|
|
||||||
{
|
|
||||||
// force new bundle config by deleting cached one and call ourself again
|
|
||||||
egw_cache::unsetTree(__CLASS__, 'bundles');
|
|
||||||
return self::bundle_js_includes($js_includes);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2144,12 +2134,14 @@ abstract class egw_framework
|
|||||||
*
|
*
|
||||||
* @param array $js_includes
|
* @param array $js_includes
|
||||||
* @param int& $max_modified =null on return maximum modification time of bundle
|
* @param int& $max_modified =null on return maximum modification time of bundle
|
||||||
|
* @param string $minurl =null url of minified bundle, to be used, if existing and recent
|
||||||
* @return array js-files (can be more then one, if one of given files can not be bundeled)
|
* @return array js-files (can be more then one, if one of given files can not be bundeled)
|
||||||
*/
|
*/
|
||||||
protected static function bundle_urls(array $js_includes, &$max_modified=null)
|
protected static function bundle_urls(array $js_includes, &$max_modified=null, $minurl=null)
|
||||||
{
|
{
|
||||||
$debug_minify = $GLOBALS['egw_info']['server']['debug_minify'] === 'True';
|
$debug_minify = $GLOBALS['egw_info']['server']['debug_minify'] === 'True';
|
||||||
$to_include = $to_minify = array();
|
// ignore not existing minurl
|
||||||
|
$to_include_first = $to_include = $to_minify = array();
|
||||||
$max_modified = 0;
|
$max_modified = 0;
|
||||||
$query = null;
|
$query = null;
|
||||||
foreach($js_includes as $path)
|
foreach($js_includes as $path)
|
||||||
@ -2160,8 +2152,13 @@ abstract class egw_framework
|
|||||||
list($path,$query) = explode('?',$path,2);
|
list($path,$query) = explode('?',$path,2);
|
||||||
$mod = filemtime(EGW_SERVER_ROOT.$path);
|
$mod = filemtime(EGW_SERVER_ROOT.$path);
|
||||||
|
|
||||||
|
// ckeditor must be included before bundled files, as they depend on it!
|
||||||
|
if (strpos($path,'/ckeditor/ckeditor.js') !== false)
|
||||||
|
{
|
||||||
|
$to_include_first[] = $path . '?' . $mod;
|
||||||
|
}
|
||||||
// for now minify does NOT support query parameters, nor php files generating javascript
|
// for now minify does NOT support query parameters, nor php files generating javascript
|
||||||
if ($debug_minify || $query || substr($path, -3) != '.js' || strpos($path,'ckeditor') !== false ||
|
elseif ($debug_minify || $query || substr($path, -3) != '.js' ||
|
||||||
substr($path, -7) == '/app.js') // do NOT include app.js, as it changes from app to app
|
substr($path, -7) == '/app.js') // do NOT include app.js, as it changes from app to app
|
||||||
{
|
{
|
||||||
$path .= '?'. $mod.($query ? '&'.$query : '');
|
$path .= '?'. $mod.($query ? '&'.$query : '');
|
||||||
@ -2175,16 +2172,25 @@ abstract class egw_framework
|
|||||||
}
|
}
|
||||||
if (!$debug_minify && $to_minify)
|
if (!$debug_minify && $to_minify)
|
||||||
{
|
{
|
||||||
$base_path = $GLOBALS['egw_info']['server']['webserver_url'];
|
if (!empty($minurl) && file_exists(EGW_SERVER_ROOT.$minurl) &&
|
||||||
if ($base_path[0] != '/') $base_path = parse_url($base_path, PHP_URL_PATH);
|
($mod=filemtime(EGW_SERVER_ROOT.$minurl)) >= $max_modified)
|
||||||
$path = '/phpgwapi/inc/min/?'.($base_path && $base_path != '/' ? 'b='.substr($base_path, 1).'&' : '').
|
{
|
||||||
'f='.implode(',', $to_minify) .
|
$path = $minurl.'?'.$mod;
|
||||||
($GLOBALS['egw_info']['server']['debug_minify'] === 'debug' ? '&debug' : '').
|
}
|
||||||
'&'.$max_modified;
|
else
|
||||||
|
{
|
||||||
|
$base_path = $GLOBALS['egw_info']['server']['webserver_url'];
|
||||||
|
if ($base_path[0] != '/') $base_path = parse_url($base_path, PHP_URL_PATH);
|
||||||
|
$path = '/phpgwapi/inc/min/?'.($base_path && $base_path != '/' ? 'b='.substr($base_path, 1).'&' : '').
|
||||||
|
'f='.implode(',', $to_minify) .
|
||||||
|
($GLOBALS['egw_info']['server']['debug_minify'] === 'debug' ? '&debug' : '').
|
||||||
|
'&'.$max_modified;
|
||||||
|
}
|
||||||
// need to include minified javascript before not minified stuff like jscalendar-setup, as it might depend on it
|
// need to include minified javascript before not minified stuff like jscalendar-setup, as it might depend on it
|
||||||
array_unshift($to_include, $path);
|
array_unshift($to_include, $path);
|
||||||
}
|
}
|
||||||
//error_log(__METHOD__."(".array2string($js_includes).") returning ".array2string($to_include));
|
if ($to_include_first) $to_include = array_merge($to_include_first, $to_include);
|
||||||
|
//error_log(__METHOD__."("./*array2string($js_includes).*/", $max_modified, $minurl) returning ".array2string($to_include));
|
||||||
return $to_include;
|
return $to_include;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
27
phpgwapi/js/jsapi.min.js
vendored
27
phpgwapi/js/jsapi.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
8
pixelegg/js/fw_pixelegg.min.js
vendored
8
pixelegg/js/fw_pixelegg.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -50,6 +50,11 @@ foreach(egw_framework::get_bundles() as $name => $files)
|
|||||||
{
|
{
|
||||||
unset($files[$key]);
|
unset($files[$key]);
|
||||||
}
|
}
|
||||||
|
// ckeditor is loaded separate before the bundle
|
||||||
|
if ($name == 'api' && ($key = array_search('phpgwapi/js/ckeditor/ckeditor.js', $files)))
|
||||||
|
{
|
||||||
|
unset($files[$key]);
|
||||||
|
}
|
||||||
|
|
||||||
//var_dump($name, $files);
|
//var_dump($name, $files);
|
||||||
if (isset($uglify[$name]))
|
if (isset($uglify[$name]))
|
||||||
|
Loading…
Reference in New Issue
Block a user