Remove unused scripts

Change-Id: Ic60f18c076321e2592551d654f1f77332107a619
diff --git a/export/repositories.json.php b/export/repositories.json.php
deleted file mode 100644
index 6b44c1b..0000000
--- a/export/repositories.json.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2014 Eclipse Foundation and others.
-* All rights reserved. This program and the accompanying materials
-* are made available under the terms of the Eclipse Public License v1.0
-* which accompanies this distribution, and is available at
-* http://www.eclipse.org/legal/epl-v10.html
-*
-* Contributors:
-*    Wayne Beaton (Eclipse Foundation)- initial API and implementation
-*******************************************************************************/
-
-function getRepositories($url, $base) {
-    $projects = json_decode(file_get_contents($url), true);
-    $repositories = array();
-    foreach($projects as $project => $paths) {
-        foreach($paths as $path) {
-            $repositories[$project][] = "$base$path";
-        }
-    }
-    return $repositories;
-}
-
-$json = array();
-$json['eclipse'] = getRepositories('http://projects.eclipse.org/json/repos/git', 'git://git.eclipse.org');
-
-echo json_encode($json);
-?>
\ No newline at end of file
diff --git a/services/openchain.php b/services/openchain.php
deleted file mode 100644
index 70e2f77..0000000
--- a/services/openchain.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2022 Eclipse Foundation and others.
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *******************************************************************************/
-/*
- * EXPERIMENTAL
- *
- * This script answers a GitHub badge which indicates that a particular
- * project is known to be OpenChain 2.1 compliant or not. Our logic is that
- * a project is OpenChain compliant if it has successfully completed a
- * review in the last year. The badge indicates the OpenChain version that
- * we implement (currently 2.1) when we believe that the project is compliant,
- * or a question mark (?) when we're not sure.
- */
-
-require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-require_once dirname(__FILE__) . '/../classes/Project.class.php';
-require_once dirname(__FILE__) . '/../classes/common.php';
-require_once dirname(__FILE__) . '/../classes/database.inc';
-
-$App = new App ();
-
-$sql = <<<EOQ
-select
-	max(rev.date) >= date_sub(now(), interval 1 year) as goodstanding
-from Project as p
-	join ProjectReviews as rev on p.id=rev.project
-where
-	p.id = ':id:'
-	and rev.type in ('release','graduation', 'other')
-	and rev.status = 'success'
-EOQ;
-
-$goodstanding = null;
-// Note that the query function escapes substitution parameters
-// (so using the $_GET value as below is safe).
-query('dashboard', $sql, array (':id:' => $_GET['id']), function ($row) use (&$goodstanding) {
-	$goodstanding = $row['goodstanding'] == "1";
-});
-
-// Badge making at: https://shields.io/
-
-header('Content-Type: image/svg+xml');
-if ($goodstanding) {
-	// https://img.shields.io/badge/OpenChain-2.1-green
-	echo '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="98" height="20" role="img" aria-label="OpenChain: 2.0"><title>OpenChain: 2.0</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="98" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="71" height="20" fill="#555"/><rect x="71" width="27" height="20" fill="#97ca00"/><rect width="98" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="365" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="610">OpenChain</text><text x="365" y="140" transform="scale(.1)" fill="#fff" textLength="610">OpenChain</text><text aria-hidden="true" x="835" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="170">2.1</text><text x="835" y="140" transform="scale(.1)" fill="#fff" textLength="170">2.1</text></g></svg>';
-} else {
-	// https://img.shields.io/badge/OpenChain-%3F-red
-	echo '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="88" height="20" role="img" aria-label="OpenChain: ?"><title>OpenChain: ?</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="88" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="71" height="20" fill="#555"/><rect x="71" width="17" height="20" fill="#e05d44"/><rect width="88" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="365" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="610">OpenChain</text><text x="365" y="140" transform="scale(.1)" fill="#fff" textLength="610">OpenChain</text><text aria-hidden="true" x="785" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="70">?</text><text x="785" y="140" transform="scale(.1)" fill="#fff" textLength="70">?</text></g></svg>';
-}
-?>
\ No newline at end of file