mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-15 19:48:00 +01:00
Updated copyright dates
This commit is contained in:
parent
b09a3c62dc
commit
b1674a2ef1
3 changed files with 1637 additions and 1637 deletions
66
COPYING
66
COPYING
|
@ -1,33 +1,33 @@
|
|||
Copyright 2002-2008 Jez UK Ltd
|
||||
All rights reserved
|
||||
|
||||
Redistribution and use in source and binary forms, with or
|
||||
without modification, are permitted provided that the following
|
||||
conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer.
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials
|
||||
provided with the distribution.
|
||||
* Neither the name of Jez UK Ltd nor the names of
|
||||
contributors may be used to endorse or promote products
|
||||
derived from this software without specific prior written
|
||||
permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Copyright 2001-2012 Jez UK Ltd
|
||||
All rights reserved
|
||||
|
||||
Redistribution and use in source and binary forms, with or
|
||||
without modification, are permitted provided that the following
|
||||
conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer.
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials
|
||||
provided with the distribution.
|
||||
* Neither the name of Jez UK Ltd nor the names of
|
||||
contributors may be used to endorse or promote products
|
||||
derived from this software without specific prior written
|
||||
permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
|
3030
doc/arabica.dox
3030
doc/arabica.dox
File diff suppressed because it is too large
Load diff
|
@ -1,89 +1,89 @@
|
|||
def ARABICA_SAX_FWD_H
|
||||
#define ARABICA_SAX_FWD_H
|
||||
|
||||
#include <string>
|
||||
|
||||
/** \mainpage Arabica XML Parser Toolkit
|
||||
*
|
||||
* \section intro Introduction
|
||||
*
|
||||
* <p>Arabica has a full <a href='http://www.saxproject.org/'>SAX2, the Simple API for XML</a>, implementation
|
||||
* including the optional interfaces and helper classes. Layered on
|
||||
* SAX is a W3C <a href='http://www.w3.org/DOM/'>Document Object Model (DOM) Level 2.0 Core</a>
|
||||
* implementation, together with an <a href='http://www.w3.org/tr/xpath'>XPath</a> engine. </p>
|
||||
*
|
||||
* <p>It delivers UTF-8 encoded std::strings or UCS-2 std::wstrings,
|
||||
* but can also accommodate custom string types and alternative
|
||||
* encodings. </p>
|
||||
*
|
||||
* <p>It provides uniform SAX2 wrappers for the <a href='http://www.libexpat.org/'>expat</a> parser,
|
||||
* <a href='http://xml.apache.org/xerces-c/index.html'>Xerces</a>, <a href='http://www.xmlsoft.org'>libxml</a>
|
||||
* and for the <a href='http://msdn.microsoft.com/xml'>Microsoft XML parser</a> COM component.</p>
|
||||
*
|
||||
* \section license License
|
||||
*
|
||||
* Copyright (c) 2001-2010 Jez UK Ltd<br>
|
||||
* All rights reserved.
|
||||
* <p>
|
||||
* Redistribution and use in source and binary forms, with or <br>
|
||||
* without modification, are permitted provided that the following <br>
|
||||
* conditions are met:<br>
|
||||
* <ul>
|
||||
* <li>Redistributions of source code must retain the above <br>
|
||||
* copyright notice, this list of conditions and the following <br>
|
||||
* disclaimer.</li>
|
||||
* <li>Redistributions in binary form must reproduce the above <br>
|
||||
* copyright notice, this list of conditions and the following <br>
|
||||
* disclaimer in the documentation and/or other materials <br>
|
||||
* provided with the distribution.</li>
|
||||
* <li>Neither the name of Jez UK Ltd nor the names of <br>
|
||||
* contributors may be used to endorse or promote products <br>
|
||||
* derived from this software without specific prior written <br>
|
||||
* permission.</li>
|
||||
* </ul>
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND <br>
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, <br>
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF <br>
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE <br>
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE <br>
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, <br>
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, <br>
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, <br>
|
||||
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY <br>
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR <br>
|
||||
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT <br>
|
||||
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY <br>
|
||||
* OF SUCH DAMAGE.<br>
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include <SAX/ParserConfig.h>
|
||||
#include <SAX/ArabicaConfig.h>
|
||||
|
||||
/**
|
||||
*
|
||||
* SAX in C++ - A C++ implementation of the SAX2 interface.
|
||||
*
|
||||
*/
|
||||
namespace Arabica
|
||||
{
|
||||
namespace SAX
|
||||
{
|
||||
|
||||
template<class string_type, class string_adaptor> class AttributeList;
|
||||
template<class string_type, class string_adaptor> class DocumentHandler;
|
||||
template<class string_type, class string_adaptor> class DTDHandler;
|
||||
template<class string_type, class string_adaptor> class EntityResolver;
|
||||
template<class string_type, class string_adaptor> class InputSource;
|
||||
template<class string_type, class string_adaptor> class Locator;
|
||||
template<class string_type, class string_adaptor> class Parser;
|
||||
template<class string_type, class string_adaptor> class SAXParseException;
|
||||
template<class string_type, class string_adaptor> class ErrorHandler;
|
||||
|
||||
} // namespace SAX
|
||||
} // namespace Arabica
|
||||
|
||||
#endif
|
||||
// end of file
|
||||
|
||||
def ARABICA_SAX_FWD_H
|
||||
#define ARABICA_SAX_FWD_H
|
||||
|
||||
#include <string>
|
||||
|
||||
/** \mainpage Arabica XML Parser Toolkit
|
||||
*
|
||||
* \section intro Introduction
|
||||
*
|
||||
* <p>Arabica has a full <a href='http://www.saxproject.org/'>SAX2, the Simple API for XML</a>, implementation
|
||||
* including the optional interfaces and helper classes. Layered on
|
||||
* SAX is a W3C <a href='http://www.w3.org/DOM/'>Document Object Model (DOM) Level 2.0 Core</a>
|
||||
* implementation, together with an <a href='http://www.w3.org/tr/xpath'>XPath</a> engine. </p>
|
||||
*
|
||||
* <p>It delivers UTF-8 encoded std::strings or UCS-2 std::wstrings,
|
||||
* but can also accommodate custom string types and alternative
|
||||
* encodings. </p>
|
||||
*
|
||||
* <p>It provides uniform SAX2 wrappers for the <a href='http://www.libexpat.org/'>expat</a> parser,
|
||||
* <a href='http://xml.apache.org/xerces-c/index.html'>Xerces</a>, <a href='http://www.xmlsoft.org'>libxml</a>
|
||||
* and for the <a href='http://msdn.microsoft.com/xml'>Microsoft XML parser</a> COM component.</p>
|
||||
*
|
||||
* \section license License
|
||||
*
|
||||
* Copyright (c) 2001-2012 Jez UK Ltd<br>
|
||||
* All rights reserved.
|
||||
* <p>
|
||||
* Redistribution and use in source and binary forms, with or <br>
|
||||
* without modification, are permitted provided that the following <br>
|
||||
* conditions are met:<br>
|
||||
* <ul>
|
||||
* <li>Redistributions of source code must retain the above <br>
|
||||
* copyright notice, this list of conditions and the following <br>
|
||||
* disclaimer.</li>
|
||||
* <li>Redistributions in binary form must reproduce the above <br>
|
||||
* copyright notice, this list of conditions and the following <br>
|
||||
* disclaimer in the documentation and/or other materials <br>
|
||||
* provided with the distribution.</li>
|
||||
* <li>Neither the name of Jez UK Ltd nor the names of <br>
|
||||
* contributors may be used to endorse or promote products <br>
|
||||
* derived from this software without specific prior written <br>
|
||||
* permission.</li>
|
||||
* </ul>
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND <br>
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, <br>
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF <br>
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE <br>
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE <br>
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, <br>
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, <br>
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, <br>
|
||||
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY <br>
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR <br>
|
||||
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT <br>
|
||||
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY <br>
|
||||
* OF SUCH DAMAGE.<br>
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include <SAX/ParserConfig.h>
|
||||
#include <SAX/ArabicaConfig.h>
|
||||
|
||||
/**
|
||||
*
|
||||
* SAX in C++ - A C++ implementation of the SAX2 interface.
|
||||
*
|
||||
*/
|
||||
namespace Arabica
|
||||
{
|
||||
namespace SAX
|
||||
{
|
||||
|
||||
template<class string_type, class string_adaptor> class AttributeList;
|
||||
template<class string_type, class string_adaptor> class DocumentHandler;
|
||||
template<class string_type, class string_adaptor> class DTDHandler;
|
||||
template<class string_type, class string_adaptor> class EntityResolver;
|
||||
template<class string_type, class string_adaptor> class InputSource;
|
||||
template<class string_type, class string_adaptor> class Locator;
|
||||
template<class string_type, class string_adaptor> class Parser;
|
||||
template<class string_type, class string_adaptor> class SAXParseException;
|
||||
template<class string_type, class string_adaptor> class ErrorHandler;
|
||||
|
||||
} // namespace SAX
|
||||
} // namespace Arabica
|
||||
|
||||
#endif
|
||||
// end of file
|
||||
|
||||
|
|
Loading…
Reference in a new issue