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

rna_wiki_reference.py « modules - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa56a7da38ff03a3a8209b10fcbf136a24d133ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# this file maps RNA to online URL's for right mouse context menu
# documentation access

# URL prefix is the: url_manual_prefix + url_manual_mapping[id]

url_manual_prefix = "http://wiki.blender.org/index.php/Doc:2.6/Manual/"

# - The first item is a regex mapping '.*' means anything.
# - Expressions are evaluated top down (include catch-all expressions last).
url_manual_mapping = (
    ("bpy.types.ArmatureModifier.*", "Modifiers/Deform/Armature"),
    ("bpy.types.SmoothModifier.*", "Modifiers/Deform/Smooth"),
    ("bpy.types.SubsurfModifier.*", "Modifiers/Generate/Subsurf"),
    
    ("bpy.types.Material.diffuse.*", "Materials/Properties/Diffuse_Shaders"),
)

# may have 'url_reference_mapping'... etc later