[libxml++] Docs: Suppress some links generated by Doxygen
- From: Kjell Ahlstedt <kjellahl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libxml++] Docs: Suppress some links generated by Doxygen
- Date: Wed, 6 Jul 2016 16:39:07 +0000 (UTC)
commit d75d8ec4b2fd268aab807c9671c9da25d6c55335
Author: Kjell Ahlstedt <kjell ahlstedt bredband net>
Date: Wed Jul 6 18:36:46 2016 +0200
Docs: Suppress some links generated by Doxygen
libxml++/attribute.h | 2 +-
libxml++/attributedeclaration.h | 2 +-
libxml++/attributenode.h | 2 +-
libxml++/dtd.h | 2 +-
libxml++/nodes/commentnode.h | 2 +-
libxml++/nodes/contentnode.h | 2 +-
libxml++/nodes/element.h | 3 ++-
libxml++/nodes/textnode.h | 2 +-
libxml++/nodes/xincludeend.h | 2 +-
libxml++/nodes/xincludestart.h | 2 +-
libxml++/parsers/domparser.h | 2 +-
libxml++/validators/dtdvalidator.h | 2 +-
12 files changed, 13 insertions(+), 12 deletions(-)
---
diff --git a/libxml++/attribute.h b/libxml++/attribute.h
index 8ac9155..01c4623 100644
--- a/libxml++/attribute.h
+++ b/libxml++/attribute.h
@@ -15,7 +15,7 @@
namespace xmlpp
{
-/** Represents an XML Node attribute.
+/** Represents an XML attribute node or attribute declaration.
* This will be instantiated by the parser.
*/
class Attribute : public Node
diff --git a/libxml++/attributedeclaration.h b/libxml++/attributedeclaration.h
index 6a9d986..5044896 100644
--- a/libxml++/attributedeclaration.h
+++ b/libxml++/attributedeclaration.h
@@ -20,7 +20,7 @@ extern "C" {
namespace xmlpp
{
-/** Represents the default value of an attribute of an XML Element node.
+/** Represents the default value of an attribute of an XML element node.
* This will be instantiated by the parser.
*
* @newin{2,36}
diff --git a/libxml++/attributenode.h b/libxml++/attributenode.h
index 68dada4..af6c4c5 100644
--- a/libxml++/attributenode.h
+++ b/libxml++/attributenode.h
@@ -21,7 +21,7 @@ extern "C" {
namespace xmlpp
{
-/** Represents an explicit attribute of an XML Element node.
+/** Represents an explicit attribute of an XML element node.
* This will be instantiated by the parser.
*
* @newin{2,36}
diff --git a/libxml++/dtd.h b/libxml++/dtd.h
index 1686777..32ee21b 100644
--- a/libxml++/dtd.h
+++ b/libxml++/dtd.h
@@ -25,7 +25,7 @@ namespace xmlpp
// See https://bugzilla.gnome.org/show_bug.cgi?id=754673#c8 for an explanation
// why it has not been done in libxml++ 3.0.
/** Represents an XML DTD for validating XML files.
- * DTD = Document Type Definition
+ * DTD = %Document Type Definition
*/
class Dtd : public NonCopyable
{
diff --git a/libxml++/nodes/commentnode.h b/libxml++/nodes/commentnode.h
index 1dbcbe1..bed857d 100644
--- a/libxml++/nodes/commentnode.h
+++ b/libxml++/nodes/commentnode.h
@@ -12,7 +12,7 @@
namespace xmlpp
{
-/** Comment Node. This will be instantiated by the parser.
+/** Comment node. This will be instantiated by the parser.
*/
class CommentNode : public ContentNode
{
diff --git a/libxml++/nodes/contentnode.h b/libxml++/nodes/contentnode.h
index 592f57f..20ffaad 100644
--- a/libxml++/nodes/contentnode.h
+++ b/libxml++/nodes/contentnode.h
@@ -12,7 +12,7 @@
namespace xmlpp
{
-/** Content Node. This will be instantiated by the parser.
+/** Content node. This will be instantiated by the parser.
*/
class ContentNode : public Node
{
diff --git a/libxml++/nodes/element.h b/libxml++/nodes/element.h
index e29264b..326df91 100644
--- a/libxml++/nodes/element.h
+++ b/libxml++/nodes/element.h
@@ -18,7 +18,8 @@
namespace xmlpp
{
-/** Element nodes have attributes as well as child nodes. This will be instantiated by the parser.
+/** %Element nodes have attributes as well as child nodes.
+ * This will be instantiated by the parser.
*/
class Element : public Node
{
diff --git a/libxml++/nodes/textnode.h b/libxml++/nodes/textnode.h
index b88f8be..4348887 100644
--- a/libxml++/nodes/textnode.h
+++ b/libxml++/nodes/textnode.h
@@ -12,7 +12,7 @@
namespace xmlpp
{
-/** Text Node. This will be instantiated by the parser.
+/** Text node. This will be instantiated by the parser.
*/
class TextNode : public ContentNode
{
diff --git a/libxml++/nodes/xincludeend.h b/libxml++/nodes/xincludeend.h
index 3b71b2d..2f12a58 100644
--- a/libxml++/nodes/xincludeend.h
+++ b/libxml++/nodes/xincludeend.h
@@ -24,7 +24,7 @@
namespace xmlpp
{
-/** XIncludeEnd node.
+/** %XIncludeEnd node.
* This will be instantiated by xmlpp::Document::process_xinclude().
*
* @newin{2,36}
diff --git a/libxml++/nodes/xincludestart.h b/libxml++/nodes/xincludestart.h
index d11c47f..f02de80 100644
--- a/libxml++/nodes/xincludestart.h
+++ b/libxml++/nodes/xincludestart.h
@@ -24,7 +24,7 @@
namespace xmlpp
{
-/** XIncludeStart node.
+/** %XIncludeStart node.
* This will be instantiated by xmlpp::Document::process_xinclude().
*
* @newin{2,36}
diff --git a/libxml++/parsers/domparser.h b/libxml++/parsers/domparser.h
index d40bce6..046355d 100644
--- a/libxml++/parsers/domparser.h
+++ b/libxml++/parsers/domparser.h
@@ -13,7 +13,7 @@
namespace xmlpp {
/** DOM XML parser.
- * DOM = Document Object Model
+ * DOM = %Document Object Model
*/
class DomParser : public Parser
{
diff --git a/libxml++/validators/dtdvalidator.h b/libxml++/validators/dtdvalidator.h
index 338005b..69a371f 100644
--- a/libxml++/validators/dtdvalidator.h
+++ b/libxml++/validators/dtdvalidator.h
@@ -15,7 +15,7 @@
namespace xmlpp {
/** XML DTD validator.
- * DTD = Document Type Definition
+ * DTD = %Document Type Definition
*/
class DtdValidator : public Validator
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]