Author: sebb
Date: Fri Jun 13 16:27:11 2025
New Revision: 1926394
URL: http://svn.apache.org/viewvc?rev=1926394&view=rev
Log:
Complete move to ECharts
Removed:
comdev/projects.apache.org/trunk/site/index_echarts.html
comdev/projects.apache.org/trunk/site/js/projects_echarts.js
Modified:
comdev/projects.apache.org/trunk/site/edit/index.html
comdev/projects.apache.org/trunk/site/index.html
comdev/projects.apache.org/trunk/site/js/projects.js
comdev/projects.apache.org/trunk/site/timelines.html
comdev/projects.apache.org/trunk/site/timelines2.html
Modified: comdev/projects.apache.org/trunk/site/edit/index.html
URL:
http://svn.apache.org/viewvc/comdev/projects.apache.org/trunk/site/edit/index.html?rev=1926394&r1=1926393&r2=1926394&view=diff
==============================================================================
--- comdev/projects.apache.org/trunk/site/edit/index.html (original)
+++ comdev/projects.apache.org/trunk/site/edit/index.html Fri Jun 13 16:27:11
2025
@@ -6,7 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.css">
<script src="/js/jquery.js" type="text/javascript"></script>
- <script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="/js/script.js"></script>
<script src="/js/projects.js"></script>
<script src="/js/project_editor.js"></script>
Modified: comdev/projects.apache.org/trunk/site/index.html
URL:
http://svn.apache.org/viewvc/comdev/projects.apache.org/trunk/site/index.html?rev=1926394&r1=1926393&r2=1926394&view=diff
==============================================================================
--- comdev/projects.apache.org/trunk/site/index.html (original)
+++ comdev/projects.apache.org/trunk/site/index.html Fri Jun 13 16:27:11 2025
@@ -6,9 +6,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script src="js/jquery.js" type="text/javascript"></script>
- <script type="text/javascript" src="https://www.google.com/jsapi"></script>
+ <script src="js/echarts.min.js"></script>
<script src="js/script.js" type="text/javascript"></script>
- <script src="js/projects.js"></script>
+ <script src="js/projects_echarts.js"></script>
<title>Apache Projects and Committees Directory</title>
</head>
@@ -66,8 +66,9 @@
Apache® and the Apache feather logo are trademarks of The Apache
Software Foundation.
</div>
<script type="text/javascript">
- google.load("visualization", "1", {packages:["corechart"]});
- google.setOnLoadCallback(function() { preloadEverything(buildFrontPage)});
+ window.onload = function () {
+ preloadEverything(buildFrontPage);
+ };
</script>
</body>
</html>