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

akolahi created an issue. See original summary.

alinouman’s picture

How can we fix it?

darrell_ulm’s picture

Question: 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.

darrell_ulm’s picture

Status: Active » Needs review
StatusFileSize
new9.84 KB

OK, Looks like rawgit is used in several places so I created a patch, attached.

jonhattan’s picture

Status: Needs review » Reviewed & tested by the community

I'm using the patch in production for a month now with no issue. Thanks!

thalles’s picture

Looks good to me!
Thanks to @all!

thalles’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.