|
From: Jan G. <jan...@us...> - 2007-04-08 22:10:27
|
Update of /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16205/libs/circular_buffer/doc Modified Files: HOWTO-srcdoc circular_buffer.html circular_buffer.xslt circular_buffer_space_optimized.html circular_buffer_space_optimized.xslt copy.xslt doxygen2html.xslt html2xhtml.xslt update_srcdoc.sh update_srcdoc.xslt Log Message: updated srcdoc Index: circular_buffer.xslt =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/circular_buffer.xslt,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- circular_buffer.xslt 2 Oct 2006 23:30:20 -0000 1.14 +++ circular_buffer.xslt 8 Apr 2007 22:10:24 -0000 1.15 @@ -3,7 +3,7 @@ XSL transformation from the XML files generated by Doxygen into XHTML source code documentation of the circular_buffer. -Copyright (c) 2006 Jan Gaspar +Copyright (c) 2007 Jan Gaspar Use, modification, and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Index: doxygen2html.xslt =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/doxygen2html.xslt,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- doxygen2html.xslt 23 Jan 2007 23:12:35 -0000 1.41 +++ doxygen2html.xslt 8 Apr 2007 22:10:24 -0000 1.42 @@ -3,7 +3,7 @@ Generic XSL transformation from the XML files generated by Doxygen into XHTML source code documentation. -Copyright (c) 2006 Jan Gaspar +Copyright (c) 2007 Jan Gaspar Use, modification, and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at @@ -41,6 +41,10 @@ <b><xsl:apply-templates/></b> </xsl:template> + <xsl:template match="emphasis"> + <i><xsl:apply-templates/></i> + </xsl:template> + <xsl:template match="linebreak"> <br /> </xsl:template> @@ -103,6 +107,10 @@ <dd><xsl:apply-templates select="parameterdescription"/></dd> </dl> </xsl:when> + <xsl:when test="contains(parameternamelist/parametername, '<code>')"> + <code><xsl:value-of select="substring-before(substring-after(parameternamelist/parametername, '<code>'), '</code>')"/></code> + <xsl:apply-templates select="parameterdescription"/> + </xsl:when> <xsl:otherwise> <xsl:apply-templates select="parameternamelist/parametername"/> <xsl:apply-templates select="parameterdescription"/> Index: HOWTO-srcdoc =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/HOWTO-srcdoc,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- HOWTO-srcdoc 8 Oct 2006 22:01:09 -0000 1.3 +++ HOWTO-srcdoc 8 Apr 2007 22:10:24 -0000 1.4 @@ -2,7 +2,7 @@ # HOW-TO documentation about generating/updating source code documentation for # # the Circular Buffer library. # # # -# Copyright (c) 2006 Jan Gaspar # +# Copyright (c) 2007 Jan Gaspar # # # # Use, modification, and distribution is subject to the Boost Software # # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at # Index: copy.xslt =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/copy.xslt,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- copy.xslt 19 Aug 2006 15:37:09 -0000 1.4 +++ copy.xslt 8 Apr 2007 22:10:24 -0000 1.5 @@ -2,7 +2,7 @@ <!-- Helper XSL transformation making plain copy of an XML tree. -Copyright (c) 2006 Jan Gaspar +Copyright (c) 2007 Jan Gaspar Use, modification, and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Index: circular_buffer_space_optimized.xslt =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/circular_buffer_space_optimized.xslt,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- circular_buffer_space_optimized.xslt 2 Oct 2006 23:30:20 -0000 1.19 +++ circular_buffer_space_optimized.xslt 8 Apr 2007 22:10:24 -0000 1.20 @@ -3,7 +3,7 @@ XSL transformation from the XML files generated by Doxygen into XHTML source code documentation of the circular_buffer_space_optimized. -Copyright (c) 2006 Jan Gaspar +Copyright (c) 2007 Jan Gaspar Use, modification, and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Index: circular_buffer.html =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/circular_buffer.html,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- circular_buffer.html 26 Feb 2007 22:37:09 -0000 1.62 +++ circular_buffer.html 8 Apr 2007 22:10:24 -0000 1.63 @@ -983,7 +983,7 @@ </dt> <dd> This constructor has been defined only due to compatibility with the STL container definition. Avoid - using it because it allocates very large amount of memory. + using it because it may allocate very large amount of memory. </dd> </dl> </td> @@ -1499,26 +1499,19 @@ </dl> <dl> [...2162 lines suppressed...] <dl> <dt> - <b>Iterator Invalidation:</b> + <b>Complexity:</b> </dt> <dd> - Invalidates all iterators pointing to the <code>circular_buffer</code>. + Linear (in the size of the <code>circular_buffer</code>). </dd> </dl> <dl> @@ -6595,7 +6776,7 @@ <tr valign="top"> <td valign="top" align="left"> <p> - <small>Copyright © 2003-2006 Jan Gaspar</small> + <small>Copyright © 2003-2007 Jan Gaspar</small> </p> <p> <small>Use, modification, and distribution is subject to the Boost Software License, Version 1.0.<br> Index: circular_buffer_space_optimized.html =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/circular_buffer_space_optimized.html,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- circular_buffer_space_optimized.html 18 Feb 2007 23:03:27 -0000 1.36 +++ circular_buffer_space_optimized.html 8 Apr 2007 22:10:24 -0000 1.37 @@ -1333,7 +1333,7 @@ <tr> <td align="left" valign="top"> <p> - <small>Copyright © 2003-2006 Jan Gaspar</small> + <small>Copyright © 2003-2007 Jan Gaspar</small> </p> <p> <small>Use, modification, and distribution is subject to the Boost Software License, Version 1.0.<br> Index: update_srcdoc.sh =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/update_srcdoc.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- update_srcdoc.sh 8 Oct 2006 21:59:11 -0000 1.8 +++ update_srcdoc.sh 8 Apr 2007 22:10:24 -0000 1.9 @@ -3,7 +3,7 @@ # Shell script which updates the Circular Buffer library documentation with # # the latest source code documentation (which is in the source files). # # # -# Copyright (c) 2006 Jan Gaspar # +# Copyright (c) 2007 Jan Gaspar # # # # Use, modification, and distribution is subject to the Boost Software # # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at # Index: html2xhtml.xslt =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/html2xhtml.xslt,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- html2xhtml.xslt 19 Aug 2006 15:37:09 -0000 1.6 +++ html2xhtml.xslt 8 Apr 2007 22:10:24 -0000 1.7 @@ -2,7 +2,7 @@ <!-- Helper XSL transformation which converts HTML into XHTML. -Copyright (c) 2006 Jan Gaspar +Copyright (c) 2007 Jan Gaspar Use, modification, and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Index: update_srcdoc.xslt =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/doc/update_srcdoc.xslt,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- update_srcdoc.xslt 19 Aug 2006 15:37:09 -0000 1.4 +++ update_srcdoc.xslt 8 Apr 2007 22:10:24 -0000 1.5 @@ -3,7 +3,7 @@ Helper XSL transformation updating source code documentation sections in the specified HTML file. -Copyright (c) 2006 Jan Gaspar +Copyright (c) 2007 Jan Gaspar Use, modification, and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |