From fa686f004a2d35e8e50ea52589e3a4b8b5313bf0 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Mon, 12 Nov 2018 08:01:42 -0800 Subject: [PATCH] Update all URLs to pugixml.org to https:// --- docs/config.adoc | 4 ++-- docs/manual.adoc | 4 ++-- docs/manual.html | 10 +++++----- docs/quickstart.adoc | 4 ++-- docs/quickstart.html | 10 +++++----- readme.txt | 2 +- scripts/nuget/pugixml.nuspec | 6 +++--- scripts/pugixml.podspec | 2 +- src/pugiconfig.hpp | 2 +- src/pugixml.cpp | 2 +- src/pugixml.hpp | 2 +- 11 files changed, 24 insertions(+), 24 deletions(-) diff --git a/docs/config.adoc b/docs/config.adoc index 0d4f48d..5046064 100644 --- a/docs/config.adoc +++ b/docs/config.adoc @@ -1,7 +1,7 @@ -website ; repository +website ; repository :toc: right :source-highlighter: pygments :source-language: c++ :sectanchors: :sectlinks: -:imagesdir: images \ No newline at end of file +:imagesdir: images diff --git a/docs/manual.adoc b/docs/manual.adoc index 7b75a23..46312f6 100644 --- a/docs/manual.adoc +++ b/docs/manual.adoc @@ -8,7 +8,7 @@ include::config.adoc[] [[overview.introduction]] === Introduction -http://pugixml.org/[pugixml] is a light-weight C{plus}{plus} 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 <> for complex data-driven tree queries. Full Unicode support is also available, with <> and conversions between different Unicode encodings (which happen automatically during parsing/saving). The library is <> and easy to integrate and use. pugixml is developed and maintained since 2006 and has many users. All code is distributed under the <>, making it completely free to use in both open-source and proprietary applications. +https://pugixml.org/[pugixml] is a light-weight C{plus}{plus} 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 <> for complex data-driven tree queries. Full Unicode support is also available, with <> and conversions between different Unicode encodings (which happen automatically during parsing/saving). The library is <> and easy to integrate and use. pugixml is developed and maintained since 2006 and has many users. All code is distributed under the <>, 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 or XML Schema validation, the library is not for you. @@ -73,7 +73,7 @@ OTHER DEALINGS IN THE SOFTWARE. This means that you can freely use pugixml in your applications, both open-source and proprietary. If you use pugixml in a product, it is sufficient to add an acknowledgment like this to the product distribution: .... -This software is based on pugixml library (http://pugixml.org). +This software is based on pugixml library (https://pugixml.org). pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine. .... diff --git a/docs/manual.html b/docs/manual.html index 43bb197..28b21d5 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -495,9 +495,9 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b

pugixml 1.9 manual

Table of Contents
@@ -626,7 +626,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b

1.1. 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 two 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 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 two 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 or XML Schema validation, the library is not for you.

@@ -716,7 +716,7 @@ OTHER DEALINGS IN THE SOFTWARE.
-
This software is based on pugixml library (http://pugixml.org).
+
This software is based on pugixml library (https://pugixml.org).
 pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.
@@ -5767,7 +5767,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
diff --git a/docs/quickstart.adoc b/docs/quickstart.adoc index f36d2ac..13b50d3 100644 --- a/docs/quickstart.adoc +++ b/docs/quickstart.adoc @@ -4,7 +4,7 @@ include::config.adoc[] [[introduction]] == Introduction -http://pugixml.org/[pugixml] is a light-weight C{plus}{plus} 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 two 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 <>, making it completely free to use in both open-source and proprietary applications. +https://pugixml.org/[pugixml] is a light-weight C{plus}{plus} 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 two 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 <>, 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. @@ -282,6 +282,6 @@ OTHER DEALINGS IN THE SOFTWARE. This means that you can freely use pugixml in your applications, both open-source and proprietary. If you use pugixml in a product, it is sufficient to add an acknowledgment like this to the product distribution: .... -This software is based on pugixml library (http://pugixml.org). +This software is based on pugixml library (https://pugixml.org). pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine. .... diff --git a/docs/quickstart.html b/docs/quickstart.html index 16e8290..a884dc5 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -495,9 +495,9 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b

pugixml 1.9 quick start guide

Table of Contents
@@ -519,7 +519,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b

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 two 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 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 two 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.

@@ -1068,7 +1068,7 @@ OTHER DEALINGS IN THE SOFTWARE.
-
This software is based on pugixml library (http://pugixml.org).
+
This software is based on pugixml library (https://pugixml.org).
 pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.
@@ -1083,7 +1083,7 @@ pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.
diff --git a/readme.txt b/readme.txt index 5beb08a..08057cd 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ pugixml 1.9 - an XML processing library Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) -Report bugs and download new versions at http://pugixml.org/ +Report bugs and download new versions at https://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/scripts/nuget/pugixml.nuspec b/scripts/nuget/pugixml.nuspec index 5f9fac0..072d7c4 100644 --- a/scripts/nuget/pugixml.nuspec +++ b/scripts/nuget/pugixml.nuspec @@ -7,14 +7,14 @@ Arseny Kapoulkine Arseny Kapoulkine false - http://pugixml.org/license.html - http://pugixml.org/ + https://pugixml.org/license.html + https://pugixml.org/ https://github.com/zeux/pugixml/logo.svg pugixml is a C++ XML processing library, which 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). pugixml is used by a lot of projects, both open-source and proprietary, for performance and easy-to-use interface. This package contains builds for VS2013, VS2015 and VS2017, for both statically linked and DLL CRT; you can switch the CRT linkage in Project -> Properties -> Referenced Packages -> pugixml. Light-weight, simple and fast XML parser for C++ with XPath support - http://pugixml.org/docs/manual.html#changes + https://pugixml.org/docs/manual.html#changes Copyright (c) 2006-2018 Arseny Kapoulkine native nativepackage diff --git a/scripts/pugixml.podspec b/scripts/pugixml.podspec index 954f2cd..ccffc4c 100644 --- a/scripts/pugixml.podspec +++ b/scripts/pugixml.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = "pugixml" s.version = "1.9" s.summary = "C++ XML parser library." - s.homepage = "http://pugixml.org" + s.homepage = "https://pugixml.org" s.license = "MIT" s.author = { "Arseny Kapoulkine" => "arseny.kapoulkine@gmail.com" } s.platform = :ios, "7.0" diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp index f739e06..ebd1f90 100644 --- a/src/pugiconfig.hpp +++ b/src/pugiconfig.hpp @@ -2,7 +2,7 @@ * pugixml parser - version 1.9 * -------------------------------------------------------- * Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) - * Report bugs and download new versions at http://pugixml.org/ + * Report bugs and download new versions at https://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 7bc1fde..ada8012 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -2,7 +2,7 @@ * pugixml parser - version 1.9 * -------------------------------------------------------- * Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) - * Report bugs and download new versions at http://pugixml.org/ + * Report bugs and download new versions at https://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 c0dacb7..da6c298 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -2,7 +2,7 @@ * pugixml parser - version 1.9 * -------------------------------------------------------- * Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) - * Report bugs and download new versions at http://pugixml.org/ + * Report bugs and download new versions at https://pugixml.org/ * * This library is distributed under the MIT License. See notice at the end * of this file.