summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-10-14 17:35:19 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-10-14 17:35:19 +0000
commitb1bc4e4ed595d64ee6145ff97ac2c3c7aac6d369 (patch)
treea9f67a6eec25dacea7bf846b90ee877acfe53826
parentc5d3c8b1ca59f5918cb5973111f8dd4d2687f5d7 (diff)
Updated site URL everywhere
git-svn-id: http://pugixml.googlecode.com/svn/trunk@766 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r--docs/manual.qbk2
-rw-r--r--docs/manual.xsl2
-rw-r--r--docs/quickstart.qbk2
-rw-r--r--readme.txt2
-rw-r--r--src/pugiconfig.hpp2
-rw-r--r--src/pugixml.cpp2
-rw-r--r--src/pugixml.hpp2
7 files changed, 7 insertions, 7 deletions
diff --git a/docs/manual.qbk b/docs/manual.qbk
index 4e383db..ea6b5d3 100644
--- a/docs/manual.qbk
+++ b/docs/manual.qbk
@@ -18,7 +18,7 @@
[section:introduction Introduction]
-pugixml is a light-weight C++ XML processing library. It consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with [link manual.dom.unicode two Unicode interface variants] and conversions between different Unicode encodings (which happen automatically during parsing/saving). The library is [link manual.install.portability extremely portable] and easy to integrate and use. pugixml is developed and maintained since 2006 and has many users. All code is distributed under the MIT license, making it completely free to use in both open-source and proprietary applications.
+[@http://pugixml.org/ pugixml] is a light-weight C++ XML processing library. It consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with [link manual.dom.unicode two Unicode interface variants] and conversions between different Unicode encodings (which happen automatically during parsing/saving). The library is [link manual.install.portability extremely portable] and easy to integrate and use. pugixml is developed and maintained since 2006 and has many users. All code is distributed under the MIT license, making it completely free to use in both open-source and proprietary applications.
pugixml enables very fast, convenient and memory-efficient XML document processing. However, since pugixml has a DOM parser, it can't process XML documents that do not fit in memory; also the parser is a non-validating one, so if you need DTD/Schema validation, the library is not for you.
diff --git a/docs/manual.xsl b/docs/manual.xsl
index 4d9345a..d7f57a9 100644
--- a/docs/manual.xsl
+++ b/docs/manual.xsl
@@ -25,7 +25,7 @@
</xsl:template>
<xsl:template name="navbar.contents">
- <xsl:value-of select="/*/title" /> manual |
+ <a href="http://pugixml.org/"><xsl:value-of select="/*/title" /></a> manual |
<xsl:call-template name="navbar.section"><xsl:with-param name="name" select="'manual'" /><xsl:with-param name="text" select="'Overview'" /></xsl:call-template> |
<xsl:call-template name="navbar.section"><xsl:with-param name="name" select="'manual.install'" /></xsl:call-template> |
Document:
diff --git a/docs/quickstart.qbk b/docs/quickstart.qbk
index f83ed2e..adf0c33 100644
--- a/docs/quickstart.qbk
+++ b/docs/quickstart.qbk
@@ -15,7 +15,7 @@
[section:introduction Introduction]
-pugixml is a light-weight C++ XML processing library. It consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with Unicode interface variants and conversions between different Unicode encodings (which happen automatically during parsing/saving). The library is extremely portable and easy to integrate and use. pugixml is developed and maintained since 2006 and has many users. All code is distributed under the MIT license, making it completely free to use in both open-source and proprietary applications.
+[@http://pugixml.org/ pugixml] is a light-weight C++ XML processing library. It consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with Unicode interface variants and conversions between different Unicode encodings (which happen automatically during parsing/saving). The library is extremely portable and easy to integrate and use. pugixml is developed and maintained since 2006 and has many users. All code is distributed under the MIT license, making it completely free to use in both open-source and proprietary applications.
pugixml enables very fast, convenient and memory-efficient XML document processing. However, since pugixml has a DOM parser, it can't process XML documents that do not fit in memory; also the parser is a non-validating one, so if you need DTD/Schema validation, the library is not for you.
diff --git a/readme.txt b/readme.txt
index 7f68b47..9e6bd4c 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,7 +1,7 @@
pugixml 0.9 - an XML processing library
Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
-Report bugs and download new versions at http://code.google.com/p/pugixml/
+Report bugs and download new versions at http://pugixml.org/
This is the distribution of pugixml, which is a C++ XML processing library,
which consists of a DOM-like interface with rich traversal/modification
diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp
index e4c52c5..5fedf4e 100644
--- a/src/pugiconfig.hpp
+++ b/src/pugiconfig.hpp
@@ -2,7 +2,7 @@
* pugixml parser - version 0.9
* --------------------------------------------------------
* Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
- * Report bugs and download new versions at http://code.google.com/p/pugixml/
+ * Report bugs and download new versions at http://pugixml.org/
*
* This library is distributed under the MIT License. See notice at the end
* of this file.
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 1d049a2..febf2eb 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -2,7 +2,7 @@
* pugixml parser - version 0.9
* --------------------------------------------------------
* Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
- * Report bugs and download new versions at http://code.google.com/p/pugixml/
+ * Report bugs and download new versions at http://pugixml.org/
*
* This library is distributed under the MIT License. See notice at the end
* of this file.
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 2b53464..8fba12a 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -2,7 +2,7 @@
* pugixml parser - version 0.9
* --------------------------------------------------------
* Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
- * Report bugs and download new versions at http://code.google.com/p/pugixml/
+ * Report bugs and download new versions at http://pugixml.org/
*
* This library is distributed under the MIT License. See notice at the end
* of this file.