-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathJuris.js
728 lines (681 loc) · 19.5 KB
/
Juris.js
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
{
"translatorID": "bc2ec385-e60a-4899-96ae-d4f0d6574ad7",
"label": "Juris",
"creator": "Reto Mantz",
"target": "^https?://(www\\.|testsystem\\.)?juris\\.de/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2018-08-27 10:42:50"
}
/*
***** BEGIN LICENSE BLOCK *****
Juris Translator, Copyright © 2014 Reto Mantz
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
// For testing one has to first open starting page with user name, e.g.
// https://www.juris.de/jportal/?action=JLoginUser&username=UNI_MANNHEIM
// Array with the different - recognized - types
var mappingItemTypes = {
MONOGRAPHIE: 'book',
SAMMELWERK: 'book',
AUFSATZ: 'journalArticle',
KONGRESSBERICHT: 'conferencePaper',
'KONGRESSVORTRAG, AUFSATZ': 'conferencePaper',
URTEIL: 'case',
'URT.': 'case',
BESCHLUSS: 'case',
'BESCHL.': 'case',
'ERLEDIGTES ANHÄNGIGES VERFAHREN': 'case',
GESETZ: 'statute',
SONSTIGES: 'journalArticle'
};
// most information in Juris is saved in tables where the description of the data is of class TD30 => gather this data
var scrapeData = {};
function initData(doc) {
var nodes = doc.getElementsByClassName('TD30');
for (var i = 0; i < nodes.length; i++) {
var label = ZU.trimInternal(nodes[i].textContent);
label = label.substr(0, label.length - 1); // chop off ':', but .replace(/:$/, '') may be more reliable
var value = nodes[i].nextElementSibling;
if (label && value) {
scrapeData[label] = ZU.trimInternal(value.textContent);
}
}
if (scrapeData.Norm) {
scrapeData.Normen = scrapeData.Norm;
}
}
function detectWeb(doc, _url) {
initData(doc); // gather data
var type = scrapeData.Beitragstyp || scrapeData.Dokumenttyp;
if (type) {
type = type.toUpperCase();
if (mappingItemTypes[type]) {
return mappingItemTypes[type];
}
else {
Z.debug(type + " not yet suppported");
}
}
if (scrapeData.Werk && scrapeData.Zitiervorschlag) {
if (scrapeData.Zitiervorschlag.includes('Handbuch')) {
return 'bookSection';
}
else {
return 'encyclopediaArticle'; // for articles in commentary
}
}
var coins = ZU.xpathText(doc, '//span[@class="Z3988"]/@title');
if (coins) {
if (coins.includes("rft.genre=article")) {
return 'journalArticle';
}
}
// Z.debug(scrapeData)
Z.monitorDOMChanges(ZU.xpath(doc, '//div[@id="container"]/div')[0]);
return false;
}
function addNote(originalNote, newNote) {
if (originalNote.length === 0) {
originalNote = "<h2>Additional Metadata</h2>" + newNote;
}
else {
originalNote += newNote;
}
return originalNote;
}
function scrape(doc, url, itemType) {
var item = new Zotero.Item(itemType);
// scrape authors
var myAuthorsString = scrapeData.Autor;
// example: "Michael Fricke, Martin Gerecke"
if (myAuthorsString) {
var myAuthors = ZU.trimInternal(myAuthorsString).split(",");
for (var index = 0; index < myAuthors.length; ++index) {
var author = ZU.trimInternal(myAuthors[index]);
item.creators.push(ZU.cleanAuthor(author, 'author', false));
}
}
var editorString = scrapeData.Herausgeber || scrapeData.Gesamtherausgeber;
if (editorString) {
var editors = ZU.trimInternal(editorString).split("/");
for (let i = 0; i < editors.length; i++) {
item.creators.push(ZU.cleanAuthor(editors[i], 'editor', false));
}
}
// scrape title
item.title = ZU.xpathText(doc, "//div[@class='docLayoutTitel']/h3")
|| ZU.xpathText(doc, "//div[contains(@class, 'docLayoutTitel')]//strong")
|| ZU.xpathText(doc, "//div[contains(@class, 'docLayoutTitel')]")
|| ZU.xpathText(doc, "//div[contains(@class, 'docbar__title')]");
item.date = scrapeData.Erscheinungsjahr || scrapeData.Stand;
item.edition = scrapeData.Ausgabe || scrapeData.Auflage;
var isbn = scrapeData.Bestellnummer;
if (isbn) {
item.ISBN = isbn.replace('ISBN', '').trim();
}
var pub = scrapeData.Verlag;
if (pub) {
// e.g. de Gruyter, Berlin
var pubLoc = pub.split(',');
if (pubLoc.length === 2) {
item.publisher = pubLoc[0];
item.place = pubLoc[1];
}
else {
item.publisher = pub;
}
}
item.conferenceName = scrapeData.Kongress;
item.publicLawNumber = scrapeData.FNA; // Fundstellennachweis A (?)
item.code = scrapeData['Amtliche Abkürzung'];
if (itemType === "statute" && scrapeData.Zitiervorschlag) {
// e.g. "Zitiervorschlag": "§ 154 VwGO in der Fassung vom 20.12.2001"
var m = scrapeData.Zitiervorschlag.match(/in der Fassung vom ([\d.]+)/);
if (m) {
item.dateEnacted = ZU.strToISO(m[1]);
}
m = scrapeData.Zitiervorschlag.match(/§ (.+?) /);
if (m) {
item.codeNumber = m[1];
}
}
item.publicationTitle = ZU.xpathText(doc, '(//table//img[contains(@alt,"Abkürzung Fundstelle")]/@title)[1]')
|| scrapeData.Werk;
// scrape src
// example 1: "AfP 2014, 293-299"
// example 2: "ZStW 125, 259-298 (2013)"
var mySrcString = scrapeData.Fundstelle;
if (mySrcString) {
// match example 1
var matchSrc = mySrcString.match(/^([^,]+)\s(\d{4})\s*,\s*(\d+(?:-\d+)?)\s*$/);
if (matchSrc) {
item.journalAbbreviation = ZU.trimInternal(matchSrc[1]);
item.date = matchSrc[2];
item.pages = matchSrc[3];
}
// match example 2
else {
matchSrc = mySrcString.match(/^([^,]+)\s(\d+)\s*,\s*(\d+(?:-\d+)?)\s*\((\d{4})\)\s*$/);
if (matchSrc) {
item.journalAbbreviation = ZU.trimInternal(matchSrc[1]);
item.issue = matchSrc[2];
item.pages = matchSrc[3];
item.date = matchSrc[4];
}
}
}
finalize(doc, url, item);
}
function finalize(doc, url, item) {
var note = "";
// regulations cited in the database for the article
var citedRegulations = scrapeData.Normen;
if (citedRegulations) {
note = addNote(note, "<h3>Normen</h3><p>" + ZU.trimInternal(citedRegulations) + "</p>");
}
var inofficialTitle = ZU.xpathText(doc, "//div[@class='docLayoutTitel']/div/dl/dd/p");
if (inofficialTitle) {
note = addNote(note, "<h3>Titel</h3><p>" + ZU.trimInternal(inofficialTitle) + "</p>");
}
// sources if available
if (ZU.xpathText(doc, "//h3[.='Fundstellen']")) {
var sources = ZU.xpathText(doc, "//td[@class='TableUnten']/div[2]/div[4]");
if (sources) {
note = addNote(note, "<h3>Fundstellen</h3><p>" + ZU.trimInternal(sources) + "</p>");
}
}
if (note.length !== 0) {
item.notes.push({ note: note });
}
// saving a snapshot is currently not working properly
// item.attachments = [{
// title: "Snapshot",
// document: doc
// }];
var perma = ZU.xpathText(doc, '//span[contains(@class, "docLayoutPermalinkItemLink")]');
if (perma) {
item.attachments.push({
title: "Juris Permalink",
url: perma,
snapshot: false
});
}
var pdfLink = ZU.xpathText(doc, '//a[contains(@class, "button--pdf")]/@href');
if (pdfLink) {
item.attachments.push({
title: "Fulltext PDF",
url: pdfLink,
mimeType: "application/pdf"
});
}
item.complete();
}
function scrapeCase(doc, url) {
var item = new Zotero.Item('case');
// court
item.court = scrapeData.Gericht;
// if there is additional information about the body inside the court (starting with a number), disregard it
// examples: BGH 1. Zivilsenat, LG Köln 26. Zivilkammer
var m = item.court.match(/^[A-Za-zÖöÄäÜüß ]+/);
if (m) item.court = ZU.trimInternal(m[0]);
// add jurisdiction to item.extra - in accordance with citeproc-js - for compatability with Zotero-MLZ
item.extra = "";
if (item.court.indexOf('EuG') === 0) {
item.extra += "jurisdiction: europa.eu";
}
else {
item.extra += "jurisdiction: de";
}
// date
var myDateString = scrapeData.Entscheidungsdatum;
if (myDateString) {
item.dateDecided = myDateString.replace(/(\d\d?)\.\s*(\d\d?)\.\s*(\d\d\d\d)/, "$3-$2-$1");
}
// docketNumber
item.docketNumber = scrapeData.Aktenzeichen;
// type of decision. Save this in item.extra according to citeproc-js
var decisionType = scrapeData.Dokumenttyp;
if (/(Beschluss)|Beschl\./i.test(decisionType)) {
item.extra += "\ngenre: Beschl.";
}
else if (/(Urteil)|(Urt\.)/i.test(decisionType)) {
item.extra += "\ngenre: Urt.";
}
// name of decision (caseName) if availabe
// since the CSL stylesheet does not have a "caseName" property, but uses only "title" we have to use other field => item.history (=CSL.references)
// also, item.caseName and item.title are identical in Zotero. Therefore, we should not use item.caseName at all
var caseName = scrapeData.Entscheidungsname;
item.title = item.court + ", " + myDateString + " - " + item.docketNumber;
if (caseName) {
item.shortTitle = caseName;
item.title += " - " + caseName;
}
finalize(doc, url, item);
}
function doWeb(doc, url) {
var myType = detectWeb(doc, url);
if (myType == 'case') {
scrapeCase(doc, url);
}
else {
scrape(doc, url, myType);
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3ASBLU000136614",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Nina",
"lastName": "Nestler",
"creatorType": "author"
}
],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>KrWaffKontrG, AWG, StGB</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"title": "Der Schutz der äußeren Sicherheit Deutschlands durch das Strafrecht",
"date": "2013",
"publicationTitle": "Zeitschrift für die gesamte Strafrechtswissenschaft",
"journalAbbreviation": "ZStW",
"issue": "125",
"pages": "259-298",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3ASILU000241514",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Michael",
"lastName": "Fricke",
"creatorType": "author"
},
{
"firstName": "Martin",
"lastName": "Gerecke",
"creatorType": "author"
}
],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>Art 5 GG, Art 10 MRK, § 53 Abs 1 Nr 5 StPO, § 97 Abs 5 StPO, § 383 Abs 1 Nr 5 ZPO ... mehr</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"title": "Informantenschutz und Informantenhaftung",
"date": "2014",
"publicationTitle": "Archiv für Presserecht",
"journalAbbreviation": "AfP",
"pages": "293-299",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3AKORE316642014",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>§ 101 Abs 2 S 1 Nr 3 UrhG, § 101 Abs 9 S 1 UrhG, § 91 Abs 1 S 1 ZPO</p><h3>Titel</h3><p>Urheberrechtsverletzung im Internet: Erstattungsfähigkeit der Kosten des Verfahrens gegen einen Internet-Provider auf Auskunft über die Inhaber bestimmter IP-Adressen - Deus Ex</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"court": "BGH",
"extra": "jurisdiction: de\ngenre: Beschl.",
"dateDecided": "2014-05-15",
"docketNumber": "I ZB 71/13",
"shortTitle": "Deus Ex",
"caseName": "BGH, 15.05.2014 - I ZB 71/13 - Deus Ex"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3ASBLU000100614",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Michael",
"lastName": "Halstenberg",
"creatorType": "author"
}
],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>§ 69 BauO NW, § 633 BGB, VOB B</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"title": "Die bauaufsichtliche Einführung der Eurocodes - ein Problem für das Vertragsrecht?",
"date": "2014",
"publicationTitle": "Baurecht",
"journalAbbreviation": "BauR",
"pages": "431-442",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3AMWRE140003062",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>§ 71a Abs 1 AsylVfG 1992</p><h3>Titel</h3><p>Behandlung eines Asylantrages als Folgeantrag, der nach Ablehnung eines in einem EU-Mitgliedstaat (hier: Ungarn) gestellten Asylantrages abgelehnt worden war</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"court": "VG Frankfurt",
"extra": "jurisdiction: de\ngenre: Beschl.",
"dateDecided": "2014-11-04",
"docketNumber": "6 L 544/14.A, 6 L 544/14.A (PKH)",
"caseName": "VG Frankfurt, 04.11.2014 - 6 L 544/14.A, 6 L 544/14.A (PKH)"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3Ajzs-B2-1422A-1283-1",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Georg",
"lastName": "Lanfermann",
"creatorType": "author"
},
{
"firstName": "Silja",
"lastName": "Maul",
"creatorType": "author"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"title": "Maßnahmenpaket der Europäischen Kommission zum Gesellschaftsrecht und Corporate Governance",
"date": "2014",
"publicationTitle": "Betriebs-Berater",
"journalAbbreviation": "BB",
"pages": "1283-1294",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3AJURE140017979",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>§ 143 Abs 1 S 1 InsO, § 133 InsO</p><h3>Titel</h3><p>Anspruch des Insolvenzverwalters auf Rückgewähr der Leistungen nach Insolvenzanfechtung</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"court": "LG Köln",
"extra": "jurisdiction: de\ngenre: Urt.",
"dateDecided": "2014-10-22",
"docketNumber": "26 O 142/13",
"caseName": "LG Köln, 22.10.2014 - 26 O 142/13"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3Ajzs-B2-1401A-3-1",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Christoph",
"lastName": "Thole",
"creatorType": "author"
},
{
"firstName": "Aljoscha",
"lastName": "Schmidberger",
"creatorType": "author"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"title": "Die Insolvenzanfechtung von (überhöhten) Gehältern und Vergütungen von Geschäftsleitern und Sanierungsberatern",
"date": "2014",
"publicationTitle": "Betriebs-Berater",
"journalAbbreviation": "BB",
"pages": "3-8",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3AKORE310852014",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>§ 97 Abs 1 S 1 UrhG</p><h3>Titel</h3><p>Urheberrechtsverletzung durch Teilnahme an einer Internet-Musiktauschbörse; Haftung des Internetanschlussinhabers für Rechtsverletzungen volljähriger Familienangehöriger; tatsächliche Vermutung für eine Täterschaft des Anschlussinhabers und Umfang dessen sekundärer Darlegungslast - BearShare</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"court": "BGH",
"extra": "jurisdiction: de\ngenre: Urt.",
"dateDecided": "2014-01-08",
"docketNumber": "I ZR 169/12",
"shortTitle": "BearShare",
"caseName": "BGH, 08.01.2014 - I ZR 169/12 - BearShare"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3AKORE570922014",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>EGRL 29/2001 Art 3 Abs 2, EGRL 29/2001 Art 5 Abs 1, EGRL 29/2001 Art 5 Abs 2 Buchst b, EGRL 29/2001 Art 8 Abs 2, EGRL 29/2001 Art 8 Abs 3 ... mehr</p><h3>Titel</h3><p>Auslegung der Urheberrechtsrichtlinie auf Vorabentscheidungsersuchen eines österreichischen Gerichts: Gerichtliche Anordnung einer unbestimmten Website-Zugangssperrung gegenüber einem Anbieter von Internetzugangsdiensten wegen Urheberrechtsverletzungen</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"court": "EuGH",
"extra": "jurisdiction: europa.eu\ngenre: Urt.",
"dateDecided": "2014-03-27",
"docketNumber": "C-314/12",
"caseName": "EuGH, 27.03.2014 - C-314/12"
}
]
},
{
"type": "web",
"url": "https://www.juris.de/r3/search?query=DOKNR%3AKORE307572013",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "<h2>Additional Metadata</h2><h3>Normen</h3><p>§ 832 Abs 1 BGB, § 19a UrhG, § 78 Abs 1 Nr 1 UrhG, § 85 Abs 1 S 1 UrhG, § 97 UrhG</p><h3>Titel</h3><p>Urheberrechtsverletzung im Internet: Grenzen der Aufsichtspflicht von Eltern eines 13-jährigen Kindes hinsichtlich des Verbots der Teilnahme an Internet-Tauschbörsen - Morpheus</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Juris Permalink",
"snapshot": false
},
{
"title": "Fulltext PDF",
"mimeType": "application/pdf"
}
],
"court": "BGH",
"extra": "jurisdiction: de\ngenre: Urt.",
"dateDecided": "2012-11-15",
"docketNumber": "I ZR 74/12",
"shortTitle": "Morpheus",
"caseName": "BGH, 15.11.2012 - I ZR 74/12 - Morpheus"
}
]
}
]
/** END TEST CASES **/