File scpm-doc_config.patch of Package scpm
Index: doc/api.cf
===================================================================
--- doc/api.cf.orig 2005-05-11 11:03:11.000000000 +0200
+++ doc/api.cf 2012-07-04 17:59:46.907607508 +0200
@@ -53,16 +53,6 @@ CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
-# This tag can be used to specify the encoding used in the generated output.
-# The encoding is not always determined by the language that is chosen,
-# but also whether or not the output is meant for Windows or non-Windows users.
-# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
-# forces the Windows encoding (this is the default for the Windows binary),
-# whereas setting the tag to NO uses a Unix-style encoding (the default for
-# all platforms other than Windows).
-
-USE_WINDOWS_ENCODING = NO
-
# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
# include brief member descriptions after the members that are listed in
# the file and class documentation (similar to JavaDoc).
@@ -147,13 +137,6 @@ JAVADOC_AUTOBRIEF = YES
MULTILINE_CPP_IS_BRIEF = NO
-# If the DETAILS_AT_TOP tag is set to YES then Doxygen
-# will output the detailed description near the top, like JavaDoc.
-# If set to NO, the detailed description appears after the member
-# documentation.
-
-DETAILS_AT_TOP = NO
-
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
# member inherits the documentation from any documented member that it
# re-implements.
@@ -608,12 +591,6 @@ HTML_FOOTER = footer.html
HTML_STYLESHEET =
-# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
-# files or namespaces will be aligned in HTML using tables. If set to
-# NO a bullet list will be used.
-
-HTML_ALIGN_MEMBERS = YES
-
# If the GENERATE_HTMLHELP tag is set to YES, additional index files
# will be generated that can be used as input for tools like the
# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
@@ -1105,22 +1082,6 @@ DOT_PATH =
DOTFILE_DIRS =
-# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
-# (in pixels) of the graphs generated by dot. If a graph becomes larger than
-# this value, doxygen will try to truncate the graph, so that it fits within
-# the specified constraint. Beware that most browsers cannot cope with very
-# large images.
-
-MAX_DOT_GRAPH_WIDTH = 1024
-
-# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
-# (in pixels) of the graphs generated by dot. If a graph becomes larger than
-# this value, doxygen will try to truncate the graph, so that it fits within
-# the specified constraint. Beware that most browsers cannot cope with very
-# large images.
-
-MAX_DOT_GRAPH_HEIGHT = 1024
-
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
# graphs generated by dot. A depth value of 3 means that only nodes reachable
# from the root by following a path via at most 3 edges will be shown. Nodes that
Index: doc/api.doxygen
===================================================================
--- doc/api.doxygen.orig 2005-05-11 11:03:12.000000000 +0200
+++ doc/api.doxygen 2012-07-04 18:03:33.593169292 +0200
@@ -34,7 +34,7 @@
variable <dfn>scpm_error</dfn> holds the apropriate error message.
*/
-/*! \fn SCPM::SCPM( int options=0, ostream &info_out=cout, ostream &hash_out=cout, string root="")
+/*! \fn SCPM::SCPM( int options=0, std::ostream &info_out=std::cout, std::ostream &hash_out=std::cout, std::string root="")
\brief Constructor
\param options Global SCPM options (optional)
\param info_out Optional ostream object used for action information output
@@ -373,10 +373,10 @@
them into the group refernence vector.
*/
-/*! \fn bool SCPM::GetResourceGroup( const string &name, vector<resource_entry_t> &group )
+/*! \fn bool SCPM::GetResourceGroup( const std::string &name, std::vector<resource_entry_t> &group )
\brief Queries resource group information
\param name String holding the name of the wanted resource group
- \param group Reference to vector<resource_entry_t> to get filled with the info
+ \param group Reference to std::vector<resource_entry_t> to get filled with the info
\return success
<p>
@@ -521,10 +521,10 @@
for <em>BOOTMODE</em> and <em>SWITCHMODE</em>.
*/
-/*! \fn bool SCPM::GetResourceGroup( const string &name, vector<resource_entry_t> &group, string &description )
+/*! \fn bool SCPM::GetResourceGroup( const std::string &name, std::vector<resource_entry_t> &group, std::string &description )
\brief Queries resource group information
\param name String holding the name of the wanted resource group
- \param group Reference to vector<resource_entry_t> to get filled with the info
+ \param group Reference to std::vector<resource_entry_t> to get filled with the info
\param description Reference to a string the groups description gets written to
\return success
<p>