From 806169f2550934199890acc4950bc5552565b980 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Mon, 10 Nov 2014 11:27:10 +0100 Subject: Initial Jekyll content that tries to mirror the old site. --- Gemfile | 2 + _config.yml | 4 ++ _includes/footer.html | 19 +++++++ _includes/header.html | 49 +++++++++++++++++ _layouts/default.html | 3 ++ _layouts/post.html | 4 ++ _posts/2010-07-11-pugixml-0.9-release.md | 12 +++++ _posts/2010-10-14-new-project-site.md | 8 +++ _posts/2010-10-31-pugixml-1.0-release.md | 14 +++++ _posts/2012-05-01-pugixml-1.2-release.md | 16 ++++++ _posts/2014-02-28-pugixml-1.4-release.md | 15 ++++++ _posts/2014-10-26-pugixml-moves-to-github.md | 16 ++++++ feed/index.xml | 21 ++++++++ index.html | 81 ---------------------------- index.md | 26 +++++++++ news.md | 15 ++++++ stylesheets/styles.css | 68 ----------------------- 17 files changed, 224 insertions(+), 149 deletions(-) create mode 100644 Gemfile create mode 100644 _config.yml create mode 100644 _includes/footer.html create mode 100644 _includes/header.html create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html create mode 100644 _posts/2010-07-11-pugixml-0.9-release.md create mode 100644 _posts/2010-10-14-new-project-site.md create mode 100644 _posts/2010-10-31-pugixml-1.0-release.md create mode 100644 _posts/2012-05-01-pugixml-1.2-release.md create mode 100644 _posts/2014-02-28-pugixml-1.4-release.md create mode 100644 _posts/2014-10-26-pugixml-moves-to-github.md create mode 100644 feed/index.xml delete mode 100644 index.html create mode 100644 index.md create mode 100644 news.md diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..6ab22f4 --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org/' +gem 'github-pages' diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..6d29cb5 --- /dev/null +++ b/_config.yml @@ -0,0 +1,4 @@ +name: pugixml.org +description: Light-weight, simple and fast XML parser for C++ with XPath support +url: http://pugixml.org/ +version: 1.4 diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..5a83239 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,19 @@ + + + + + + + + diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..398727a --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,49 @@ + + + + + + pugixml.org - {{ page.title }} + + + + + + + + +
+
+

pugixml

+

Light-weight, simple and fast XML parser for C++ with XPath support

+ + Repository: https://github.com/zeux/pugixml
+ License: MIT
+ +
+ + Downloads: + + + Documentation: + + + Other: + +
+
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..4f0db4c --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,3 @@ +{% include header.html %} +{{ content }} +{% include footer.html %} diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..d2e35d5 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,4 @@ +{% include header.html %} +

{{ page.title }}

+{{ content }} +{% include footer.html %} diff --git a/_posts/2010-07-11-pugixml-0.9-release.md b/_posts/2010-07-11-pugixml-0.9-release.md new file mode 100644 index 0000000..8bbd7b4 --- /dev/null +++ b/_posts/2010-07-11-pugixml-0.9-release.md @@ -0,0 +1,12 @@ +--- +layout: post +title: pugixml 0.9 release +--- + +pugixml-0.9 is out. This is a major release with lots of fixes/improvements (read the changelog for the details). The most important changes are: + +* Unicode support is completely reworked: now pugixml can be configured to use wchar_t instead of char for all string-based interfaces; also encoding conversion is performed during parsing/saving (with automatic encoding detection). All popular Unicode encodings are supported. +* New version features a new documentation, with detailed description of library interface and behavior, more samples, quick-start guide and so on. +* There are new functions for loading document from memory; they do not require the input buffer to be null-terminated. Old functions still work, but are deprecated and will be removed in the future version. + +Also there are a lot of other changes, including performance and memory consumption improvements. diff --git a/_posts/2010-10-14-new-project-site.md b/_posts/2010-10-14-new-project-site.md new file mode 100644 index 0000000..961a5c9 --- /dev/null +++ b/_posts/2010-10-14-new-project-site.md @@ -0,0 +1,8 @@ +--- +layout: post +title: New project site +--- + +pugixml now has a new home, [pugixml.org](http://pugixml.org). This site acts as a frontend for all pugixml-related stuff (downloads, documentation, support and other information). Additionally, there is a news feed, which you can subscribe to [via RSS](http://pugixml.org/feed/). + +All downloads, documentation, Subversion repository and issue tracker are still hosted at Google Code; the existing links still work, and this is not going to change. diff --git a/_posts/2010-10-31-pugixml-1.0-release.md b/_posts/2010-10-31-pugixml-1.0-release.md new file mode 100644 index 0000000..d791237 --- /dev/null +++ b/_posts/2010-10-31-pugixml-1.0-release.md @@ -0,0 +1,14 @@ +--- +layout: post +title: pugixml 1.0 release +--- + +pugixml-1.0 is out. This is a major release with lots of fixes/improvements (read the [changelog](http://pugixml.googlecode.com/svn/tags/release-1.0/docs/manual/changes.html) for details). + +The most important changes are: + +* XPath implementation was considerably improved – variable support was added, exceptions and STL are no longer required for XPath to function, query evaluation performance was improved and several bugs were fixed. +* All deprecated functions and types were removed +* File loading/saving functions can now work with wide character paths + +You can [download the source package](http://github.com/zeux/pugixml/releases/download/v1.0/pugixml-1.0.zip) or get the new version from Subversion using the latest tag (http://pugixml.googlecode.com/svn/tags/latest). diff --git a/_posts/2012-05-01-pugixml-1.2-release.md b/_posts/2012-05-01-pugixml-1.2-release.md new file mode 100644 index 0000000..cc403b0 --- /dev/null +++ b/_posts/2012-05-01-pugixml-1.2-release.md @@ -0,0 +1,16 @@ +--- +layout: post +title: pugixml 1.2 release +--- + +pugixml-1.2 is finally out. This is a major release with lots of new features and compatibility improvements (read the [changelog](http://pugixml.googlecode.com/svn/tags/release-1.2/docs/manual/changes.html) for details). + +Highlights for this release include: + +* New optional header-only compilation mode that does not require compiling pugixml sources and can improve performance for certain applications due to inlining +* Enhanced interface for PCDATA manipulation using an xml_text object +* C++11 range-based for-loop support for node/attribute iteration +* Compatibility improvements for many mobile platforms (including Android, Windows Mobile and other SDKs/devices) + +You can [download the source package](http://github.com/zeux/pugixml/releases/download/v1.2/pugixml-1.2.zip) or get the new version from Subversion using the latest tag (http://pugixml.googlecode.com/svn/tags/latest). + diff --git a/_posts/2014-02-28-pugixml-1.4-release.md b/_posts/2014-02-28-pugixml-1.4-release.md new file mode 100644 index 0000000..b416756 --- /dev/null +++ b/_posts/2014-02-28-pugixml-1.4-release.md @@ -0,0 +1,15 @@ +--- +layout: post +title: pugixml 1.4 release +--- + +pugixml-1.4 is finally out. This is a major release with several new features and compatibility improvements (read the [changelog](http://pugixml.googlecode.com/svn/tags/release-1.4/docs/manual/changes.html) for details). + +Highlights for this release include: + +* Improved validation of documents without element nodes +* More parsing options (parse_fragment flag to parse XML document fragments, parse_trim_pcdata flag to remove leading/trailing whitespace) +* Better integer support for attribute and text nodes (long long types and hexadecimal conversion) +* More stack-efficient XPath compilation and evaluation + +You can [download the source package](http://github.com/zeux/pugixml/releases/download/v1.4/pugixml-1.4.zip) or get the new version from Subversion using the latest tag (http://pugixml.googlecode.com/svn/tags/latest). diff --git a/_posts/2014-10-26-pugixml-moves-to-github.md b/_posts/2014-10-26-pugixml-moves-to-github.md new file mode 100644 index 0000000..643159f --- /dev/null +++ b/_posts/2014-10-26-pugixml-moves-to-github.md @@ -0,0 +1,16 @@ +--- +layout: post +title: pugixml moves to GitHub +--- + +pugixml project used to be hosted on Google Code since time immemorial. About a year ago the active development switched to Git but the Subversion repository on Google Code was still maintained via svn-git and the primary way to report issues was via Issue Tracker on Google Code. + +Since Google disabled the downloads feature on Google Code, pugixml releases are hosted on github anyway; also git-svn makes some git workflows more complicated. As of this day, [pugixml moves to GitHub](https://github.com/zeux/pugixml) and Google Code project is no longer maintained. + +You can use GitHub’s [issue tracker](https://github.com/zeux/pugixml/issues), submit pull requests, use pugixml as Git submodules, etc. + +Note that you can still use Subversion to access pugixml repository on github as follows: + + svn checkout https://github.com/zeux/pugixml/tags/latest + +Please let me know if you find any issues with GitHub’s Subversion access. diff --git a/feed/index.xml b/feed/index.xml new file mode 100644 index 0000000..94ea18a --- /dev/null +++ b/feed/index.xml @@ -0,0 +1,21 @@ +--- +layout: none +--- + + + + {{ site.name | xml_escape }} + {% if site.description %}{{ site.description | xml_escape }}{% endif %} + {{ site.url }} + + {% for post in site.posts %} + + {{ post.title | xml_escape }} + {{ post.content | xml_escape }} + {{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }} + {{ site.url }}{{ post.url }} + {{ site.url }}{{ post.url }} + + {% endfor %} + + diff --git a/index.html b/index.html deleted file mode 100644 index 1acd705..0000000 --- a/index.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - pugixml by zeux - - - - - - - -
-
-

pugixml

-

Light-weight, simple and fast XML parser for C++ with XPath support

- -

View the Project on GitHub zeux/pugixml

- - - -
-
-

-Welcome to GitHub Pages.

- -

This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:

- -
$ cd your_repo_root/repo_name
-$ git fetch origin
-$ git checkout gh-pages
-
- -

If you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.

- -

-Designer Templates

- -

We've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.

- -

-Rather Drive Stick?

- -

If you prefer to not use the automatic generator, push a branch named gh-pages to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.

- -

-Authors and Contributors

- -

You can @mention a GitHub username to generate a link to their profile. The resulting <a> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.

- -

-Support or Contact

- -

Having trouble with Pages? Check out the documentation at http://help.github.com/pages or contact support@github.com and we’ll help you sort it out.

-
-
-

This project is maintained by zeux

-

Hosted on GitHub Pages — Theme by orderedlist

-
-
- - - - - - \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 0000000..a8b752a --- /dev/null +++ b/index.md @@ -0,0 +1,26 @@ +--- +layout: default +title: Home +--- + +pugixml is a light-weight C++ XML processing library. It features: + +* DOM-like interface with rich traversal/modification capabilities +* Extremely fast non-validating XML parser which constructs the DOM tree from an XML file/buffer +* XPath 1.0 implementation for complex data-driven tree queries +* Full Unicode support with Unicode interface variants and automatic encoding conversions + +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. + +### Recent news [(more)](/news.html) + +
    +{% for post in site.posts limit:2 %} +
  • + {{ post.date | date_to_long_string }} {{ post.title }} + {{ post.excerpt }} +
  • +{% endfor %} +
diff --git a/news.md b/news.md new file mode 100644 index 0000000..69387da --- /dev/null +++ b/news.md @@ -0,0 +1,15 @@ +--- +layout: default +title: News +--- + +## News + +
+{% for post in site.posts %} +

+ {{ post.date | date_to_long_string }} {{ post.title }} + {{ post.content }} +

+
+{% endfor %} diff --git a/stylesheets/styles.css b/stylesheets/styles.css index dacf2e1..1dab512 100644 --- a/stylesheets/styles.css +++ b/stylesheets/styles.css @@ -42,7 +42,6 @@ a small { font-size:11px; color:#777; margin-top:-0.6em; - display:block; } .wrapper { @@ -101,64 +100,11 @@ header { position:fixed; } -header ul { - list-style:none; - height:40px; - - padding:0; - - background: #eee; - background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd)); - background: -webkit-linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - background: -o-linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - background: -ms-linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - background: linear-gradient(top, #f8f8f8 0%,#dddddd 100%); - - border-radius:5px; - border:1px solid #d2d2d2; - box-shadow:inset #fff 0 1px 0, inset rgba(0,0,0,0.03) 0 -1px 0; - width:270px; -} - -header li { - width:89px; - float:left; - border-right:1px solid #d2d2d2; - height:40px; -} - -header ul a { - line-height:1; - font-size:11px; - color:#999; - display:block; - text-align:center; - padding-top:6px; - height:40px; -} - strong { color:#222; font-weight:700; } -header ul li + li { - width:88px; - border-left:1px solid #fff; -} - -header ul li + li + li { - border-right:none; - width:89px; -} - -header ul a strong { - font-size:14px; - display:block; - color:#222; -} - section { width:500px; float:right; @@ -210,12 +156,6 @@ footer { header a small { display:inline; } - - header ul { - position:absolute; - right:50px; - top:52px; - } } @media print, screen and (max-width: 720px) { @@ -227,10 +167,6 @@ footer { padding:0; } - header ul, header p.view { - position:static; - } - pre, code { word-wrap:normal; } @@ -240,10 +176,6 @@ footer { body { padding:15px; } - - header ul { - display:none; - } } @media print { -- cgit v1.2.3