From a64cc294b2d4459a8882a607148deeb53a985707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Sat, 24 Aug 2024 20:23:48 -0400 Subject: [PATCH 1/4] DOC: Fix hyperlink syntax in blog entry Fix hyperlink syntax in blog entry: add a missing whitespace between the displayed text and the target URL. Fixes: ``` /fury/docs/source/posts/2023/2023-01-29-final-report-shivam.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets. See "backrefs" attribute for IDs. ``` raised for example at: https://github.com/fury-gl/fury/actions/runs/10530916380/job/29181869908#step:7:551 --- docs/source/posts/2023/2023-01-29-final-report-shivam.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/posts/2023/2023-01-29-final-report-shivam.rst b/docs/source/posts/2023/2023-01-29-final-report-shivam.rst index 92fc97639..598f7026e 100644 --- a/docs/source/posts/2023/2023-01-29-final-report-shivam.rst +++ b/docs/source/posts/2023/2023-01-29-final-report-shivam.rst @@ -270,7 +270,7 @@ Timeline +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 3 (04-07-2022) | Fixing fetcher adding tests and docs | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| Week 4 (12-07-2022) | Finalizing glTF loader | `FURY `__ -`Python`__ | +| Week 4 (12-07-2022) | Finalizing glTF loader | `FURY `__ -`Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 5 (19-07-2022) | Creating PR for glTF exporter and fixing the loader | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ From 660e3395141f41f1e6143ade63ded3482b532b17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Sat, 24 Aug 2024 20:35:38 -0400 Subject: [PATCH 2/4] DOC: Use simple hyperlink syntax to link an internal file Use simple hyperlink syntax to link an intenal file instead of using both the `:doc:` directive and hyperlink syntax. Fixes: ``` /fury/fury/docs/source/posts/2023/2023-07-17-week-7-tvcastillod.rst:19: WARNING: Mismatch: both interpreted text role prefix and reference suffix. ``` raised for example at: https://github.com/fury-gl/fury/actions/runs/10530916380/job/29181869908#step:7:553 --- docs/source/posts/2023/2023-07-17-week-7-tvcastillod.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/posts/2023/2023-07-17-week-7-tvcastillod.rst b/docs/source/posts/2023/2023-07-17-week-7-tvcastillod.rst index 5c47506bd..20117f2f0 100644 --- a/docs/source/posts/2023/2023-07-17-week-7-tvcastillod.rst +++ b/docs/source/posts/2023/2023-07-17-week-7-tvcastillod.rst @@ -16,7 +16,7 @@ I also continued working on the ellipsoid tutorial, which I hope to finish this What is coming up next? ----------------------- -I will finish defining some details of the tutorial so that it is ready for review, and now I will start working on the tutorial related to the uncertainty, while I receive feedback on the other PRs. Also, as preparation for the next step I will start exploring on how to address visualization of spherical harmonics for ODF glyphs visualization, I found that a previous GSoC participant at FURY started working on that and also did several work with raymarching and SDF (:doc:`here is a summary of the work <../2020/2020-08-24-final-work-lenix>`_), so I will take a deeper look on that to see if I can get something useful I can start with. +I will finish defining some details of the tutorial so that it is ready for review, and now I will start working on the tutorial related to the uncertainty, while I receive feedback on the other PRs. Also, as preparation for the next step I will start exploring on how to address visualization of spherical harmonics for ODF glyphs visualization, I found that a previous GSoC participant at FURY started working on that and also did several work with raymarching and SDF (`here is a summary of the work <../2020/2020-08-24-final-work-lenix>`_), so I will take a deeper look on that to see if I can get something useful I can start with. Did I get stuck anywhere? ------------------------- From ab83298e0ed005a58e8b4b75d29be271a09f804c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Tue, 27 Aug 2024 19:09:46 -0400 Subject: [PATCH 3/4] DOC: Fix misplaced column separation character in table Fix misplaced column separation character in table: move the column separation `+` character so that it is aligned with the rest of the column separation characters in a blog entry table. --- docs/source/posts/2023/2023-01-29-final-report-shivam.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/posts/2023/2023-01-29-final-report-shivam.rst b/docs/source/posts/2023/2023-01-29-final-report-shivam.rst index 598f7026e..618fb9436 100644 --- a/docs/source/posts/2023/2023-01-29-final-report-shivam.rst +++ b/docs/source/posts/2023/2023-01-29-final-report-shivam.rst @@ -277,7 +277,7 @@ Timeline | Week 6 (25-07-2022) | Extracting the animation data | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 7 (01-08-2022) | Fixing bugs in animations | `FURY `__ - `Python `__ | -+----------------------+-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ ++----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 8 (09-08-2022) | Fixing animation bugs | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 9 (17-08-2022) | First working skeletal animation prototype | `FURY `__ - `Python `__ | From f0357862ab4d09bb6ca5d607cdd80345cc9a96f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Tue, 27 Aug 2024 19:18:03 -0400 Subject: [PATCH 4/4] DOC: Remove a spare whitespace in a table cell Remove a spare whitespace in a table cell.i --- docs/source/posts/2023/2023-01-29-final-report-shivam.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/posts/2023/2023-01-29-final-report-shivam.rst b/docs/source/posts/2023/2023-01-29-final-report-shivam.rst index 618fb9436..5b2d1e1fc 100644 --- a/docs/source/posts/2023/2023-01-29-final-report-shivam.rst +++ b/docs/source/posts/2023/2023-01-29-final-report-shivam.rst @@ -278,7 +278,7 @@ Timeline +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 7 (01-08-2022) | Fixing bugs in animations | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| Week 8 (09-08-2022) | Fixing animation bugs | `FURY `__ - `Python `__ | +| Week 8 (09-08-2022) | Fixing animation bugs | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Week 9 (17-08-2022) | First working skeletal animation prototype | `FURY `__ - `Python `__ | +----------------------+-----------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+