load a cache copy of projectsReleaseKepler.json instead of doing an http
request.
diff --git a/projects.php b/projects.php
index 1cd0f08..9d4f7e4 100644
--- a/projects.php
+++ b/projects.php
@@ -29,7 +29,7 @@
 		return $c;
 	}
 	$project_count = 0;
-	$url = "http://projects.eclipse.org/json/release/kepler";
+	$url = "/home/data/httpd/writable/community/projectsReleaseKepler.json";
 	$json = file_get_contents($url);
 	$data = json_decode($json);