From 472bc488cfd5c95fb5cbabcb755df1694ddd7d2b Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Thu, 28 Jun 2012 12:33:39 +0200
Subject: [PATCH] Fixed find and replace error.

---
 FileIO/XmlIO/XmlCndInterface.cpp | 9 +--------
 FileIO/XmlIO/XmlGmlInterface.cpp | 9 +--------
 FileIO/XmlIO/XmlGspInterface.cpp | 9 +--------
 FileIO/XmlIO/XmlStnInterface.cpp | 9 +--------
 4 files changed, 4 insertions(+), 32 deletions(-)

diff --git a/FileIO/XmlIO/XmlCndInterface.cpp b/FileIO/XmlIO/XmlCndInterface.cpp
index 83410553bc3..fe53fb79da9 100644
--- a/FileIO/XmlIO/XmlCndInterface.cpp
+++ b/FileIO/XmlIO/XmlCndInterface.cpp
@@ -192,14 +192,7 @@ int XmlCndInterface::write(std::ostream& stream)
 
 	QDomDocument doc("OGS-CND-DOM");
 	QDomElement root = doc.createElement("OpenGeoSysCond");
-	root.setAttribute( "xmlns:ogs", "http://www./**
- * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
- *            Distributed under a Modified BSD License.
- *              See accompanying file LICENSE.txt or
- *              http://www.opengeosys.net/LICENSE.txt
- *
- *
-opengeosys.com" );
+	root.setAttribute( "xmlns:ogs", "http://www.opengeosys.net" );
 	root.setAttribute( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
 	root.setAttribute( "xsi:noNamespaceSchemaLocation", "http://141.65.34.25/OpenGeoSysCND.xsd" );
 
diff --git a/FileIO/XmlIO/XmlGmlInterface.cpp b/FileIO/XmlIO/XmlGmlInterface.cpp
index ed055240922..5cca498b7f4 100644
--- a/FileIO/XmlIO/XmlGmlInterface.cpp
+++ b/FileIO/XmlIO/XmlGmlInterface.cpp
@@ -257,14 +257,7 @@ int XmlGmlInterface::write(std::ostream& stream)
 
 	QDomDocument doc("OGS-GML-DOM");
 	QDomElement root = doc.createElement("OpenGeoSysGLI");
-	root.setAttribute( "xmlns:ogs", "http://www./**
- * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
- *            Distributed under a Modified BSD License.
- *              See accompanying file LICENSE.txt or
- *              http://www.opengeosys.net/LICENSE.txt
- *
- *
-opengeosys.com" );
+	root.setAttribute( "xmlns:ogs", "http://www.opengeosys.net" );
 	root.setAttribute( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
 	root.setAttribute( "xsi:noNamespaceSchemaLocation", "http://141.65.34.25/OpenGeoSysCND.xsd" );
 
diff --git a/FileIO/XmlIO/XmlGspInterface.cpp b/FileIO/XmlIO/XmlGspInterface.cpp
index fd1398dfc30..929103405c2 100644
--- a/FileIO/XmlIO/XmlGspInterface.cpp
+++ b/FileIO/XmlIO/XmlGspInterface.cpp
@@ -138,14 +138,7 @@ int XmlGspInterface::write(std::ostream& stream)
 
 	QDomDocument doc("OGS-PROJECT-DOM");
 	QDomElement root = doc.createElement("OpenGeoSysProject");
-	root.setAttribute( "xmlns:ogs", "http://www./**
- * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
- *            Distributed under a Modified BSD License.
- *              See accompanying file LICENSE.txt or
- *              http://www.opengeosys.net/LICENSE.txt
- *
- *
-opengeosys.com" );
+	root.setAttribute( "xmlns:ogs", "http://www.opengeosys.net");
 	root.setAttribute( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
 	root.setAttribute( "xsi:noNamespaceSchemaLocation",
 	                   "http://141.65.34.25/OpenGeoSysProject.xsd" );
diff --git a/FileIO/XmlIO/XmlStnInterface.cpp b/FileIO/XmlIO/XmlStnInterface.cpp
index 4b064fc8ab6..daf35172e7a 100644
--- a/FileIO/XmlIO/XmlStnInterface.cpp
+++ b/FileIO/XmlIO/XmlStnInterface.cpp
@@ -224,14 +224,7 @@ int XmlStnInterface::write(std::ostream& stream)
 
 	QDomDocument doc("OGS-STN-DOM");
 	QDomElement root = doc.createElement("OpenGeoSysSTN");
-	root.setAttribute( "xmlns:ogs", "http://www./**
- * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
- *            Distributed under a Modified BSD License.
- *              See accompanying file LICENSE.txt or
- *              http://www.opengeosys.net/LICENSE.txt
- *
- *
-opengeosys.com" );
+	root.setAttribute( "xmlns:ogs", "http://www.opengeosys.net" );
 	root.setAttribute( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
 	root.setAttribute( "xsi:noNamespaceSchemaLocation", "http://141.65.34.25/OpenGeoSysSTN.xsd" );
 
-- 
GitLab