Page MenuHomePhabricator

Tool "etytree" loads jquery, jquery-mobile, and jquery-ui from code.jquery.com, mixed http/https
Closed, ResolvedPublic

Description

https://tools.wmflabs.org/etytree/: http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css
https://tools.wmflabs.org/etytree/: https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css
https://tools.wmflabs.org/etytree/: https://code.jquery.com/jquery-1.10.2.js
https://tools.wmflabs.org/etytree/: https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js
https://tools.wmflabs.org/etytree/: https://code.jquery.com/ui/1.11.4/jquery-ui.js
https://tools.wmflabs.org/etytree/: http://code.jquery.com/mobile/1.4.5/images/ajax-loader.gif

Loading from external providers are discouraged. Please see parent tasks and J65.
In your case a direct replacement would be:

Event Timeline

$ curl https://tools.wmflabs.org/etytree/ -s | grep jquery
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

Oh ok, missed that file! It should be ok now.