Changes for R3

Change-Id: I7e3951cdac9bafba687499e18e9587b32f2d7c93
Signed-off-by: Denis Roy <denis.roy@eclipse.org>
diff --git a/distros/distros.php b/distros/distros.php
index 3fa9fa7..c20ab4c 100644
--- a/distros/distros.php
+++ b/distros/distros.php
@@ -42,7 +42,7 @@
 	$IBM = new companyInfo (

 		"IBM",

 		"bluemix-icon-64x.png",

-		"4.6.2",

+		"4.6.3",

 		"jee,committers,java,cpp,php,installer,javascript",

 		"Blazingly fast downloads hosted by IBM Bluemix.",

 		"http://eclipse.org/go/DISTRO_IBM",

@@ -51,7 +51,7 @@
 	$OBEO = new companyInfo(

 		"Obeo",

 		"obeo.png", 

-		"4.6.2",

+		"4.6.3",

 		"modeling, jee, java, installer",

 		"Download the latest Eclipse easily and discover how to create your OWN modeling solutions.",  

 		"http://eclipse.org/go/DISTROS_OBEO", 

@@ -60,7 +60,7 @@
 	$SPRING = new companyInfo(

 		"Spring by Pivotal", 

 		"spring64.png", 

-		"4.6.2",

+		"4.6.3",

 		"committers,jee,java,rcp",

 		"Rapid downloads of Eclipse packages. Free downloads of Spring Tool Suite for Spring, Spring Boot, Cloud Foundry, and AspectJ.", 

 		"http://eclipse.org/go/DISTRO_SPRINGSOURCE", 

@@ -70,7 +70,7 @@
 	$YATTA = new companyInfo(

 		"Yatta Solutions GmbH", 

 		"yatta_64_64.png", 

-		"4.6.2",

+		"4.6.3",

 		"committers,jee,sdk,java,cpp,modeling,reporting,rcp,scout,testing,parallel,installer", 

 		"Take the shortcut to Eclipse now! Save and share your Eclipse - with Profiles.", 

 		"http://eclipse.org/go/DISTRO_YATTA", 

@@ -92,7 +92,7 @@
 		$rValue = array();

 		global $companyinfo;

 		foreach ($companyinfo as $company) {

-			if(strpos($company->projects, $_package) !== false && $company->version == "4.6.2") {

+			if(strpos($company->projects, $_package) !== false && $company->version == "4.6.3") {

 				$rValue[] = $company;

 			}

 		}

diff --git a/download.php b/download.php
index d7983d6..8e95815 100755
--- a/download.php
+++ b/download.php
@@ -638,10 +638,10 @@
     # /eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-solaris-gtk.zip
     # technology/epp/downloads/release/kepler/R/eclipse-reporting-kepler-
 
-    if(preg_match(",^/technology/epp/downloads/release/($trainname)/2/eclipse-($packageList)-($trainname),", $filename, $matches)) {
+    if(preg_match(",^/technology/epp/downloads/release/($trainname)/3/eclipse-($packageList)-($trainname),", $filename, $matches)) {
       $rValue = $matches[2];
     }
-    elseif(preg_match(",^/oomph/epp/neon/R2a/eclipse-inst-,", $filename)) {
+    elseif(preg_match(",^/oomph/epp/neon/R3/eclipse-inst-,", $filename)) {
       $rValue = "installer";
     }
     return $rValue;