diff --git a/aws/lambda/Dockerfile b/aws/lambda/Dockerfile index fcffa1e87b..8076692e81 100644 --- a/aws/lambda/Dockerfile +++ b/aws/lambda/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get -y update && apt-get -y install unzip curl # Install AWS Lambda runtime interface client RUN pip install --target ${FUNCTION_DIR} awslambdaric -# Set the IfcOpenShell build version (check available builds at: https://blenderbim.org/docs-python/ifcopenshell-python/installation.html) +# Set the IfcOpenShell build version (check available builds at: https://docs.ifcopenshell.org/ifcopenshell-python/installation.html) ARG IFC_OPENSHELL_BUILD="39-v0.7.0-476ab50" # Download and extract IfcOpenShell diff --git a/choco/blenderbim/blenderbim.nuspec b/choco/blenderbim/blenderbim.nuspec index d76e86a8ce..bafb86e381 100644 --- a/choco/blenderbim/blenderbim.nuspec +++ b/choco/blenderbim/blenderbim.nuspec @@ -15,7 +15,7 @@ https://github.com/IfcOpenShell/IfcOpenShell/blob/v0.7.0/COPYING true https://github.com/IfcOpenShell/IfcOpenShell - https://blenderbim.org/docs/ + https://docs.blenderbim.org/ https://github.com/IfcOpenShell/IfcOpenShell/issues blender bim blenderbim ifc python opensource foss diff --git a/src/ifcbimtester/CITATION.cff b/src/ifcbimtester/CITATION.cff index d2d6ca6abb..a7222b5a28 100644 --- a/src/ifcbimtester/CITATION.cff +++ b/src/ifcbimtester/CITATION.cff @@ -11,7 +11,7 @@ authors: - name: "IfcOpenShell contributors"authors: repository-code: >- https://github.com/IfcOpenShell/IfcOpenShell/tree/v0.7.0/src/ifcbimtester -url: 'https://blenderbim.org/docs-python/bimtester.html' +url: 'https://docs.ifcopenshell.org/bimtester.html' abstract: Wrapper for Gherkin based unit testing for IFC models keywords: - Gherkin diff --git a/src/ifcopenshell-python/docs/ifccsv.rst b/src/ifcopenshell-python/docs/ifccsv.rst index 76742b3ec7..3c9f93b766 100644 --- a/src/ifcopenshell-python/docs/ifccsv.rst +++ b/src/ifcopenshell-python/docs/ifccsv.rst @@ -153,7 +153,7 @@ interface to access the IfcOpenShell utilities. 1. Install the BlenderBIM Add-on by following the `BlenderBIM Add-on installation documentation - `_. + `_. 2. Launch Blender. Change to the **Scene Properties** tab in the **Properties Panel**. Scroll down to the **IFC Collaboration > IFC CSV Import / Export** diff --git a/src/ifcopenshell-python/docs/ifcdiff.rst b/src/ifcopenshell-python/docs/ifcdiff.rst index b8b5332566..1f82d4d400 100644 --- a/src/ifcopenshell-python/docs/ifcdiff.rst +++ b/src/ifcopenshell-python/docs/ifcdiff.rst @@ -88,7 +88,7 @@ interface to access the IfcOpenShell utilities. 1. Install the BlenderBIM Add-on by following the `BlenderBIM Add-on installation documentation - `_. + `_. 2. Launch Blender. Change to the **Scene Properties** tab in the **Properties Panel**. Scroll down to the **IFC Quality Control > IFC Diff** panel. diff --git a/src/ifcopenshell-python/docs/ifcopenshell-python/installation.rst b/src/ifcopenshell-python/docs/ifcopenshell-python/installation.rst index 1801ccf75e..77f71fbf34 100644 --- a/src/ifcopenshell-python/docs/ifcopenshell-python/installation.rst +++ b/src/ifcopenshell-python/docs/ifcopenshell-python/installation.rst @@ -227,7 +227,7 @@ The BlenderBIM Add-on is available either as a stable build or a daily build. 1. Install the BlenderBIM Add-on by following the `BlenderBIM Add-on installation documentation - `_. + `_. 2. Launch Blender. On the top left of the Viewport panel, click the **Editor Type** icon to change the viewport into a **Python Console**. @@ -261,7 +261,7 @@ and run your script using the **Text > Run Script** menu or by clicking on the Blender. This can help when learning how to write scripts as you can double check the results of your scripts with what you see in the graphical interface. `Read more - `_. + `_. From source with precompiled binaries ------------------------------------- diff --git a/src/ifcopenshell-python/ifcopenshell/api/georeference/edit_georeferencing.py b/src/ifcopenshell-python/ifcopenshell/api/georeference/edit_georeferencing.py index 9e34626e4a..77554e1f7f 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/georeference/edit_georeferencing.py +++ b/src/ifcopenshell-python/ifcopenshell/api/georeference/edit_georeferencing.py @@ -26,7 +26,7 @@ class Usecase: surveyor, and a third-party digital engineer with expertise in IFC to moderate. For more information, read the BlenderBIM Add-on documentation for Georeferencing: - https://blenderbim.org/docs/users/georeferencing.html + https://docs.blenderbim.org/users/georeferencing.html For more information about the attributes and data types of an IfcMapConversion, consult the IFC documentation. diff --git a/src/ifcopenshell-python/ifcopenshell/api/owner/settings.py b/src/ifcopenshell-python/ifcopenshell/api/owner/settings.py index 5427dd9c23..6c0e6a456f 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/owner/settings.py +++ b/src/ifcopenshell-python/ifcopenshell/api/owner/settings.py @@ -38,7 +38,7 @@ def get_application(ifc: ifcopenshell.file) -> Union[ifcopenshell.entity_instanc if not app and ifc.schema == "IFC2X3": raise Exception( "Please create an application to continue. See the owner.create_owner_history docs for more info." - "https://blenderbim.org/docs-python/autoapi/ifcopenshell/api/owner/create_owner_history/index.html" + "https://docs.ifcopenshell.org/autoapi/ifcopenshell/api/owner/create_owner_history/index.html" ) return (app or [None])[0] @@ -58,7 +58,7 @@ def get_user(ifc: ifcopenshell.file) -> Union[ifcopenshell.entity_instance, None if not pao and ifc.schema == "IFC2X3": raise Exception( "Please create a user to continue. See the owner.create_owner_history docs for more info." - "https://blenderbim.org/docs-python/autoapi/ifcopenshell/api/owner/create_owner_history/index.html" + "https://docs.ifcopenshell.org/autoapi/ifcopenshell/api/owner/create_owner_history/index.html" ) return (pao or [None])[0] diff --git a/src/ifcsverchok/README.md b/src/ifcsverchok/README.md index 401bcdfd41..e2c5944dfa 100644 --- a/src/ifcsverchok/README.md +++ b/src/ifcsverchok/README.md @@ -3,7 +3,7 @@ N.B.! IfcSverchok nodes are WIP. You can experience Blender crashes while using them, especially if you're undoing (ctrl/cmd-Z) something in the node tree. -## Packaged installation[](https://blenderbim.org/docs-python/ifcsverchok/installation.html#packaged-installation "Permalink to this headline") +## Packaged installation[](https://docs.ifcopenshell.org/ifcsverchok/installation.html#packaged-installation "Permalink to this headline") IfcSverchok is packaged like a regular Blender add-on, so installation is the same as any other Blender add-on. [Download IfcSverchok here](https://github.com/IfcOpenShell/IfcOpenShell/releases/download/ifcsverchok-240417/ifcsverchok-240417.zip). diff --git a/src/opencdeserver/README.md b/src/opencdeserver/README.md index 2623000fbc..87d2fb8147 100644 --- a/src/opencdeserver/README.md +++ b/src/opencdeserver/README.md @@ -250,7 +250,7 @@ https://technical.buildingsmart.org/standards/ifc/ifc-schema-specifications/ https://www.sciencedirect.com/science/article/pii/S0926580523000389 - IFCOpenShell documentation -https://blenderbim.org/docs-python/ +https://docs.ifcopenshell.org/ ### Frontend