From: <vac...@us...> - 2010-03-09 17:34:04
|
Revision: 172 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=172&view=rev Author: vaclavslavik Date: 2010-03-09 17:33:58 +0000 (Tue, 09 Mar 2010) Log Message: ----------- Removed @author tags from documentation. This information is of no interest to *documentation* reader. It can be found in copyright notices, VCS history and the AUTHORS file. Modified Paths: -------------- trunk/AUTHORS trunk/include/xmlwrapp/attributes.h trunk/include/xmlwrapp/document.h trunk/include/xmlwrapp/event_parser.h trunk/include/xmlwrapp/init.h trunk/include/xmlwrapp/node.h trunk/include/xmlwrapp/nodes_view.h trunk/include/xmlwrapp/tree_parser.h trunk/include/xsltwrapp/init.h trunk/include/xsltwrapp/stylesheet.h trunk/src/libxml/node_manip.h trunk/src/libxslt/result.h Modified: trunk/AUTHORS =================================================================== --- trunk/AUTHORS 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/AUTHORS 2010-03-09 17:33:58 UTC (rev 172) @@ -15,3 +15,4 @@ Frank Grimm Gary Passero Michael Grundberg <mgr...@us...> + Dmitriy Nikitinskiy Modified: trunk/include/xmlwrapp/attributes.h =================================================================== --- trunk/include/xmlwrapp/attributes.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/attributes.h 2010-03-09 17:33:58 UTC (rev 172) @@ -75,8 +75,6 @@ /** Create a new xml::attributes object with no attributes. - - @author Peter Jones */ attributes(); @@ -84,7 +82,6 @@ Copy construct a xml::attributes object. @param other The xml::attributes object to copy from. - @author Peter Jones */ attributes(const attributes& other); @@ -92,8 +89,7 @@ Copy the given xml::attributes object into this one. @param other The xml::attributes object to copy from. - @return this. - @author Peter Jones + @return *this. */ attributes& operator=(const attributes& other); @@ -101,7 +97,6 @@ Swap this xml::attributes object with another one. @param other The other xml::attributes object to swap with. - @author Peter Jones */ void swap(attributes& other); @@ -121,7 +116,6 @@ Get the name of this attribute. @return The name for this attribute. - @author Peter Jones */ const char *get_name() const; @@ -129,7 +123,6 @@ Get the value of this attribute. @return The value for this attribute. - @author Peter Jones */ const char* get_value() const; @@ -239,7 +232,6 @@ @return An iterator equal to end() if there are no attributes. @see xml::attributes::iterator @see xml::attributes::attr - @author Peter Jones */ iterator begin(); @@ -250,7 +242,6 @@ @return A const_iterator equal to end() if there are no attributes. @see xml::attributes::const_iterator @see xml::attributes::attr - @author Peter Jones */ const_iterator begin() const; @@ -258,7 +249,6 @@ Get an iterator that points one past the the last attribute. @return An "end" iterator. - @author Peter Jones */ iterator end(); @@ -266,7 +256,6 @@ Get a const_iterator that points one past the last attribute. @return An "end" const_iterator. - @author Peter Jones */ const_iterator end() const; @@ -276,7 +265,6 @@ @param name The name of the attribute to add. @param value The value of the attribute to add. - @author Peter Jones */ void insert(const char *name, const char *value); @@ -290,7 +278,6 @@ @return If the attribute was not found, find will return end(). @see xml::attributes::iterator @see xml::attributes::attr - @author Peter Jones */ iterator find(const char *name); @@ -304,7 +291,6 @@ @return If the attribute was not found, find will return end(). @see xml::attributes::const_iterator @see xml::attributes::attr - @author Peter Jones */ const_iterator find(const char *name) const; @@ -317,7 +303,6 @@ @return An iterator that points to the attribute after the one to be erased. @see xml::attributes::iterator @see xml::attributes::attr - @author Peter Jones */ iterator erase(iterator to_erase); @@ -327,7 +312,6 @@ pointers or references to that attribute. @param name The name of the attribute to erase. - @author Peter Jones */ void erase(const char *name); @@ -336,7 +320,6 @@ @return True if there are no attributes. @return False if there is at least one attribute. - @author Peter Jones */ bool empty() const; @@ -345,7 +328,6 @@ object. @return The number of attributes in this xml::attributes object. - @author Peter Jones */ size_type size() const; Modified: trunk/include/xmlwrapp/document.h =================================================================== --- trunk/include/xmlwrapp/document.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/document.h 2010-03-09 17:33:58 UTC (rev 172) @@ -84,8 +84,6 @@ /** Create a new XML document with the default settings. The new document will contain a root node with a name of "blank". - - @author Peter Jones */ document(); @@ -94,7 +92,6 @@ given text. @param root_name What to set the name of the root element to. - @author Peter Jones */ explicit document(const char *root_name); @@ -102,7 +99,6 @@ Create a new XML document and set the root node. @param n The node to use as the root node. n will be copied. - @author Peter Jones */ explicit document(const node& n); @@ -111,7 +107,6 @@ copy of the original. @param other The other document object to copy from. - @author Peter Jones */ document(const document& other); @@ -122,7 +117,6 @@ @param other The document to copy from. @return *this. - @author Peter Jones */ document& operator=(const document& other); @@ -130,14 +124,11 @@ Swap one xml::document object for another. @param other The other document to swap - @author Peter Jones */ void swap(document& other); /** Clean up after an XML document object. - - @author Peter Jones */ ~document(); @@ -148,7 +139,6 @@ tree! @return A const reference to the root node. - @author Peter Jones */ const node& get_root_node() const; @@ -159,7 +149,6 @@ tree! @return A reference to the root node. - @author Peter Jones */ node& get_root_node(); @@ -168,7 +157,6 @@ in the document object. @param n The new root node to use. - @author Peter Jones */ void set_root_node(const node& n); @@ -178,7 +166,6 @@ version from the XML processing instruction. @return The XML version string for this document. - @author Peter Jones */ const std::string& get_version() const; @@ -187,7 +174,6 @@ will be used when generating the XML output. @param version The version string to use, like "1.0". - @author Peter Jones */ void set_version(const char *version); @@ -196,7 +182,6 @@ ISO-8859-1. @return The encoding string. - @author Peter Jones */ const std::string& get_encoding() const; @@ -205,8 +190,6 @@ to ISO-8859-1. @param encoding The XML encoding to use. - @author Peter Jones - @author Dmitriy Nikitinskiy */ void set_encoding(const char *encoding); @@ -217,7 +200,6 @@ @return True if this document is standalone. @return False if this document is not standalone. - @author Peter Jones */ bool get_is_standalone() const; @@ -226,7 +208,6 @@ correct processing instruction. @param sa What to set the standalone flag to. - @author Peter Jones */ void set_is_standalone(bool sa); @@ -240,8 +221,6 @@ @return False if there was an error with substitutions. @return True if there were no errors (with or without substitutions). - @author Peter Jones - @author Daniel Evison */ bool process_xinclude(); @@ -251,7 +230,6 @@ @return True if this document has an internal subset. @return False otherwise. - @author Peter Jones */ bool has_internal_subset() const; @@ -261,7 +239,6 @@ @return True if this document has an external subset. @return False otherwise. - @author Peter Jones */ bool has_external_subset() const; @@ -276,7 +253,6 @@ @return True if the document is valid. @return False if there was a problem with the DTD or XML doc. - @author Peter Jones */ bool validate(); @@ -295,7 +271,6 @@ @param dtdname A filename or URL for the DTD to use. @return True if the document is valid. @return False if there was a problem with the DTD or XML doc. - @author Peter Jones */ bool validate(const char *dtdname); @@ -306,7 +281,6 @@ there are, including processing instructions, comments, etc. @return The number of children nodes that this document has. - @author Peter Jones */ size_type size() const; @@ -317,7 +291,6 @@ @return A xml::node::iterator that points to the first child node. @return An end iterator if there are no children in this document - @author Peter Jones */ node::iterator begin(); @@ -328,7 +301,6 @@ @return A xml::node::const_iterator that points to the first child node. @return An end const_iterator if there are no children in this document. - @author Peter Jones */ node::const_iterator begin() const; @@ -337,7 +309,6 @@ document. @return An end xml::node::iterator. - @author Peter Jones */ node::iterator end(); @@ -346,7 +317,6 @@ this document. @return An end xml::node::const_iterator. - @author Peter Jones */ node::const_iterator end() const; @@ -358,7 +328,6 @@ be thrown. @param child The child xml::node to add. - @author Peter Jones */ void push_back (const node &child); @@ -373,7 +342,6 @@ @param n The node to insert as a child of this document. @return An iterator that points to the newly inserted node. @see xml::document::push_back - @author Peter Jones */ node::iterator insert (const node &n); @@ -388,7 +356,6 @@ @param n The node to insert as a child of this document. @return An iterator that points to the newly inserted node. @see xml::document::push_back - @author Peter Jones */ node::iterator insert(node::iterator position, const node &n); @@ -407,7 +374,6 @@ @param new_node The node to put in old_node's place. @return An iterator that points to the new node. @see xml::document::push_back - @author Peter Jones */ node::iterator replace(node::iterator old_node, const node& new_node); @@ -424,7 +390,6 @@ @param to_erase An iterator that points to the node to be erased. @return An iterator that points to the node after the one being erased. @see xml::document::push_back - @author Peter Jones */ node::iterator erase(node::iterator to_erase); @@ -441,7 +406,6 @@ @param last An iterator that points one past the last node to erase. Think xml::node::end(). @return An iterator that points to the node after the last one being erased. @see xml::document::push_back - @author Peter Jones */ node::iterator erase(node::iterator first, node::iterator last); @@ -450,7 +414,6 @@ the given string. @param s The string to place the XML text data. - @author Peter Jones */ void save_to_string(std::string& s) const; @@ -463,7 +426,6 @@ for better speed, and 9 is for smaller size @return True if the data was saved successfully. @return False otherwise. - @author Peter Jones */ bool save_to_file(const char *filename, int compression_level = 0) const; @@ -474,7 +436,6 @@ @param stream The stream to insert the XML into. @param doc The document to insert. @return The stream from the first parameter. - @author Peter Jones */ friend std::ostream& operator<< (std::ostream &stream, const document &doc); Modified: trunk/include/xmlwrapp/event_parser.h =================================================================== --- trunk/include/xmlwrapp/event_parser.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/event_parser.h 2010-03-09 17:33:58 UTC (rev 172) @@ -80,7 +80,6 @@ @param filename The name of the file to parse. @return True if the file was successfully parsed; false otherwise. - @author Peter Jones */ bool parse_file(const char *filename); @@ -89,7 +88,6 @@ @param stream The stream to read data from. @return True if the stream was successfully parsed; false otherwise. - @author Peter Jones */ bool parse_stream(std::istream& stream); @@ -101,7 +99,6 @@ @param chunk The xml data chuck to parse. @param length The size of the given data chunk @return True if the chunk was parsed sucessfully; false otherwise. - @author Peter Jones */ bool parse_chunk(const char *chunk, size_type length); @@ -111,7 +108,6 @@ member function. @return True if all parsing was successful; false otherwise. - @author Peter Jones */ bool parse_finish(); @@ -121,7 +117,6 @@ a message describing the error. @return A description of the XML parsing error. - @author Peter Jones */ const std::string& get_error_message() const; @@ -134,7 +129,6 @@ @param name The name of the element @param attrs The element's attributes @return You should return true to continue parsing; false to stop. - @author Peter Jones */ virtual bool start_element(const std::string& name, const attrs_type& attrs) = 0; @@ -145,7 +139,6 @@ @param name The name of the element that was closed. @return You should return true to continue parsing; false to stop. - @author Peter Jones */ virtual bool end_element(const std::string& name) = 0; @@ -155,7 +148,6 @@ @param contents The contents of the text node. @return You should return true to continue parsing; false to stop. - @author Peter Jones */ virtual bool text(const std::string& contents) = 0; @@ -170,7 +162,6 @@ @param contents The contents of the CDATA section. @return You should return true to continue parsing. @return Return false if you want to stop. - @author Peter Jones */ virtual bool cdata(const std::string& contents); @@ -186,7 +177,6 @@ @param data The data of the processing instruction. @return You should return true to continue parsing. @return Return false if you want to stop. - @author Peter Jones */ virtual bool processing_instruction(const std::string& target, const std::string& data); @@ -200,7 +190,6 @@ @param contents The contents of the XML comment. @return You should return true to continue parsing. @return Return false if you want to stop. - @author Peter Jones */ virtual bool comment(const std::string& contents); @@ -211,7 +200,6 @@ @param message The warning message from the compiler. @return You should return true to continue parsing. @return Return false if you want to stop. - @author Peter Jones */ virtual bool warning(const std::string& message); @@ -222,7 +210,6 @@ function, "Unknown Error" will be returned from get_error_message(). @param message The message to return from get_error_message(). - @author Peter Jones */ void set_error_message(const char *message); Modified: trunk/include/xmlwrapp/init.h =================================================================== --- trunk/include/xmlwrapp/init.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/init.h 2010-03-09 17:33:58 UTC (rev 172) @@ -69,7 +69,6 @@ node tree. The default is true. @param flag True to turn on indenting, false to turn it off. - @author Peter Jones */ static void indent_output(bool flag); @@ -79,7 +78,6 @@ is false. @param flag True to remove whitespace, false to leave alone. - @author Peter Jones */ static void remove_whitespace(bool flag); @@ -88,7 +86,6 @@ substitute entities while parsing. The default is true. @param flag True to turn on substitution, false to turn off. - @author Peter Jones */ static void substitute_entities(bool flag); @@ -99,7 +96,6 @@ default is true. @param flag True to turn on loading, false to turn it off. - @author Peter Jones */ static void load_external_subsets(bool flag); @@ -109,7 +105,6 @@ is false. @return flag True to turn on validation, false to turn it off. - @author Peter Jones */ static void validate_xml(bool flag); Modified: trunk/include/xmlwrapp/node.h =================================================================== --- trunk/include/xmlwrapp/node.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/node.h 2010-03-09 17:33:58 UTC (rev 172) @@ -165,8 +165,6 @@ /** Construct a new blank xml::node. - - @author Peter Jones */ node(); @@ -174,7 +172,6 @@ Construct a new xml::node and set the name of the node. @param name The name of the new node. - @author Peter Jones */ explicit node(const char *name); @@ -184,7 +181,6 @@ @param name The name of the new element. @param content The text that will be used to create a child node. - @author Peter Jones */ node(const char *name, const char *content); @@ -199,7 +195,6 @@ @param cdata_info A cdata struct that tells xml::node what the content will be. - @author Peter Jones */ explicit node(cdata cdata_info); @@ -213,7 +208,6 @@ @endcode @param comment_info A comment struct that tells xml::node what the comment will be. - @author Peter Jones */ explicit node(comment comment_info); @@ -228,7 +222,6 @@ @endcode @param pi_info A pi struct that tells xml::node what the name and contents of the XML PI are. - @author Peter Jones */ explicit node(pi pi_info); @@ -242,7 +235,6 @@ @endcode @param text_info A text struct that tells xml::node what the text will be. - @author Vaclav Slavik */ explicit node(text text_info); @@ -250,7 +242,6 @@ Construct a new xml::node by copying another xml::node. @param other The other node to copy. - @author Peter Jones */ node(const node& other); @@ -259,14 +250,11 @@ @param other The other node to copy. @return A reference to this node. - @author Peter Jones */ node& operator=(const node& other); /** Class destructor - - @author Peter Jones */ ~node(); @@ -274,7 +262,6 @@ Set the name of this xml::node. @param name The new name for this xml::node. - @author Peter Jones */ void set_name(const char *name); @@ -285,7 +272,6 @@ Feedback is welcome. @return The name of this node. - @author Peter Jones */ const char* get_name() const; @@ -295,7 +281,6 @@ with one text node set to the given string. @param content The content of the text node. - @author Peter Jones */ void set_content(const char *content); @@ -309,7 +294,6 @@ Feedback is welcome. @return The content or 0. - @author Peter Jones */ const char* get_content() const; @@ -318,7 +302,6 @@ can and cannot do with it. @return The node's type. - @author Peter Jones */ node_type get_type() const; @@ -328,7 +311,6 @@ to this returned object, to prevent a copy. @return The xml::attributes object for this node. - @author Peter Jones */ xml::attributes& get_attributes(); @@ -338,7 +320,6 @@ returned object, to prevent a copy. @return The xml::attributes object for this node. - @author Peter Jones */ const xml::attributes& get_attributes() const; @@ -347,7 +328,6 @@ @return The namespace of this node or NULL if no namespace is associated. - @author Vaclav Slavik @since 0.6.0 */ const char* get_namespace() const; @@ -357,7 +337,6 @@ CDATA for example. @return True if this node is a text node; false otherwise. - @author Peter Jones */ bool is_text() const; @@ -365,7 +344,6 @@ Add a child xml::node to this node. @param child The child xml::node to add. - @author Peter Jones */ void push_back(const node& child); @@ -373,7 +351,6 @@ Swap this node with another one. @param other The other node to swap with. - @author Peter Jones */ void swap(node& other); @@ -475,7 +452,6 @@ xml::node::empty() instead. @return The number of children this node has. - @author Peter Jones */ size_type size() const; @@ -485,7 +461,6 @@ @return True if this node DOES NOT have any children. @return False if this node does have children. - @author Peter Jones */ bool empty() const; @@ -493,7 +468,6 @@ Get an iterator that points to the beginning of this node's children. @return An iterator that points to the beginning of the children. - @author Peter Jones */ iterator begin(); @@ -502,7 +476,6 @@ children. @return A const_iterator that points to the beginning of the children. - @author Peter Jones */ const_iterator begin() const; @@ -510,7 +483,6 @@ Get an iterator that points one past the last child for this node. @return A "one past the end" iterator. - @author Peter Jones */ iterator end() { return iterator(); } @@ -519,7 +491,6 @@ node. @return A "one past the end" const_iterator - @author Peter Jones */ const_iterator end() const { return const_iterator(); } @@ -527,7 +498,6 @@ Get an iterator that points back at this node. @return An iterator that points at this node. - @author Peter Jones */ iterator self(); @@ -535,7 +505,6 @@ Get a const_iterator that points back at this node. @return A const_iterator that points at this node. - @author Peter Jones */ const_iterator self() const; @@ -546,7 +515,6 @@ @return An iterator that points to this nodes parent. @return If no parent, returns the same iterator that xml::node::end() returns. - @author Peter Jones */ iterator parent(); @@ -557,7 +525,6 @@ @return A const_iterator that points to this nodes parent. @return If no parent, returns the same const_iterator that xml::node::end() returns. - @author Peter Jones */ const_iterator parent() const; @@ -573,7 +540,6 @@ @param name The name of the node you want to find. @return An iterator that points to the node if found. @return An end() iterator if the node was not found. - @author Peter Jones @see elements(const char*), find(const char*, iterator) */ @@ -591,7 +557,6 @@ @param name The name of the node you want to find. @return A const_iterator that points to the node if found. @return An end() const_iterator if the node was not found. - @author Peter Jones @see elements(const char*) const, find(const char*, const_iterator) const @@ -612,7 +577,6 @@ @param start Where to begin the search. @return An iterator that points to the node if found. @return An end() iterator if the node was not found. - @author Peter Jones @see elements(const char*) */ @@ -632,7 +596,6 @@ @param start Where to begin the search. @return A const_iterator that points to the node if found. @return An end() const_iterator if the node was not found. - @author Peter Jones @see elements(const char*) const */ @@ -652,7 +615,6 @@ @endcode @return View with all child elements or empty view if there aren't any. - @author Vaclav Slavik @since 0.6.0 @see nodes_view @@ -675,7 +637,6 @@ @endcode @return View with all child elements or empty view if there aren't any. - @author Vaclav Slavik @since 0.6.0 @see const_nodes_view @@ -697,7 +658,6 @@ @param name Name of the elements to return. @return View that contains only elements @a name. - @author Vaclav Slavik @since 0.6.0 */ nodes_view elements(const char *name); @@ -719,7 +679,6 @@ @param name Name of the elements to return. @return View that contains only elements @a name. - @author Vaclav Slavik @since 0.6.0 */ const_nodes_view elements(const char *name) const; @@ -731,7 +690,6 @@ @param n The node to insert as a child of this node. @return An iterator that points to the newly inserted node. - @author Peter Jones */ iterator insert(const node& n); @@ -742,7 +700,6 @@ @param position An iterator that points to the location where the new node should be inserted (before it). @param n The node to insert as a child of this node. @return An iterator that points to the newly inserted node. - @author Peter Jones */ iterator insert(const iterator& position, const node& n); @@ -756,7 +713,6 @@ @param old_node An iterator that points to the node that should be removed. @param new_node The node to put in old_node's place. @return An iterator that points to the new node. - @author Peter Jones */ iterator replace(const iterator& old_node, const node& new_node); @@ -768,8 +724,6 @@ @param to_erase An iterator that points to the node to be erased. @return An iterator that points to the node after the one being erased. - @author Peter Jones - @author Gary A. Passero */ iterator erase(const iterator& to_erase); @@ -781,7 +735,6 @@ @param first The first node in the range to be removed. @param last An iterator that points one past the last node to erase. Think xml::node::end(). @return An iterator that points to the node after the last one being erased. - @author Peter Jones */ iterator erase(iterator first, const iterator& last); @@ -793,7 +746,6 @@ @param name The name of nodes to remove. @return The number of nodes removed. - @author Peter Jones */ size_type erase(const char *name); @@ -807,7 +759,6 @@ @param node_name The name of the nodes to sort. @param attr_name The attribute to sort on. - @author Peter Jones */ void sort(const char *node_name, const char *attr_name); @@ -817,7 +768,6 @@ sorting. @param compare The binary function object to call in order to sort all child nodes. - @author Peter Jones */ template <typename T> void sort (T compare) { impl::sort_callback<T> cb(compare); sort_fo(cb); } @@ -827,7 +777,6 @@ string to that text. @param xml The string to set the node's XML data to. - @author Peter Jones */ void node_to_string(std::string& xml) const; @@ -837,7 +786,6 @@ @param stream The stream to write the node as XML. @param n The node to write to the stream. @return The stream. - @author Peter Jones */ friend std::ostream& operator<< (std::ostream &stream, const node &n); Modified: trunk/include/xmlwrapp/nodes_view.h =================================================================== --- trunk/include/xmlwrapp/nodes_view.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/nodes_view.h 2010-03-09 17:33:58 UTC (rev 172) @@ -69,7 +69,6 @@ The nodes_view class implements the same container interface that xml::node does: it has begin() and end() methods. - @author Vaclav Slavik @since 0.6.0 @see xml::node::elements(), xml::node::elements(const char *) @@ -234,7 +233,6 @@ @see nodes_view - @author Vaclav Slavik @since 0.6.0 */ class const_nodes_view Modified: trunk/include/xmlwrapp/tree_parser.h =================================================================== --- trunk/include/xmlwrapp/tree_parser.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xmlwrapp/tree_parser.h 2010-03-09 17:33:58 UTC (rev 172) @@ -84,7 +84,6 @@ @param filename The name of the file to parse. @param allow_exceptions Whether or not you want an exception for parsing errors. - @author Peter Jones */ tree_parser(const char *filename, bool allow_exceptions = true); @@ -97,7 +96,6 @@ @param size The size of the XML data to parse. @param allow_exceptions Whether or not you want an exception for parsing errors. - @author Peter Jones */ tree_parser(const char *data, size_type size, bool allow_exceptions = true); @@ -109,7 +107,6 @@ good XML node tree. @return True if the tree_parser is NOT VAILD; false if it is vaild. - @author Peter Jones */ bool operator!() const; @@ -119,7 +116,6 @@ generated during parsing. @return The error message generated durring XML parsing. - @author Peter Jones */ const std::string& get_error_message() const; @@ -131,7 +127,6 @@ @return True if there were any warnings. @return False if there were no warnings. - @author Peter Jones */ bool had_warnings() const; @@ -141,7 +136,6 @@ document to avoid a deep copy. @return A reference to the xml::document. - @author Peter Jones */ xml::document& get_document(); @@ -151,7 +145,6 @@ document to avoid a deep copy. @return A const reference to the xml::document. - @author Peter Jones */ const xml::document& get_document() const; Modified: trunk/include/xsltwrapp/init.h =================================================================== --- trunk/include/xsltwrapp/init.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xsltwrapp/init.h 2010-03-09 17:33:58 UTC (rev 172) @@ -71,7 +71,6 @@ true. @param flag True to enable XInclusing processing; False otherwise. - @author Peter Jones */ static void process_xincludes(bool flag); Modified: trunk/include/xsltwrapp/stylesheet.h =================================================================== --- trunk/include/xsltwrapp/stylesheet.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/include/xsltwrapp/stylesheet.h 2010-03-09 17:33:58 UTC (rev 172) @@ -68,7 +68,6 @@ stylesheet in the given filename. @param filename The name of the file that contains the stylesheet. - @author Peter Jones */ explicit stylesheet(const char *filename); @@ -79,14 +78,11 @@ document and free it. @param doc The parsed stylesheet. - @author Peter Jones */ explicit stylesheet(xml::document doc); /** Clean up after an xslt::stylesheet. - - @author Peter Jones */ ~stylesheet(); @@ -98,7 +94,6 @@ @param result The result tree after applying this stylesheet. @return True if the transformation was successful and the results placed in result. @return False if there was an error, result is not modified. - @author Peter Jones */ bool apply(const xml::document& doc, xml::document& result); @@ -111,7 +106,6 @@ @param with_params Override xsl:param elements using the given key/value map @return True if the transformation was successful and the results placed in result. @return False if there was an error, result is not modified. - @author Peter Jones */ bool apply(const xml::document& doc, xml::document& result, const param_type& with_params); @@ -126,7 +120,6 @@ @param doc The XML document to transform. @return A reference to the result tree. - @author Peter Jones */ xml::document& apply(const xml::document& doc); @@ -142,7 +135,6 @@ @param doc The XML document to transform. @param with_params Override xsl:param elements using the given key/value map @return A reference to the result tree. - @author Peter Jones */ xml::document& apply(const xml::document& doc, const param_type& with_params); @@ -157,7 +149,6 @@ constructor. @return The last error message. - @author Peter Jones */ const std::string& get_error_message() const; Modified: trunk/src/libxml/node_manip.h =================================================================== --- trunk/src/libxml/node_manip.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/src/libxml/node_manip.h 2010-03-09 17:33:58 UTC (rev 172) @@ -59,7 +59,6 @@ @param to_add The node to be copied and then inserted into the child list. @return The new node that was inserted into the child list. - @author Peter Jones */ xmlNodePtr node_insert(xmlNodePtr parent, xmlNodePtr before, xmlNodePtr to_add); @@ -74,7 +73,6 @@ @return The new node that was crated from copying @a new_node and inserted into the child list where @a old_node was. - @author Peter Jones */ xmlNodePtr node_replace(xmlNodePtr old_node, xmlNodePtr new_node); @@ -87,7 +85,6 @@ @return The node that was after to_erase (may be 0 (null) if @a to_erase was the last node in the list) - @author Peter Jones */ xmlNodePtr node_erase(xmlNodePtr to_erase); Modified: trunk/src/libxslt/result.h =================================================================== --- trunk/src/libxslt/result.h 2010-03-09 17:07:55 UTC (rev 171) +++ trunk/src/libxslt/result.h 2010-03-09 17:33:58 UTC (rev 172) @@ -62,8 +62,6 @@ libxmlwrapp, on libxslt which should be only a dependency of libxsltwrapp as this precludes calling the XSLT functions which must be used with such "result" documents directly from xml::document code. - - @author Vadim Zeitlin */ class result { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |