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:
authorLuca Bonavita <mindrones@gmail.com>2010-05-20 14:21:06 +0400
committerLuca Bonavita <mindrones@gmail.com>2010-05-20 14:21:06 +0400
commit40d170bd0c6dee21a10e52051a1b71089ce70b6b (patch)
treee38cb9c96b2a515f0e896590abd99f3073b9c3d9
parent0fff60f5472fc196a54fc797d0a8814d6217cc84 (diff)
== 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 :)
-rw-r--r--add_mesh_archimedean_solids.py2
-rw-r--r--add_mesh_gemstones.py4
-rw-r--r--io_mesh_stl/__init__.py3
3 files changed, 5 insertions, 4 deletions
diff --git a/add_mesh_archimedean_solids.py b/add_mesh_archimedean_solids.py
index b67d4b79..eef71785 100644
--- a/add_mesh_archimedean_solids.py
+++ b/add_mesh_archimedean_solids.py
@@ -25,7 +25,7 @@ bl_addon_info = {
'description': 'Adds various archimedean solids to the Add Mesh menu',
'url':
'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'}
import bpy
diff --git a/add_mesh_gemstones.py b/add_mesh_gemstones.py
index ba61df8b..90d4b52d 100644
--- a/add_mesh_gemstones.py
+++ b/add_mesh_gemstones.py
@@ -29,7 +29,7 @@ bl_addon_info = {
'location': 'View3D > Add > Mesh > Gemstones',
'description': 'Adds various gemstone (Diamond & Gem) meshes.',
'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'}
@@ -515,4 +515,4 @@ def unregister():
space_info.INFO_MT_mesh_add.remove(menu_func)
if __name__ == "__main__":
- register() \ No newline at end of file
+ register()
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index f04cc618..1c8e3a19 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -40,7 +40,8 @@ bl_addon_info = {
'blender': (2, 5, 3),
'location': 'File > Import/Export > Stl',
'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'}
import bpy