Skip to content
Snippets Groups Projects
Commit 472bc488 authored by Lars Bilke's avatar Lars Bilke
Browse files

Fixed find and replace error.

parent 80c3c6c3
No related branches found
No related tags found
No related merge requests found
......@@ -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" );
......
......@@ -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" );
......
......@@ -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" );
......
......@@ -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" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment