As per https://rawgit.com/, service is being shut down.
In advagg.missing.inc:
$url = "https://cdn.rawgit.com/jquery/jquery/$trueversion/jquery.min.map";
In advagg_validator.advagg.inc:
/**
* Implements hook_advagg_update_github_versions_alter().
*/
function advagg_validator_advagg_update_github_versions_alter(&$projects) {
$projects['csslint'] = array(
'callback' => 'advagg_get_github_version',
'url' => 'https://rawgit.com/CSSLint/csslint/master/package.json',
'variable_name' => 'advagg_validator_github_version_csslint',
);
$projects['jshint'] = array(
'callback' => 'advagg_get_github_version',
'url' => 'https://rawgit.com/jshint/jshint/master/package.json',
'variable_name' => 'advagg_validator_github_version_jshint',
);
}
Comments
Comment #2
alinouman commentedHow can we fix it?
Comment #3
Phil Wolstenholme commentedHere are some replacement links:
There is a Rawgit migration to JSDelivr tool here.
Comment #4
darrell_ulm commentedQuestion: is advagg_validator_advagg_update_github_versions_alter() called if the Advagg Validator sub-module is turned off. If it is not then this would affect only sites using it.
Comment #5
darrell_ulm commentedOK, Looks like rawgit is used in several places so I created a patch, attached.
Comment #6
jonhattanI'm using the patch in production for a month now with no issue. Thanks!
Comment #7
thallesLooks good to me!
Thanks to @all!
Comment #9
thalles