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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Williamson <jonathan@cgcookie.com>2013-11-23 01:09:48 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2013-11-23 01:09:48 +0400
commit8da66b293675b51d1e2065b442f2a70ce93a4b58 (patch)
tree9fc7125672aaadf56126d72177724664702e3494 /modules
parenteb8609c6d3f9bea3c3fcb41e04333ecde95b8f3b (diff)
Adding Online Manual references for mesh operators
This adds specific references to the correct wiki pages for mesh operators in the 3D View Toolbar. Before they were all going to just Modeling/Meshes/
Diffstat (limited to 'modules')
-rw-r--r--modules/rna_wiki_reference.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/rna_wiki_reference.py b/modules/rna_wiki_reference.py
index 9c571f95..4223c4a4 100644
--- a/modules/rna_wiki_reference.py
+++ b/modules/rna_wiki_reference.py
@@ -301,6 +301,16 @@ url_manual_mapping = (
# ("bpy.ops.mask.*", ""), # TODO
("bpy.ops.material.new", "Materials/Assigning_a_material#Creating_a_new_Material"),
("bpy.ops.material.*", "Materials"),
+ ("bpy.ops.mesh.vertices_smooth", "Modeling/Meshes/Editing/Deforming/Smooth"),
+ ("bpy.ops.view3d.edit_mesh_extrude*", "Modeling/Meshes/Editing/Duplicating/Extrude"),
+ ("bpy.ops.mesh.subdivide", "Modeling/Meshes/Editing/Subdividing/Subdivide"),
+ ("bpy.ops.mesh.loopcut_slide", "Modeling/Meshes/Editing/Subdividing/Loop_Subdivide"),
+ ("bpy.ops.mesh.bridge_edge_loops", "Modeling/Meshes/Editing/Edges#Bridge_Edge_Loops"),
+ ("bpy.ops.mesh.duplicate_move", "Modeling/Meshes/Editing/Duplicating/Duplicate"),
+ ("bpy.ops.mesh.spin", "Modeling/Meshes/Editing/Duplicating/Spin"),
+ ("bpy.ops.mesh.screw", "Modeling/Meshes/Editing/Duplicating/Screw"),
+ ("bpy.ops.mesh.knife*", "Modeling/Meshes/Editing/Subdividing/Knife_Subdivide"),
+ ("bpy.ops.mesh.bisect", "Modeling/Meshes/Editing/Subdividing/Bisect"),
("bpy.ops.mball.*", "Modeling/Metas"),
("bpy.ops.mesh.*", "Modeling/Meshes"),
("bpy.ops.nla.*", "Animation/Editors/NLA"),
@@ -327,6 +337,10 @@ url_manual_mapping = (
("bpy.ops.text.*", "Extensions/Python/Text_editor"),
("bpy.ops.texture.*", "Textures"),
("bpy.ops.time.*", "Animation/Timeline"),
+ ("bpy.ops.transform.edge_slide", "Modeling/Meshes/Editing/Edges#Edge_Slide"),
+ ("bpy.ops.transform.vert_slide", "Modeling/Meshes/Editing/Vertices#Vertex_Slide"),
+ ("bpy.ops.transform.shrink_fatten", "Modeling/Meshes/Editing/Deforming/Shrink-Fatten"),
+ ("bpy.ops.transform.push_pull", "3D_interaction/Transformations/Advanced/Push_Pull"),
("bpy.ops.transform.*", "3D_interaction/Transform_Control"),
("bpy.ops.ui.*", "Interface"),
("bpy.ops.uv.*", "Textures/Mapping/UV/Layout_Editing"),