This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJuris.js
592 lines (550 loc) · 19.7 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
{
"translatorID": "bc2ec385-e60a-4899-96ae-d4f0d6574ad7",
"label": "Juris",
"creator": "Reto Mantz",
"target": "^https?://(www\\.)?juris\\.de/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsv",
"lastUpdated": "2015-04-08 20:15:24"
}
/*
***** 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 *****
*/
// Array with the different - recognized - types
var mappingClassNameToItemType = {
'URTEIL' : 'case',
'URT.' : 'case',
'BESCHLUSS' : 'case',
'BESCHL.' : 'case'
}
// 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
if ((scrapeData['Beitragstyp'] || scrapeData['Dokumenttyp']) && scrapeData['Autor']) {
return 'journalArticle';
}
if (scrapeData['Dokumenttyp'] && mappingClassNameToItemType[scrapeData['Dokumenttyp'].toUpperCase()]=='case') {
return 'case';
}
}
function addNote(originalNote, newNote) {
if (originalNote.length == 0) {
originalNote = "Additional Metadata: "+newNote;
}
else
{
originalNote += newNote;
}
return originalNote;
}
function scrapeArticle(doc, url) {
var item = new Zotero.Item("journalArticle");
var note = "";
// scrape authors
var myAuthorsString = scrapeData['Autor'];
// example: "Michael Fricke, Martin Gerecke"
myAuthorsString = Zotero.Utilities.trimInternal(myAuthorsString);
var myAuthors = myAuthorsString.split(",");
for (var index = 0; index < myAuthors.length; ++index) {
var author = Zotero.Utilities.trimInternal(myAuthors[index]);
item.creators.push ( Zotero.Utilities.cleanAuthor(author, 'author', false) );
}
//scrape title
var myTitle = ZU.xpathText(doc, "//div[@class='docLayoutTitel']");
item.title = ZU.trimInternal(myTitle);
// sometimes the title contains the authors at the end after separate <br/> tags
// in this case, the div is structured differently
// example article: BB 2014, 3
var temp = ZU.xpath(doc, "//div[@class='docLayoutTitel']/h3/following-sibling::br");
if (temp.length>0) { // yes, there is additional information, then grab from another source
item.title = ZU.xpathText(doc, "//div[@class='docLayoutTitel']/h3/a");
}
item.publicationTitle = ZU.xpathText(doc, '//img[contains(@alt,"Abkürzung Fundstelle")]/@title');
//scrape src
//example 1: "AfP 2014, 293-299"
//example 2: "ZStW 125, 259-298 (2013)"
var mySrcString = scrapeData['Fundstelle'];
// 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 if (matchSrc = mySrcString.match(/^([^,]+)\s(\d+)\s*,\s*(\d+(?:-\d+)?)\s*\((\d{4})\)\s*$/)) {
item.journalAbbreviation = ZU.trimInternal(matchSrc[1]);
item.issue = matchSrc[2];
item.pages = matchSrc[3];
item.date = matchSrc[4];
}
// 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>");
}
if (note.length != 0) {
item.notes.push( {note: note} );
}
item.attachments = [{
title: "Snapshot",
document:doc
}];
item.complete();
}
function scrapeCase(doc, url) {
var item = new Zotero.Item('case');
var note = "";
// 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'];
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 += "\n{:genre: Beschl.}";
}
else {
if (/(Urteil)|(Urt\.)/i.test(decisionType)) {
item.extra += "\n{:genre: 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;
}
// regulations cited in the database for the case
var basedOnRegulations = scrapeData['Normen'];
if (basedOnRegulations) {
note = addNote(note, "<h3>Normen</h3><p>" + ZU.trimInternal(basedOnRegulations) + "</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} );
}
item.attachments = [{
title: "Snapshot",
document:doc
}];
item.complete();
}
function doWeb (doc, url) {
var myType = detectWeb(doc, url);
if (myType == 'journalArticle') {
scrapeArticle(doc, url);
}
else if (myType == 'case') {
scrapeCase(doc, url);
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/e44/page/jurisw.psml?doc.hl=1&doc.id=SBLU000136614&documentnumber=1&numberofresults=1&showdoccase=1&doc.part=S¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Nina",
"lastName": "Nestler",
"creatorType": "author"
}
],
"notes": [
{
"note": "Additional Metadata: <h3>Normen</h3><p>KrWaffKontrG, AWG, StGB</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"title": "Der Schutz der äußeren Sicherheit Deutschlands durch das Strafrecht",
"publicationTitle": "Zeitschrift für die gesamte Strafrechtswissenschaft",
"journalAbbreviation": "ZStW",
"issue": "125",
"pages": "259-298",
"date": "2013",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/e4k/page/jurisw.psml?doc.hl=1&doc.id=SILU000241514&documentnumber=1&numberofresults=1&showdoccase=1&doc.part=S¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Michael",
"lastName": "Fricke",
"creatorType": "author"
},
{
"firstName": "Martin",
"lastName": "Gerecke",
"creatorType": "author"
}
],
"notes": [
{
"note": "Additional Metadata: <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": "Snapshot"
}
],
"title": "Informantenschutz und Informantenhaftung",
"publicationTitle": "Archiv für Presserecht",
"journalAbbreviation": "AfP",
"date": "2014",
"pages": "293-299",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/c5v/page/jurisw.psml?pid=Dokumentanzeige&showdoccase=1&js_peid=Trefferliste&documentnumber=1&numberofresults=1&fromdoctodoc=yes&doc.id=KORE316642014&doc.part=K&doc.price=0.0&doc.hl=1&doc.fopen=wf-#wf",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "Additional Metadata: <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><h3>Fundstellen</h3><p>NSW UrhG § 101 (BGH-intern) NSW ZPO § 91 (BGH-intern) EBE/BGH 2014, 359-360 (Leitsatz und Gründe) WRP 2014, 1468-1469 (Leitsatz und Gründe) Magazindienst 2014, 1101-1103 (Leitsatz und Gründe)</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"court": "BGH",
"extra": "{:jurisdiction: de}\n{:genre: Beschl.}",
"dateDecided": "2014-05-15",
"docketNumber": "I ZB 71/13",
"title": "BGH, 15.05.2014 - I ZB 71/13 - Deus Ex",
"shortTitle": "Deus Ex",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/h7p/page/jurisw.psml?doc.hl=1&doc.id=SBLU000100614&documentnumber=3&numberofresults=15000&showdoccase=1&doc.part=S¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Michael",
"lastName": "Halstenberg",
"creatorType": "author"
}
],
"notes": [
{
"note": "Additional Metadata: <h3>Normen</h3><p>§ 69 BauO NW, § 633 BGB, VOB B</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"title": "Die bauaufsichtliche Einführung der Eurocodes - ein Problem für das Vertragsrecht?",
"publicationTitle": "Baurecht",
"journalAbbreviation": "BauR",
"date": "2014",
"pages": "431-442",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/cgn/page/jurisw.psml?doc.hl=1&doc.id=MWRE140003062&documentnumber=49&numberofresults=15000&showdoccase=1&doc.part=L¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "Additional Metadata: <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": "Snapshot"
}
],
"court": "VG Frankfurt",
"extra": "{:jurisdiction: de}\n{:genre: Beschl.}",
"dateDecided": "2014-11-04",
"docketNumber": "6 L 544/14.A, 6 L 544/14.A (PKH)",
"title": "VG Frankfurt, 04.11.2014 - 6 L 544/14.A, 6 L 544/14.A (PKH)",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/h5z/page/jurisw.psml?pid=Dokumentanzeige&showdoccase=1&js_peid=Trefferliste&documentnumber=1&numberofresults=15000&fromdoctodoc=yes&doc.id=jzs-B2-1422A-1283-1&doc.part=B&doc.price=0.0#focuspoint",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Georg",
"lastName": "Lanfermann",
"creatorType": "author"
},
{
"firstName": "Silja",
"lastName": "Maul",
"creatorType": "author"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"title": "Maßnahmenpaket der Europäischen Kommission zum Gesellschaftsrecht und Corporate Governance",
"publicationTitle": "Betriebs-Berater",
"journalAbbreviation": "BB",
"date": "2014",
"pages": "1283-1294",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/hdi/page/jurisw.psml?doc.hl=1&doc.id=JURE140017979&documentnumber=7&numberofresults=802&showdoccase=1&doc.part=L¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"court": "LG Köln",
"extra": "{:jurisdiction: de}\n{:genre: Urt.}",
"dateDecided": "2014-10-22",
"docketNumber": "26 O 142/13",
"title": "LG Köln, 22.10.2014 - 26 O 142/13",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/1rys/page/jurisw.psml?doc.hl=1&doc.id=jzs-B2-1401A-3-1&documentnumber=2&numberofresults=742&showdoccase=1&doc.part=B¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "journalArticle",
"creators": [
{
"firstName": "Christoph",
"lastName": "Thole",
"creatorType": "author"
},
{
"firstName": "Aljoscha",
"lastName": "Schmidberger",
"creatorType": "author"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"title": "Die Insolvenzanfechtung von (überhöhten) Gehältern und Vergütungen von Geschäftsleitern und Sanierungsberatern",
"publicationTitle": "Betriebs-Berater",
"journalAbbreviation": "BB",
"date": "2014",
"pages": "3-8",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/5tw/page/jurisw.psml?doc.hl=1&doc.id=KORE310852014&documentnumber=1&numberofresults=2&showdoccase=1&doc.part=K¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "Additional Metadata: <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><h3>Fundstellen</h3><p>BGHZ 200, 76-86 (Leitsatz und Gründe) NSW UrhG § 97 (BGH-intern) WM 2014, 1143-1146 (Leitsatz und Gründe) WRP 2014, 851-854 (Leitsatz und Gründe) GRUR 2014, 657-660 (Leitsatz und Gründe) CR 2014, 472-475 (Leitsatz und Gründe) Magazindienst 2014, 642-647 (Leitsatz und Gründe) MDR 2014, 849-850 (Leitsatz und Gründe) K&R 2014, 513-516 (Leitsatz und Gründe) MMR 2014, 547-550 (Leitsatz und Gründe) NJW 2014, 2360-2362 (Leitsatz und Gründe) FamRZ 2014, 1291-1293 (Leitsatz und Gründe) VuR 2014, 316-318 (Leitsatz und Gründe) ZUM 2014, 707-710 (Leitsatz und Gründe) AfP 2014, 320-324 (Leitsatz und Gründe) VersR 2014, 1007-1009 (Leitsatz und Gründe) WuB IV A § 1004 BGB 1.14 (Leitsatz und Gründe)</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"court": "BGH",
"extra": "{:jurisdiction: de}\n{:genre: Urt.}",
"dateDecided": "2014-01-08",
"docketNumber": "I ZR 169/12",
"title": "BGH, 08.01.2014 - I ZR 169/12 - BearShare",
"shortTitle": "BearShare",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/5tz/page/jurisw.psml?doc.hl=1&doc.id=KORE570922014&documentnumber=1&numberofresults=40&showdoccase=1&doc.part=K¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "Additional Metadata: <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><h3>Fundstellen</h3><p>ABl EU 2014, Nr C 151, 2-3 (Leitsatz) GRUR 2014, 468-472 (Leitsatz und Gründe) GRUR Int 2014, 469-474 (Leitsatz und Gründe) K&R 2014, 329-333 (Leitsatz und Gründe) WRP 2014, 540-544 (Leitsatz und Gründe) EuZW 2014, 388-391 (Leitsatz und Gründe) Medien und Recht 2014, 82-87 (red. Leitsatz und Gründe) NJW 2014, 1577-1580 (Leitsatz und Gründe) RIW 2014, 373-377 (red. Leitsatz und Gründe) ZUM 2014, 494-498 (Leitsatz und Gründe) MMR 2014, 397-399 (Leitsatz und Gründe) EuGRZ 2014, 301-306 (red. Leitsatz und Gründe) CR 2014, 469-472 (Leitsatz und Gründe) EWS 2014, 225-230 (Leitsatz und Gründe)</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"court": "EuGH",
"extra": "{:jurisdiction: europa.eu}\n{:genre: Urt.}",
"dateDecided": "2014-03-27",
"docketNumber": "C-314/12",
"title": "EuGH, 27.03.2014 - C-314/12",
"libraryCatalog": "Juris"
}
]
},
{
"type": "web",
"url": "http://www.juris.de/jportal/portal/t/kli/page/jurisw.psml?doc.hl=1&doc.id=KORE307572013&documentnumber=2&numberofresults=12&showdoccase=1&doc.part=K¶mfromHL=true#focuspoint",
"items": [
{
"itemType": "case",
"creators": [],
"notes": [
{
"note": "Additional Metadata: <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><h3>Fundstellen</h3><p>Zitierungen: Entgegen OLG Köln, 23. Dezember 2009, 6 U 101/09, GRUR-RR 2010, 173; LG Hamburg, 25. Januar 2006, 308 O 58/06, MMR 2006, 700; LG Hamburg, 11. Mai 2006, 308 O 196/06; LG Hamburg, 2. August 2006, 308 O 509/09; LG München I, 19. Juni 2008, 7 O 16402/07, MMR 2008, 619 und LG Düsseldorf, 6. Juli 2011, 12 O 256/10, ZUM-RD 2011, 698; Bestätigung OLG Frankfurt, 20. Dezember 2007, 11 W 58/07, BB 2008, 229; LG Mannheim, 29. September 2006, 7 O 76/06, MMR 2007, 267; LG Mannheim, 29. September 2006, 7 O 62/06 und LG Mannheim, 30. Januar 2007, 2 O 71/06.(Rn.20)</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Snapshot"
}
],
"court": "BGH",
"extra": "{:jurisdiction: de}\n{:genre: Urt.}",
"dateDecided": "2012-11-15",
"docketNumber": "I ZR 74/12",
"title": "BGH, 15.11.2012 - I ZR 74/12 - Morpheus",
"shortTitle": "Morpheus",
"libraryCatalog": "Juris"
}
]
}
]
/** END TEST CASES **/