Skip to content
Snippets Groups Projects
Commit 40d170bd authored by Luca Bonavita's avatar Luca Bonavita
Browse files

== some wiki urls fixes ==

- fixed url in add_mesh_gemstones.py, the page existed 

- created pages with a gentle "to-be-written" warning where needed
  and fixed urls in:
  - add_mesh_archimedean_solids.py
  - io_mesh_stl/__init__.py

  See:
  http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Mesh/Archimedean_Solids
  http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Mesh/Surface_Sketch
  http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/File_I-O/STL
  http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/File_I-O/Camera_Animation

Not nice to send people to non-existing pages :)
parent 0fff60f5
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ bl_addon_info = { ...@@ -25,7 +25,7 @@ bl_addon_info = {
'description': 'Adds various archimedean solids to the Add Mesh menu', 'description': 'Adds various archimedean solids to the Add Mesh menu',
'url': 'url':
'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \ 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/', # @todo Create wiki page and fix this link. 'Scripts/Add_Mesh/Archimedean_Solids', # @todo write the page
'category': 'Add Mesh'} 'category': 'Add Mesh'}
import bpy import bpy
......
...@@ -29,7 +29,7 @@ bl_addon_info = { ...@@ -29,7 +29,7 @@ bl_addon_info = {
'location': 'View3D > Add > Mesh > Gemstones', 'location': 'View3D > Add > Mesh > Gemstones',
'description': 'Adds various gemstone (Diamond & Gem) meshes.', 'description': 'Adds various gemstone (Diamond & Gem) meshes.',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \ 'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/', # @todo Create page and fix this link. 'Scripts/Add_Mesh/Add_Gem',
'category': 'Add Mesh'} 'category': 'Add Mesh'}
...@@ -515,4 +515,4 @@ def unregister(): ...@@ -515,4 +515,4 @@ def unregister():
space_info.INFO_MT_mesh_add.remove(menu_func) space_info.INFO_MT_mesh_add.remove(menu_func)
if __name__ == "__main__": if __name__ == "__main__":
register() register()
\ No newline at end of file
...@@ -40,7 +40,8 @@ bl_addon_info = { ...@@ -40,7 +40,8 @@ bl_addon_info = {
'blender': (2, 5, 3), 'blender': (2, 5, 3),
'location': 'File > Import/Export > Stl', 'location': 'File > Import/Export > Stl',
'description': 'Import/Export Stl files', 'description': 'Import/Export Stl files',
'url': '...', 'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/File I-O/STL', # @todo write the page
'category': 'Import/Export'} 'category': 'Import/Export'}
import bpy import bpy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment