-
Notifications
You must be signed in to change notification settings - Fork 10
/
buildDocs.sh
executable file
·629 lines (553 loc) · 23 KB
/
buildDocs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
#!/usr/bin/env bash
################################################################
# Build script for building unified model, architecture (spec doc), AIAA manuscript, & assembly instructions in dist/
################################################################
#### set environment variable for project root ####
project_root=$PWD
#### Install node_modules, if not already installed ####
if [ ! -r ./node_modules ]; then
clitool="npm"
cmdargs="ci"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --help | grep 'npm <command>'"
if ! eval $condition; then
echo "Installing node_modules via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Installing node_modules..."
cd $workdir
eval $cmd
cd $project_root
fi
fi
#### Install m30mlTools/node_modules, if not already installed ####
if [ ! -r ./m30mlTools/node_modules ]; then
clitool="npm"
cmdargs="ci"
cmd="$clitool $cmdargs"
workdir=$project_root/m30mlTools
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --help | grep 'npm <command>'"
if ! eval $condition; then
echo "Installing node_modules via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Installing node_modules..."
cd $workdir
eval $cmd
cd $project_root
fi
fi
#### Install dof-helpers/node_modules, if not already installed ####
if [ ! -r ./dof-helpers/node_modules ]; then
clitool="npm"
cmdargs="ci"
cmd="$clitool $cmdargs"
workdir=$project_root/dof-helpers
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --help | grep 'npm <command>'"
if ! eval $condition; then
echo "Installing dof-helpers/node_modules via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Installing dof-helpers/node_modules..."
cd $workdir
eval $cmd
cd $project_root
fi
fi
#### Create dist/ directory, if none exists ####
if [ ! -r ./dist ]; then
echo "Creating dist/ directory..."
mkdir dist/
fi
# copy operating-mode-as-fsm.puml to dist/...
echo "copying operating-mode-as-fsm.puml to dist/..."
cp ./components/sealion-cubesat/components/sealion-obc/components/dilophos/fsw-architecture/operating-mode-as-fsm.puml dist/
#### generate dist/component.yaml & symlink to architecture/ directory ####
clitool="node"
cmdargs="dof-helpers/parseComponent.js"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "generating dist/component.yaml via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "generating dist/component.yaml..."
cd $workdir
eval $cmd
cd $project_root
fi
echo "Create symlink to dist/component.yaml in architecture/4-Components..."
mkdir architecture/4-Components
ln -srv dist/component.yaml architecture/4-Components
#### generate assembly instructions as asciidoc ####
clitool="node"
cmdargs="dof-helpers/generateAssemblyInstructions.js"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "generating assembly instructions as asciidoc via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "generating assembly instructions as asciidoc..."
cd $workdir
eval $cmd
cd $project_root
fi
#### generate assembly instructions as html ####
clitool="asciidoctor"
cmdargs="assemblyInstructions.adoc -o assemblyInstructions.html"
cmd="$clitool $cmdargs"
workdir=$project_root/dist
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/asciidoctor/docker-asciidoctor $cmd"
condition="$clitool --version | grep '2.0.17'"
if ! eval $condition; then
echo "generating assembly instructions as html via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "generating assembly instructions as html..."
cd $workdir
eval $cmd
cd $project_root
fi
#### generate assembly instructions as pdf ####
clitool="asciidoctor"
cmdargs="assemblyInstructions.adoc -o assemblyInstructions.pdf -r asciidoctor-pdf -b pdf"
cmd="$clitool $cmdargs"
workdir=$project_root/dist
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/asciidoctor/docker-asciidoctor $cmd"
condition="$clitool --version | grep '2.0.17'"
if ! eval $condition; then
echo "generating assembly instructions as pdf via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "generating assembly instructions as pdf..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Build the unified model from liquid template ####
clitool="node"
cmdargs="m30mlTools/buildUnifiedModel.js"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Building the unified model from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Building the unified model from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
# Create symlink to dist/architecture.yaml as dist/architecture.yml
echo "Creating symlink to dist/architecture.yaml as dist/architecture.yml..."
ln -srv dist/architecture.yaml dist/architecture.yml
#### Generate stakeholder needs mapping from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/stakeholder-needs-mapping.puml.liquid --out=dist/stakeholder-needs-mapping.puml"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating stakeholder needs mapping from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating stakeholder needs from liquid template mapping..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate user stories mapping from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/user-stories-mapping.puml.liquid --out=dist/user-stories-mapping.puml"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating user stories mapping from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating user stories mapping from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate use-case-diagrams.puml from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/use-case-diagram.puml.liquid --out=dist/use-case-diagram.puml"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating use-case-diagrams.puml from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating use-case-diagrams.puml from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate data structure mapping from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/data-structures-mapping.puml.liquid --out=dist/data-structures-mapping.puml"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating data structure mapping from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating data structure mapping from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate sealion-mission-architecture.adoc from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/sealion-mission-architecture.adoc.liquid --out=dist/sealion-mission-architecture.adoc"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating sealion-mission-architecture.adoc from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating sealion-mission-architecture.adoc from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### generate pdf-theme.yml from liquid template ####
clitool="jinja2"
cmdargs="-o dist/pdf-theme.yml --format yaml templates/pdf-theme.yml.jinja2 dist/architecture.yml"
workdir=$project_root
cmd="$clitool $cmdargs"
podmancmd="podman run --rm -v $workdir:/work -w /work docker.io/roquie/docker-jinja2-cli $cmdargs"
condition="$clitool --version | grep 'v0.8.2'"
if ! eval $condition; then
echo "Generating pdf-theme.yml from jinja2 template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating pdf-theme.yml from jinja2 template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate index.html from dist/sealion-mission-architecture.adoc ####
clitool="asciidoctor"
cmdargs="dist/sealion-mission-architecture.adoc -r asciidoctor-diagram -o dist/index.html"
workdir=$project_root
cmd="$clitool $cmdargs"
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/asciidoctor/docker-asciidoctor $cmd"
condition="$clitool --version | grep '2.0.17'"
if ! eval $condition; then
echo "Generating index.html from dist/sealion-mission-architecture.adoc via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating index.html from dist/sealion-mission-architecture.adoc..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate sealion-mission-architecture.pdf from dist/sealion-mission-architecture.adoc ####
clitool="asciidoctor"
cmdargs="dist/sealion-mission-architecture.adoc -o dist/sealion-mission-architecture.pdf -r asciidoctor-pdf -r asciidoctor-diagram -b pdf -a pdf-theme=dist/pdf-theme.yml"
workdir=$project_root
cmd="$clitool $cmdargs"
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/asciidoctor/docker-asciidoctor $cmd"
condition="$clitool --version | grep '2.0.17'"
if ! eval $condition; then
echo "Generate sealion-mission-architecture.pdf from dist/sealion-mission-architecture.adoc via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generate sealion-mission-architecture.pdf from dist/sealion-mission-architecture.adoc..."
cd $workdir
eval $cmd
cd $project_root
fi
# remove architecture/4-Components
echo "removing architecture/4-Components..."
rm -rf architecture/4-Components
## Generate presentation.html
#echo "Generating presentation.adoc..."
#podman run --rm -v $PWD:/src -w /src node node m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/presentation.adoc.liquid --out=dist/presentation.adoc
#echo "Generating presentation.html..."
#podman run --rm -v $PWD:/documents asciidoctor/docker-asciidoctor bash -c "cd dist && asciidoctor-revealjs -r asciidoctor-diagram -a revealjsdir=https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0 -a revealjs_transition=slide -a revealjs_slideNumber=true -a revealjs_width=1100 -a revealjs_height=700 -D . 'presentation.adoc' -o 'presentation.html'"
#### Generate tabulated-stakeholder-needs.adoc from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/tabulated-stakeholder-needs.adoc.liquid --out=dist/tabulated-stakeholder-needs.adoc"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating tabulated-stakeholder-needs.adoc from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating tabulated-stakeholder-needs.adoc from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
## create symbolic link for tabulated-stakeholder-needs.adoc
#echo "create symbolic link for tabulated-stakeholder-needs.adoc in research/..."
#podman run --rm --volume "$PWD:/src" -w "/src" node bash -c 'ln -srv dist/tabulated-stakeholder-needs.adoc research/tabulated-stakeholder-needs.adoc'
#### Generate tabulated-user-stories.adoc from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/tabulated-user-stories.adoc.liquid --out=dist/tabulated-user-stories.adoc"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating tabulated-user-stories.adoc from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating tabulated-user-stories.adoc from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
## create symbolic link for tabulated-user-stories.adoc
#echo "create symbolic link for tabulated-user-stories.adoc in research/..."
#podman run --rm --volume "$PWD:/src" -w "/src" node bash -c 'ln -srv dist/tabulated-user-stories.adoc research/tabulated-user-stories.adoc'
#### Generate satellite-health-data.adoc from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/satellite-health-data.adoc.liquid --out=dist/satellite-health-data.adoc"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating satellite-health-data.adoc from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating satellite-health-data.adoc from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate satellite-health-data.adoc from liquid template ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/satellite-health-data.adoc.liquid --out=dist/satellite-health-data.adoc"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating satellite-health-data.adoc from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating satellite-health-data.adoc from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### Generate LaTeX code for satellite health data packet table ####
clitool="node"
cmdargs="m30mlTools/generateDoc.js --unifiedModel=dist/architecture.yaml --template=templates/satellite-health-data-packet-as-table.tex.liquid --out=dist/satellite-health-data-packet-as-table.tex"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm --volume $workdir:/srv -w /srv docker.io/node $cmd"
condition="$clitool --version | grep 'v17'"
if ! eval $condition; then
echo "Generating satellite-health-data-packet.tex from liquid template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating satellite-health-data-packet.tex from liquid template..."
cd $workdir
eval $cmd
cd $project_root
fi
#### generate example manuscript ####
# for linkml podman command usage, see https://hub.docker.com/r/linkml/linkml
clitool="linkml-validate"
cmdargs="-s manuscript-metamodel.yaml manuscript-example.yaml"
cmd="$clitool $cmdargs"
workdir=$project_root/manuscript
podmancmd="podman run --rm -v $workdir:/work -w /work docker.io/linkml/linkml:1.3.14 $cmd"
condition="$clitool --help | grep 'Validates instance data'"
if ! eval $condition; then
echo "Validating linkml model of example manuscript via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Validating linkml model of example manuscript..."
cd $workdir
eval $cmd
cd $project_root
fi
clitool="jinja2"
cmdargs="-o dist/manuscript-example.tex --format yaml templates/manuscript.tex.jinja2 manuscript/manuscript-example.yaml"
workdir=$project_root
#cmdargs="-o dist/title.tex --format yaml templates/title.tex.jinja2 manuscript/manuscript-example.yaml"
cmd="$clitool $cmdargs"
podmancmd="podman run --rm -v $workdir:/work -w /work docker.io/roquie/docker-jinja2-cli $cmdargs"
condition="$clitool --version | grep 'v0.8.2'"
if ! eval $condition; then
echo "Generating LaTeX document from example manuscript linkml model and jinja2 template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating LaTeX document from example manuscript linkml model and jinja2 template..."
cd $workdir
eval $cmd
cd $project_root
fi
echo "Copy LaTeX files and assets (required for generating PDF document) to dist/..."
cp -t dist/ manuscript/*.tex manuscript/*.bib manuscript/*.bst manuscript/*.cls assets/*
# https://tex.stackexchange.com/questions/43325/citations-not-showing-up-in-text-and-bibliography
cmd="pdflatex manuscript-example.tex && bibtex manuscript-example.aux"
workdir=$project_root/dist
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/nanozoo/pdflatex:3.14159265--f2f4a3f bash -c '$cmd'"
if [ ! $(pdflatex -version | grep '3.14159265') ] && [ ! $(bibtex -version | grep '0.99d') ]; then
echo $(pdflatex -version)
echo $(bibtex -version)
echo "Pre-Processing LaTeX document with BibTeX of example manuscript via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Pre-Processing LaTeX document with BibTeX of example manuscript..."
cd $workdir
eval $cmd
cd $project_root
fi
# https://tex.stackexchange.com/questions/43325/citations-not-showing-up-in-text-and-bibliography
cmd="pdflatex manuscript-example.tex && pdflatex manuscript-example.tex"
workdir=$project_root/dist
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/nanozoo/pdflatex:3.14159265--f2f4a3f bash -c '$cmd'"
if [ ! $(pdflatex -version | grep '3.14159265') ] && [ ! $(bibtex -version | grep '0.99d') ]; then
echo "Generating PDF document from LaTeX/BibTeX document of example manuscript via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating PDF document from LaTeX/BibTeX document of example manuscript..."
cd $workdir
eval $cmd
cd $project_root
fi
#### generate manuscript ####
# for linkml docker command usage, see https://hub.docker.com/r/linkml/linkml
clitool="linkml-validate"
cmdargs="-s manuscript-metamodel.yaml manuscript.yaml"
cmd="$clitool $cmdargs"
workdir=$project_root/manuscript
podmancmd="podman run --rm -v $workdir:/work -w /work docker.io/linkml/linkml:1.3.14 $cmd"
condition="$clitool --help | grep 'Validates instance data'"
if ! eval $condition; then
echo "Validating linkml model of manuscript via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Validating linkml model of manuscript..."
cd $workdir
eval $cmd
cd $project_root
fi
clitool="jinja2"
cmdargs="-o dist/manuscript.tex --format yaml templates/manuscript.tex.jinja2 manuscript/manuscript.yaml"
#cmdargs="-o dist/title.tex --format yaml templates/title.tex.jinja2 manuscript/manuscript.yaml"
cmd="$clitool $cmdargs"
workdir=$project_root
podmancmd="podman run --rm -v $workdir:/work -w /work docker.io/roquie/docker-jinja2-cli $cmdargs"
condition="$clitool --version | grep 'v0.8.2'"
if ! eval $condition; then
echo "Generating LaTeX document from manuscript linkml model and jinja2 template via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating LaTeX document from manuscript linkml model and jinja2 template..."
cd $workdir
eval $cmd
cd $project_root
fi
echo "Copy LaTeX files and assets (required for generating PDF document) to dist/..."
cp -t dist/ manuscript/*.tex manuscript/*.bib manuscript/*.bst manuscript/*.cls assets/*
# https://tex.stackexchange.com/questions/43325/citations-not-showing-up-in-text-and-bibliography
cmd="pdflatex manuscript.tex && bibtex manuscript.aux"
workdir=$project_root/dist
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/nanozoo/pdflatex:3.14159265--f2f4a3f bash -c '$cmd'"
if [ ! $(pdflatex -version | grep '3.14159265-2.6-1.40.19') ] && [ ! $(bibtex -version | grep '0.99d') ]; then
echo "Pre-Processing LaTeX document with BibTeX of manuscript via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Pre-Processing LaTeX document with BibTeX of manuscript..."
cd $workdir
eval $cmd
cd $project_root
fi
# https://tex.stackexchange.com/questions/43325/citations-not-showing-up-in-text-and-bibliography
cmd="pdflatex manuscript.tex && pdflatex manuscript.tex"
workdir=$project_root/dist
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/nanozoo/pdflatex:3.14159265--f2f4a3f bash -c '$cmd'"
if [ ! $(pdflatex -version | grep '3.14159265-2.6-1.40.19') ] && [ ! $(bibtex -version | grep '0.99d') ]; then
echo "Generating PDF document from LaTeX/BibTeX document of manuscript via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generating PDF document from LaTeX/BibTeX document of manuscript..."
cd $workdir
eval $cmd
cd $project_root
fi
gitdescribe=$(git describe --always --tags HEAD)
newmanuscriptname=manuscript-$gitdescribe.pdf
mv $workdir/manuscript.pdf $workdir/$newmanuscriptname
# Copy scitech-presentation.adoc to dist/
cp -t dist/ manuscript/scitech-presentation.adoc assets/* -r themes/
#### Generate scitech-presentation.html from dist/scitech-presentation.adoc ####
clitool="asciidoctor-revealjs"
cmdargs="-r asciidoctor-diagram -a revealjs_transition=slide -a revealjs_slideNumber=true -a revealjs_width=1100 -a revealjs_height=700 'scitech-presentation.adoc' -o 'scitech-presentation.html'"
workdir=$project_root/dist
cmd="$clitool $cmdargs"
podmancmd="podman run --rm -v $workdir:/srv -w /srv docker.io/asciidoctor/docker-asciidoctor $cmd"
condition="$clitool --version | grep 'v'"
if ! eval $condition; then
echo "Generate scitech-presentation.html from dist/sealion-mission-architecture.adoc via podman..."
cd $project_root
eval $(echo $podmancmd)
else
echo "Generate scitech-presentation.html from dist/sealion-mission-architecture.adoc..."
cd $workdir
eval $cmd
cd $project_root
fi
# Copy reveal.js to dist/
cp -r reveal.js/ dist/