forked from creativecommons/ccos-website-source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrepos.json
1079 lines (1079 loc) · 42.2 KB
/
repos.json
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
{
"repos": [
{
"created": "2019-03-13T02:54:23",
"description": "Default templates and guidelines for Creative Commons GitHub repositories.",
"engineering_project": true,
"featured": false,
"id": 175334998,
"language": null,
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/.github/blob/master/LICENSE"
},
"name": ".github",
"slack": "",
"url": "https://github.com/creativecommons/.github",
"website": ""
},
{
"created": "2018-06-01T01:11:48",
"description": "Candela helper plugin to manage additional config and bootstrapping, used on CC Certificates website",
"engineering_project": true,
"featured": false,
"id": 135651265,
"language": "PHP",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/candela-utility/blob/master/LICENSE"
},
"name": "candela-utility",
"slack": "",
"url": "https://github.com/creativecommons/candela-utility",
"website": "http://certificates.creativecommons.org/"
},
{
"created": "2018-05-16T19:44:57",
"description": "Creates a static website of Case Law and Scholarship data from around the world based on Google Form responses and manually curated.",
"engineering_project": true,
"featured": false,
"id": 133715391,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/caselaw/blob/master/LICENSE"
},
"name": "caselaw",
"slack": "cc-dev-legal-database",
"url": "https://github.com/creativecommons/caselaw",
"website": "https://labs.creativecommons.org/caselaw/"
},
{
"created": "2015-11-16T19:24:04",
"description": "Creative Commons JavaScript license selector in the form of a JavaScript widget",
"engineering_project": true,
"english_name": "cc-license-chooser",
"featured": false,
"id": 46296768,
"language": "XSLT",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/cc-license-chooser/blob/master/LICENSE"
},
"name": "cc-license-chooser",
"slack": "cc-dev-license-chooser",
"technologies": [
"JavaScript",
"Python"
],
"url": "https://github.com/creativecommons/cc-license-chooser",
"website": ""
},
{
"created": "2020-06-03T18:51:38",
"description": "New license infrastructure for Creative Commons",
"id": 269169080,
"language": null,
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc-licenses/blob/master/LICENSE"
},
"name": "cc-licenses",
"slack": "",
"url": "https://github.com/creativecommons/cc-licenses",
"website": null
},
{
"created": "2019-06-12T18:15:54",
"description": "Automated link checker for legalcode and license URLs",
"engineering_project": true,
"english_name": "Creative Commons Link Checker",
"featured": false,
"id": 191622826,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc-link-checker/blob/master/LICENSE"
},
"name": "cc-link-checker",
"slack": "cc-dev-linkchecker",
"technologies": [
"Python"
],
"url": "https://github.com/creativecommons/cc-link-checker",
"website": null
},
{
"created": "2014-01-08T18:49:45",
"description": "Collection of resources on CC tools and other open topics",
"engineering_project": true,
"featured": false,
"id": 15744672,
"language": null,
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc-resource-archive/blob/master/LICENSE"
},
"name": "cc-resource-archive",
"slack": "",
"url": "https://github.com/creativecommons/cc-resource-archive",
"website": "http://resources.creativecommons.org/"
},
{
"created": "2015-07-15T18:24:37",
"description": "WordPress theme used on creativecommons.org",
"engineering_project": true,
"featured": false,
"id": 39153629,
"language": "Hack",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/cc-wp-theme/blob/master/LICENSE"
},
"name": "cc-wp-theme",
"slack": "",
"url": "https://github.com/creativecommons/cc-wp-theme",
"website": ""
},
{
"created": "2013-12-02T21:01:41",
"description": "Legacy API to integrate the Creative Commons licensing engine into third party applications",
"engineering_project": true,
"featured": false,
"id": 14874742,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc.api/blob/master/LICENSE"
},
"name": "cc.api",
"slack": "",
"url": "https://github.com/creativecommons/cc.api",
"website": "https://api.creativecommons.org/docs/"
},
{
"created": "2013-09-13T22:18:08",
"description": "Python app that runs part of the license engine on CC's website",
"engineering_project": true,
"english_name": "cc.engine",
"featured": false,
"id": 12820583,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc.engine/blob/master/LICENSE"
},
"name": "cc.engine",
"slack": "",
"technologies": [
"Python"
],
"url": "https://github.com/creativecommons/cc.engine",
"website": "https://creativecommons.org/licenses/"
},
{
"created": "2013-10-24T00:14:55",
"description": "Localization data for CC's deeds and license chooser",
"engineering_project": true,
"featured": false,
"id": 13818463,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc.i18n/blob/master/LICENSE"
},
"name": "cc.i18n",
"slack": "",
"url": "https://github.com/creativecommons/cc.i18n",
"website": ""
},
{
"created": "2013-10-24T00:12:07",
"description": "Python app that runs part of the license engine on CC's website",
"engineering_project": true,
"featured": false,
"id": 13818396,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc.license/blob/master/LICENSE"
},
"name": "cc.license",
"slack": "",
"url": "https://github.com/creativecommons/cc.license",
"website": "https://creativecommons.org/licenses/"
},
{
"created": "2013-09-15T21:56:33",
"description": "RDF describing Creative Commons licenses",
"engineering_project": true,
"featured": false,
"id": 12853322,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cc.licenserdf/blob/master/LICENSE"
},
"name": "cc.licenserdf",
"slack": "",
"url": "https://github.com/creativecommons/cc.licenserdf",
"website": "https://creativecommons.org/ns"
},
{
"created": "2017-07-12T18:01:30",
"description": "Mapping the commons towards an open ledger and cc search.",
"engineering_project": true,
"english_name": "CC Catalog",
"featured": false,
"id": 97037973,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cccatalog/blob/master/LICENSE"
},
"name": "cccatalog",
"slack": "cc-dev-catalog",
"technologies": [
"Python",
"Apache Spark"
],
"url": "https://github.com/creativecommons/cccatalog",
"website": ""
},
{
"created": "2018-04-27T20:50:37",
"description": "The Creative Commons Catalog API allows programmatic access to search for CC-licensed and public domain digital media.",
"engineering_project": true,
"english_name": "CC Catalog API",
"featured": true,
"id": 131343685,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cccatalog-api/blob/master/LICENSE"
},
"name": "cccatalog-api",
"slack": "",
"technologies": [
"Python",
"Django",
"Django REST Framework",
"Elasticsearch"
],
"url": "https://github.com/creativecommons/cccatalog-api",
"website": "https://api.creativecommons.engineering/"
},
{
"created": "2018-04-27T21:32:44",
"description": "Data visualizations of CC-licensed works across the internet.",
"engineering_project": true,
"featured": false,
"id": 131346835,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cccatalog-dataviz/blob/master/LICENSE"
},
"name": "cccatalog-dataviz",
"slack": "cc-dev-cc-catalog-viz",
"url": "https://github.com/creativecommons/cccatalog-dataviz",
"website": "http://dataviz.creativecommons.engineering/"
},
{
"created": "2018-07-06T00:51:38",
"description": "CC Search is a search tool for CC-licensed and public domain content across the internet.",
"engineering_project": true,
"english_name": "CC Search",
"featured": true,
"id": 139915408,
"language": "JavaScript",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/cccatalog-frontend/blob/develop/LICENSE"
},
"name": "cccatalog-frontend",
"slack": "cc-search",
"technologies": [
"JavaScript",
"Vue.js"
],
"url": "https://github.com/creativecommons/cccatalog-frontend",
"website": "https://search.creativecommons.org"
},
{
"created": "2014-10-06T22:07:52",
"description": "RubyCAS customizations for CCID (Creative Commons ID)",
"engineering_project": true,
"featured": false,
"id": 24866852,
"language": "HTML",
"license": {
"name": "Other",
"url": "https://github.com/creativecommons/CCID-cas/blob/master/LICENSE.md"
},
"name": "CCID-cas",
"slack": "",
"url": "https://github.com/creativecommons/CCID-cas",
"website": "https://login.creativecommons.org/"
},
{
"created": "2019-04-16T18:57:41",
"description": "Script to add CCID users to MediaWiki",
"engineering_project": true,
"featured": false,
"id": 181749129,
"language": "PHP",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/CCID-MediaWiki/blob/master/LICENSE"
},
"name": "CCID-MediaWiki",
"slack": "",
"url": "https://github.com/creativecommons/CCID-MediaWiki",
"website": null
},
{
"created": "2020-02-06T17:06:09",
"description": "Scripts used to maintain various pieces of CC's open source presence.",
"engineering_project": true,
"english_name": "CC Open Source scripts",
"featured": false,
"id": 238740831,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/ccos-scripts/blob/master/LICENSE"
},
"name": "ccos-scripts",
"slack": "",
"technologies": [
"Python"
],
"url": "https://github.com/creativecommons/ccos-scripts",
"website": null
},
{
"created": "2013-10-24T00:12:36",
"description": "A guide to using the Creative Commons Rights Expression Language (CC REL)",
"engineering_project": true,
"featured": false,
"id": 13818410,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/ccrel-guide/blob/master/LICENSE"
},
"name": "ccrel-guide",
"slack": "",
"url": "https://github.com/creativecommons/ccrel-guide",
"website": "http://labs.creativecommons.org/2011/ccrel-guide/"
},
{
"created": "2019-05-24T17:14:10",
"description": "Cross-Browser extension to search, filter and use images in the public domain and under Creative Commons licenses.",
"engineering_project": true,
"featured": false,
"id": 188460712,
"language": "JavaScript",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/ccsearch-browser-extension/blob/master/LICENSE"
},
"name": "ccsearch-browser-extension",
"slack": "cc-dev-browser-extension",
"url": "https://github.com/creativecommons/ccsearch-browser-extension",
"website": "https://opensource.creativecommons.org/ccsearch-browser-extension/"
},
{
"created": "2018-04-10T22:44:46",
"description": "Theme for CC Certificates website landing page",
"engineering_project": true,
"featured": false,
"id": 129003332,
"language": "CSS",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/certificates-landing-page-theme/blob/master/LICENSE"
},
"name": "certificates-landing-page-theme",
"slack": "",
"url": "https://github.com/creativecommons/certificates-landing-page-theme",
"website": "http://certificates.creativecommons.org/"
},
{
"created": "2016-06-14T16:37:49",
"description": "Themes and plugins for the Certificates WP site.",
"engineering_project": true,
"featured": false,
"id": 61139108,
"language": "CSS",
"license": {
"name": "Other",
"url": "https://github.com/creativecommons/certificates-themes-plugins/blob/master/LICENSE.txt"
},
"name": "certificates-themes-plugins",
"slack": "",
"url": "https://github.com/creativecommons/certificates-themes-plugins",
"website": "http://certificates.creativecommons.org/"
},
{
"created": "2019-05-22T22:36:52",
"description": "[WIP] The new and improved CC license selection tool.",
"engineering_project": true,
"english_name": "CC Chooser",
"featured": false,
"id": 188122843,
"language": "JavaScript",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/chooser/blob/master/LICENSE"
},
"name": "chooser",
"slack": "",
"technologies": [
"HTML",
"CSS",
"JS",
"Bulma",
"Vue",
"Jest"
],
"url": "https://github.com/creativecommons/chooser",
"website": "https://chooser-beta.creativecommons.org/"
},
{
"created": "2017-07-05T23:39:19",
"description": "Creative Commons Global Network website",
"engineering_project": true,
"english_name": "Creative Commons Global Network website",
"featured": false,
"id": 96369702,
"language": "PHP",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/commoners/blob/master/LICENSE"
},
"name": "commoners",
"slack": "",
"technologies": [
"PHP",
"WordPress"
],
"url": "https://github.com/creativecommons/commoners",
"website": "https://network.creativecommons.org/"
},
{
"created": "2015-04-15T16:10:58",
"description": "Static files for CC Open Source website. \u26a0 DO NOT MODIFY THIS REPOSITORY! To edit, use the creativecommons.github.io-source repository.",
"id": 34004720,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/creativecommons.github.io/blob/master/LICENSE"
},
"name": "creativecommons.github.io",
"slack": "",
"url": "https://github.com/creativecommons/creativecommons.github.io",
"website": "https://opensource.creativecommons.org"
},
{
"created": "2019-01-27T02:29:18",
"description": "Source files for CC Open Source website",
"engineering_project": true,
"featured": false,
"id": 167761414,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/creativecommons.github.io-source/blob/master/LICENSE"
},
"name": "creativecommons.github.io-source",
"slack": "",
"url": "https://github.com/creativecommons/creativecommons.github.io-source",
"website": "https://opensource.creativecommons.org/"
},
{
"created": "2013-10-31T00:19:22",
"description": "Website parent project, legalcode and translations, and GitHub Issues for public help and support",
"engineering_project": true,
"english_name": "License chooser and license display code",
"featured": false,
"id": 14003491,
"language": "HTML",
"license": {
"name": "Other",
"url": "https://github.com/creativecommons/creativecommons.org/blob/master/LICENSE"
},
"name": "creativecommons.org",
"slack": "",
"technologies": [
"Python",
"bash"
],
"url": "https://github.com/creativecommons/creativecommons.org",
"website": "https://creativecommons.org/"
},
{
"created": "2015-12-14T23:19:08",
"description": "Creative Commons FAQ page",
"engineering_project": true,
"featured": false,
"id": 48007106,
"language": "HTML",
"license": {
"name": "Other",
"url": "https://github.com/creativecommons/faq/blob/master/LICENSE"
},
"name": "faq",
"slack": "",
"url": "https://github.com/creativecommons/faq",
"website": "https://creativecommons.org/faq/"
},
{
"created": "2019-11-25T17:30:19",
"description": "A collection of typefaces for the web facing Creative Commons",
"engineering_project": true,
"english_name": "CC Fonts",
"featured": false,
"id": 224004973,
"language": "JavaScript",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/fonts/blob/master/LICENSE"
},
"name": "fonts",
"slack": "cc-dev-vocabulary",
"technologies": [
"Fonts"
],
"url": "https://github.com/creativecommons/fonts",
"website": "https://cc-fonts.netlify.app/"
},
{
"created": "2020-04-24T14:53:52",
"description": "A polite image crawler that can thumbnail and extract metadata from images at scale",
"engineering_project": true,
"english_name": "Image Crawler",
"featured": false,
"id": 258541870,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/image-crawler/blob/master/LICENSE"
},
"name": "image-crawler",
"slack": "",
"technologies": [
"Python",
"asyncio"
],
"url": "https://github.com/creativecommons/image-crawler",
"website": null
},
{
"created": "2014-12-08T20:16:04",
"description": "(Deprecated) Tech Team blog",
"engineering_project": true,
"featured": false,
"id": 27733017,
"language": null,
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/labs/blob/master/LICENSE"
},
"name": "labs",
"slack": "",
"url": "https://github.com/creativecommons/labs",
"website": ""
},
{
"created": "2013-10-28T02:42:48",
"description": "Creative Commons badges, license Buttons, etc.",
"engineering_project": true,
"featured": false,
"id": 13915207,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/licensebuttons/blob/master/LICENSE"
},
"name": "licensebuttons",
"slack": "",
"url": "https://github.com/creativecommons/licensebuttons",
"website": "https://licensebuttons.net/"
},
{
"created": "2014-11-17T21:58:08",
"description": "Helper tool for staging CC license legalcode translations before they are officially published",
"engineering_project": true,
"featured": false,
"id": 26779255,
"language": "HTML",
"license": {
"name": "Other",
"url": "https://github.com/creativecommons/magical-pony/blob/master/COPYING"
},
"name": "magical-pony",
"slack": "",
"url": "https://github.com/creativecommons/magical-pony",
"website": ""
},
{
"created": "2015-12-02T22:10:12",
"description": "Documentation for CC integration into user-generated content platforms",
"engineering_project": true,
"featured": false,
"id": 47291677,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/mp/blob/master/LICENSE"
},
"name": "mp",
"slack": "",
"url": "https://github.com/creativecommons/mp",
"website": "https://creativecommons.org/platform/toolkit/"
},
{
"created": "2016-05-19T18:07:31",
"description": "Primary Creative Commons website",
"engineering_project": true,
"featured": false,
"id": 59230362,
"language": "PHP",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/new-creativecommons.org/blob/master/LICENSE"
},
"name": "new-creativecommons.org",
"slack": "",
"url": "https://github.com/creativecommons/new-creativecommons.org",
"website": "https://creativecommons.org/"
},
{
"created": "2016-05-19T18:06:55",
"description": "creativecommons.org various custom plugins for content types, mostly",
"engineering_project": true,
"featured": false,
"id": 59230319,
"language": "PHP",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/new-www-plugin/blob/master/LICENSE"
},
"name": "new-www-plugin",
"slack": "",
"url": "https://github.com/creativecommons/new-www-plugin",
"website": "https://github.com/creativecommons/new-creativecommons.org"
},
{
"created": "2016-05-19T18:06:05",
"description": "creativecommons.org theme, to make it look lovely",
"engineering_project": true,
"featured": false,
"id": 59230280,
"language": "CSS",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/new-www-theme/blob/master/LICENSE"
},
"name": "new-www-theme",
"slack": "",
"url": "https://github.com/creativecommons/new-www-theme",
"website": "https://github.com/creativecommons/new-creativecommons.org"
},
{
"created": "2013-12-05T07:09:43",
"description": "open4us.org website",
"engineering_project": true,
"featured": false,
"id": 14946646,
"language": "PHP",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/open4us.org/blob/master/LICENSE"
},
"name": "open4us.org",
"slack": "",
"url": "https://github.com/creativecommons/open4us.org",
"website": "https://open4us.org/"
},
{
"created": "2014-02-24T19:46:28",
"description": "OPN Website",
"engineering_project": true,
"featured": false,
"id": 17148371,
"language": "PHP",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/openpolicynetwork.org/blob/master/LICENSE"
},
"name": "openpolicynetwork.org",
"slack": "",
"url": "https://github.com/creativecommons/openpolicynetwork.org",
"website": "https://openpolicynetwork.org/"
},
{
"created": "2020-08-21T15:34:37",
"description": "Build creativecommons.org primary site includes (scripts, styles, navigation header, and navigation footer) based on WordPress REST API",
"engineering_project": true,
"english_name": "Primary Site Includes",
"featured": false,
"id": 289304439,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/primary-site-includes/blob/master/LICENSE"
},
"name": "primary-site-includes",
"slack": "",
"technologies": [
"Python"
],
"url": "https://github.com/creativecommons/primary-site-includes",
"website": ""
},
{
"created": "2013-12-02T20:59:52",
"description": "",
"id": 14874571,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/rdfadict/blob/master/LICENSE"
},
"name": "rdfadict",
"slack": "",
"url": "https://github.com/creativecommons/rdfadict",
"website": null
},
{
"created": "2018-03-22T19:04:09",
"description": "International reversionary rights resources site.",
"engineering_project": true,
"featured": false,
"id": 126382845,
"language": "HTML",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/reversionary-rights/blob/master/LICENSE"
},
"name": "reversionary-rights",
"slack": "",
"url": "https://github.com/creativecommons/reversionary-rights",
"website": null
},
{
"created": "2015-07-23T21:30:47",
"description": "Rails plugin for the RubyCAS-Client",
"engineering_project": true,
"featured": false,
"id": 39594110,
"language": "Ruby",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/rubycas-client-rails/blob/master/MIT-LICENSE"
},
"name": "rubycas-client-rails",
"slack": "",
"url": "https://github.com/creativecommons/rubycas-client-rails",
"website": ""
},
{
"created": "2016-07-29T23:14:42",
"description": "The scholars addenda system.",
"engineering_project": true,
"featured": false,
"id": 64515519,
"language": "Python",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/scholars-addenda/blob/master/LICENSE"
},
"name": "scholars-addenda",
"slack": "",
"url": "https://github.com/creativecommons/scholars-addenda",
"website": "https://labs.creativecommons.org/scholars/"
},
{
"created": "2013-10-24T00:19:27",
"description": "Legacy Creative Commons Search, no longer under development",
"engineering_project": true,
"english_name": "CC Search (Legacy)",
"featured": false,
"id": 13818557,
"language": "CSS",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/search/blob/master/LICENSE"
},
"name": "search",
"slack": "",
"technologies": [
"PHP",
"WordPress"
],
"url": "https://github.com/creativecommons/search",
"website": "https://oldsearch.creativecommons.org/"
},
{
"created": "2018-11-20T21:50:33",
"description": "Site Reliability Engineering / DevOps SaltStack configuration files",
"engineering_project": true,
"english_name": "Creative Commons SaltStack",
"featured": false,
"id": 158455678,
"language": "SaltStack",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/sre-salt-prime/blob/master/LICENSE"
},
"name": "sre-salt-prime",
"slack": "",
"technologies": [
"Python",
"SaltStack"
],
"url": "https://github.com/creativecommons/sre-salt-prime",
"website": ""
},
{
"created": "2019-06-19T20:08:40",
"description": "Creative Commons Site Reliability Engineering WordPress Data Pull",
"engineering_project": true,
"english_name": "Creative Commons Site Reliability Engineering WordPress Data Pull",
"featured": false,
"id": 192797615,
"language": "Shell",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/sre-wp-pull/blob/master/LICENSE"
},
"name": "sre-wp-pull",
"slack": "",
"technologies": [
"Bash",
"WordPress"
],
"url": "https://github.com/creativecommons/sre-wp-pull",
"website": ""
},
{
"created": "2015-03-03T19:48:55",
"description": "Profiles of exemplary workforce training programs supported by the U.S. Department of Labor TAACCCT program.",
"engineering_project": true,
"featured": false,
"id": 31617803,
"language": "JavaScript",
"license": {
"name": "Creative Commons Attribution 4.0 International",
"url": "https://github.com/creativecommons/taaccct/blob/gh-pages/LICENSE"
},
"name": "taaccct",
"slack": "",
"url": "https://github.com/creativecommons/taaccct",
"website": "http://profiles.open4us.org/taaccct/"
},
{
"created": "2013-09-06T23:57:48",
"description": "Collection of stories documenting the power of open licensing",
"engineering_project": true,
"featured": false,
"id": 12657067,
"language": null,
"license": {
"name": "Creative Commons Attribution 4.0 International",
"url": "https://github.com/creativecommons/team-open/blob/master/LICENSE"
},
"name": "team-open",
"slack": "",
"url": "https://github.com/creativecommons/team-open",
"website": "http://teamopen.cc/"
},
{
"created": "2015-11-24T16:21:12",
"description": "Termination of Transfer tool",
"engineering_project": true,
"featured": false,
"id": 46803674,
"language": "JavaScript",
"license": {
"name": "GNU Affero General Public License v3.0",
"url": "https://github.com/creativecommons/termination-of-transfer/blob/master/LICENSE"
},
"name": "termination-of-transfer",
"slack": "",
"url": "https://github.com/creativecommons/termination-of-transfer",
"website": null
},
{
"created": "2019-11-25T17:29:13",
"description": "A cohesive design system to unify the web facing Creative Commons",
"engineering_project": true,
"english_name": "CC Vocabulary",
"featured": true,
"id": 224004769,
"language": "CSS",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/vocabulary/blob/master/LICENSE"
},
"name": "vocabulary",
"slack": "cc-dev-vocabulary",
"technologies": [
"Sass",
"Webpack",
"Storybook",
"Bulma"
],
"url": "https://github.com/creativecommons/vocabulary",
"website": "https://cc-vocabulary.netlify.app/"
},
{
"created": "2019-05-24T16:49:48",
"description": "A Vue component library implementing a cohesive design system to unite the web facing Creative Commons",
"engineering_project": true,
"english_name": "CC Vocabulary",
"featured": false,
"id": 188457696,
"language": "JavaScript",
"license": {
"name": "MIT License",
"url": "https://github.com/creativecommons/vue-vocabulary/blob/master/LICENSE"
},
"name": "vue-vocabulary",
"slack": "cc-dev-vocabulary",
"technologies": [
"JavaScript",
"Vue",
"Webpack",
"Babel",
"Stylus",
"Styleguidist",
"Theo"
],
"url": "https://github.com/creativecommons/vue-vocabulary",
"website": "https://cc-vue-vocabulary.netlify.app/"
},
{
"created": "2014-07-28T15:18:18",
"description": "Official Creative Commons plugin for licensing your content. With Creative Commons licenses, keep your copyright AND share your creativity.",
"engineering_project": true,
"featured": false,
"id": 22347352,
"language": "PHP",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/wp-plugin-creativecommons/blob/master/license.txt"
},
"name": "wp-plugin-creativecommons",
"slack": "",
"url": "https://github.com/creativecommons/wp-plugin-creativecommons",
"website": "https://wordpress.org/plugins/creative-commons/"
},
{
"created": "2019-12-06T19:44:21",
"description": "New base WordPress theme for Creative Commons websites",
"id": 226397839,
"language": "PHP",
"license": null,
"name": "wp-theme-base",
"slack": "",
"url": "https://github.com/creativecommons/wp-theme-base",
"website": null
},
{
"created": "2019-02-11T15:51:29",
"description": "Creative Commons Chapter site theme (including chapter sites setup, taxonomies, and widget code)",
"engineering_project": true,
"featured": false,
"id": 170156150,
"language": "CSS",
"license": {
"name": "GNU General Public License v2.0",
"url": "https://github.com/creativecommons/wp-theme-cc-chapter/blob/master/LICENSE"
},
"name": "wp-theme-cc-chapter",
"slack": "",
"url": "https://github.com/creativecommons/wp-theme-cc-chapter",
"website": ""