Topic: Dashboard Theme / Module External Files
The dashboard_theme v2.3.15-1/renderer.php line 42:
echo "<script type='text/javascript' src='https://www.google.com/jsapi'></script>\n";
refers to an external javascript file than can be internalised.
Also line 10 of js/jquery-ui-1.7.2.custom.min.js in the same theme refers to:
http://www.w3.org/2005/07/aaa
If there are any files included from external sites, addon authors are advised to state them.
This code has since been moved to line 25 of hooks.php in the google code svn:
add_js_ufile("https://www.google.com/jsapi");
which can now become:
add_js_ufile("$path_to_root/themes/dashboard/js/jsapi.js");
after uploading the jsapi file as js/jsapi.js