aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/XML/src/DTDMap.cpp
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:45:01 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:01 +0300
commit2d37894b1b037cf24231090eda8589bbb44fb6fc (patch)
treebe835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/poco/XML/src/DTDMap.cpp
parent718c552901d703c502ccbefdfc3c9028d608b947 (diff)
downloadydb-2d37894b1b037cf24231090eda8589bbb44fb6fc.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/poco/XML/src/DTDMap.cpp')
-rw-r--r--contrib/libs/poco/XML/src/DTDMap.cpp234
1 files changed, 117 insertions, 117 deletions
diff --git a/contrib/libs/poco/XML/src/DTDMap.cpp b/contrib/libs/poco/XML/src/DTDMap.cpp
index 3ab6f6e0d4..8b7136287a 100644
--- a/contrib/libs/poco/XML/src/DTDMap.cpp
+++ b/contrib/libs/poco/XML/src/DTDMap.cpp
@@ -1,117 +1,117 @@
-//
-// DTDMap.cpp
-//
-// Library: XML
-// Package: DOM
-// Module: DOM
-//
-// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
-// and Contributors.
-//
-// SPDX-License-Identifier: BSL-1.0
-//
-
-
-#include "Poco/DOM/DTDMap.h"
-#include "Poco/DOM/DocumentType.h"
-#include "Poco/DOM/Document.h"
-#include "Poco/DOM/DOMException.h"
-
-
-namespace Poco {
-namespace XML {
-
-
-DTDMap::DTDMap(const DocumentType* pDocumentType, unsigned short type):
- _pDocumentType(pDocumentType),
- _type(type)
-{
- poco_check_ptr (pDocumentType->ownerDocument());
-}
-
-
-DTDMap::~DTDMap()
-{
-}
-
-
-Node* DTDMap::getNamedItem(const XMLString& name) const
-{
- Node* pCur = _pDocumentType->firstChild();
- while (pCur)
- {
- if (pCur->nodeType() == _type && pCur->nodeName() == name)
- return pCur;
- pCur = pCur->nextSibling();
- }
- return pCur;
-}
-
-
-Node* DTDMap::setNamedItem(Node* /*arg*/)
-{
- throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
-}
-
-
-Node* DTDMap::removeNamedItem(const XMLString& /*name*/)
-{
- throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
-}
-
-
-Node* DTDMap::item(unsigned long index) const
-{
- unsigned long n = 0;
- Node* pCur = _pDocumentType->firstChild();
- while (pCur)
- {
- if (pCur->nodeType() == _type)
- {
- if (n == index) return pCur;
- ++n;
- }
- pCur = pCur->nextSibling();
- }
- return pCur;
-}
-
-
-unsigned long DTDMap::length() const
-{
- unsigned long n = 0;
- Node* pCur = _pDocumentType->firstChild();
- while (pCur)
- {
- if (pCur->nodeType() == _type) ++n;
- pCur = pCur->nextSibling();
- }
- return n;
-}
-
-
-Node* DTDMap::getNamedItemNS(const XMLString& /*namespaceURI*/, const XMLString& /*localName*/) const
-{
- return 0;
-}
-
-
-Node* DTDMap::setNamedItemNS(Node* /*arg*/)
-{
- throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
-}
-
-
-Node* DTDMap::removeNamedItemNS(const XMLString& /*namespaceURI*/, const XMLString& /*localName*/)
-{
- throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
-}
-
-
-void DTDMap::autoRelease()
-{
- _pDocumentType->ownerDocument()->autoReleasePool().add(this);
-}
-
-
-} } // namespace Poco::XML
+//
+// DTDMap.cpp
+//
+// Library: XML
+// Package: DOM
+// Module: DOM
+//
+// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#include "Poco/DOM/DTDMap.h"
+#include "Poco/DOM/DocumentType.h"
+#include "Poco/DOM/Document.h"
+#include "Poco/DOM/DOMException.h"
+
+
+namespace Poco {
+namespace XML {
+
+
+DTDMap::DTDMap(const DocumentType* pDocumentType, unsigned short type):
+ _pDocumentType(pDocumentType),
+ _type(type)
+{
+ poco_check_ptr (pDocumentType->ownerDocument());
+}
+
+
+DTDMap::~DTDMap()
+{
+}
+
+
+Node* DTDMap::getNamedItem(const XMLString& name) const
+{
+ Node* pCur = _pDocumentType->firstChild();
+ while (pCur)
+ {
+ if (pCur->nodeType() == _type && pCur->nodeName() == name)
+ return pCur;
+ pCur = pCur->nextSibling();
+ }
+ return pCur;
+}
+
+
+Node* DTDMap::setNamedItem(Node* /*arg*/)
+{
+ throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
+}
+
+
+Node* DTDMap::removeNamedItem(const XMLString& /*name*/)
+{
+ throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
+}
+
+
+Node* DTDMap::item(unsigned long index) const
+{
+ unsigned long n = 0;
+ Node* pCur = _pDocumentType->firstChild();
+ while (pCur)
+ {
+ if (pCur->nodeType() == _type)
+ {
+ if (n == index) return pCur;
+ ++n;
+ }
+ pCur = pCur->nextSibling();
+ }
+ return pCur;
+}
+
+
+unsigned long DTDMap::length() const
+{
+ unsigned long n = 0;
+ Node* pCur = _pDocumentType->firstChild();
+ while (pCur)
+ {
+ if (pCur->nodeType() == _type) ++n;
+ pCur = pCur->nextSibling();
+ }
+ return n;
+}
+
+
+Node* DTDMap::getNamedItemNS(const XMLString& /*namespaceURI*/, const XMLString& /*localName*/) const
+{
+ return 0;
+}
+
+
+Node* DTDMap::setNamedItemNS(Node* /*arg*/)
+{
+ throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
+}
+
+
+Node* DTDMap::removeNamedItemNS(const XMLString& /*namespaceURI*/, const XMLString& /*localName*/)
+{
+ throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR);
+}
+
+
+void DTDMap::autoRelease()
+{
+ _pDocumentType->ownerDocument()->autoReleasePool().add(this);
+}
+
+
+} } // namespace Poco::XML