[pygccxml-commit] SF.net SVN: pygccxml: [329] pygccxml_dev
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-07-20 07:15:32
|
Revision: 329 Author: roman_yakovenko Date: 2006-07-20 00:15:20 -0700 (Thu, 20 Jul 2006) ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=329&view=rev Log Message: ----------- u[dating documentation an setup scripts Modified Paths: -------------- pygccxml_dev/setup.py pyplusplus_dev/docs/documentation/tutorials/tutorials.rest pyplusplus_dev/setup.py Modified: pygccxml_dev/setup.py =================================================================== --- pygccxml_dev/setup.py 2006-07-20 07:01:05 UTC (rev 328) +++ pygccxml_dev/setup.py 2006-07-20 07:15:20 UTC (rev 329) @@ -21,7 +21,9 @@ html_writer = HTMLWriter( docindex , prj_name='pygccxml' , prj_url='http://www.language-binding.net' - , include_sourcecode=True ) + , include_sourcecode=False #This will decrease the size of generated documentation + , show_private=False + , show_frames=False) html_writer.write( os.path.join('docs', 'apidocs') ) Modified: pyplusplus_dev/docs/documentation/tutorials/tutorials.rest =================================================================== --- pyplusplus_dev/docs/documentation/tutorials/tutorials.rest 2006-07-20 07:01:05 UTC (rev 328) +++ pyplusplus_dev/docs/documentation/tutorials/tutorials.rest 2006-07-20 07:15:20 UTC (rev 329) @@ -8,7 +8,7 @@ What is pyplusplus? ------------------- -.. include:: ./../definition.rest +.. include:: ./../../definition.rest ------------------- Graphical interface Modified: pyplusplus_dev/setup.py =================================================================== --- pyplusplus_dev/setup.py 2006-07-20 07:01:05 UTC (rev 328) +++ pyplusplus_dev/setup.py 2006-07-20 07:15:20 UTC (rev 329) @@ -54,9 +54,11 @@ html_writer = HTMLWriter( docindex , prj_name='pyplusplus' , prj_url='http://www.language-binding.net' - , include_sourcecode=True ) + , include_sourcecode=False #This will decrease the size of generated documentation + , show_private=False + , show_frames=False ) - html_writer.write( os.path.join('docs', 'apidocs') ) + html_writer.write( os.path.join('docs', 'documentation', 'apidocs') ) class doc_cmd(Command): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |