[Mapbender-commits] r2179 - branches/2.4.5/http/php

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Mar 5 10:40:02 EST 2008


Author: christoph
Date: 2008-03-05 10:40:02 -0500 (Wed, 05 Mar 2008)
New Revision: 2179

Removed:
   branches/2.4.5/http/php/mod_exportMapImage_server.php
Log:
feature freeze, rejected

Deleted: branches/2.4.5/http/php/mod_exportMapImage_server.php
===================================================================
--- branches/2.4.5/http/php/mod_exportMapImage_server.php	2008-03-05 15:39:24 UTC (rev 2178)
+++ branches/2.4.5/http/php/mod_exportMapImage_server.php	2008-03-05 15:40:02 UTC (rev 2179)
@@ -1,46 +0,0 @@
-<?php
-# $Id$
-# http://www.mapbender.org/ExportMapimage
-# Copyright (C) 2002 CCGIS 
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-include_once(dirname(__FILE__)."/../../conf/mapbender.conf"); 
-include_once(dirname(__FILE__)."/../classes/class_weldMaps2Image.php");
-
-$imageType = "";
-if(isset($_REQUEST["imagetype"])){
-	
-	$imageType = $_REQUEST["imagetype"];
-	
-}
-
-$urls = "";
-if(isset($_REQUEST["wms_urls"])){
-	
-	$wms_urls = $_REQUEST["wms_urls"];
-	
-}
-
-$array_file = array();
-$array_file["dir"]  = TMPDIR; 
-$array_file["filename"] = "image"; 
-
-$array_urls = explode("___", $wms_urls);
-$image = new weldMaps2Image($array_urls, $array_file);
-$image->getImage($imageType, 'file');
-
- 
-?>



More information about the Mapbender_commits mailing list