From 35359f038f571dc46de3d14af72a2bc911fb0a24 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 18 Mar 2020 22:17:49 +0300 Subject: Implement brep-monitor --- web/xhtml/fragment.hxx | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 web/xhtml/fragment.hxx (limited to 'web/xhtml/fragment.hxx') diff --git a/web/xhtml/fragment.hxx b/web/xhtml/fragment.hxx new file mode 100644 index 0000000..eab4335 --- /dev/null +++ b/web/xhtml/fragment.hxx @@ -0,0 +1,52 @@ +// file : web/xhtml/fragment.hxx -*- C++ -*- +// license : MIT; see accompanying LICENSE file + +#ifndef WEB_XHTML_FRAGMENT_HXX +#define WEB_XHTML_FRAGMENT_HXX + +#include +#include +#include // pair + +#include +#include + +namespace web +{ + namespace xhtml + { + // A parsed (via xml::parser) XHTML fragment that can later be serialized + // to xml::serializer. + // + class fragment + { + public: + bool truncated = false; + + public: + fragment () = default; + + // Parse string as an XHTML document fragment, truncating it if + // requested. The fragment should be complete, in the sense that all + // elements should have closing tags. Elements and attributes are + // considered to be in the namespace of the entire XHTML document, so no + // namespace should be specified for them. Do not validate against XHTML + // vocabulary. Can throw xml::parsing exception. + // + fragment (const std::string& xhtml, + const std::string& input_name, + size_t length = 0); + + void + operator() (xml::serializer&) const; + + bool + empty () const {return events_.empty ();} + + private: + std::vector> events_; + }; + } +} + +#endif // WEB_XHTML_FRAGMENT_HXX -- cgit v1.1