[Mapbender-commits] r1384 - branches/mapbender_sld/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed May 30 07:41:49 EDT 2007
Author: mschulz
Date: 2007-05-30 07:41:49 -0400 (Wed, 30 May 2007)
New Revision: 1384
Modified:
branches/mapbender_sld/http/classes/class_wms.php
Log:
added gui_wms_sldurl
Modified: branches/mapbender_sld/http/classes/class_wms.php
===================================================================
--- branches/mapbender_sld/http/classes/class_wms.php 2007-05-30 11:31:48 UTC (rev 1383)
+++ branches/mapbender_sld/http/classes/class_wms.php 2007-05-30 11:41:49 UTC (rev 1384)
@@ -65,7 +65,8 @@
var $gui_wms_mapformat;
var $gui_wms_featureinfoformat;
var $gui_wms_exceptionformat;
- var $gui_wms_epsg;
+ var $gui_wms_epsg;
+ var $gui_wms_sldurl;
var $default_epsg = 0;
var $overwrite = true;
@@ -688,7 +689,8 @@
"'" . $this->gui_wms_featureinfoformat . "'," .
"'" . $this->gui_wms_exceptionformat . "'," .
"'" . $this->gui_wms_epsg ."'," .
- "'" . $this->gui_wms_visible ."" .
+ "'" . $this->gui_wms_visible ."'," .
+ "'" . $this->gui_wms_sldurl ."" .
"');";
echo $add_wms_string;
@@ -777,7 +779,8 @@
$this->gui_wms_featureinfoformat ."','".
$this->gui_wms_exceptionformat . "','".
$this->gui_wms_epsg ."','".
- $this->gui_wms_visible ."');\n");
+ $this->gui_wms_visible ."','".
+ $this->gui_wms_sldurl ."');\n");
for($i=0;$i<count($this->data_format);$i++){
if($parent){
@@ -1464,7 +1467,8 @@
$this->gui_wms_featureinfoformat=$row["gui_wms_featureinfoformat"];
$this->gui_wms_exceptionformat=$row["gui_wms_exceptionformat"];
$this->gui_wms_epsg=$row["gui_wms_epsg"];
- $this->gui_wms_visible = $row["gui_wms_visible"];
+ $this->gui_wms_visible = $row["gui_wms_visible"];
+ $this->gui_wms_sldurl = $row["gui_wms_sldurl"];
$sql = "Select * from wms where wms_id = $1 ";
$v = array($wms_id);
More information about the Mapbender_commits
mailing list