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-11-17pass encoding to uses of decode() incase the default isnt utf-8. ignore ↵Campbell Barton
decode errors in some cases. This should fix an error with generated qtcreator projects. also replace decoded bytes for unicode escape sequences in the VIEW3D_MT_edit_text_chars menu.
2011-11-15set cycles scripts as pep8 & make some minor changes.Campbell Barton
also update sphinx doc generator.
2011-11-05misc doc editsCampbell Barton
- remove recently added sphinx reference workaround. - tested doxygen, correct some warnings, set tab width and added pymathutils group. - added convenience target 'make doc_doxy'
2011-11-04correct some warnings, also sensor_x was being paassed to ↵Campbell Barton
object_camera_matrix(...) for x and y args, looks like an accident
2011-11-04- added docs and examples for bpy.app.handlersCampbell Barton
- correct error in own last commit for BKE_screen_find_big_area()
2011-10-28patch [#29049] Minor phrasing and grammar patchCampbell Barton
2011-10-20pass -noaudio when running blender for various utilities - doc-gen and tests.Campbell Barton
2011-10-13py docs - gpu module wasn't included in docs.Campbell Barton
also added convenience target to build sphinx api docs: make doc_py
2011-10-12fix [#28873] Blenders Python API Sphinx Build Script give exceptionsCampbell Barton
2011-09-29fix for error generating docs, write all files as utf-8Campbell Barton
2011-09-20pep8 update & some minor cmake edits.Campbell Barton
2011-09-20fix for warnings after texface commit, also comment blender sphinx theme for ↵Campbell Barton
api reference until we get an update for 'Naiad'
2011-09-16- remove deprecated pose channel membersCampbell Barton
- change short -> char for flags that support it. - add pose 'temp' pointer to use for outliner drawing (was using 'prev' and restoring which seems dodjy)
2011-09-15- include enum names and descriptions in sphinx generated documentationCampbell Barton
- add descriptions for operator bl_options
2011-09-09bpy api - add new page for best-practice (so Thomas has something to point ↵Campbell Barton
to when kicking devs for writing shoddy UI layouts)
2011-09-08finished tips and tricks section of blender/python api docs, now included in ↵Campbell Barton
generated docs.
2011-09-06fix for doc building after pepper merge, also WIP tips/tricks.Campbell Barton
2011-08-30minor edits, pep8 - also correct float -> double promotion for blf.Campbell Barton
2011-08-26document some of the pitfalls in the blender python api (taken from frequent ↵Campbell Barton
mails and bug reports)
2011-08-25move wiki api intro and overview docs into the api reference docs.Campbell Barton
Updated docs since some parts still were from beta still.
2011-08-23add warning about misuse of ID.user_clear() since it can crash blender.Campbell Barton
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-08patch [#27885] bge.constraints documentationCampbell Barton
by Solano Felicio (solano)
2011-07-07some corrections to bge.texture docsCampbell Barton
2011-07-01add 'bgl' OpenGL doc to sphinxCampbell Barton
2011-06-27print the help message if running from python directly.Campbell Barton
2011-05-28move load_image into image_utils and add some docstrings to bpy_extras module.Campbell Barton
2011-05-28- generate sphinx docs for bpy_extras moduleCampbell Barton
- add in support to doc generator for automatically generating docs for submodules.
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-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-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-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-22fix [#25688] undocumted functions in pyapiCampbell Barton
expose collection function docs.
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-18examples for bpy.propsCampbell 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-04pep8 cleanupCampbell 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