-
Notifications
You must be signed in to change notification settings - Fork 69
/
dev_data.yaml
3486 lines (3486 loc) · 138 KB
/
dev_data.yaml
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
- fields:
created_at: 2020-06-22 14:40:24.489564+00:00
label: null
notes: ''
title: The Creative Commons licences through moral rights provisions in French
law
updated_at: 2020-06-22 14:40:24.489590+00:00
url: https://www.tandfonline.com/doi/full/10.1080/13600869.2013.869923#.VJO-LsCsA
model: legal_db.link
pk: 1
- fields:
created_at: 2020-06-22 14:42:02.176927+00:00
label: null
notes: ''
title: 'Not for Designers: On the Inadequacies of EU Design Law and How to Fix
It'
updated_at: 2020-06-22 14:42:02.176954+00:00
url: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2361682
model: legal_db.link
pk: 2
- fields:
created_at: 2020-06-22 14:44:25.439120+00:00
label: null
notes: ''
title: Creative Commons licences and design Are the two compatible?
updated_at: 2020-06-22 14:44:25.439147+00:00
url: http://www.jipitec.eu/issues/jipitec-2-2-2011/3085
model: legal_db.link
pk: 3
- fields:
created_at: 2020-06-26 19:55:41.042049+00:00
label: Decision
notes: ''
title: null
updated_at: 2020-11-18 16:04:13.133519+00:00
url: https://wiki.creativecommons.org/images/f/f6/2010-10-26_A%27cision-trib.-Nivelles-Lichodmapwa.pdf
model: legal_db.link
pk: 4
- fields:
created_at: 2020-06-26 20:01:08.532401+00:00
label: District Court opinion
notes: ''
title: null
updated_at: 2020-11-18 16:03:34.677518+00:00
url: https://law.justia.com/cases/federal/district-courts/texas/txndce/3:2007cv01767/171558/68/
model: legal_db.link
pk: 5
- fields:
created_at: 2020-06-29 19:30:53.457669+00:00
label: null
notes: ''
title: Open licensing and databases
updated_at: 2020-06-29 19:30:53.457695+00:00
url: http://www.ifosslr.org/ifosslr/article/view/62
model: legal_db.link
pk: 6
- fields:
created_at: 2020-06-29 19:33:06.278626+00:00
label: null
notes: ''
title: 'Safe to Be Open: Study on the Protection of Research Data and Recommendations
for Access and Usage'
updated_at: 2020-06-29 19:33:06.278650+00:00
url: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2391280
model: legal_db.link
pk: 7
- fields:
created_at: 2020-06-29 20:32:11.445404+00:00
label: Court opinion
notes: ''
title: null
updated_at: 2020-11-18 16:03:01.830214+00:00
url: https://wiki.creativecommons.org/wiki/File:Curry-Audax-English.pdf
model: legal_db.link
pk: 8
- fields:
created_at: 2020-06-29 20:38:30.039167+00:00
label: District Court opinion
notes: ''
title: null
updated_at: 2020-11-18 16:02:34.583310+00:00
url: https://cases.justia.com/federal/district-courts/district-of-columbia/dcdce/1:2014cv01043/166825/39/0.pdf?ts=1439987006
model: legal_db.link
pk: 9
- fields:
created_at: 2020-06-29 20:46:03.015498+00:00
label: Blog post
notes: ''
title: null
updated_at: 2020-11-18 16:01:45.542537+00:00
url: https://creativecommons.org/2011/09/15/creative-commons-attribution-sharealike-license-enforced-in-germany/
model: legal_db.link
pk: 10
- fields:
created_at: 2020-06-29 20:48:02.001053+00:00
label: Court order
notes: ''
title: null
updated_at: 2020-11-18 16:01:19.161607+00:00
url: https://upload.wikimedia.org/wikipedia/foundation/f/ff/2012-11-19_D18_Order_re_Special_Mtn_to_Strike_and_Mtn_to_Dismiss.pdf
model: legal_db.link
pk: 11
- fields:
created_at: 2020-06-29 20:50:37.255650+00:00
label: Complaint
notes: ''
title: null
updated_at: 2020-11-18 16:00:19.993727+00:00
url: https://wikimediafoundation.org/wiki/File:WMF_complaint_for_declaratory_judgement_September_2012.pdf
model: legal_db.link
pk: 12
- fields:
created_at: 2020-06-29 20:52:40.130385+00:00
label: Federal Circuit decision
notes: ''
title: null
updated_at: 2020-11-18 15:59:53.445451+00:00
url: https://wiki.creativecommons.org/images/9/98/Jacobson_v_katzer_fed_cir_ct_of_appeals_decision.pdf
model: legal_db.link
pk: 13
- fields:
created_at: 2020-06-29 20:54:23.255925+00:00
label: Decision
notes: (no English translation available)
title: null
updated_at: 2020-11-18 15:59:40.894547+00:00
url: https://wiki.creativecommons.org/images/3/3f/Psak_Din.pdf
model: legal_db.link
pk: 14
- fields:
created_at: 2020-07-22 20:30:46.494001+00:00
label: Decision
notes: No English translation available.
title: null
updated_at: 2020-11-18 15:59:21.671894+00:00
url: http://www.internautas.org/archivos/sentencia_metropoli.pdf
model: legal_db.link
pk: 15
- fields:
created_at: 2020-07-23 00:01:35.652529+00:00
label: null
notes: No English translation available.
title: null
updated_at: 2020-07-23 00:01:35.652554+00:00
url: http://www.interiuris.com/blog/wp-content/uploads/Creative_Commons_APPO.pdf
model: legal_db.link
pk: 16
- fields:
created_at: 2020-07-23 00:07:19.561429+00:00
label: null
notes: No English translation available.
title: null
updated_at: 2020-07-23 00:07:19.561461+00:00
url: https://www.spiritlegal.com/files/userdata_global/downloads/LG%20Hamburg,%20Beschluss%20vom%2018.11.2016,%20310%20O%2040216.pdf
model: legal_db.link
pk: 17
- fields:
created_at: 2020-07-23 00:12:24.161124+00:00
label: News article
notes: ''
title: null
updated_at: 2020-11-18 15:58:28.863345+00:00
url: https://www.law.co.il/en/news/2011/01/18/israeli-court-enforces-a-creative-commons-license/
model: legal_db.link
pk: 18
- fields:
created_at: 2020-07-23 00:12:28.753480+00:00
label: Decision
notes: ''
title: null
updated_at: 2020-11-18 15:59:03.529213+00:00
url: https://www.law.co.il/media/computer-law/reuveni_rivlin_d8IXJol.pdf
model: legal_db.link
pk: 19
- fields:
created_at: 2020-07-23 00:38:06.986973+00:00
label: District Court decision
notes: ''
title: null
updated_at: 2020-07-23 00:38:06.987008+00:00
url: https://creativecommons.org/wp-content/uploads/2018/03/2018-01-18-40-Decision-granting-dismissal-of-infringement-claim.pdf
model: legal_db.link
pk: 20
- fields:
created_at: 2020-07-23 00:39:21.372192+00:00
label: 9th Circuit decision
notes: ''
title: Great Minds v. Office Depot, Inc., No. 18-55331 (9th Cir. 2019)
updated_at: 2020-07-23 00:39:21.372223+00:00
url: https://law.justia.com/cases/federal/appellate-courts/ca9/18-55331/18-55331-2019-12-27.html
model: legal_db.link
pk: 21
- fields:
created_at: 2020-07-23 00:42:36.224020+00:00
label: District Court decision
notes: ''
title: Order Granting Motion to Dismiss
updated_at: 2020-07-23 00:42:36.224043+00:00
url: https://creativecommons.org/wp-content/uploads/2018/04/2017-02-24-Order-Granting-Motion-to-Dismiss.pdf
model: legal_db.link
pk: 22
- fields:
created_at: 2020-07-23 00:43:12.410575+00:00
label: 2nd Circuit decision
notes: ''
title: Great Minds v. FedEx Office & Print Services, Inc., No. 17-808 (2d Cir.
2018)
updated_at: 2020-07-23 00:43:12.410599+00:00
url: https://law.justia.com/cases/federal/appellate-courts/ca2/17-808/17-808-2018-03-21.html
model: legal_db.link
pk: 23
- fields:
created_at: 2020-07-23 00:49:21.270609+00:00
label: Complaint
notes: ''
title: Philpot-MRC-Complaint.pdf
updated_at: 2020-07-23 00:49:21.270633+00:00
url: https://creativecommons.org/wp-content/uploads/2018/03/Philpot-MRC-Complaint.pdf
model: legal_db.link
pk: 24
- fields:
created_at: 2020-07-23 00:50:04.873746+00:00
label: Motion for Summary Judgment
notes: ''
title: Philpot-MRC-Defendants-Memo-ISO-MSJ-1.pdf
updated_at: 2020-07-23 00:50:04.873773+00:00
url: https://creativecommons.org/wp-content/uploads/2018/03/Philpot-MRC-Defendants-Memo-ISO-MSJ-1.pdf
model: legal_db.link
pk: 25
- fields:
created_at: 2020-07-23 00:50:41.634157+00:00
label: Decision
notes: ''
title: Philpot-v.-Media-Research-Ctr-decision.pdf
updated_at: 2020-11-18 15:57:38.634465+00:00
url: https://creativecommons.org/wp-content/uploads/2018/03/Philpot-v.-Media-Research-Ctr-decision.pdf
model: legal_db.link
pk: 26
- fields:
created_at: 2020-07-23 00:58:30.610422+00:00
label: District Court decision
notes: ''
title: Philpot v. LM Communications II of South Carolina, Inc., No. 5:2017cv00173
- Document 80 (E.D. Ky. 2018)
updated_at: 2020-11-18 15:57:05.612131+00:00
url: https://law.justia.com/cases/federal/district-courts/kentucky/kyedce/5:2017cv00173/82876/80/
model: legal_db.link
pk: 27
- fields:
created_at: 2020-12-17 14:12:29.166080+00:00
label: Certiorari
notes: null
title: ELDRED V. ASHCROFT (01-618) 537 U.S. 186 (2003) 239 F.3d 372, affirmed
updated_at: 2020-12-17 14:12:29.166136+00:00
url: https://www.law.cornell.edu/supct/html/01-618.ZS.html
model: legal_db.link
pk: 30
- fields:
created_at: 2020-12-17 14:12:29.216129+00:00
label: Brief
notes: null
title: ELDRED V. ASHCROFT - OPPOSITION
updated_at: 2020-12-17 14:12:29.216171+00:00
url: https://www.justice.gov/osg/brief/eldred-v-ashcroft-opposition
model: legal_db.link
pk: 31
- fields:
created_at: 2020-12-17 14:41:24.973429+00:00
label: Case summary
notes: null
title: Is Violation of Creative Commons License a Breach of Contract or Copyright
Infringement?
updated_at: 2020-12-17 14:41:24.973484+00:00
url: https://www.vondranlegal.com/is-violation-of-creative-commons-license-a-breach-of-contract-or-copyright-infringement
model: legal_db.link
pk: 34
- fields:
created_at: 2020-12-17 14:41:24.977520+00:00
label: Memorandum and Order
notes: null
title: Sowers v. Gatehouse Media Missouri Holdings, Inc.
updated_at: 2020-12-17 14:41:24.977563+00:00
url: https://casetext.com/case/sowers-v-gatehouse-media-missouri-holdings-2/?PHONE_NUMBER_GROUP=P
model: legal_db.link
pk: 35
- fields:
created_at: 2020-12-17 14:41:24.984870+00:00
label: Case summary
notes: null
title: GateHouse Media v. That's Great News
updated_at: 2020-12-17 14:41:24.984922+00:00
url: https://www.dmlp.org/threats/gatehouse-media-v-thats-great-news#node-legal-threat-full-group-description
model: legal_db.link
pk: 36
- fields:
created_at: 2020-12-17 15:53:17.707000+00:00
label: Opinion
notes: null
title: Philpot v. Music Times, LLC
updated_at: 2020-12-17 15:53:17.707059+00:00
url: https://casetext.com/case/philpot-v-music-times-llc
model: legal_db.link
pk: 45
- fields:
created_at: 2020-12-17 15:53:17.710783+00:00
label: Opinion and Order
notes: null
title: Philpot v. Music Times LLC, No. 1:2016cv01277 - Document 34 (S.D.N.Y. 2017)
updated_at: 2020-12-17 15:53:17.710831+00:00
url: https://law.justia.com/cases/federal/district-courts/new-york/nysdce/1:2016cv01277/453791/34/
model: legal_db.link
pk: 46
- fields:
created_at: 2020-12-17 15:53:17.714107+00:00
label: Case summary
notes: null
title: 14-1978 - PHILPOT v. MUSIC TIMES, LLC
updated_at: 2020-12-17 15:53:17.714157+00:00
url: https://www.govinfo.gov/app/details/USCOURTS-insd-1_14-cv-01978/summary
model: legal_db.link
pk: 47
- fields:
created_at: 2020-12-17 15:59:09.470348+00:00
label: Docket
notes: null
title: Philpot v. Alternet Media, Inc
updated_at: 2020-12-17 15:59:09.470387+00:00
url: https://www.pacermonitor.com/public/case/25150381/Philpot_v_Alternet_Media,_Inc
model: legal_db.link
pk: 50
- fields:
created_at: 2020-12-17 16:03:10.502465+00:00
label: Opinion
notes: null
title: Philpot v. WOS, Inc.
updated_at: 2020-12-17 16:03:10.502517+00:00
url: https://casetext.com/case/philpot-v-wos-inc-1
model: legal_db.link
pk: 51
- fields:
created_at: 2020-12-17 16:11:07.172450+00:00
label: Opinion
notes: null
title: Philpot v. New Orleans Tourism Mktg. Corp.
updated_at: 2020-12-17 16:11:07.172503+00:00
url: https://casetext.com/case/philpot-v-new-orleans-tourism-mktg-corp?resultsNav=false
model: legal_db.link
pk: 52
- fields:
created_at: 2020-12-17 16:11:07.177140+00:00
label: Docket
notes: null
title: Philpot v. New Orleans Tourism Marketing Corporation (E.D. La. 2018)
updated_at: 2020-12-17 16:11:07.177190+00:00
url: https://www.courtlistener.com/?type=r&q=docket_id%3A7965353
model: legal_db.link
pk: 53
- fields:
created_at: 2021-01-06 21:10:59.765556+00:00
label: null
notes: null
title: "Securing the Future of Copyright Users\u2019 Rights in Canada by Saleh\
\ Al-Sharieh"
updated_at: 2021-01-06 21:10:59.765618+00:00
url: https://www.canlii.org/en/commentary/doc/2018CanLIIDocs149?zoupio-debug#!fragment/zoupio-_Toc3Page4/(hash:(chunk:(anchorText:zoupio-_Toc3Page4),notesQuery:'',scrollChunk:!n,searchQuery:'%22creative%20commons%22',searchSortBy:RELEVANCE,tab:search))
model: legal_db.link
pk: 64
- fields:
created_at: 2021-11-09 21:15:58.996143+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 21:15:58.996173+00:00
url: https://dockets.justia.com/docket/california/cacdce/2:2015cv04230/619994
model: legal_db.link
pk: 174
- fields:
created_at: 2021-11-09 21:22:55.859708+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 21:22:55.859737+00:00
url: https://casetext.com/case/lisa-coppola-llc-v-higbee
model: legal_db.link
pk: 175
- fields:
created_at: 2021-11-09 22:01:38.058203+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 22:01:38.058219+00:00
url: https://casetext.com/case/philpot-v-420-magazine-inc
model: legal_db.link
pk: 177
- fields:
created_at: 2021-11-09 22:50:15.928414+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 22:50:15.928434+00:00
url: https://dockets.justia.com/docket/california/casdce/3:2020cv00872/675284
model: legal_db.link
pk: 178
- fields:
created_at: 2021-11-09 22:52:17.201302+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 22:52:17.201319+00:00
url: https://casetext.com/case/philpot-v-emmis-operating-co
model: legal_db.link
pk: 179
- fields:
created_at: 2021-11-09 22:54:14.242853+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 22:54:14.242881+00:00
url: https://dockets.justia.com/docket/california/candce/3:2018cv04100/328978
model: legal_db.link
pk: 180
- fields:
created_at: 2021-11-09 23:00:53.555566+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:00:53.555591+00:00
url: https://dockets.justia.com/docket/florida/flmdce/8:2020cv01239/377691
model: legal_db.link
pk: 181
- fields:
created_at: 2021-11-09 23:03:20.821309+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:03:20.821333+00:00
url: https://casetext.com/case/philpot-v-rural-media-grp-inc
model: legal_db.link
pk: 182
- fields:
created_at: 2021-11-09 23:05:04.922480+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:05:04.922500+00:00
url: https://dockets.justia.com/docket/louisiana/laedce/2:2018cv09085/222192
model: legal_db.link
pk: 183
- fields:
created_at: 2021-11-09 23:06:24.195357+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:06:24.195376+00:00
url: https://casetext.com/case/philpot-v-toledo-radio-llc-2
model: legal_db.link
pk: 184
- fields:
created_at: 2021-11-09 23:07:55.457529+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:07:55.457548+00:00
url: https://casetext.com/case/philpot-v-wkmsmurray-state-univ
model: legal_db.link
pk: 185
- fields:
created_at: 2021-11-09 23:09:23.433978+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:09:23.434003+00:00
url: https://law.justia.com/cases/federal/district-courts/hawaii/hidce/1:2018cv00057/138329/41/
model: legal_db.link
pk: 186
- fields:
created_at: 2021-11-09 23:11:07.751525+00:00
label: null
notes: ''
title: null
updated_at: 2021-11-09 23:11:07.751543+00:00
url: https://dockets.justia.com/docket/district-of-columbia/dcdce/1:2020cv00693/216047
model: legal_db.link
pk: 187
- fields:
created_at: 2022-01-12 17:33:13.438610+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:33:13.438642+00:00
url: https://dockets.justia.com/docket/oregon/ordce/3:2020cv00717/152324
model: legal_db.link
pk: 226
- fields:
created_at: 2022-01-12 17:37:27.317772+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:37:27.317800+00:00
url: https://dockets.justia.com/docket/new-york/nysdce/1:2020cv04121/537816
model: legal_db.link
pk: 227
- fields:
created_at: 2022-01-12 17:40:31.567820+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:40:31.567845+00:00
url: https://dockets.justia.com/docket/california/cacdce/2:2020cv04220/782174
model: legal_db.link
pk: 228
- fields:
created_at: 2022-01-12 17:41:47.756660+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:41:47.756687+00:00
url: https://dockets.justia.com/docket/california/cacdce/2:2020cv04824/783970
model: legal_db.link
pk: 229
- fields:
created_at: 2022-01-12 17:44:45.406706+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:44:45.406730+00:00
url: https://dockets.justia.com/docket/nevada/nvdce/2:2020cv00824/143211
model: legal_db.link
pk: 230
- fields:
created_at: 2022-01-12 17:46:11.599761+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:46:11.599785+00:00
url: https://dockets.justia.com/docket/tennessee/tnwdce/2:2020cv02370/88485
model: legal_db.link
pk: 231
- fields:
created_at: 2022-01-12 17:47:01.127485+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:47:01.127509+00:00
url: https://dockets.justia.com/docket/texas/txndce/3:2020cv01182/332024
model: legal_db.link
pk: 232
- fields:
created_at: 2022-01-12 17:49:03.422598+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:49:03.422622+00:00
url: https://dockets.justia.com/docket/colorado/codce/1:2020cv01538/197932
model: legal_db.link
pk: 233
- fields:
created_at: 2022-01-12 17:50:22.761915+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:50:22.761940+00:00
url: https://www.courtlistener.com/docket/17206528/philpot-v-funny-or-die-media-inc/
model: legal_db.link
pk: 234
- fields:
created_at: 2022-01-12 17:52:10.885220+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 17:52:10.885244+00:00
url: https://dockets.justia.com/docket/pennsylvania/paedce/2:2020cv02459/571354
model: legal_db.link
pk: 235
- fields:
created_at: 2022-01-12 18:02:23.941232+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:02:23.941255+00:00
url: https://dockets.justia.com/docket/virginia/vaedce/1:2020cv00590/476523
model: legal_db.link
pk: 236
- fields:
created_at: 2022-01-12 18:04:09.807305+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:04:09.807322+00:00
url: https://dockets.justia.com/browse/state-north_carolina/noscat-10/nos-820
model: legal_db.link
pk: 237
- fields:
created_at: 2022-01-12 18:05:01.789095+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:05:01.789112+00:00
url: https://dockets.justia.com/docket/california/cacdce/2:2020cv04802/783924
model: legal_db.link
pk: 238
- fields:
created_at: 2022-01-12 18:06:15.496087+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:06:15.496106+00:00
url: https://www.courtlistener.com/docket/17138844/philpot-v-rocking-m-media-llc/
model: legal_db.link
pk: 239
- fields:
created_at: 2022-01-12 18:07:39.771341+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:07:39.771359+00:00
url: https://dockets.justia.com/docket/rhode-island/ridce/1:2020cv00238/49040
model: legal_db.link
pk: 240
- fields:
created_at: 2022-01-12 18:08:53.225818+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:08:53.225843+00:00
url: https://www.courtlistener.com/docket/17208982/philpot-v-scripps-media-inc/
model: legal_db.link
pk: 241
- fields:
created_at: 2022-01-12 18:09:59.774952+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:09:59.774977+00:00
url: https://www.courtlistener.com/docket/17207183/philpot-v-snopes-media-group-inc/
model: legal_db.link
pk: 242
- fields:
created_at: 2022-01-12 18:10:38.202200+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:10:38.202216+00:00
url: https://dockets.justia.com/docket/north-carolina/ncwdce/1:2020cv00126/100390
model: legal_db.link
pk: 243
- fields:
created_at: 2022-01-12 18:12:03.927178+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:12:03.927201+00:00
url: https://dockets.justia.com/docket/illinois/ilndce/1:2020cv03198/376420
model: legal_db.link
pk: 244
- fields:
created_at: 2022-01-12 18:15:03.305889+00:00
label: null
notes: ''
title: null
updated_at: 2022-01-12 18:15:03.305915+00:00
url: https://unicourt.com/case/pc-db5-simon-j-burchett-photography-inc-v-infoway-llc-466132
model: legal_db.link
pk: 245
- fields:
created_at: 2022-01-31 09:11:51.473398+00:00
label: Decision
notes: null
title: Court decision
updated_at: 2022-01-31 09:11:51.473423+00:00
url: https://uitspraken.rechtspraak.nl/inziendocument?id=ECLI:NL:RBMNE:2021:5887
model: legal_db.link
pk: 254
- fields:
background: "In 2004, the Belgian band Lich\xF4dmapwa released the song \u201C\
Abatchouck\u201D under CC BY-NC-ND 2.5 Belgium license. Several years later,\
\ one of the band members heard a portion of the song in an advertisement for\
\ a theater festival run by a nonprofit organization. Lich\xF4dmapwa contacted\
\ the organization to see if they could negotiate a deal. The negotiations failed,\
\ and Lich\xF4dmapwa sued the organization for copyright infringement in September\
\ 2009."
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: BE
courts: Le Tribunal de Premiere Instance (court of first instance)
created_at: 2020-06-26 19:58:23.435066+00:00
decision_year: 2010
is_pending: null
license: CC BY-NC-ND
links:
- 4
name: "Linch\xF4dmapwa v L'asbl Festival de Theatre de Spa"
notes: 'Case # 09-1684-A'
related_cases: null
status: 3
summary: "Lich\xF4dmapwa claimed the defendant violated all three conditions of\
\ the applicable CC license. The defendant had modified the original work, used\
\ the work for commercial purposes, and failed to provide attribution. The defendant\
\ claimed it had acted in good faith, arguing that it was unaware of the terms\
\ of the CC license. The defendant also argued that since the plaintiff was\
\ not a member of the Belgian collecting society, SABAM, they had no rights\
\ to collect payments for use of the music.\L The court recognized the validity\
\ of the Creative Commons license applied to the music, and held that the plaintiff\u2019\
s decision not to join SABAM and instead to release their music more openly\
\ should not prevent them from enforcing their copyright. The court held that\
\ the good faith of the defendant was not an excuse for violating the license.\
\ As a festival organizer regularly involved in licensing, the court said the\
\ defendant should have known to look for and follow the terms of the license.\
\ In addition, the court noted that the website from which the theater downloaded\
\ the music, http://www.dogmazic.net, clearly mentions the CC license.\r\n\r\
\nOn October 28, 2010, the court awarded the plaintiff 1,500 Euros per license\
\ condition violated, 4,500 Euros in total."
updated_at: 2020-11-18 15:40:42.925901+00:00
model: legal_db.case
pk: 1
- fields:
background: "Virgin Mobile, an Australian mobile device company, used a Flickr\
\ photo of a minor licensed under a CC BY 2.0 license as part of an advertising\
\ campaign it launched in 2007. \LThe plaintiff alleged that Virgin violated\
\ the attribution requirements of the license, and that CC had not sufficiently\
\ warned licensors that publicity rights were not included under the license."
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: US
courts: Northern Distict of Texas
created_at: 2020-06-26 20:02:57.777520+00:00
decision_year: 2009
is_pending: null
license: CC BY-NC-ND
links:
- 5
name: Chang v Virgin Mobile and Creative Commons
notes: ''
related_cases: null
status: 3
summary: "In September of 2007, the plaintiffs brought suit in U.S. District Court\
\ in the Northern District of Texas against the mobile company under a number\
\ of causes of action, including invasion of privacy, copyright infringement,\
\ and breach of contract. They also made a claim against Creative Commons alleging\
\ that Creative Commons had failed to sufficiently warn creators that the do\
\ not cover privacy and publicity rights.\r\n\r\nPlaintiffs voluntarily dismissed\
\ Creative Commons from the lawsuit in November 2007. In January 2009, the federal\
\ district court in Texas dismissed the case against the mobile company for\
\ lack of personal jurisdiction."
updated_at: 2020-11-18 15:40:09.930219+00:00
model: legal_db.case
pk: 2
- fields:
background: Adam Curry, a former MTV VJ and one of the pioneers of podcasting,
published photos onto his Flickr account under a BY-NC-SA 2.0 license. A Dutch
tabloid reprinted four of the photos in a story about the Curry family. Curry
sued the tabloid for violating his privacy rights and for copyright infringement.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: NL
courts: Netherlands
created_at: 2020-06-29 20:36:30.973362+00:00
decision_year: 2006
is_pending: null
license: CC BY-NC-SA
links:
- 8
name: Curry v Audax
notes: "Case # 334492/KG 06-176 SR.\r\n\r\nCase File needs to be more visible\
\ and aptly named."
related_cases: null
status: 3
summary: "Curry argued that the tabloid violated the BY-NC-SA license by using\
\ the photos in a commercial magazine and by not including proper attribution\
\ to the CC license. The tabloid argued that it thought the photos could be\
\ taken and used because they were marked as \"public\" on Flickr. It also argued\
\ that in terms of compensation, the photos had no value because they were available\
\ for anyone to view online.\r\n\r\nOn March 9, 2006, the Dutch court held that\
\ the tabloid had violated the CC license on the images by failing to attach\
\ a notice about the license and for using the images in a commercial magazine.\
\ However, the court did not award damages to the plaintiff because they could\
\ not prove harm. The court held that defendant could not use any of the photos\
\ from Flickr in the future unless they comply with the terms of the CC license\
\ or with permission from the plaintiff."
updated_at: 2020-11-18 15:39:50.800630+00:00
model: legal_db.case
pk: 3
- fields:
background: "A map publisher used plaintiff\u2019s CC-licensed Flickr photo on\
\ the cover of its commercially available atlas. The attribution and license\
\ information for the photo were included on the back cover of the atlas. Plaintiff\
\ sued for copyright infringement and asserted a DMCA Section 1202 claim for\
\ distribution of false copyright management information."
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: US
courts: US (DC)
created_at: 2020-06-29 20:39:10.172865+00:00
decision_year: 2015
is_pending: null
license: CC BY-SA
links:
- 9
name: Drauglis v Kappa Map Group
notes: No case files here (cite to Jacobsen
related_cases: null
status: 3
summary: "Plaintiff alleged copyright infringement based on three different factors:\
\ (1) failure to comply with the ShareAlike condition, (2) failure to provide\
\ proper notice of the CC license, and (3) failure to give proper attribution.\r\
\n\r\nOn August 18, 2015, the district court of D.C. granted summary judgment\
\ to defendant holding that: (1) the ShareAlike condition was not violated because\
\ the atlas was not a derivative work of the plaintiff\u2019s photograph; (2)\
\ providing the license name was sufficient to satisfy the obligation to provide\
\ the URI of the license; and (3) attribution that was comparable in prominence\
\ to the attribution given to individual maps in the atlas was sufficient for\
\ purposes of fulfilling CC license attribution requirements. The court also\
\ dismissed the Section 1202 claim on summary judgment."
updated_at: 2020-11-18 15:45:25.681984+00:00
model: legal_db.case
pk: 4
- fields:
background: In the summer of 2010, the plaintiff took a picture of the German
politician Thilo Sarrazin at a public event and published it online under a
Creative Commons ShareAlike license. Later the DVU, a German political party,
used the picture on their website without the plaintiff's name, the license
notice, or a link to the original work.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: DE
courts: District Court of Berlin
created_at: 2020-06-29 20:46:54.876073+00:00
decision_year: 2010
is_pending: null
license: CC BY-SA
links:
- 10
name: Gerlachs v DVU
notes: "Case # 16 O 458/10.\r\n\r\nEnglish translation needs to be fixed, the\
\ link is broken, files need to be clearer, and more descriptive.\r\n\r\n[CC\
\ note: This summary was not verified through an official English translation.]"
related_cases: null
status: 3
summary: "The photographer sent a takedown notice to the political party, which\
\ was ignored. Subsequently, the photographer sought an injunction preventing\
\ the DVU from continuing to use the photograph.\r\n\r\nThe court ruled that\
\ the DVU\u2019s use was not in compliance with the CC license and granted the\
\ injunction."
updated_at: 2020-11-18 15:38:57.624282+00:00
model: legal_db.case
pk: 5
- fields:
background: Wikitravel was a wiki founded in 2003, allowing volunteer authors
to add and edit content related to worldwide travel and tourism. All content
on the site was published under a Creative Commons ShareAlike license. In 2005,
the domain name was purchased by Internet Brands, a for-profit company. In 2012,
a group of volunteer site administrators and authors approached the Wikimedia
Foundation about making a new travel-oriented wiki, which would incorporate
some of the content from Wikitravel owned by contributors.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: US
courts: US District Court of the Central Disctrict of California
created_at: 2020-06-29 20:49:14.881710+00:00
decision_year: 2012
is_pending: null
license: CC BY-SA
links:
- 11
name: Internet Brands v Holliday
notes: This case does not actually involve CC licensing.
related_cases: null
status: 3
summary: Internet Brands filed a lawsuit against two of those Wikitravel editors,
asserting trademark infringement, unfair competition, and civil conspiracy.
Internet Brands dismissed their claims.
updated_at: 2021-11-09 21:40:27.970784+00:00
model: legal_db.case
pk: 6
- fields:
background: Wikitravel was a wiki founded in 2003, allowing volunteer authors
to add and edit content related to worldwide travel and tourism. All content
on the site was published under a Creative Commons ShareAlike license. In 2005,
the domain name was purchased by Internet Brands, a for-profit company. In 2012,
a group of volunteer site administrators and authors approached the Wikimedia
Foundation about making a new travel-oriented wiki, which would incorporate
some of the content from Wikitravel owned by contributors.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: US
courts: Superior Court of California
created_at: 2020-06-29 20:51:03.046041+00:00
decision_year: 2012
is_pending: null
license: CC BY-SA
links:
- 12
name: Wikimedia Foundation v Internet Brands
notes: "Case # CGC-12-523971.\r\n\r\nNeeds to link back to internet brands v holliday\
\ somehow, the two are closely related/associated lawsuits."
related_cases: null
status: 3
summary: "Internet Brands filed a lawsuit against two of those Wikitravel editors,\
\ asserting trademark infringement, unfair competition, and civil conspiracy.\
\ The Wikimedia Foundation then filed this declaratory judgment action against\
\ Internet Brands in California state court, requesting a judicial determination\
\ that they have the right to start the proposed new travel wiki and incorporate\
\ content from Wikitravel under the terms of the CC license.\r\n\r\nAfter Internet\
\ Brands agreed to dismiss their unfair competition claim, the U.S. District\
\ Court for the Central District of California dismissed the remainder of Internet\
\ Brand\u2019s claims for lack of subject matter jurisdiction. Wikimedia and\
\ Internet Brands settled their state court dispute."
updated_at: 2020-11-18 15:36:58.541934+00:00
model: legal_db.case
pk: 7
- fields:
background: The plaintiff created software code and published it under an open
source license called the Artistic license. Defendant incorporated the code
into its commercial software without complying with the terms of the Artistic
license. Plaintiff sued for copyright infringement.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: US
courts: United States Court of Appeals for the Federal Cicuirt
created_at: 2020-06-29 20:53:06.178610+00:00
decision_year: 2010
is_pending: null
license: null
links:
- 13
name: Jacobsen v Katzer
notes: ''
related_cases: null
status: 3
summary: "The district court held that the license was \u201Cintentionally broad\u201D\
\ and unlimited in scope and therefore did not create liability for copyright\
\ infringement. On that basis, they denied the motion for preliminary injunction.\
\ Plaintiff appealed to the Federal Circuit Court of Appeals.\r\n\r\nThe Federal\
\ Circuit Court of Appeals vacated the district court decision and remanded\
\ the case. The court held that the restrictions in the license were conditions\
\ rather than contractual covenants, meaning that violating them constituted\
\ copyright infringement."
updated_at: 2020-11-18 15:36:20.881082+00:00
model: legal_db.case
pk: 8
- fields:
background: A newspaper used several CC-licensed photos in an issue of the newspaper
without proper attribution. The photographer contacted the newspaper about the
omission, and the newspaper offered the photographer 400 Sheqels, which was
the price they said they would have paid a photographer to take a similar photo.
The photographer did not accept the offer and brought suit for copyright infringement.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: IL
courts: Jerusalem Court (private tribunal)
created_at: 2020-06-29 20:55:56.964181+00:00
decision_year: 2011
is_pending: null
license: CC BY-SA
links:
- 14
name: No. 71036 v Newspaper
notes: "Case # 71036.\r\n\r\nLicense version is unclear. Link wiht the google\
\ translation is a downloadable word file only.\r\n\r\n[CC note: this summary\
\ is based on a google translation of the original Hebrew text]."
related_cases: null
status: 3
summary: "This case was decided by a private Rabbinical Tribunal. Thus, it is\
\ not an official Israeli court opinion. The court first asked the parties to\
\ come to an agreement, which they were not able to do. As a Rabbinical court,\
\ the court analyzed the case under both the Torah and the Israel Copyright\
\ Act. The court held that there is a religious or moral obligation to comply\
\ with the attribution terms of the CC licenses. The court found the Newspaper's\
\ settlement offer to be below the value of the benefit the Newspaper had received\
\ from using the photo and noted that the Israel copyright act provides for\
\ damages up to 100,000 Sheqel.\r\n\r\nThe court found for the photographer\
\ and awarded a sum of 3,500 Sheqel."
updated_at: 2020-11-18 15:35:53.647878+00:00
model: legal_db.case
pk: 9
- fields:
background: A Spanish collecting society, the Sociedad General de Autores y Editores
(SGAE), sued a disco bar owner, alleging that he had failed to pay SGAE the
license fee required for public performances of music managed by the collecting
society during the period between November 2002 and August 2005. The bar owner
claimed the music being played in his bar was not managed by the society.
contributor_email: REDACTED--public-dev-data
contributor_name: REDACTED--public-dev-data
country: ES
courts: Lower Court of number siz of Badajoz (trial court)
created_at: 2020-06-29 21:03:32.384038+00:00
decision_year: 2006
is_pending: null
license: null
links:
- 15
name: SGAE v Fernandez
notes: "Case # 15/2.006.\r\n\r\nUnclear what type of license and version, files\
\ needs to be labelled more clearly.\r\n\r\nThis is derived from a submission\
\ to Creative Commons, but not verified through an official English translation."
related_cases: null
status: 3
summary: "The collecting society relied on past precedent in Spain, which had\
\ ruled in their favor in similar contexts under the assumption that the collecting\
\ society effectively managed the rights of all musicians.\r\n\r\nIn 2006, the\