Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'production/downloadsites/eclipse/downloads/dlYconfig4.php')
-rw-r--r--production/downloadsites/eclipse/downloads/dlYconfig4.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/production/downloadsites/eclipse/downloads/dlYconfig4.php b/production/downloadsites/eclipse/downloads/dlYconfig4.php
new file mode 100644
index 000000000..4260f1641
--- /dev/null
+++ b/production/downloadsites/eclipse/downloads/dlYconfig4.php
@@ -0,0 +1,23 @@
+<?php
+$dropPrefix = array();
+$dropPrefix[]="R";
+$dropPrefix[]="S";
+$dropPrefix[]="I";
+$dropPrefix[]="M";
+$dropPrefix[]="Y";
+$dropPrefix[]="N";
+$dropPrefix[]="P";
+$dropType = array();
+$dropType[]="Latest Release";
+$dropType[]="4.7 Stable Builds";
+$dropType[]="4.7 Integration Builds";
+$dropType[]="4.6 Maintenance Builds";
+$dropType[]="4.7 Java 9 Beta Builds";
+$dropType[]="4.7 Nightly Builds";
+$dropType[]="Patch Builds";
+// the "prefix" array and dropType array must be of same size, defined in right order
+for ($i = 0; $i < count($dropType); $i++) {
+ $typeToPrefix[$dropType[$i]] = $dropPrefix[$i];
+}
+
+

Back to the top