-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1232 lines (1135 loc) · 58.4 KB
/
index.html
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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>TYPO3 goes LOD - Ways to Open Research Data</title>
<!-- meta information -->
<meta name="author" content="https://orcid.org/0000-0003-2470-4590" />
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- favicons -->
<link rel="shortcut icon" href="resources/img/favicon.png" />
<link rel="apple-touch-icon" href="resources/img/apple-touch-icon.png" />
<!-- CSS reset and grid -->
<link href="vendor/normalize/normalize-4.1.1.css" rel="stylesheet" />
<link href="vendor/skeleton/skeleton-2.0.4.css" rel="stylesheet" />
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,600italic,400italic,700italic,800,800italic&subset=latin,latin-ext" rel="stylesheet" type="text/css" />
<!-- styles for included libraries -->
<!-- chartist -->
<link rel="stylesheet" href="vendor/chartist/chartist.min-0.9.7.css" />
<!-- codemirror -->
<link rel="stylesheet" href="vendor/codemirror/lib/codemirror.css" />
<!-- highlight -->
<link rel="stylesheet" href="vendor/highlight/styles/default.css" />
<link rel="stylesheet" href="resources/css/hljs.linenumbering.css" />
<!-- swiper -->
<link rel="stylesheet" href="vendor/swiper/swiper.min.css" />
<!-- magnific popup -->
<link rel="stylesheet" href="vendor/magnific-popup/magnific-popup-1.1.0.css" />
<!-- standard presentation styles -->
<link href="resources/css/style.css" rel="stylesheet" />
<!-- custom presentation styles -->
<link href="resources/css/custom.css" rel="stylesheet" />
<!-- js needed in head -->
<!-- greuler -->
<script src="vendor/d3/d3-3.5.6.js"></script>
<script src="vendor/cola/cola.v3.min.js"></script>
<script src="vendor/greuler/greuler-0.5.5.min.js"></script>
<!-- html5 dataset shim for IE -->
<script src="vendor/impress/html5-dataset.js" type="text/javascript"></script>
</head>
<body>
<div class="fallback-message">
<p>
Your browser <strong>doesn't support the features required</strong> by impress.mod.js,
so you are presented with a simplified version of this presentation.
</p>
<p>
For the best experience please use the latest <strong>Chrome</strong>, <strong>Safari</strong>
or <strong>Firefox</strong> browser.
</p>
</div>
<div id="impress">
<div class="step">
<h4 class="down-25"><strong>17.09.2019 | <a href="https://t3-university-days.univie.ac.at/startseite/">TYPO3 University Day 2019</a></strong></h4>
<h1 style="font-size: 120px;" class="down-25">TYPO3 goes LOD</h1>
<h2 style="font-size: 56px;" class="red">
Ways to open research data</h2>
<h4 class="down-50">
<strong>Slides:</strong>
<a href="https://digicademy.github.io/2019_typo3_goes_lod/" title="View the presentation online">
https://digicademy.github.io/2019_typo3_goes_lod/
</a>
</h4>
<h5>
<strong>
<a href="http://www.adwmainz.de/mitarbeiterinnen/profil/sarah-pittroff.html">Sarah Pittroff</a> und
<a href="https://orcid.org/0000-0003-2470-4590">Patrick Toschka</a>, Akademie Mainz
</strong>
<br>
<img src="resources/img/Twitter_bird_logo_2012.svg" alt="Twitter" class="twitter-icon" />
<a href="https://twitter.com/digicademy" title="Digital Academy on Twitter">@digicademy</a> |
<img src="resources/img/Octicons-mark-github.svg" alt="Twitter" class="gh-icon" />
<a href="https://github.com/digicademy/" title="Digital Academy on GitHub">digicademy</a> |
<a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a>
</h5>
</div>
<div class="step">
<img src="resources/img/eyecatcher_1.png" alt="Zahnrad Projekt" width="100%"/>
</div>
<div class="step">
<img src="resources/img/eyecatcher_2.png" alt="Zahnrad Projekt" width="100%"/>
</div>
<div class="step">
<img src="resources/img/eyecatcher_3.png" alt="Zahnrad Projekt" width="100%"/>
</div>
<div class="step">
<img src="resources/img/eyecatcher_35.png" alt="Zahnrad Projekt" width="100%"/>
</div>
<div class="step">
<img src="resources/img/eyecatcher_4.png" alt="Zahnrad Projekt" width="100%"/>
</div>
<div class="step">
<img src="resources/img/eyecatcher_gif.gif" alt="Zahnrad Projekt" width="100%"/>
</div>
<div class="step">
<h2 class="red">Structure</h2>
<ol>
<li>Academies of Sciences in Germany</li>
<li>Digital Academy Mainz</li>
<li>TYPO3 Portfolio</li>
<br>
<li>Beaconizer Extension</li>
<li>Vocabulary Extension (soon: <span class="red">tx_lod</span>)<br>
<ol>
<li>Linked Data Vocabularies</li>
<li>Statements about TYPO3 Datasets</li>
<li>LOD API with Persistent Identifiers</li>
</ol>
<br>
<li>Questions</li>
</ol>
</div>
<div class="step">
<div class="centered">
<h2 class="down-50"><span class="red">1.</span> Academies of Sciences in Germany</h2>
<object data="resources/img/akademien.svg" type="image/svg+xml" width="65%" class="up-25"></object>
<p class="x-small up-50">
The Union of the German Academies of Sciences and Humanities is the umbrella
organisation of eight German academies of sciences and humanities.
</p>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">2.</span> Digital Academy Mainz</h2>
<h4 class="red up-25">Digital Humanities Research Team at the Academy Mainz</h4>
<div class="row">
<div class="six columns">
<a href="http://www.digitale-akademie.de/" style="position: relative; left: -10px;">
<img src="resources/img/da-logo.png" alt="Logo der Digitalen Akademie" width="100%"/>
</a>
<blockquote class="small justify" style="position: relative; top: -20px;">
The spectrum comprises the conception, design and implementation of research
applications and environments in the humanities, the consulting of the Academy
on all aspects of digitality and the project support for the implementation of
digital components together with partners from science and industry.<br/>
At the same time, research on core issues in the digital humanities as well as
the teaching and training of young academics from the DH are of great importance.
</blockquote>
<p class="x-small">
<a href="http://www.digitale-akademie.de">http://www.digitale-akademie.de</a>
</p>
</div>
<div class="six columns">
<ul class="small down-50 line-height-one-two-five">
<li class="substep">
Team of humanities scholars, computer scientists and employees with dual qualifications
</li>
<li class="substep">
Digital Humanities with application orientated research
</li>
<li class="substep">
Inclusion of methods from the free economy and software industry
</li>
<li class="substep">
25 projects, in which TYPO3 plays a significant role
</li>
<li class="substep">
6 TER/GitHub published extensions, about<br> 30 internal / project specific extensions for
different fields of application, of which <br>10 are in prepartion for publication
</li>
</ul>
</div>
</div>
</div>
<div class="step">
<h2><span class="red">3.</span> TYPO3</h2>
<h4 class="red up-25">Portfolio</h4>
<!-- Swiper -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide" data-hash="/step-11/substep-1">
<div class="six columns first">
<a href="http://www.regesta-imperii.de/regesten" title="Regestenapplikation der Regesta Imperii">
<img class="pull-up" src="resources/img/onlineapp-ri.png" alt="Bild der Regesta Imperii Online Website" width="100%" />
</a>
<p class="centered pull-up">
Website: <a href="http://www.regesta-imperii.de/regesten">http://www.regesta-imperii.de/regesten</a>
</p>
</div>
<div class="six columns last">
<h5><strong>Regesta Imperii Online</strong></h5>
<ul class="even-left medium">
<li>
Database with 185.000 full text charters
</li>
<li>
Literature database with 2.3 million titles on the European Middle Ages
</li>
<li>
Complex Boolean search logic with spelling tolerance
</li>
<li>
All regests in CEI via system-neutral REST interface (license CC-BY)
</li>
</ul>
</div>
</div>
<div class="swiper-slide" data-hash="/step-11/substep-2">
<div class="six columns first">
<a href="http://www.corpusvitrearum.de" title="Digitales Bildarchiv des Corpus Vitrearum">
<img class="pull-up" src="resources/img/onlineapp-cvma.png" alt="Bild der CVMA Website" width="100%" />
</a>
<p class="centered pull-up">
Website: <a href="http://www.corpusvitrearum.de">http://www.corpusvitrearum.de</a>
</p>
</div>
<div class="six columns last">
<h5><strong>Corpus Vitrearum Digital</strong></h5>
<ul class="even-left medium">
<li>
High-resolution TIFF images for free download (CC-BY)
</li>
<li>
Metadata embedded as XMP (ISO standard)
</li>
<li>
Content indexing with controlled vocabulary (ICONCLASS)
</li>
<li>
REST interfaces for metadata in XMP and JSON-LD (Semantic Web)
</li>
</ul>
</div>
</div>
<div class="swiper-slide" data-hash="/step-11/substep-3">
<div class="six columns first">
<a href="http://www.inschriften.net" title="Deutsche Inschriften Online">
<img class="pull-up" src="resources/img/onlineapp-di.png" alt="Bild der Deutsche Inschriften Online Website" width="100%" />
</a>
<p class="centered pull-up">
Website: <a href="http://www.inschriften.net/">http://www.inschriften.net</a>
</p>
</div>
<div class="six columns last">
<h5><strong>Deutsche Inschriften Online</strong></h5>
<ul class="even-left medium">
<li>
52 inscription volumes or stocks with approx. 22,000 catalogue numbers and 22,000 illustrations
</li>
<li>
Flexible XML workflows for the transfer from the printed edition into the application
</li>
<li>
Persistent referencing of all articles using the URN of Deutsche Nationalbibliothek
</li>
</ul>
</div>
</div>
<div class="swiper-slide" data-hash="/step-11/substep-4">
<div class="six columns first">
<a href="http://www.controversia-et-confessio.de" title="Quellendatenbank zur Bekenntnisbildung und Konfessionalisierung">
<img class="pull-up" src="resources/img/onlineapp-cc.png" alt="Bild der Controversia et Confessio Website" width="100%" />
</a>
<p class="centered pull-up">
Website: <a href="http://www.controversia-et-confessio.de">http://www.controversia-et-confessio.de</a>
</p>
</div>
<div class="six columns last">
<h5><strong>Controversia & Confessio Digital</strong></h5>
<ul class="even-left medium">
<li>
Source and person database with complex relationships (authors, opponents, printing technicians, etc.)
</li>
<li>
Extensive search options (role-based, chronological, geographical)
</li>
<li>
Preparation of data for historical network analysis
</li>
<li>
Web frontend completely based on Responsive Web / Mobile First approach
</li>
</ul>
</div>
</div>
<div class="swiper-slide" data-hash="/step-11/substep-5">
<div class="six columns first">
<a href="http://www.gluck-gesamtausgabe.de" title="Digitales Gluck Werkverzeichnis">
<img class="pull-up" src="resources/img/onlineapp-gluck.png" alt="Bild der Gluck Gesamtausgabe Website" width="100%" />
</a>
<p class="centered pull-up">
Website: <a href="http://www.gluck-gesamtausgabe.de/">http://www.gluck-gesamtausgabe.de</a>
</p>
</div>
<div class="six columns last">
<h5><strong>Digitales Gluck Werkverzeichnis</strong></h5>
<ul class="even-left medium">
<li>
So far 170 detailed descriptions of works, over 3000 incipits, 3000 sources from 500 archives,
more than 1500 recorded persons (singers, dancers, dedicatees), 500 mapped venues.
</li>
<li>
Complex search functionalities for works and sources, registers for venues, archives and persons
</li>
<li>
SVG-based note display (via Verovio) from Plaine & Easie encodings
</li>
</ul>
</div>
</div>
<div class="swiper-slide" data-hash="/step-11/substep-6">
<div class="six columns first">
<a href="http://www.namenforschung.net" title="Digitales Familiennamenwörterbuch Deutschlands">
<img class="pull-up" src="resources/img/onlineapp-dfd.png" alt="Bild der Digitales Familiennamenwörterbuch Website" width="100%" />
</a>
<p class="centered pull-up">
Website: <a href="http://www.namenforschung.net/">http://www.namenforschung.net</a>
</p>
</div>
<div class="six columns last">
<h5><strong>Digitales Familiennamenwörterbuch</strong></h5>
<ul class="even-left medium">
<li>
Digital edition environment, based on native XML database,
name article data encoded in TEI
</li>
<li>
Mapatop application for mapping surnames on the basis of telephone connections (as of 2005)
</li>
<li>
REST-based application architecture with TYPO3 frontend for displaying and researching name articles
</li>
</ul>
</div>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
<!-- Add Arrows -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
<div class="step">
<div class="centered">
<h2>4. Beaconizer Extension</h2>
<h3 class="red up-25">Normdata aggregator and provider</h3>
</div>
</div>
<div class="step">
<h2>4. Beaconizer Extension</h2>
<h3 class="red up-25">Normdata aggregator and provider</h3>
<h4>BEACON file from the Rheinland-Pfälzische Personendatenbank</h4>
<div class="row">
<div class="twelve columns">
<img src="resources/img/rpb_beacon.png" alt="Beacon Datei der RPB"/>
</div>
</div>
</div>
<div class="step">
<h2>4. Beaconizer Extension</h2>
<h3 class="red up-25">Normdata aggregator and provider</h3>
<div class="row">
<div class="twelve columns">
<img src="resources/img/concept_beacon_partly_2.png" alt="Schaubild BEACON Austausch zwischen Institutionen"/>
</div>
</div>
</div>
<div class="step">
<h2>4. Beaconizer Extension</h2>
<h3 class="red up-25">Normdata aggregator and provider</h3>
<div class="row">
<div class="twelve columns">
<img src="resources/img/concept_beacon_partly_3.png" alt="Schaubild BEACON Austausch zwischen Institutionen"/>
</div>
</div>
</div>
<div class="step">
<h2>4. Beaconizer Extension</h2>
<h3 class="red up-25">Normdata aggregator and provider</h3>
<div class="row">
<div class="twelve columns">
<img src="resources/img/concept_beacon_partly_4.png" alt="Schaubild BEACON Austausch zwischen Institutionen"/>
</div>
</div>
</div>
<div class="step">
<h2>4. Beaconizer Extension</h2>
<h3 class="red up-25">Normdata aggregator and provider</h3>
<div class="row">
<div class="seven columns">
<div class="mfp-lightbox">
<a href="resources/img/concept_beacon.png">
<img src="resources/img/concept_beacon.png" alt="Schaubild zum Konzept von Beacon Dateien"/>
</a>
</div>
<ul class="small">
<li>Decentralized networking of electronic resources via normdata</li>
<li>GND as an identifier standard for persons</li>
<li><a href="https://de.wikipedia.org/wiki/Wikipedia:BEACON">More information: Wikipedia</a></li>
<li><a href="http://beacon.findbuch.de/seealso/pnd-aks">BEACON Findbuch Webservice</a></li>
</ul>
</div>
<div class="four columns">
<div class="mfp-lightbox">
<a href="resources/img/gnd-beacon.png">
<img src="resources/img/gnd-beacon.png" alt="Schaubild zum Konzept von Beacon Dateien" title="" />
</a>
</div>
<p class="small">
<a href="http://gutenberg-biographics.ub.uni-mainz.de/id/a85352e5-1ead-4a6f-8e27-276f94cd2867">SeeAlso Plugin for person records</a>
</p>
<div class="mfp-lightbox">
<a href="resources/img/beacon_generator.png">
<img src="resources/img/beacon_generator.png" alt="Schaubild zum Konzept von Beacon Dateien" title="" />
</a>
</div>
<p class="small">
<a href="http://gutenberg-biographics.ub.uni-mainz.de/gnd/personen/beacon/file.txt">
BEACON-Generator at Gutenberg Biographics
</a>
</p>
</div>
</div>
</div>
<div class="step">
<div class="centered">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Vocabularies | LOD Statements | Resolver</h3>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Vocabularies | LOD Statements | Resolver</h3>
<div class="row">
<div class="six columns">
<h3>Three separate but semantically linked functionalities:</h3>
<ol>
<li>Linked Data Vocabularies</li>
<li>Statements about data records within the TYPO3 system incl API</li>
<li>Resolver with persistent Identifiers and content negotiation</li>
</ol>
</div>
<div class="six columns">
<div class="mfp-lightbox">
<a href="resources/img/vocabulary_backend.png">
<img src="resources/img/vocabulary_backend.png" alt="Bild aus dem TYPO3 Backend, Teil der Vocabulary Extension Inhalte" title="" />
</a>
</div>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Step 1: Vocabularies</h3>
<div class="row">
<div class="six columns">
<ol>
<li>Add (external or own) vocabularies with URI and namespaces</li>
<li>Add terms from the vocabularies</li>
<li>Articulate triple statements with <span class="red">S</span>ubjects, <span class="red">P</span>redicates and <span class="red">O</span>bjects</li>
<li><a target="_blank" href="https://corpusvitrearum.de/cvma-digital/spezifikationen/cvma-xmp/11.html">Publish</a> your own vocabulary with persistent namespace</li>
</ol>
</div>
<div class="five columns">
<div class="centered">
<div class="mfp-lightbox">
<a href="resources/img/liveDemo_1_vocabularies.png">
<img src="resources/img/liveDemo_1_vocabularies.png" alt="Bild aus dem TYPO3 Backend, Teil der Vocabulary Extension Inhalte" title="" />
</a>
</div>
<h4 class="red">Live Demo</h4>
<h4 class="up-25"> aus dem Projekt: <a target="_blank" href="https://corpusvitrearum.de">Corpusvitrearum</a></h4>
</div>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Step 2: LOD Statements about TYPO3 data records</h3>
<div class="row">
<div class="six columns">
<br>
<ol>
<li>"Talk" about records in the TYPO3 system with triple statements<br>(-> second data layer)</li>
<li>Publish your statements as LOD over a (REST) API</li>
</ol>
</div>
<div class="five columns">
<div class="centered">
<div class="mfp-lightbox">
<a href="resources/img/liveDemo_2_recordsAsSubject.png">
<img src="resources/img/liveDemo_2_recordsAsSubject.png" alt="Bild aus dem TYPO3 Backend, Teil der Vocabulary Extension Inhalte" title="">
</a>
</div>
<h4 class="red">Live Demo</h4>
<h4 class="up-25"> aus dem Projekt: <a target="_blank" href="https://corpusvitrearum.de">Corpusvitrearum</a></h4>
</div>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Step 3: Resolver with Content Negotiation</h3>
<div class="row">
<div class="eight columns">
<br>
<br>
<ol>
<li>Generate persistent identifiers for records</li>
<li>Add alternative format representations for records</li>
<li>Resolver redirects requests to the adequate representaton (RDF/XML, Turtle, JSON-LD) with Content-Negotiation</li>
</ol>
</div>
<div class="four columns">
<a target="_blank" href="https://corpusvitrearum.de/id/F3431"><img src="resources/img/3431.jpg" alt="Bild aus dem CVMA Projekt mit der ID F3431">
</a>
<span style="font-size: 0.3em" class="up-100">
Foto: Andrea Gössel, CVMA Freiburg, CC BY-NC 4.0
</span>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Step 3: API with Content Negotiation</h3>
<div class="row">
<div class="four columns">
<a target="_blank" href="https://corpusvitrearum.de/id/F3431"><img src="resources/img/3431.jpg" alt="Bild aus dem CVMA Projekt mit der ID F3431">
</a>
<span style="font-size: 0.3em" class="up-100">
Foto: Andrea Gössel, CVMA Freiburg, CC BY-NC 4.0
</span>
</div>
<div class="eight columns">
<br>
<small>
<span>URI (Permalink)</span><a target="_blank" href="https://corpusvitrearum.de/id/F3431"><br>https://corpusvitrearum.de/id/<span class="red">F3431</span><br></a>
<span>Accept: ld-json</span><a target="_blank"href="https://corpusvitrearum.de/id/F3431/about.json"><br>https://corpusvitrearum.de/id/<span class="red">F3431/about.json</span><br></a>
<span>Accept: rdf+xml</span><a target="_blank"href="https://corpusvitrearum.de/id/F3431/about.rdf"><br> https://corpusvitrearum.de/id/<span class="red">F3431/about.rdf</span><br></a>
<span>Accept: text/turtle</span><a target="_blank"href="https://corpusvitrearum.de/id/F3431/about.ttl"><br> https://corpusvitrearum.de/id/<span class="red">F3431/about.ttl</span><br></a>
</small>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Bonus: I-SAW Feature</h3>
<div class="row">
<div class="four columns">
<span style="font-size: 0.3em" class="up-100">
Foto: Andrea Gössel, CVMA Freiburg, CC BY-NC 4.0
</span>
<a target="_blank" href="https://corpusvitrearum.de/id/F1481"><img src="resources/img/1481.jpg" alt="Bild aus dem CVMA Projekt mit der ID F1481">
</a>
Iconclass: <a target='_blank' href="https://corpusvitrearum.de/id/11F4135/about.html">11F4135</a>
</div>
<div class="four columns">
<a href="https://corpusvitrearum.de/id/F1481">
<img src="resources/img/i-saw.png" alt="Schaubild zum i-saw Feature des CVMA Projekts">
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Exkurs: Stained glass research</h3>
<div class="row">
<div class="six columns">
<a target="_blank" href="https://de.wikipedia.org/wiki/Marienkirche_Frankfurt_(Oder)"><img src="resources/img/marienkirche_F_O.jpg" alt="Bild Innenraum der Marienkirche, Frankfurt/Oder" />
</a>
<span style="font-size: 0.4em" class="up-100">
Marienkirche in Frankfurt (Oder), um 1360
</span>
</div>
<div class="six columns">
<a href="https://de.wikipedia.org/wiki/Sainte-Chapelle"><img src="resources/img/saintechapelle.jpg" alt="Bild Innenraum der Sainte Chapelle, Paris" />
</a>
<span style="font-size: 0.4em" class="up-100">
Obergeschoss der Sainte Chapelle in Paris, vor 1248
</span>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Exkurs: Stained glass and storytelling</h3>
<div class="row">
<div class="seven columns">
<a target="_blank" href="https://corpusvitrearum.de/id/F1817"><img src="resources/img/1817.jpg" alt="Bild aus dem CVMA Projekt mit der ID F1817" />
</a>
<span style="font-size: 0.4em" class="up-100">
Münster Unserer Lieben Frau, Ulm (1480), Foto: Andrea Gössel, CVMA Freiburg, CC BY-NC 4.0
</span>
</div>
<div class="four columns">
<ul class="small down-50 line-height-one-two-five">
<li class="substep">
Title: Himmelfahrt Christi
</li>
<li class="substep">
<a target="_blank" href="https://corpusvitrearum.de/id/73E425/about.html">Iconclass Notifikation 73E425</a>
</li>
<li class="substep">
<a target="_blank" href="https://corpusvitrearum.de/id/73E44/about.html">Iconclass Notifikation 73E44</a>
</li>
<li class="substep">
<a target="_blank" href="https://corpusvitrearum.de/id/48C14/about.html">Iconclass Notifikation 48C14</a>
</li>
<li class="substep">
<a target="_blank" href="https://corpusvitrearum.de/id/48AA98312/about.html">Iconclass Notifikation 48AA98312</a>
</li>
</ul>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Bonus: I-SAW Feature</h3>
<div class="row">
<div class="six columns">
<h6>
HTML Representation Iconclass Ressource 11F4132
</h6>
<a target="_blank" href="https://corpusvitrearum.de/id/11F4132/about.html"><img src="resources/img/screen_LD_API_CVMA.jpg" alt="Screenshot HTML Repräsentation Iconclass Ressource 11F4132" />
</a>
</div>
<div class="six columns">
<h6>
JSON Representation Iconclass Ressource 11F4132
</h6>
<a href="https://corpusvitrearum.de/id/11F4132/about.json"><img src="resources/img/screen_JSONLD_CVMA.png" alt="Screenshot JSON Repräsentation Iconclass Ressource 11F4132" />
</a>
</div>
</div>
</div>
<div class="step">
<h2 class="down-25"><span class="red">5.</span> Vocabulary Extension</h2>
<h3 class="up-25 red">Bonus: I-SAW Feature</h3>
<div class="row">
<div class="five columns">
<h6>
Maria im Strahlenkranz, Eriskirch (um 1412)
</h6>
<a target="_blank" href=" https://corpusvitrearum.de/id/F247"><img src="resources/img/247.jpg" alt="Darstellung Maria im Strahlenkranz, CVMA Deutschland" />
</a>
</div>
<div class="six columns">
<h6>
Figurenscheibe Stand Basel mit Madonna (1515)
</h6>
<a href="https://vitrosearch.ch/de/objects/2251674"><img src="resources/img/Figurenscheibe_Strahlenkranzmadonna_Basel.jpg" alt="Darstellung Strahlenkranzmadonna, CV Schweiz" />
</a>
</div>
</div>
</div>
<div class="step">
<h1 class="red" style="text-align: center">Questions</h1>
</div>
<div class="step">
<h2>Links, Software & Subsequent Use</h2>
<h4>Used Software</h4>
<ul class="small pull-up">
<li>
<a href="https://github.com/impress/impress.js">Impress.js</a> (Presentation)
</li>
<li>
<a href="https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans">Open Sans</a> (Google Font)
</li>
<li>
<a href="https://github.com/dimsemenov/Magnific-Popup">Magnific Popup</a> (Lightbox)
</li>
<li>
<a href="http://idangero.us/swiper/">Swiper</a> (Responsiver Slider)
</li>
<li>
<a href="http://unitegallery.net/">Unite Gallery</a> (Bildergallerie)
</li>
</ul>
<h4>License</h4>
<ul class="small pull-up">
<li>
Link:
<a href="https://digicademy.github.io/2019_typo3_goes_lod/">
https://digicademy.github.io/2019_typo3_goes_lod/
</a>
</li>
<li>
License: <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a>, Sarah Pittroff und Patrick Toschka
</li>
</ul>
</div>
<!-- <div class="step">-->
<!-- <h4><strong>Date</strong> | <a href="#">Location</a></h4>-->
<!-- <h4><strong>Context</strong></h4>-->
<!-- <h1 class="down-100">Title</h1>-->
<!-- <h2 class="red up-25">Subtitle</h2>-->
<!-- <h4 class="down-100">-->
<!-- <strong>Slides:</strong>-->
<!-- <a href="#" title="View the presentation online">-->
<!-- Link-->
<!-- </a>-->
<!-- </h4>-->
<!-- <h5>-->
<!-- <strong><a href="#">Author(s)</a></strong> |-->
<!-- <img src="resources/img/Twitter_bird_logo_2012.svg" alt="Twitter" class="twitter-icon" />-->
<!-- <a href="https://twitter.com/digicademy" title="Digital Academy on Twitter">@digicademy</a> |-->
<!-- <img src="resources/img/Octicons-mark-github.svg" alt="Twitter" class="gh-icon" />-->
<!-- <a href="https://github.com/digicademy/" title="Digital Academy on GitHub">digicademy</a> |-->
<!-- <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a>-->
<!-- </h5>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Table of Contents</h2>-->
<!-- <ol class="line-height-one-five">-->
<!-- <li>-->
<!-- One-->
<!-- </li>-->
<!-- <li>-->
<!-- Two-->
<!-- </li>-->
<!-- <li>-->
<!-- Three-->
<!-- </li>-->
<!-- </ol>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h1 class="red">01</h1>-->
<!-- <h2 class="line-height-one-five">-->
<!-- Basics-->
<!-- </h2>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h1>Heading (H1)</h1>-->
<!-- <h2>Heading (H2)</h2>-->
<!-- <h3>Heading (H3)</h3>-->
<!-- <h4>Heading (H4)</h4>-->
<!-- <h5>Heading (H5)</h5>-->
<!-- <h6>Heading (H6)</h6>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Text</h2>-->
<!-- <h3 class="red up-25 after-25">Standard text styles</h3>-->
<!-- <p class="justify">-->
<!-- To die or fly to <span class="dotted">dream</span>: ay, <em>that makes calamity of office</em>, and to be: to dread of, and the heart-ache<sup>1</sup>-->
<!-- and sweat pith their <span class="outline">currents</span> turns, puzzles <code>the pale cast of outrageous</code> for who would bear, <strong>to be-->
<!-- or to sleep</strong> of <del>death</del> <ins>life</ins> what pith and sweat pith <span class="underline">the pangs and arrows</span> of dispriz'd lose ills-->
<!-- we have shuffled o'er with a <span class="highlight">bare</span> bourn no <a href="https://en.wikipedia.org/wiki/Mortal_coil">mortal coil</a>. <cite>W.S., Volume<sub>2</sub></cite>-->
<!-- </p>-->
<!-- <blockquote>-->
<!-- Beware the Jabberwock, my son!-->
<!-- The jaws that bite, the claws that catch!-->
<!-- Beware the Jubjub bird, and shun-->
<!-- The frumious Bandersnatch!-->
<!-- </blockquote>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Text</h2>-->
<!-- <h3 class="red up-25 after-25">Text classes (medium, small, x-small)</h3>-->
<!-- <h4><strong>medium</strong></h4>-->
<!-- <p class="medium up-25">-->
<!-- To die or fly to <span class="dotted">dream</span>: ay, <em>that makes calamity of office</em>, and to be: to dread of, and the heart-ache<sup>1</sup>-->
<!-- and sweat pith their <span class="outline">currents</span> turns, puzzles <code>the pale cast of outrageous</code> for who would bear, <strong>to be-->
<!-- or to sleep</strong> of <del>death</del> <ins>life</ins> what pith and sweat pith <span class="underline">the pangs and arrows</span> of dispriz'd lose ills-->
<!-- we have shuffled o'er with a <span class="highlight">bare</span> bourn no <a href="https://en.wikipedia.org/wiki/Mortal_coil">mortal coil</a>. <cite>W.S., Volume<sub>2</sub></cite>-->
<!-- </p>-->
<!-- <h5><strong>small</strong></h5>-->
<!-- <p class="small up-25">-->
<!-- To die or fly to <span class="dotted">dream</span>: ay, <em>that makes calamity of office</em>, and to be: to dread of, and the heart-ache<sup>1</sup>-->
<!-- and sweat pith their <span class="outline">currents</span> turns, puzzles <code>the pale cast of outrageous</code> for who would bear, <strong>to be-->
<!-- or to sleep</strong> of <del>death</del> <ins>life</ins> what pith and sweat pith <span class="underline">the pangs and arrows</span> of dispriz'd lose ills-->
<!-- we have shuffled o'er with a <span class="highlight">bare</span> bourn no <a href="https://en.wikipedia.org/wiki/Mortal_coil">mortal coil</a>. <cite>W.S., Volume<sub>2</sub></cite>-->
<!-- </p>-->
<!-- <h6><strong>x-small</strong></h6>-->
<!-- <p class="x-small up-25">-->
<!-- To die or fly to <span class="dotted">dream</span>: ay, <em>that makes calamity of office</em>, and to be: to dread of, and the heart-ache<sup>1</sup>-->
<!-- and sweat pith their <span class="outline">currents</span> turns, puzzles <code>the pale cast of outrageous</code> for who would bear, <strong>to be-->
<!-- or to sleep</strong> of <del>death</del> <ins>life</ins> what pith and sweat pith <span class="underline">the pangs and arrows</span> of dispriz'd lose ills-->
<!-- we have shuffled o'er with a <span class="highlight">bare</span> bourn no <a href="https://en.wikipedia.org/wiki/Mortal_coil">mortal coil</a>. <cite>W.S., Volume<sub>2</sub></cite>-->
<!-- </p>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Lists, Lists, Lists</h2>-->
<!-- <h3 class="red up-25 after-25">Definition, unordered, ordered</h3>-->
<!-- <div class="row">-->
<!-- <div class="four columns">-->
<!-- <dl>-->
<!-- <dt>-->
<!-- Acceleration-->
<!-- </dt>-->
<!-- <dd>-->
<!-- A constant force, acting on a particle of mass m, will produce a constant acceleration a-->
<!-- </dd>-->
<!-- <dt>-->
<!-- Energy-->
<!-- </dt>-->
<!-- <dd>-->
<!-- If we represent kinetic energy by the symbol K, then K = ½ m v²-->
<!-- </dd>-->
<!-- </dl>-->
<!-- </div>-->
<!-- <div class="four columns">-->
<!-- <h3>Medium</h3>-->
<!-- <ul>-->
<!-- <li>One</li>-->
<!-- <li>Two-->
<!-- <ul>-->
<!-- <li>Two.One</li>-->
<!-- <li>Two.Two</li>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li>Three</li>-->
<!-- </ul>-->
<!-- <h4>Small</h4>-->
<!-- <ul class="small">-->
<!-- <li>One</li>-->
<!-- <li>Two-->
<!-- <ul>-->
<!-- <li>Two.One</li>-->
<!-- <li>Two.Two</li>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li>Three</li>-->
<!-- </ul>-->
<!-- </div>-->
<!-- <div class="four columns">-->
<!-- <h3>Medium</h3>-->
<!-- <ol>-->
<!-- <li>One</li>-->
<!-- <li>Two-->
<!-- <ol>-->
<!-- <li>Two.One</li>-->
<!-- <li>Two.Two</li>-->
<!-- </ol>-->
<!-- </li>-->
<!-- <li>Thre</li>-->
<!-- </ol>-->
<!-- <h4>Small</h4>-->
<!-- <ol class="small">-->
<!-- <li>One</li>-->
<!-- <li>Two-->
<!-- <ol>-->
<!-- <li>Two.One</li>-->
<!-- <li>Two.Two</li>-->
<!-- </ol>-->
<!-- </li>-->
<!-- <li>Thre</li>-->
<!-- </ol>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Tables</h2>-->
<!-- <h3 class="red up-25 after-50">Table styles</h3>-->
<!-- <table>-->
<!-- <thead>-->
<!-- <tr>-->
<!-- <th>One</th>-->
<!-- <th>Two</th>-->
<!-- <th>Three</th>-->
<!-- </tr>-->
<!-- </thead>-->
<!-- <tbody>-->
<!-- <tr>-->
<!-- <td>Four</td>-->
<!-- <td>Five</td>-->
<!-- <td>Six</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td>Seven</td>-->
<!-- <td>Eight</td>-->
<!-- <td>Nine</td>-->
<!-- </tr>-->
<!-- </tbody>-->
<!-- </table>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h1 class="red">02</h1>-->
<!-- <h2 class="line-height-one-five">-->
<!-- Advanced-->
<!-- </h2>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Slide structure</h2>-->
<!-- <h3 class="red up-25 after-50">Twelfe column grid with skeleton.css</h3>-->
<!-- <div class="example-grid">-->
<!-- <div class="row">-->
<!-- <div class="one column">One</div>-->
<!-- <div class="eleven columns">Eleven</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="two columns">Two</div>-->
<!-- <div class="ten columns">Ten</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="three columns">Three</div>-->
<!-- <div class="nine columns">Nine</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="four columns">Four</div>-->
<!-- <div class="eight columns">Eight</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="five columns">Five</div>-->
<!-- <div class="seven columns">Seven</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="six columns">Six</div>-->
<!-- <div class="six columns">Six</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="seven columns">Seven</div>-->
<!-- <div class="five columns">Five</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="eight columns">Eight</div>-->
<!-- <div class="four columns">Four</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="nine columns">Nine</div>-->
<!-- <div class="three columns">Three</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="ten columns">Ten</div>-->
<!-- <div class="two columns">Two</div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="eleven columns">Eleven</div>-->
<!-- <div class="one column">One</div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <p class="down-25">-->
<!-- Website: <a href="http://getskeleton.com/">http://getskeleton.com/</a>-->
<!-- </p>-->
<!-- </div>-->
<!-- <div class="step">-->
<!-- <h2>Substeps</h2>-->