Skip to content

Commit a589934

Browse files
committed
Replaced old images with new graphviz images, removed old image sources, and moved images into the images directory.
1 parent 3307c1d commit a589934

16 files changed

+33
-130
lines changed

docs/html/CDT6.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,4 @@ <h3 class="Head2">Notes</h3>
287287

288288
</div>
289289

290-
291-
<hr>
292-
<address></address>
293-
<!-- hhmts start --> Last modified: Thu Jan 26 14:18:15 CDT 2010 <!-- hhmts end -->
294290
</body> </html>

docs/html/MakeProjectCreator.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ <h6 class="FigTitle">Generating projects with mpc.pl</h6>
9999
<p class="Tbl-Body">&nbsp;</p>
100100

101101
<div>
102-
<img src="images/mpc.gif" alt=
102+
<img src="images/mpc.png" alt=
103103
"Generating projects with mpc.pl">
104104
</div>
105105
</td>
@@ -137,7 +137,7 @@ <h6 class="FigTitle">Generating workspaces with mwc.pl</h6>
137137
<p class="Tbl-Body">&nbsp;</p>
138138

139139
<div>
140-
<img src="images/mwc.gif" alt=
140+
<img src="images/mwc.png" alt=
141141
"Generating workspaces with mwc.pl">
142142
</div>
143143
</td>

docs/html/RpmSpec.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ <h3 class="Head2">Usage</h3>
7373
</p>
7474
<h4 class="Head5">Generic workflow</h4>
7575
<div align="center">
76-
<img src="rpmworkflow.png" alt="rpm workflow"/>
76+
<img src="images/rpmworkflow.png" alt="rpm workflow"/>
7777
<h6 align="center">Figure: RPM Workflow</h6>
7878
</div>
7979
<p class="Body">
@@ -200,7 +200,4 @@ <h4 class="Head5"><a name="scriptnotes"></a>Notes on Generated Script</h4>
200200
</div>
201201

202202

203-
204-
<hr>
205-
<!-- hhmts start --> Last modified: Sat Jan 26 14:24:34 CST 2023 <!-- hhmts end -->
206203
</body> </html>

docs/html/images/OCILOGO_bw_book.eps

-70.9 KB
Binary file not shown.

docs/html/images/mpc.dot

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// dot mpc.dot -Tpng -o mpc.png
2+
digraph project {
3+
rankdir=LR;
4+
splines="ortho";
5+
6+
mpcfile [shape="cylinder" height="1" label="MPC\nFile"];
7+
tfile [shape="cylinder" height="1" label="Template\nFile"];
8+
tifile [shape="cylinder" height="1" label="Template\nInput File"];
9+
10+
p [shape="point" width="0"];
11+
12+
mpc [shape="box" height="1" style="rounded" label="Make Project\nCreator"];
13+
out [shape="box" height="1" label="Project File\n(Makefile, vcxproj, etc.)"];
14+
15+
// Send all three into the point with no arrowhead
16+
{mpcfile, tfile, tifile} -> p [dir="none"];
17+
18+
// Go from the point to the rest
19+
p -> mpc -> out;
20+
}

docs/html/images/mpc.fig

Lines changed: 0 additions & 74 deletions
This file was deleted.

docs/html/images/mpc.gif

-3.29 KB
Binary file not shown.

docs/html/images/mpc.png

17.5 KB
Loading

docs/html/images/mpc_mtiff.eps

-37.2 KB
Binary file not shown.

docs/html/images/mwc.dot

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// dot mwc.dot -Tpng -o mwc.png
2+
digraph workspace {
3+
rankdir=LR;
4+
5+
mwcfile [shape="cylinder" height="1" label="MWC\nFile"];
6+
mwc [shape="box" height="1" style="rounded" label="Make Workspace\nCreator"];
7+
out [shape="box" height="1" label="Workspace File\n(Makefile, sln, etc.)"];
8+
9+
mwcfile -> mwc -> out;
10+
}

0 commit comments

Comments
 (0)