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
2008-08-12Speed improvements for reading text lines and the option to specify a range ↵Ian Thompson
for Text.asLines([start[, end]]) Also some tweaks for the plug-in scripts and updates to pydocs.
2008-08-10Fixed inconsistencies between the text plugins and them not suggesting when ↵Ian Thompson
called from the menu.
2008-07-27TextPlugin update: Converted try-except blocks to use try-catch-else to ↵Ian Thompson
allow better error tracking. Commented the descriptor classes and improved variable support for basic types (string, list, etc.)
2008-07-21Updated the textplugin_outliner.py plug-in to use the new Draw.PupTreeMenu ↵Ian Thompson
and updated this menu to support titles.
2008-07-21BPyTextPlugin now has descriptors for variables, functions and classes (and ↵Ian Thompson
their variables/functions). Each descriptor also holds the line number of the definition allowing a simple outliner to be written. Text.setCursorPos(row, col) now pops the text into view if it is in the active window space. The outliner uses this to jump to any definition in a script; it is invoked with Ctrl+T.