Blender Git Commit Log

Git Commits -> Revision 931527e

Revision 931527e by Campbell Barton (master)
March 29, 2009, 02:15 (GMT)
- use clear, set, add, enable, disable and toggle as a prefix in operator names
- use select as a suffix eg UV_OT_loop_select -> UV_OT_select_loop
- Each select all operator was using slightly different wording...
select_all, deselect_all, de_select_all, select_de_select_all -> select_all_toggle

- selection -> select
- POSE_OT_select_connected -> POSE_OT_select_linked to match other operators
- NODE_OT_delete_selection -> NODE_OT_delete since its not used in other operators
- ANIM_OT_previewrange_define -> ANIM_OT_previewrange_set to match other operators
- NODE_OT_fit_all -> NODE_OT_view_all to match other operators
- View2D_OT_* -> VIEW2D_OT_* to match VIEW3D
- View2D_OT_view_downscroll -> VIEW2D_OT_scroll_down more logical
- removed MARKER_OT_mouseselect_extend and made extend a boolean property of MARKER_OT_mouseselect
- MARKER_OT_mouseselect -> MARKER_OT_select
- GROUP_OT_group_remove -> GROUP_OT_objects_remove more logical since its removing objects from groups
- MESH_OT_removedoublesflag -> MESH_OT_remove_doubles
- redundant words MESH_OT_split_mesh -> MESH_OT_split, OBJECT_OT_object_delete -> OBJECT_OT_delete

renamed selection operator properties
extend_select -> extend
column_select -> column
select_children_only -> children_only
... Since these are all in the context of selection operators there is no need for the extra 'select' in the property name.

Updated docs
http://www.graphicall.org/ftp/ideasman42/html/bpyoperator-module.html

Commit Details:

Full Hash: 931527e648acfbc2c7b71b59ce661dad9a4c1038
Parent Commit: 4a164ce
Lines Changed: +546, -562

61 Modified Paths:

/source/blender/editors/animation/anim_channels.c (+31, -31) (Diff)
/source/blender/editors/animation/anim_markers.c (+16, -33) (Diff)
/source/blender/editors/animation/anim_ops.c (+4, -4) (Diff)
/source/blender/editors/armature/armature_intern.h (+7, -7) (Diff)
/source/blender/editors/armature/armature_ops.c (+16, -16) (Diff)
/source/blender/editors/armature/editarmature.c (+25, -25) (Diff)
/source/blender/editors/curve/curve_intern.h (+13, -13) (Diff)
/source/blender/editors/curve/curve_ops.c (+24, -24) (Diff)
/source/blender/editors/curve/editcurve.c (+16, -16) (Diff)
/source/blender/editors/curve/editfont.c (+10, -10) (Diff)
/source/blender/editors/interface/view2d_ops.c (+51, -51) (Diff)
/source/blender/editors/mesh/editmesh_add.c (+4, -4) (Diff)
/source/blender/editors/mesh/editmesh_mods.c (+17, -17) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+6, -6) (Diff)
/source/blender/editors/mesh/mesh_intern.h (+13, -13) (Diff)
/source/blender/editors/mesh/mesh_ops.c (+30, -30) (Diff)
/source/blender/editors/object/editgroup.c (+4, -4) (Diff)
/source/blender/editors/object/object_edit.c (+4, -4) (Diff)
/source/blender/editors/object/object_intern.h (+3, -3) (Diff)
/source/blender/editors/object/object_ops.c (+6, -6) (Diff)
/source/blender/editors/physics/editparticle.c (+10, -10) (Diff)
/source/blender/editors/sculpt_paint/paint_image.c (+2, -2) (Diff)
/source/blender/editors/sculpt_paint/paint_intern.h (+1, -1) (Diff)
/source/blender/editors/sculpt_paint/paint_ops.c (+1, -1) (Diff)
/source/blender/editors/space_action/action_edit.c (+6, -6) (Diff)
/source/blender/editors/space_action/action_intern.h (+6, -6) (Diff)
/source/blender/editors/space_action/action_ops.c (+19, -19) (Diff)
/source/blender/editors/space_action/action_select.c (+10, -10) (Diff)
/source/blender/editors/space_file/file_intern.h (+2, -2) (Diff)
/source/blender/editors/space_file/file_ops.c (+4, -4) (Diff)
/source/blender/editors/space_file/space_file.c (+4, -4) (Diff)
/source/blender/editors/space_graph/graph_edit.c (+2, -2) (Diff)
/source/blender/editors/space_graph/graph_intern.h (+3, -3) (Diff)
/source/blender/editors/space_graph/graph_ops.c (+12, -12) (Diff)
/source/blender/editors/space_graph/graph_select.c (+8, -8) (Diff)
/source/blender/editors/space_image/image_header.c (+3, -3) (Diff)
/source/blender/editors/space_image/image_intern.h (+1, -1) (Diff)
/source/blender/editors/space_image/image_ops.c (+2, -2) (Diff)
/source/blender/editors/space_image/space_image.c (+3, -3) (Diff)
/source/blender/editors/space_node/node_edit.c (+2, -2) (Diff)
/source/blender/editors/space_node/node_header.c (+4, -4) (Diff)
/source/blender/editors/space_node/node_intern.h (+4, -4) (Diff)
/source/blender/editors/space_node/node_ops.c (+9, -9) (Diff)
/source/blender/editors/space_node/node_select.c (+5, -4) (Diff)
/source/blender/editors/space_node/node_state.c (+2, -2) (Diff)
/source/blender/editors/space_sequencer/sequencer_edit.c (+2, -2) (Diff)
/source/blender/editors/space_sequencer/sequencer_header.c (+3, -3) (Diff)
/source/blender/editors/space_sequencer/sequencer_intern.h (+4, -4) (Diff)
/source/blender/editors/space_sequencer/sequencer_ops.c (+9, -9) (Diff)
/source/blender/editors/space_sequencer/sequencer_select.c (+8, -8) (Diff)
/source/blender/editors/space_text/space_text.c (+6, -6) (Diff)
/source/blender/editors/space_text/text_header.c (+1, -1) (Diff)
/source/blender/editors/space_text/text_intern.h (+3, -3) (Diff)
/source/blender/editors/space_text/text_ops.c (+6, -6) (Diff)
/source/blender/editors/space_view3d/view3d_edit.c (+4, -4) (Diff)
/source/blender/editors/space_view3d/view3d_header.c (+19, -19) (Diff)
/source/blender/editors/space_view3d/view3d_intern.h (+5, -5) (Diff)
/source/blender/editors/space_view3d/view3d_ops.c (+17, -17) (Diff)
/source/blender/editors/space_view3d/view3d_select.c (+6, -6) (Diff)
/source/blender/editors/space_view3d/view3d_view.c (+1, -1) (Diff)
/source/blender/editors/uvedit/uvedit_ops.c (+27, -27) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021