mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 22:16:41 +00:00
bonsaibim urls #5178
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
# Visit https://bit.ly/cffinit to generate yours today!
|
||||
|
||||
cff-version: 1.2.0
|
||||
title: BlenderBIM Add-on
|
||||
title: Bonsai
|
||||
message: >-
|
||||
If you use this software, please cite it using the
|
||||
metadata from this file.
|
||||
@@ -10,9 +10,9 @@ type: software
|
||||
authors:
|
||||
- name: "IfcOpenShell contributors"
|
||||
repository-code: >-
|
||||
https://github.com/IfcOpenShell/IfcOpenShell/tree/v0.8.0/src/blenderbim
|
||||
url: 'https://blenderbim.org/'
|
||||
repository-artifact: 'https://blenderbim.org/download.html'
|
||||
https://github.com/IfcOpenShell/IfcOpenShell/tree/v0.8.0/src/bonsai
|
||||
url: 'https://bonsaibim.org/'
|
||||
repository-artifact: 'https://bonsaibim.org/download.html'
|
||||
abstract: >-
|
||||
Add-on to Blender providing a graphical native IFC
|
||||
authoring platform
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# BlenderBIM Add-on
|
||||
# Bonsai
|
||||
|
||||
An add-on to Blender to allow BIM functionality.
|
||||
|
||||
More information on the [BlenderBIM Add-on website](https://blenderbim.org).
|
||||
More information on the [Bonsai website](https://bonsaibim.org).
|
||||
|
||||
@@ -324,7 +324,7 @@ if IN_BLENDER:
|
||||
|
||||
layout.operator("bim.copy_debug_information", text="Copy Error Message To Clipboard")
|
||||
op = layout.operator("bim.open_uri", text="How Can I Fix This?")
|
||||
op.uri = "https://docs.blenderbim.org/users/troubleshooting.html#installation-issues"
|
||||
op.uri = "https://docs.bonsaibim.org/users/troubleshooting.html#installation-issues"
|
||||
|
||||
layout.label(text="Try Reinstalling:", icon="IMPORT")
|
||||
op = layout.operator("bim.open_uri", text="Re-download Add-on")
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<body>
|
||||
<nav>
|
||||
<img
|
||||
src="https://blenderbim.org/assets/images/blender/blender-logo.png"
|
||||
src="https://bonsaibim.org/assets/images/blender/blender-logo.png"
|
||||
alt="Logo"
|
||||
class="logo"
|
||||
/>
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<body>
|
||||
<nav class="no-print">
|
||||
<img
|
||||
src="https://blenderbim.org/assets/images/blender/blender-logo.png"
|
||||
src="https://bonsaibim.org/assets/images/blender/blender-logo.png"
|
||||
alt="Logo"
|
||||
class="logo"
|
||||
/>
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<body>
|
||||
<nav>
|
||||
<img
|
||||
src="https://blenderbim.org/assets/images/blender/blender-logo.png"
|
||||
src="https://bonsaibim.org/assets/images/blender/blender-logo.png"
|
||||
alt="Logo"
|
||||
class="logo"
|
||||
/>
|
||||
|
||||
@@ -132,7 +132,7 @@ class BIM_PT_project(Panel):
|
||||
row = box.row(align=True)
|
||||
row.label(text="Your Model May Be Outdated", icon="ERROR")
|
||||
op = row.operator("bim.open_uri", text="", icon="QUESTION")
|
||||
op.uri = "https://docs.blenderbim.org/users/troubleshooting.html#saving-and-loading-blend-files"
|
||||
op.uri = "https://docs.bonsaibim.org/users/troubleshooting.html#saving-and-loading-blend-files"
|
||||
row.operator("bim.close_blend_warning", text="", icon="CANCEL")
|
||||
|
||||
if props.ifc_file:
|
||||
|
||||
@@ -415,9 +415,9 @@ class OpenUpstream(bpy.types.Operator):
|
||||
|
||||
def execute(self, context):
|
||||
if self.page == "home":
|
||||
webbrowser.open("https://blenderbim.org/")
|
||||
webbrowser.open("https://bonsaibim.org/")
|
||||
elif self.page == "docs":
|
||||
webbrowser.open("https://docs.blenderbim.org/")
|
||||
webbrowser.open("https://docs.bonsaibim.org/")
|
||||
elif self.page == "wiki":
|
||||
webbrowser.open("https://wiki.osarch.org/index.php?title=Category:Bonsai")
|
||||
elif self.page == "community":
|
||||
|
||||
@@ -458,7 +458,7 @@ class BIM_PT_tabs(Panel):
|
||||
box.label(text="View the console for full logs.", icon="CONSOLE")
|
||||
box.operator("bim.copy_debug_information", text="Copy Error Message To Clipboard")
|
||||
op = box.operator("bim.open_uri", text="How Can I Fix This?")
|
||||
op.uri = "https://docs.blenderbim.org/users/troubleshooting.html"
|
||||
op.uri = "https://docs.bonsaibim.org/users/troubleshooting.html"
|
||||
|
||||
except:
|
||||
pass # Prior to load_post, we may not have any area properties setup
|
||||
|
||||
@@ -85,7 +85,7 @@ html_css_files = ["custom.css"]
|
||||
pygments_style = "one-dark"
|
||||
pygments_dark_style = "one-dark"
|
||||
|
||||
html_logo = "https://blenderbim.org/assets/images/blender/blender-logo.png"
|
||||
html_logo = "https://bonsaibim.org/assets/images/blender/blender-logo.png"
|
||||
html_theme_options = {
|
||||
"source_repository": "https://github.com/IfcOpenShell/IfcOpenShell/",
|
||||
"source_branch": "v0.8.0",
|
||||
|
||||
@@ -104,7 +104,7 @@ download.
|
||||
|
||||
.. container:: blockbutton
|
||||
|
||||
`Visit critical link <https://blenderbim.org>`__
|
||||
`Visit critical link <https://bonsaibim.org>`__
|
||||
|
||||
You can use bulleted lists:
|
||||
|
||||
@@ -132,7 +132,7 @@ Or ordered lists:
|
||||
.. seealso::
|
||||
|
||||
See also blocks should be used to reference `further reading
|
||||
<https://blenderbim.org>`__ links.
|
||||
<https://bonsaibim.org>`__ links.
|
||||
|
||||
Tables can be very annoying to format. You can use a CSV table instead.
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
BlenderBIM Reference Manual
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
Welcome to the manual for `BlenderBIM <https://blenderbim.org>`__,
|
||||
Welcome to the manual for `Bonsai <https://bonsaibim.org>`__,
|
||||
the free and open source BIM add-on for Blender.
|
||||
|
||||
Quickstart
|
||||
|
||||
@@ -41,7 +41,7 @@ Class**.
|
||||
.. seealso::
|
||||
|
||||
Use the `IFC Class search tool
|
||||
<https://blenderbim.org/search-ifc-class.html>`__ to help choose an **IFC
|
||||
<https://bonsaibim.org/search-ifc-class.html>`__ to help choose an **IFC
|
||||
Class**!
|
||||
|
||||
Select the cube (selected objects are highlighted in orange, careful not to
|
||||
|
||||
@@ -211,7 +211,7 @@ not see it all the time.
|
||||
.. seealso::
|
||||
|
||||
You can use the `Search IFC Class
|
||||
<https://blenderbim.org/search-ifc-class.html>`__ tool to learn the correct
|
||||
<https://bonsaibim.org/search-ifc-class.html>`__ tool to learn the correct
|
||||
classes and predefined types you should see.
|
||||
|
||||
Press the **Select Icon** to select all objects that are of the same
|
||||
|
||||
@@ -26,7 +26,7 @@ Installation
|
||||
|
||||
.. container:: blockbutton
|
||||
|
||||
`Download BlenderBIM Add-on <https://blenderbim.org/download.html>`__
|
||||
`Download Bonsai <https://bonsaibim.org/download.html>`__
|
||||
|
||||
3. **Install the BlenderBIM Add-on**
|
||||
|
||||
|
||||
+2
-2
@@ -54,7 +54,7 @@ Fields
|
||||
.. seealso::
|
||||
|
||||
Use the `IFC Class search tool
|
||||
<https://blenderbim.org/search-ifc-class.html>`__ to help choose an **IFC
|
||||
<https://bonsaibim.org/search-ifc-class.html>`__ to help choose an **IFC
|
||||
Class** based on the IFC Schema version.
|
||||
|
||||
**Unit System**
|
||||
@@ -380,4 +380,4 @@ Buttons
|
||||
:class: icon
|
||||
|
||||
.. |GREASEPENCIL| image:: /images/icon-GREASEPENCIL.svg
|
||||
:class: icon
|
||||
:class: icon
|
||||
|
||||
@@ -18,8 +18,8 @@ dependencies = [
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "http://blenderbim.org"
|
||||
Documentation = "https://docs.blenderbim.org"
|
||||
Homepage = "http://bonsaibim.org"
|
||||
Documentation = "https://docs.bonsaibim.org"
|
||||
Issues = "https://github.com/IfcOpenShell/IfcOpenShell/issues"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
|
||||
@@ -9,7 +9,7 @@ DATA;
|
||||
#2=IFCORGANIZATION('APTR','Aperture Science',$,$,$);
|
||||
#3=IFCACTORROLE(.USERDEFINED.,'CONTRIBUTOR',$);
|
||||
#4=IFCTELECOMADDRESS(.USERDEFINED.,'The main webpage of the software collection.','WEBPAGE',$,$,$,$,'https://ifcopenshell.org',$);
|
||||
#5=IFCTELECOMADDRESS(.USERDEFINED.,'The BlenderBIM Add-on webpage of the software collection.','WEBPAGE',$,$,$,$,'https://blenderbim.org',$);
|
||||
#5=IFCTELECOMADDRESS(.USERDEFINED.,'The BlenderBIM Add-on webpage of the software collection.','WEBPAGE',$,$,$,$,'https://bonsaibim.org',$);
|
||||
#6=IFCTELECOMADDRESS(.USERDEFINED.,'The source code repository of the software collection.','REPOSITORY',$,$,$,$,'https://github.com/IfcOpenShell/IfcOpenShell.git',$);
|
||||
#7=IFCORGANIZATION($,'IfcOpenShell','IfcOpenShell is an open source (LGPL) software library that helps users and software developers to work with the IFC file format.',(#3),(#4,#5,#6));
|
||||
#8=IFCAPPLICATION(#7,'0.0.999999','BlenderBIM Add-on','BlenderBIM');
|
||||
|
||||
@@ -9,7 +9,7 @@ DATA;
|
||||
#2=IFCORGANIZATION('APTR','Aperture Science',$,$,$);
|
||||
#3=IFCACTORROLE(.USERDEFINED.,'CONTRIBUTOR',$);
|
||||
#4=IFCTELECOMADDRESS(.USERDEFINED.,'The main webpage of the software collection.','WEBPAGE',$,$,$,$,'https://ifcopenshell.org',$);
|
||||
#5=IFCTELECOMADDRESS(.USERDEFINED.,'The BlenderBIM Add-on webpage of the software collection.','WEBPAGE',$,$,$,$,'https://blenderbim.org',$);
|
||||
#5=IFCTELECOMADDRESS(.USERDEFINED.,'The BlenderBIM Add-on webpage of the software collection.','WEBPAGE',$,$,$,$,'https://bonsaibim.org',$);
|
||||
#6=IFCTELECOMADDRESS(.USERDEFINED.,'The source code repository of the software collection.','REPOSITORY',$,$,$,$,'https://github.com/IfcOpenShell/IfcOpenShell.git',$);
|
||||
#7=IFCORGANIZATION($,'IfcOpenShell','IfcOpenShell is an open source (LGPL) software library that helps users and software developers to work with the IFC file format.',(#3),(#4,#5,#6));
|
||||
#8=IFCAPPLICATION(#7,'0.0.999999','BlenderBIM Add-on','BlenderBIM');
|
||||
|
||||
Reference in New Issue
Block a user