[pygccxml-commit] SF.net SVN: pygccxml:[1671]
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2009-02-11 09:34:35
|
Revision: 1671 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1671&view=rev Author: roman_yakovenko Date: 2009-02-11 09:34:27 +0000 (Wed, 11 Feb 2009) Log Message: ----------- sphinx Modified Paths: -------------- pygccxml_dev/docs/design.rest pygccxml_dev/docs/query_interface.rest pyplusplus_dev/docs/pyplusplus.rest pyplusplus_dev/pyplusplus/decl_wrappers/call_policies.py pyplusplus_dev/pyplusplus/messages/warnings_.py sphinx/conf.py Added Paths: ----------- sphinx/check_links.bat Removed Paths: ------------- developer_scripts/check_links.bat Deleted: developer_scripts/check_links.bat =================================================================== --- developer_scripts/check_links.bat 2009-02-10 21:14:30 UTC (rev 1670) +++ developer_scripts/check_links.bat 2009-02-11 09:34:27 UTC (rev 1671) @@ -1,3 +0,0 @@ -cd D:\dev\language-binding\production\www\ -E:\Python25\Scripts\linkchecker.bat --no-warnings index.html - Modified: pygccxml_dev/docs/design.rest =================================================================== --- pygccxml_dev/docs/design.rest 2009-02-10 21:14:30 UTC (rev 1670) +++ pygccxml_dev/docs/design.rest 2009-02-11 09:34:27 UTC (rev 1671) @@ -282,7 +282,7 @@ .. _`SourceForge`: http://sourceforge.net/index.php .. _`Python`: http://www.python.org .. _`GCC-XML`: http://www.gccxml.org -.. _`UML diagram` : ./declarations_uml.png -.. _`parser package UML diagram` : ./parser_uml.png +.. _`UML diagram` : declarations_uml.png +.. _`parser package UML diagram` : parser_uml.png .. _`ReleaseForge` : http://releaseforge.sourceforge.net .. _`boost::type_traits` : http://www.boost.org/libs/type_traits/index.html Modified: pygccxml_dev/docs/query_interface.rest =================================================================== --- pygccxml_dev/docs/query_interface.rest 2009-02-10 21:14:30 UTC (rev 1670) +++ pygccxml_dev/docs/query_interface.rest 2009-02-11 09:34:27 UTC (rev 1671) @@ -289,7 +289,7 @@ .. _`SourceForge`: http://sourceforge.net/index.php .. _`Python`: http://www.python.org .. _`GCC-XML`: http://www.gccxml.org -.. _`UML diagram` : ./declarations_uml.png -.. _`parser package UML diagram` : ./parser_uml.png +.. _`UML diagram` : declarations_uml.png +.. _`parser package UML diagram` : parser_uml.png .. _`ReleaseForge` : http://releaseforge.sourceforge.net .. _`boost::type_traits` : http://www.boost.org/libs/type_traits/index.html Modified: pyplusplus_dev/docs/pyplusplus.rest =================================================================== --- pyplusplus_dev/docs/pyplusplus.rest 2009-02-10 21:14:30 UTC (rev 1670) +++ pyplusplus_dev/docs/pyplusplus.rest 2009-02-11 09:34:27 UTC (rev 1671) @@ -105,7 +105,7 @@ can find UML diagram of almost all code creators: `class diagram`_. .. _`AST`: http://en.wikipedia.org/wiki/Abstract_syntax_tree -.. _`class diagram`: ./code_creators_uml.png +.. _`class diagram`: code_creators_uml.png At the end of this step you have code creators tree, which is ready to be written to disc. Modified: pyplusplus_dev/pyplusplus/decl_wrappers/call_policies.py =================================================================== --- pyplusplus_dev/pyplusplus/decl_wrappers/call_policies.py 2009-02-10 21:14:30 UTC (rev 1670) +++ pyplusplus_dev/pyplusplus/decl_wrappers/call_policies.py 2009-02-11 09:34:27 UTC (rev 1671) @@ -296,7 +296,7 @@ class memory_managers: """implements code generation for `Py++` defined memory managers - For complete documentation and usage example see http://language-binding.net/pyplusplus/documentation/functions/call_policies.html + For complete documentation and usage example see :doc:`call policies document <pyplusplus/documentation/functions/call_policies/call_policies>` """ none = 'none' delete_ = 'delete_' @@ -312,7 +312,7 @@ class convert_array_to_tuple_t( compound_policy_t ): """implements code generation for `Py++` defined "as_tuple" value policy - For complete documentation and usage example see http://language-binding.net/pyplusplus/documentation/functions/call_policies.html + For complete documentation and usage example see :doc:`call policies document <pyplusplus/documentation/functions/call_policies/call_policies>` """ def __init__( self, array_size, memory_manager, make_object_call_policies=None, base=None): compound_policy_t.__init__( self, base ) @@ -369,7 +369,7 @@ class return_range_t( call_policy_t ): """implements code generation for `Py++` defined "return_range" call policies - For complete documentation and usage example see http://language-binding.net/pyplusplus/documentation/functions/call_policies.html + For complete documentation and usage example see :doc:`call policies document <pyplusplus/documentation/functions/call_policies/call_policies>` """ HEADER_FILE = "__return_range.pypp.hpp" def __init__( self, get_size_class, value_type, value_policies): Modified: pyplusplus_dev/pyplusplus/messages/warnings_.py =================================================================== --- pyplusplus_dev/pyplusplus/messages/warnings_.py 2009-02-10 21:14:30 UTC (rev 1670) +++ pyplusplus_dev/pyplusplus/messages/warnings_.py 2009-02-11 09:34:27 UTC (rev 1671) @@ -85,8 +85,7 @@ W1010 = execution_error( 'The function introduces registration order problem. ' - 'For more information about the problem read next document: ' - 'http://language-binding.net/pyplusplus/documentation/functions/registration_order.html ' + 'For more information about the problem read "registration order" document.' 'Problematic functions list: %s' ) W1011 = warning( "`Py++` doesn't export private not virtual functions." ) @@ -206,8 +205,7 @@ W1050 = compilation_error( 'The function returns "%s" type. You have to specify a call policies.' - 'Be sure to take a look on `Py++` defined call policies: ' - 'http://language-binding.net/pyplusplus/documentation/functions/call_policies.html#py-defined-call-policies' ) + 'Be sure to take a look on `Py++` defined call policies' ) W1051 = warning( 'The function takes as argument (name=%s, pos=%d) "%s" type. ' Copied: sphinx/check_links.bat (from rev 1670, developer_scripts/check_links.bat) =================================================================== --- sphinx/check_links.bat (rev 0) +++ sphinx/check_links.bat 2009-02-11 09:34:27 UTC (rev 1671) @@ -0,0 +1,2 @@ +E:\Python25\Scripts\linkchecker.bat --no-warnings .\__build\index.html + Modified: sphinx/conf.py =================================================================== --- sphinx/conf.py 2009-02-10 21:14:30 UTC (rev 1670) +++ sphinx/conf.py 2009-02-11 09:34:27 UTC (rev 1671) @@ -181,7 +181,7 @@ #html_split_index = False # If true, the reST sources are included in the HTML build as _sources/<name>. -#html_copy_source = True +html_copy_source = False # If true, an OpenSearch description file will be output, and all pages will # contain a <link> tag referring to it. The value of this option must be the @@ -228,6 +228,10 @@ # If false, no module index is generated. #latex_use_modindex = True +#If true, keep warnings as “system message” paragraphs in the built documents. +#Regardless of this setting, warnings are always written to the standard error +#stream when sphinx-build is run. +keep_warnings = True # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {'http://docs.python.org/dev': None} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |