[Mapbender-commits] r4030 - branches/mifan_dev/mapbender/http/javascripts

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Jun 17 07:39:51 EDT 2009


Author: mifan
Date: 2009-06-17 07:39:50 -0400 (Wed, 17 Jun 2009)
New Revision: 4030

Added:
   branches/mifan_dev/mapbender/http/javascripts/mod_searchCSW_form.php
Log:
ui development for simple search

Added: branches/mifan_dev/mapbender/http/javascripts/mod_searchCSW_form.php
===================================================================
--- branches/mifan_dev/mapbender/http/javascripts/mod_searchCSW_form.php	                        (rev 0)
+++ branches/mifan_dev/mapbender/http/javascripts/mod_searchCSW_form.php	2009-06-17 11:39:50 UTC (rev 4030)
@@ -0,0 +1,49 @@
+<?php
+# $Id$:
+# http://www.mapbender.org/index.php/mod_searchCSW_form.php
+# 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_validatePermission.php");
+//ob_start();
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+
+<head>
+	<meta http-equiv="cache-control" content="no-cache" />
+	<meta http-equiv="pragma" content="no-cache" />
+	<meta http-equiv="expires" content="0" />
+	<?php printf("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\" />",CHARSET);	?>
+	<title>Search CSW</title>
+</head>
+<body>
+	<h1><?php echo _mb("Search CSW"); ?></h1>
+	<p><?php echo _mb("Search catalog metadata"); ?></p>
+
+	<form id="cswSimpleSearchForm" name="addURLForm" method="post" action="">
+		<fieldset id="container_simple">
+		<legend>Basic Search</legend>
+		<p>
+			<label for="basic_search"><?php echo _mb("Search for "); ?>:</label> 
+			<input type="text" id="basic_search" name="basic_search" />
+			<br /> 
+			<input type="button" id="basic_search_submit" name="addCapURL" value="<?php echo _mb("Search CSW"); ?>" onclick="mod_addWmsfromURL();" />
+		</p>
+		</fieldset>
+	</form>
+</body>
\ No newline at end of file



More information about the Mapbender_commits mailing list