[Mapbender-commits] r3051 - branches/beck_dev/http/php
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Tue Sep 30 06:46:48 EDT 2008
Author: beck
Date: 2008-09-30 06:46:48 -0400 (Tue, 30 Sep 2008)
New Revision: 3051
Added:
branches/beck_dev/http/php/geoRSSToGeoJSON.php
Modified:
branches/beck_dev/http/php/mod_wfs_conf.php
Log:
Added: branches/beck_dev/http/php/geoRSSToGeoJSON.php
===================================================================
--- branches/beck_dev/http/php/geoRSSToGeoJSON.php (rev 0)
+++ branches/beck_dev/http/php/geoRSSToGeoJSON.php 2008-09-30 10:46:48 UTC (rev 3051)
@@ -0,0 +1,28 @@
+<?php
+# $Id: mod_wfs_result.php 2144 2008-02-26 23:16:14Z christoph $
+# http://www.mapbender.org/index.php/Administration
+# 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.
+
+require_once(dirname(__FILE__)."/../php/mb_validateSession.php");
+require_once(dirname(__FILE__) . "/../classes/class_connector.php");
+require_once(dirname(__FILE__) . "/../classes/class_georss.php");
+
+header("Content-Type: text/x-json");
+$geoRSS = new geoRSS();
+$geoRSS->setImportTags(array("title","description"));
+echo $geoRSS->parseFile($_REQUEST["url"]);
+?>
\ No newline at end of file
Modified: branches/beck_dev/http/php/mod_wfs_conf.php
===================================================================
--- branches/beck_dev/http/php/mod_wfs_conf.php 2008-09-30 10:46:28 UTC (rev 3050)
+++ branches/beck_dev/http/php/mod_wfs_conf.php 2008-09-30 10:46:48 UTC (rev 3051)
@@ -94,42 +94,6 @@
font-size : 12px;
color: #808080
}
-
-div.helptext {
- visibility: hidden;
- display: none;
- position: absolute;
- margin-top: -200px;
- margin-left: -275px;
- padding: 0 5px;
- color: #000;
- background-color: #CCC;
- border: 1px solid #000;
-}
-
-div.helptext br {
- visibility: hidden;
- display: none;
-}
-
-div.helptext strong {
- display: block;
- margin: 0 -5px 5px -5px;
- padding: 2px 5px;
- font-weight: normal;
- color: #FFF;
- background-color: #666;
-}
-
-div.helptext textarea {
- width: 250px;
- height: 150px;
-}
-
-div.helptext input {
- display: block;
- margin: 5px auto;
-}
-->
</style>
</head>
More information about the Mapbender_commits
mailing list