[Mapbender-commits] r8750 - in trunk/mapbender: http/javascripts http_auth/http owsproxy/http

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Tue Dec 10 22:53:13 PST 2013


Author: armin11
Date: 2013-12-10 22:53:13 -0800 (Tue, 10 Dec 2013)
New Revision: 8750

Modified:
   trunk/mapbender/http/javascripts/mb_downloadFeedClient.js
   trunk/mapbender/http_auth/http/index.php
   trunk/mapbender/owsproxy/http/index.php
Log:
small Bugfixes

Modified: trunk/mapbender/http/javascripts/mb_downloadFeedClient.js
===================================================================
--- trunk/mapbender/http/javascripts/mb_downloadFeedClient.js	2013-12-09 12:57:33 UTC (rev 8749)
+++ trunk/mapbender/http/javascripts/mb_downloadFeedClient.js	2013-12-11 06:53:13 UTC (rev 8750)
@@ -162,7 +162,7 @@
 			//add capabilities anchor
 			identifierAnchor =  $(document.createElement('a')).appendTo('#capabilities_hybrid');
 			identifierAnchor.attr({'id':'capabilities_link'});
-			identifierAnchor.attr({'href':'../php/mod_iso19139ToHtml.php?url='+encodeURIComponent(featureCollection.features[i].properties.capabilitiesLink)});
+			identifierAnchor.attr({'href':featureCollection.features[i].properties.capabilitiesLink});
 			identifierAnchor.text(featureCollection.features[i].properties.capabilitiesLink);
 			//$('#capabilities_link').val(featureCollection.features[i].properties.capabilitiesLink);
 			

Modified: trunk/mapbender/http_auth/http/index.php
===================================================================
--- trunk/mapbender/http_auth/http/index.php	2013-12-09 12:57:33 UTC (rev 8749)
+++ trunk/mapbender/http_auth/http/index.php	2013-12-11 06:53:13 UTC (rev 8750)
@@ -155,7 +155,7 @@
 		$query->setParam("layers",urldecode($layers));
 		$request = $query->getRequest();
 		//add some parameter for ArcGIS because some clients don't send it
-		$request.="&SERVICE=WMS";
+		$request.="&service=WMS";
 		#log proxy requests
 		if($n->getWmsLogTag($wmsId)==1) {
 			#do log to db

Modified: trunk/mapbender/owsproxy/http/index.php
===================================================================
--- trunk/mapbender/owsproxy/http/index.php	2013-12-09 12:57:33 UTC (rev 8749)
+++ trunk/mapbender/owsproxy/http/index.php	2013-12-11 06:53:13 UTC (rev 8750)
@@ -259,7 +259,7 @@
 			$request = $query->getRequest();
 		}
 		//add some parameter for ArcGIS because some clients don't send it
-		$request.="&SERVICE=WMS";
+		$request.="&service=WMS";
 		//log proxy requests
 		if($n->getWmsLogTag($arrayOnlineresources['wms_id'])==1) {
 			#do log to db



More information about the Mapbender_commits mailing list