[Python-ogre-commit] SF.net SVN: python-ogre: [620] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
|
From: <and...@us...> - 2008-06-27 23:28:46
|
Revision: 620
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=620&view=rev
Author: andy_miller
Date: 2008-06-27 16:28:55 -0700 (Fri, 27 Jun 2008)
Log Message:
-----------
Further Linux updates (CEGUI code gen fix in comments)
Modified Paths:
--------------
trunk/python-ogre/code_generators/common_utils/extract_documentation.py
trunk/python-ogre/demos/ogre/plugins.cfg
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/code_generators/common_utils/extract_documentation.py
===================================================================
--- trunk/python-ogre/code_generators/common_utils/extract_documentation.py 2008-06-27 07:38:36 UTC (rev 619)
+++ trunk/python-ogre/code_generators/common_utils/extract_documentation.py 2008-06-27 23:28:55 UTC (rev 620)
@@ -187,6 +187,7 @@
_str = clean(_str, "\\ingroup", "@group")
# _str = clean(_str, "@return", "It return")
_str = clean(_str, "\\return", "@return")
+ _str = clean(_str, "\\Return", "@return")
# _str = clean(_str, "@note", "Note: ")
_str = clean(_str, "@remarks", "@see")
# _str = clean(_str, "@see", "See: ")
@@ -214,7 +215,7 @@
_str = clean(_str, "\\exception", "@exception")
_str = clean(_str, "\\a", "") ## cegui
- _str = clean(_str, "\\warning", "Warning: ") ## nxPhysics
+ _str = clean(_str, "\\warning", "@Warning: ") ## nxPhysics
_str = clean(_str, "\\include", "Include: ") ## nxPhysics
_str = clean(_str, "\\image", "Image: ") ## nxPhysics
Modified: trunk/python-ogre/demos/ogre/plugins.cfg
===================================================================
--- trunk/python-ogre/demos/ogre/plugins.cfg 2008-06-27 07:38:36 UTC (rev 619)
+++ trunk/python-ogre/demos/ogre/plugins.cfg 2008-06-27 23:28:55 UTC (rev 620)
@@ -1,20 +1,15 @@
# Defines plugins to load
-
-## Use this for Windows
-# Define plugin folder
-PluginFolder=../../plugins
-#home/andy/development/root/usr/lib/OGRE
-Plugin=RenderSystem_GL.dll
-Plugin=RenderSystem_Direct3D9.dll
-Plugin=Plugin_ParticleFX.dll
-Plugin=Plugin_BSPSceneManager.dll
-Plugin=Plugin_OctreeSceneManager.dll
-Plugin=Plugin_CgProgramManager.dll
-
-##
-## NOTE use this for MacOS or Linux
-# Plugin=RenderSystem_GL
-# Plugin=Plugin_ParticleFX
-# Plugin=Plugin_BSPSceneManager
-# Plugin=Plugin_OctreeSceneManager
-# Plugin=Plugin_CgProgramManager
+# Defines plugins to load
+
+# Define plugin folder
+# CHANGE THIS TO YOUR PATH
+PluginFolder=/home/andy/development/root/usr/lib/OGRE
+
+# Define D3D rendering implementation plugin
+Plugin=RenderSystem_GL.so
+Plugin=Plugin_ParticleFX.so
+Plugin=Plugin_BSPSceneManager.so
+Plugin=Plugin_OctreeSceneManager.so
+Plugin=Plugin_CgProgramManager.so
+
+
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-06-27 07:38:36 UTC (rev 619)
+++ trunk/python-ogre/environment.py 2008-06-27 23:28:55 UTC (rev 620)
@@ -270,7 +270,7 @@
]
else:
source = [
- [svn, " co -r1356 http://pygccxml.svn.sourceforge.net/svnroot/pygccxml "+base, os.getcwd()]
+ [svn, " co -r 1362 http://pygccxml.svn.sourceforge.net/svnroot/pygccxml "+base, os.getcwd()]
]
if isLinux() or isMac() :
buildCmds = [
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|