Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-05sphinx api docs: fix for addons linking to the wrong operator SVN url's.Campbell Barton
also change from blender from 'release' back to beta so new docs don't overwrite the 2.57b release docs.
2011-04-29spelling corrections.Campbell Barton
2011-04-13minor improvements to sphinx doc main pageCampbell Barton
2011-04-12reference the release PDF correctlyCampbell Barton
2011-04-12less alarming warnings about the python api not being stable in online docs ↵Campbell Barton
and remove from interactive console.
2011-04-10- background job style cleanup.Campbell Barton
- assert if material assignment is called with lib. (so the callers can be corrected). - correct example docs
2011-04-10minor pep8 edits, also added 'test_pep8' & 'test_cmake' to the GNUmakefile ↵Campbell Barton
for convenience.
2011-04-08can't include titles in function examples.Campbell Barton
2011-04-07Sphinx RNA API changelog generator.Campbell Barton
- lists added and removed functions and properties. - lists renamed properties (does fuzzy comparison using min/max, description, type) - lists functions with arguments changed. Committed change log from 2.56 -> 2.57: http://www.blender.org/documentation/250PythonDoc/change_log.html
2011-04-07Updating BGE dynamic loading docs:Mitchell Stokes
* Adding load_action and verbose keyword args for LibLoad() * Adding LibList()
2011-04-04[#26768] 2.57 - sys.path not initialized properlyCampbell Barton
we should document this properly (we only have general design docs atm), for now just correct the tooltip. also update api example docs.
2011-04-01modification to api docs so release point to:Campbell Barton
http://www.blender.org/documentation/blender_python_api_2_57b_release Development versions point to: http://www.blender.org/documentation/blender_python_api_2_57_0 This way updates to api docs after release wont overwrite release docs.
2011-04-01while looking into adding back brush tool keys found mixed texture/image ↵Campbell Barton
paint rna vars, using 'image paint' internally.
2011-03-31examples for keyframing nested paths. based on report from user der_On's ↵Campbell Barton
report [#25746]
2011-03-27pep8 cleanupCampbell Barton
2011-03-26optparse module is deprecated, use new argparse module in background job ↵Campbell Barton
template. correction to example in doc too.
2011-03-22fix [#25688] undocumted functions in pyapiCampbell Barton
expose collection function docs.
2011-03-18add sphinx api reference note that menu's layout.operator_context defaults ↵Campbell Barton
to EXEC_REGION_WIN rather then INVOKE_DEFAULT.
2011-03-14bpy.types.libraries.load sphinx doc & examples (doc system needed some updates).Campbell Barton
http://www.blender.org/documentation/blender_python_api_2_56_3/bpy.types.BlendDataLibraries.html#bpy.types.BlendDataLibraries.load
2011-02-25add NDEBUG to scons release flags + some pep8 cleanup for examples.Campbell Barton
2011-02-22make doc generation close files (py3.2 complains about this),Campbell Barton
minor formatting changes for C docstrings.
2011-02-22correct exampleCampbell Barton
2011-02-21remove BGE's PyObjectPlus.isA method docs, was removed in favor of built-in ↵Campbell Barton
isinstance(), report [#26080].
2011-02-18SVN maintenance.Guillermo S. Romero
2011-02-18examples for bpy.propsCampbell Barton
2011-02-18render engine example thanks to dougal2.Campbell Barton
2011-02-18python api docs & examples for registrable Menu/Panel/Operator/PropertyGroup ↵Campbell Barton
classes.
2011-02-16sphinx doc gen: multiple examples possible and include the scripts docstring ↵Campbell Barton
inline in sphinx. also tag unused vars
2011-02-16doc generation support for excluding some modules, without this a full ↵Campbell Barton
rebuild takes too long to test changes. also include own function definitions for blf_dir.c.
2011-02-16bugfix [#26094] Going to Bone Roll menu brings up python errorCampbell Barton
also correct for pep8 warnings.
2011-02-15Doc generator now makes 'bpy.context' api reference.Campbell Barton
http://www.blender.org/documentation/250PythonDoc/bpy.context.html strings are extracted from blender to ensure all values are included, currently there is no type info so this is stored in the doc generator.
2011-02-06- cmake was missing an inclide (IDE's wouldnt index)Campbell Barton
- made doc generation always sumlink newly built docs to static URL. http://www.blender.org/documentation/250PythonDoc/
2011-02-05mathutils rotate functions for Euler/Quaternion/Matrix/Vector types.Campbell Barton
each accept Euler/Quaternion/Matrix types. eg: Euler.rotate(Quaternion(axis, angle)) Vector.rotate(Euler((pi/2, 0, 0))) matrix.resize_4x4() and euler.make_compatible() were still returning an instance of themselves, now return None.
2011-02-04pep8 cleanupCampbell Barton
2011-01-27r34526 removed a line which had an unused return value but still needed to run.Campbell Barton
2011-01-02removing epydocs for mathutils and geometry mododules (now they are in sphinx)Campbell Barton
2010-12-23remove reload() from builtins since python3 no longer uses this.Campbell Barton
use imp.reload now. Should use import hooks but for now replace imp.reload with our own reload as the builtin reload was replaced before.
2010-12-10patch [#25027] formatting mathutils.geometry module docs for sphinxCampbell Barton
from Luka Bonavita See: http://www.blender.org/documentation/250PythonDoc/mathutils.geometry.html
2010-12-06include getset's for generating module docs.Campbell Barton
used for bpy.debug/tempdir/driver_namespace which were previously undocumented.
2010-11-25== console ==Luca Bonavita
- banner formatting == sphinx doc == - bpy.data: put the example below the documentation itself
2010-10-27remove include paths which dont exist, fix for doc upload script which was ↵Campbell Barton
getting the blender version twice and not working sometimes.
2010-10-26move geometry python module into mathutils.geometry, since it provides ↵Campbell Barton
utility functions using mathutils types.
2010-10-13== python api doc ==Luca Bonavita
First commit to make some structure in doc/ directory. - moved source/blender/python/doc -> doc/python_api - moved source/gameengine/PyDoc/*.rst -> doc/python_api/rst - modified accordingly sphinx_doc_gen.py and sphinx_doc_gen.sh (later on I'll try alternative/ scripts by neXyon as promised :) - source/gameengine/PyDoc/ is still there because contains epydoc stuff for the bge, will ask more and look into it later