Skip to content

Commit 483a214

Browse files
Merge pull request #1062 from julien-tierny/doc
[doc] Fix broken example links
2 parents 816e833 + 4ed8bed commit 483a214

File tree

28 files changed

+100
-33
lines changed

28 files changed

+100
-33
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@ jobs:
242242
# remove buggy example
243243
# related issue: https://github.com/topology-tool-kit/ttk/issues/1055
244244
rm python/nestedTrackingFromOverlap.py
245+
# tmp removal of mpi example
246+
rm python/mpiExample.py
245247
# remove examples which fill up the memory
246248
rm python/topologicalOptimization_darkSky.py
247249
python3 -u python/run.py
@@ -398,6 +400,8 @@ jobs:
398400
# remove buggy example
399401
# related issue: https://github.com/topology-tool-kit/ttk/issues/1055
400402
rm python/nestedTrackingFromOverlap.py
403+
# tmp removal of mpi example
404+
rm python/mpiExample.py
401405
# remove examples which fill up the memory
402406
rm python/topologicalOptimization_darkSky.py
403407
pvpython -u python/run.py
@@ -582,6 +586,8 @@ jobs:
582586
set PV_PLUGIN_PATH=%TTK_DIR%\bin\plugins
583587
cd ttk-data
584588
rm python/nestedTrackingFromOverlap.py
589+
# tmp removal of mpi example
590+
rm python/mpiExample.py
585591
# remove examples which fill up the memory
586592
rm python/topologicalOptimization_darkSky.py
587593
pvpython.exe -u python\run.py

core/base/arrayPreconditioning/ArrayPreconditioning.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
/// In distributed, using GlobalOrder set to True, this module will compute a
1010
/// global order, otherwise each process will locally compute its order.
1111
///
12-
12+
/// \b Online \b examples:\n
13+
/// - <a
14+
/// href="https://topology-tool-kit.github.io/examples/mpiExample/">
15+
/// MPI example</a> \n
1316
#pragma once
1417

1518
// ttk common includes

core/base/dimensionReduction/DimensionReduction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/// href="https://topology-tool-kit.github.io/examples/clusteringKelvinHelmholtzInstabilities/">
2323
/// Clustering Kelvin Helmholtz Instabilities example</a> \n
2424
/// - <a
25-
/// href="https://topology-tool-kit.github.io/examples/karhunenLoveDigits64Dimensions//">Karhunen-Love
25+
/// href="https://topology-tool-kit.github.io/examples/karhunenLoveDigits64Dimensions/">Karhunen-Love
2626
/// Digits 64-Dimensions example</a> \n
2727
/// - <a
2828
/// href="https://topology-tool-kit.github.io/examples/mergeTreeClustering/">Merge

core/base/integralLines/IntegralLines.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
/// lines along the edges of the input triangulation.
1313
///
1414
/// \sa ttkIntegralLines.cpp %for a usage example.
15+
///
16+
/// \b Online \b examples:\n
17+
/// - <a
18+
/// href="https://topology-tool-kit.github.io/examples/mpiExample/">
19+
/// MPI example</a> \n
1520

1621
#pragma once
1722

core/base/morseSmaleComplex/MorseSmaleComplex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
/// href="https://topology-tool-kit.github.io/examples/tectonicPuzzle/">Tectonic
7171
/// Puzzle example</a> \n
7272
/// - <a
73-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky//">Topological
73+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky/">Topological
7474
/// Optimization DarkSky</a>\n
7575
/// - <a
7676
/// href="https://topology-tool-kit.github.io/examples/tribute/">Tribute

core/base/persistenceDiagram/PersistenceDiagram.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
/// href="https://topology-tool-kit.github.io/examples/interactionSites/">
9292
/// Interaction sites</a> \n
9393
/// - <a
94-
/// href="https://topology-tool-kit.github.io/examples/karhunenLoveDigits64Dimensions//">Karhunen-Love
94+
/// href="https://topology-tool-kit.github.io/examples/karhunenLoveDigits64Dimensions/">Karhunen-Love
9595
/// Digits 64-Dimensions example</a> \n
9696
/// - <a
9797
/// href="https://topology-tool-kit.github.io/examples/morsePersistence/">Morse
@@ -130,13 +130,13 @@
130130
/// href="https://topology-tool-kit.github.io/examples/tectonicPuzzle/">Tectonic
131131
/// Puzzle example</a> \n
132132
/// - <a
133-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky//">Topological
133+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky/">Topological
134134
/// Optimization DarkSky</a>\n
135135
/// - <a
136-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus//">Topological
136+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus/">Topological
137137
/// Optimization for Pegasus Genus Repair example</a>\n
138138
/// - <a
139-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_torus//">Topological
139+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_torus/">Topological
140140
/// Optimization for Torus Repair example</a>\n
141141
/// - <a
142142
/// href="https://topology-tool-kit.github.io/examples/tribute/">Tribute

core/base/scalarFieldCriticalPoints/ScalarFieldCriticalPoints.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
3838
/// href="https://topology-tool-kit.github.io/examples/interactionSites/">
3939
/// Interaction sites</a> \n
4040
/// - <a
41+
/// href="https://topology-tool-kit.github.io/examples/mpiExample/">
42+
/// MPI example</a> \n
43+
/// - <a
4144
/// href="https://topology-tool-kit.github.io/examples/uncertainStartingVortex/">
4245
/// Uncertain Starting Vortex example</a> \n
4346

core/base/scalarFieldSmoother/ScalarFieldSmoother.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,16 @@
4242
/// href="https://topology-tool-kit.github.io/examples/morseSmaleSegmentation_at/">Morse-Smale
4343
/// segmentation example</a> \n
4444
/// - <a
45+
/// href="https://topology-tool-kit.github.io/examples/mpiExample/">
46+
/// MPI example</a> \n
47+
/// - <a
4548
/// href="https://topology-tool-kit.github.io/examples/persistenceDiagramPGA/">Persistence
4649
/// Diagram Principal Geodesic Analysis example</a> \n
4750
/// - <a
48-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky//">Topological
51+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky/">Topological
4952
/// Optimization DarkSky</a>\n
5053
/// - <a
51-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus//">Topological
54+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus/">Topological
5255
/// Optimization for Pegasus Genus Repair example</a>\n
5356

5457
#pragma once

core/base/signedDistanceField/SignedDistanceField.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
///
2929
/// \b Online \b examples: \n
3030
/// - <a
31-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus//">Topological
31+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus/">Topological
3232
/// Optimization for Pegasus Genus Repair example</a>\n
3333
/// - <a
34-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_torus//">Topological
34+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_torus/">Topological
3535
/// Optimization for Torus Repair example</a>\n
3636

3737
#pragma once

core/base/topologicalSimplification/TopologicalSimplification.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@
8888
/// href="https://topology-tool-kit.github.io/examples/tectonicPuzzle/">Tectonic
8989
/// Puzzle example</a> \n
9090
/// - <a
91-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky//">Topological
91+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_darkSky/">Topological
9292
/// Optimization DarkSky</a>\n
9393
/// - <a
94-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus//">Topological
94+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_pegasus/">Topological
9595
/// Optimization for Pegasus Genus Repair example</a>\n
9696
/// - <a
97-
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_torus//">Topological
97+
/// href="https://topology-tool-kit.github.io/examples/topologicalOptimization_torus/">Topological
9898
/// Optimization for Torus Repair example</a>\n
9999
/// - <a
100100
/// href="https://topology-tool-kit.github.io/examples/tribute/">Tribute

0 commit comments

Comments
 (0)