-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
9228 lines (9223 loc) · 770 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Web Sustainability Guidelines (WSG)</title>
<style>
/* Fix for Small Screen Overflow Issue: https://github.com/w3c/sustyweb/issues/18 */
@media screen and (max-width: 550px) { #title { margin-top: 4em; } }
/* Fix for Definition Cross-Linking Usage In: https://github.com/w3c/sustyweb/issues/21 */
.hidden { display: none; visibility: hidden; }
/* Fix for Visited Link Issue: https://github.com/w3c/sustyweb/issues/26 */
.resources a:visited:not(.bibref) { color: #717171; }
/* Fix for Testability Highlight Color Palette: https://github.com/w3c/sustyweb/issues/29 */
.alert { background-color: #ff9fae; }
/* Fix for Specification Readability: https://github.com/w3c/sustyweb/issues/92 */
.credit { font-size: small; }
.summary pre { background-color: #fafafa;}
.summary .subtitle { margin-top: 2.5em; }
.summary .rating, .summary .reporting { align-items: center; display: flex; flex-wrap: wrap; row-gap: 1em; }
.summary .rating dd { margin: 0; } .summary .rating dt { width: 83px; }
.summary .rating dt ~ dt { width: 53px; } .summary .rating dd { flex-basis: calc(50% - 83px); }
.summary .rating dd ~ dd { flex-basis: calc(50% - 53px); }
.summary .reporting dt { width: 85px; } .summary .reporting dd { flex-basis: calc(50% - 85px); margin: 0; }
@media screen and (max-width: 500px) {
.summary .rating dd { flex-basis: calc(100% - 83px); }
.summary .reporting dd { flex-basis: calc(100% - 85px); margin: 0; }
.summary .reporting dd { flex-basis: calc(100% - 85px); } }
/* Fix for Printing The Specification: https://github.com/w3c/sustyweb/issues/92 */
@media print { section section:last-child h4, section section:last-child .self-link, section section:last-child summary, .summary, .pageButtons, #toc { display: none !important; } .full-document #toc { display: block !important; } body { margin-left: 1.6em !important; padding-left: 1.6em !important; } }
/* Fix for Showcasing Plain English Summaries: https://github.com/w3c/sustyweb/issues/114 */
summary { cursor: pointer; }
.summary { background-color: #F3F3F3; border: medium solid #d9d9d9; padding: 1em; }
/** Multipage Document: https://github.com/w3c/sustainableweb-wsg/issues/14#issuecomment-2662164386 */
@media (scripting: enabled) {
.hide { display: inherit !important; height: 1px; left: -1000px; overflow: hidden; position: absolute; top: -1px; width: 1px; }
.show { height: auto; left: auto; overflow: unset; position: static; top: auto; width: auto; } }
.pageButtons { margin-top: 2em; padding-left: 0; }
.pageButtons, .pageButtons li, .pageButtons tbody { display: flex; flex: 1; gap: 10px; }
.pageButtons a { align-items: center; border: medium solid #d9d9d9; background-color: #F3F3F3; display: flex; font-weight: bold; flex: 1; padding: 0.5em 1em; }
.previousPage { justify-content: left; } .fullDocument { justify-content: center; } .nextPage { justify-content: right; text-align: right; }
@media (scripting: none) {
@media print { #toc { display: none !important; } }
.pageButtons { display: none;}
.hide { display: block !important; height: auto; left: auto; overflow: unset; position: static; top: auto; width: auto; } }
</style>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer>
</script>
<script>
function addChairs() {
document.querySelectorAll("div.head dt").forEach(function (node) {
if (node.textContent.trim() == "Authors:")
node.textContent = "Chairs:";
});
}
function fixContributors() {
document.querySelectorAll("#gh-contributors li a").forEach(function (node) {
if (node.textContent.indexOf("[bot]") > 0)
node.parentElement.parentElement.removeChild(node.parentElement);
});
}
// ReSpec Multipage: https://w3c.github.io/sustainableweb-ig/multipage.html
function addMultipage() {
window.addEventListener('hashchange', onHashChange);
onHashChange(); }
window.addEventListener("load", (event) => {
addMultipage(); });
function hashSection(hash) {
let arrayGrab = Array.from(document.querySelectorAll(hash));
let mapID = arrayGrab.map(el => el.getAttribute('id'));
let filtered = mapID.filter(function (el) { return el != null; });
return filtered; }
function onHashChange() {
let current = window.location.hash.substring(1);
let sections = hashSection('body > section');
// Assign your document sections here (to search for IDs)
let introduction = hashSection('#introduction *');
let ux = hashSection('#user-experience-design *');
let webdev = hashSection('#web-development *');
let infra = hashSection('#hosting-infrastructure-and-systems *');
let biz = hashSection('#business-strategy-and-product-management *');
let glossary = hashSection('#glossary *');
let credits = hashSection('#acknowledgments section');
let changelog = hashSection('#changelog section');
let refs = hashSection('#references section');
let all = sections.concat(sections, introduction, ux, webdev, infra, biz, glossary, credits, changelog, refs);
if (document.body.classList.contains('full-document')) {
document.body.classList.remove('full-document'); }
if (current) {
for (const value of sections) {
for (const value of sections) {
if ( value != current ) {
document.getElementById(value).classList.remove('show');
document.getElementById(value).classList.add('hide'); } else {
document.getElementById(value).classList.remove('hide');
document.getElementById(value).classList.add('show'); }}
if (current == "abstract" || current == "sotd") { header(); }
for (const value of refs) {
if ( value != current && document.getElementById('references').querySelector('.pageButtons') == null ) {
document.getElementById('references').innerHTML = document.getElementById('references').innerHTML + `<ol class="pageButtons">
<li><a class="previousPage" href="#changelog">Previous page<br>Changelog</a></li>
<li><a class="fullDocument" href="#full-document">Full document</a></li>
<li>
</ol>`; } }
if (current == "full-document") {
document.body.classList.add("full-document");
for (const value of sections) {
document.getElementById(value).classList.remove('hide');
document.getElementById(value).classList.add('show'); }
document.querySelectorAll('.pageButtons').forEach(e => e.classList.remove('show'));
document.querySelectorAll('.pageButtons').forEach(e => e.classList.add('hide'));
window.scrollTo(0, 0); } else {
document.querySelectorAll('.pageButtons').forEach(e => e.classList.remove('hide'));
document.querySelectorAll('.pageButtons').forEach(e => e.classList.add('show')); }
let check = false;
for (const value of all) {
if (current == value && check == false ) { check = true; } }
if (check == false) { header(); } }
// Assign your headings here to do the above for more than just the main sections
heading(introduction,"introduction");
heading(ux,"user-experience-design");
heading(webdev,"web-development");
heading(infra,"hosting-infrastructure-and-systems");
heading(biz,"business-strategy-and-product-management");
heading(glossary,"glossary");
heading(credits,"acknowledgments");
heading(changelog,"changelog");
heading(refs,"references"); } else {
for (const value of sections) {
document.getElementById(value).classList.remove('show');
document.getElementById(value).classList.add('hide'); }
header(); }
for (const value of all) {
if (window.location.hash && window.location.hash !="#full-document" && value == current){
document.getElementById(window.location.hash.substring(1)).scrollIntoView(); } } }
function heading(hash, string) {
let current = window.location.hash.substring(1);
let sections = hashSection('body > section');
if (hash.includes(current)) {
for (const value of sections) {
if (value == string) {
document.getElementById(value).classList.remove('hide');
document.getElementById(value).classList.add('show'); } else {
document.getElementById(value).classList.remove('show');
document.getElementById(value).classList.add('hide'); } } }
location.hash = "#" + current; }
function header() {
document.getElementById("abstract").classList.remove('hide');
document.getElementById("sotd").classList.remove('hide');
document.getElementById("abstract").classList.add('show');
document.getElementById("sotd").classList.add('show');
buttons("sotd"); window.scrollTo(0, 0);
if (window.location.hash != "#full-document") {
document.querySelectorAll('.pageButtons').forEach(e => e.classList.remove('hide'));
document.querySelectorAll('.pageButtons').forEach(e => e.classList.add('show')); } }
function buttons(id) {
var d = document.querySelector('#' + id + ' ol');
d.parentNode.appendChild(d); }
</script>
<script class="remove">
var respecConfig = {
editors: [
{
name: "Alexander Dawson",
url: "https://alexanderdawson.com/",
w3cid: 49702,
},
],
authors: [
{
name: "Ines Akrap",
url: "https://inesakrap.com/",
company: "Storyblok",
},
{
name: "Mike Gifford",
url: "https://civicactions.com/",
company: "CivicActions",
},
{
name: "Tim Frick",
url: "https://www.mightybytes.com/",
company: "Mightybytes",
w3cid: 62394,
},
],
github: "https://github.com/w3c/sustainableweb-wsg",
group: "sustainableweb",
latestVersion: "https://w3c.github.io/sustainableweb-wsg/",
localBiblio: {
"1Planet": {
title: "1% For The Planet",
href: "https://www.onepercentfortheplanet.org/",
status: "Informational",
publisher: "1% for the Planet",
},
"ADS": {
title: "Ads.Txt - Authorized Digital Sellers",
date: "01 August 2022",
href: "https://iabtechlab.com/ads-txt/",
status: "Informational",
publisher: "IAB technology Lab",
},
"ADVERT": {
title: "Environmental impact assessment of online advertising",
date: "19 September 2018",
href: "https://www.sciencedirect.com/science/article/pii/S0195925517303505",
status: "Informational",
publisher: "M. Pärssinen, M. Kotila, R. Cuevas, A. Phansalkar, and J. Manner",
},
"AFNOR": {
title: "AFNOR SPEC 2201",
date: "01 April 2022",
href: "https://www.boutique.afnor.org/en-gb/standard/afnor-spec-2201//fa203506/323315",
status: "Informational",
publisher: "AFNOR",
},
"AISDG": {
title: "The role of artificial intelligence in achieving the Sustainable Development Goals",
date: "13 January 2020",
href: "https://www.nature.com/articles/s41467-019-14108-y",
status: "Informational",
publisher: "Ricardo Vinuesa, Hossein Azizpour, Iolanda Leite, Madeline Balaam, Virginia Dignum, Sami Domisch, Anna Felländer, Simone Daniela Langhans, Max Tegmark, and Francesco Fuso Nerini",
},
"ALMANAC": {
title: "Web Almanac: Sustainability",
date: "26 Sepember 2022",
href: "https://almanac.httparchive.org/en/2022/sustainability",
status: "Informational",
publisher: "HTTP Archive",
},
"ANGEL": {
title: "Blue Angel",
href: "https://www.blauer-engel.de/en",
status: "Informational",
publisher: "Blue Angel",
},
"ASDP": {
title: "Activating sustainability in the design process",
date: "13 August 2024",
href: "https://www.degruyter.com/document/doi/10.1515/icom-2024-0037/html?lang=en",
status: "Informational",
publisher: "Andrea Miquel",
},
"BATLED": {
title: "How much battery does dark mode save?: an accurate OLED display power profiler for modern smartphones",
date: "24 June 2021",
href: "https://dl.acm.org/doi/10.1145/3458864.3467682",
status: "Informational",
publisher: "Pranab Dash and Y. Charlie Hu",
},
"BCORP-C": {
title: "B Corperation Certification",
href: "https://www.bcorporation.net/en-us/certification/",
status: "Informational",
publisher: "B Lab",
},
"BCORP-I": {
title: "Improving your BIA score",
href: "https://bcorporation.uk/b-corp-certification/the-certification-process/improving-your-score/",
status: "Informational",
publisher: "B Lab",
},
"BCORP-S": {
title: "B Corperation Standards",
href: "https://www.bcorporation.net/en-us/standards/",
status: "Informational",
publisher: "B Lab",
},
"BITCOIN": {
title: "The Sustainability of Bitcoin and its Impact on the Environment",
date: "17 January 2023",
href: "https://grc.studentorg.berkeley.edu/the-sustainability-of-bitcoin-and-its-impact-on-the-environment/",
status: "Informational",
publisher: "Eunice Rho",
},
"CAC": {
title: "Carbon accounting in the Cloud",
date: "01 June 2024",
href: "https://arxiv.org/pdf/2406.09645",
status: "Informational",
publisher: "Ian Schneider and Taylor Mattia",
},
"CACHE": {
title: "A Web Caching Primer",
date: "01 Sepember 2001",
href: "https://www.researchgate.net/publication/2570397_A_Web_Caching_Primer",
status: "Informational",
publisher: "Brian Davison",
},
"CARBON": {
title: "Carbon.txt - Green Infrastructure Verification",
date: "27 May 2023",
href: "https://carbontxt.org/",
status: "Informational",
publisher: "Green Web Foundation",
},
"CCEEDC": {
title: "Code of Conduct for Energy Efficiency in Data Centres",
date: "01 January 2023",
href: "https://joint-research-centre.ec.europa.eu/document/download/0549a8bc-02da-4b05-896d-4728a4a54ab4_en?filename=Brochure",
status: "Informational",
publisher: "Mark Acton, Paolo Bertoldi and John Booth",
},
"CCPA": {
title: "California Consumer Privacy Act",
date: "10 May 2023",
href: "https://oag.ca.gov/privacy/ccpa",
status: "Informational",
publisher: "State of California Department of Justice",
},
"CDP": {
title: "CDP",
href: "https://www.cdp.net/en",
status: "Informational",
publisher: "CDP Worldwide",
},
"CEE": {
title: "Equations relating total annual energy consumption and chips energy efficiency",
date: "28 June 2023",
href: "https://www.researchgate.net/publication/371938289_Equations_relating_total_annual_energy_consumption_and_chips_energy_efficiency",
status: "Informational",
publisher: "Anders S.G. Andrae",
},
"CEIUE": {
title: "Carbon Emission Implications of ICT Re-use at the University of Edinburgh",
date: "01 July 2016",
href: "https://www.ed.ac.uk/files/atoms/files/pc-carbonfootprints-jh-ecci2.pdf",
status: "Informational",
publisher: "Jim Hart",
},
"CIWS": {
title: "The Carbon Impact of Web Standards",
date: "22 January 2023",
href: "https://websitesustainability.com/cache/files/research23.pdf",
status: "Informational",
publisher: "Alexander Dawson",
},
"CLOUDDATA": {
title: "The Cloud Is Material",
date: "27 January 2022",
href: "https://mit-serc.pubpub.org/pub/the-cloud-is-material/release/1?readingCollection=b2d8aadb",
status: "Informational",
publisher: "Steven Gonzalez Monserrate",
},
"COMPETE": {
title: "Sustainability innovations and firm competitiveness",
date: "19 October 2020",
href: "https://www.sciencedirect.com/science/article/pii/S0959652620347594",
status: "Informational",
publisher: "Fanny Hermundsdottir and Arild Aspelund",
},
"CRITCSS": {
title: "On the Impact of the Critical CSS Technique on the Performance and Energy Consumption of Mobile Browsers",
date: "22 June 2022",
href: "https://www.ivanomalavolta.com/files/papers/EASE_2022_critical_css.pdf",
status: "Informational",
publisher: "Kalle Janssen, Tim Pelle, Lucas de Geus, Reinier van der Gronden, Tanjina Islam, and Ivano Malavolta",
},
"CRYPTO": {
title: "Cryptocurrency's Dirty Secret: Energy Consumption",
date: "04 May 2022",
href: "https://news.climate.columbia.edu/2022/05/04/cryptocurrency-energy/",
status: "Informational",
publisher: "Jeremy Hinsdale",
},
"CRYPTOBENCH": {
title: "3rd Global CryptoAsset Benchmarking Study",
date: "04 May 2022",
href: "https://www.jbs.cam.ac.uk/wp-content/uploads/2021/01/2021-ccaf-3rd-global-cryptoasset-benchmarking-study.pdf",
status: "Informational",
publisher: "Apolline Blandin, Gina Pieters, Yue Wu, Thomas Eisermann, Anton Dek, Sean Taylor, and Damaris Njoki",
},
"CTICT": {
title: "The real climate and transformative impact of ICT",
date: "10 September 2021",
href: "https://www.sciencedirect.com/science/article/pii/S2666389921001884",
status: "Informational",
publisher: "Charlotte Freitag, Mike Berners-Lee, Kelly Widdicks, Bran Knowles, Gordon S. Blair, Adrian Friday",
},
"CTML": {
title: "Carbontracker: Tracking and Predicting the Carbon Footprint of Training Deep Learning Models",
date: "06 July 2020",
href: "https://arxiv.org/abs/2007.03051",
status: "Informational",
publisher: "Lasse F. Wolff Anthony, Benjamin Kanding, and Raghavendra Selvan",
},
"CYBER": {
title: "The cyber-consciousness of environmental assessment",
date: "22 December 2021",
href: "https://iopscience.iop.org/article/10.1088/1748-9326/ac413b",
status: "Informational",
publisher: "John Mulrow, Manasi Gali, and Emily Grubert",
},
"DAMS": {
title: "Digital and metal study",
date: "01 November 2024",
href: "https://librairie.ademe.fr/economie-circulaire-et-dechets/7713-etude-numerique-et-metaux.html",
status: "Informational",
publisher: "French Republic",
},
"DC-T": {
title: "DCMI Metadata Terms",
date: "20 January 2020",
href: "https://www.dublincore.org/specifications/dublin-core/dcmi-terms/",
status: "Informational",
publisher: "Dublin Core Metadata Initiative",
},
"DDATA": {
title: "Exploring the sustainability challenges facing digitalization and internet data centers",
date: "15 October 2022",
href: "https://www.sciencedirect.com/science/article/pii/S0959652622032115",
status: "Informational",
publisher: "Dlzar Al Kez, Aoife M. Foley, David Laverty, Dylan Furszyfer Del Rio, and Benjamin Sovacool",
},
"DNC": {
title: "Does not compute: Avoiding pitfalls assessing the Internet's energy and carbon impacts",
date: "24 June 2021",
href: "https://www.cell.com/joule/fulltext/S2542-4351(21)00211-7",
status: "Informational",
publisher: "Jonathan Koomey and Eric Masanet",
},
"DSASCF": {
title: "Digital sustainability audits: a de facto standard for the Internet carbon footprint",
date: "08 June 2020",
href: "https://www.researchgate.net/publication/343041330_Digital_sustainability_audits_a_de_facto_standard_for_the_Internet_carbon_footprint",
status: "Informational",
publisher: "David Monras",
},
"DSMS": {
title: "Digitalization for sustainable maintenance services: A systematic literature review",
date: "25 June 2021",
href: "https://www.sciencedirect.com/science/article/pii/S2666954421000107",
status: "Informational",
publisher: "Bishal Raj Karki and Jari Porras",
},
"ECCCT": {
title: "Energy-efficient Cloud Computing Technologies and Policies for an Eco-friendly Cloud Market",
date: "09 November 2020",
href: "https://digital-strategy.ec.europa.eu/en/library/energy-efficient-cloud-computing-technologies-and-policies-eco-friendly-cloud-market",
status: "Informational",
publisher: "European Commission",
},
"ECAWA": {
title: "An empirical study on the performance and energy costs of ads and analytics in mobile web apps",
date: "23 November 2023",
href: "https://www.sciencedirect.com/science/article/pii/S0950584923002252",
status: "Informational",
publisher: "Christos Petalotis, Luka Krumpak, Maximilian Stefan Floroiu, Laréb Fatima Ahmad, Shashank Athreya, Ivano Malavolta",
},
"ECCRA": {
title: "EU Cyber Resilience Act",
date: "20 June 2023",
href: "https://digital-strategy.ec.europa.eu/en/policies/cyber-resilience-act",
status: "Informational",
publisher: "European Commission",
},
"ECDCBC": {
title: "Energy Consumption in Data Centres and Broadband Communication Networks in the EU",
date: "16 Febuary 2024",
href: "https://publications.jrc.ec.europa.eu/repository/handle/JRC135926",
status: "Informational",
publisher: "European Commission",
},
"ECDCEE": {
title: "2020 Best Practice Guidelines for the EU Code of Conduct on Data Centre Energy Efficiency",
date: "21 January 2020",
href: "https://e3p.jrc.ec.europa.eu/sites/default/files/2023-09/jrc119571_jrc119571_2020_best_practice_guidelines_v11.1.0a_br_ma_21_jan.pdf",
status: "Informational",
publisher: "European Commission",
},
"ECDF": {
title: "Shaping Europe's digital future",
date: "19 February 2020",
href: "https://commission.europa.eu/strategy-and-policy/priorities-2019-2024/europe-fit-digital-age/shaping-europes-digital-future_en",
status: "Informational",
publisher: "European Commission",
},
"ECGDS": {
title: "Green digital sector",
date: "22 February 2023",
href: "https://digital-strategy.ec.europa.eu/en/policies/green-digital",
status: "Informational",
publisher: "European Commission",
},
"ECODFR": {
title: "Ecoconception",
date: "16 December 2021",
href: "https://ecoresponsable.numerique.gouv.fr/docs/2021/formation-ecoconception-2021-12-16.pdf",
status: "Informational",
publisher: "French Republic",
},
"EDRP": {
title: "European Digital Rights and Principles",
date: "27 September 2023",
href: "https://digital-strategy.ec.europa.eu/en/policies/digital-principles",
status: "Informational",
publisher: "European Commission",
},
"EEA": {
title: "Europe's consumption in a circular economy: the benefits of longer-lasting electronics",
date: "18 June 2020",
href: "https://www.eea.europa.eu/publications/europe2019s-consumption-in-a-circular/benefits-of-longer-lasting-electronics",
status: "Informational",
publisher: "European Environment Agency",
},
"EEDCD": {
title: "Best Practices Guide for Energy-Efficient Data Center Design",
date: "01 July 2024",
href: "https://www.energy.gov/sites/default/files/2024-07/best-practice-guide-data-center-design.pdf",
status: "Informational",
publisher: "Federal Energy Management Program",
},
"EEG": {
title: "Electronics Goes Green",
date: "01 September 2020",
href: "https://online.electronicsgoesgreen.org/wp-content/uploads/2020/10/Proceedings_EGG2020_v2.pdf",
status: "Informational",
publisher: "Electronics Goes Green",
},
"EEF-ICT": {
title: "Measuring the Emissions & Energy Footprint of the ICT Sector",
date: "12 December 2023",
href: "https://documents1.worldbank.org/curated/en/099121223165540890/pdf/P17859712a98880541a4b71d57876048abb.pdf",
status: "Informational",
publisher: "The World Bank",
},
"EEI": {
title: "Investigating the Inconsistencies among Energy and Energy Intensity Estimates of the Internet",
date: "28 June 2021",
href: "https://www.aramis.admin.ch/Default?DocumentID=67656&Load=true",
status: "Informational",
publisher: "Vlad Coroamă",
},
"EFAI": {
title: "The growing energy footprint of artificial intelligence",
date: "10 October 2023",
href: "https://www.sciencedirect.com/science/article/pii/S2542435123003653",
status: "Informational",
publisher: "Alex de Vries",
},
"EFIIU": {
title: "The overlooked environmental footprint of increasing Internet use",
date: "8 January 2021",
href: "https://www.sciencedirect.com/science/article/abs/pii/S0921344920307072",
status: "Informational",
publisher: "Renee Obringer, Benjamin Rachunok, Debora Maia-Silva, Maryam Arbabzadeh, Roshanak Nateghi, and Kaveh Madani",
},
"EICC": {
title: "The staggering ecological impacts of computation and the cloud",
date: "14 Febuary 2022",
href: "https://computing.mit.edu/news/the-staggering-ecological-impacts-of-computation-and-the-cloud/",
status: "Informational",
publisher: "MIT",
},
"EIDT": {
title: "Electricity Intensity of Internet Data Transmission",
date: "01 August 2017",
href: "https://onlinelibrary.wiley.com/doi/full/10.1111/jiec.12630",
status: "Informational",
publisher: "Joshua Aslan, Kieren Mayers, Jonathan G. Koomey, and Chris France",
},
"ETC-EO": {
title: "Electronics and obsolescence in a circular economy",
date: "18 June 2020",
href: "https://www.eionet.europa.eu/etcs/etc-wmge/products/etc-wmge-reports/electronics-and-obsolescence-in-a-circular-economy",
status: "Informational",
publisher: "John Bachér, Yoko Dams, Tom Duhoux, Yang Deng, Tuuli Teittinen, and Lars Fogh Mortensen",
},
"ETSI": {
title: "ETSI ES 203 199",
date: "01 Febuary 2015",
href: "https://www.etsi.org/deliver/etsi_es/203100_203199/203199/01.03.01_60/es_203199v010301p.pdf",
status: "Informational",
publisher: "European Telecommunications Standards Institute",
},
"EUAI": {
title: "EU Artificial Intelligence Act",
date: "12 July 2024",
href: "https://artificialintelligenceact.eu/the-act/",
status: "Informational",
publisher: "European Commission",
},
"EWASTE": {
title: "Sources and Streams of Electronic Waste",
date: "24 July 2020",
href: "https://www.cell.com/one-earth/fulltext/S2590-3322(20)30307-9",
status: "Informational",
publisher: "Josh Lepawsky",
},
"FIREFOX": {
title: "Tracking Protection in Firefox For Privacy and Performance",
href: "https://www.ieee-security.org/TC/SPW2015/W2SP/papers/W2SP_2015_submission_32.pdf",
status: "Informational",
publisher: "Georgios Kontaxis and Monica Chew",
},
"FOAF": {
title: "Friend Of A Friend",
date: "01 May 2004",
href: "http://xmlns.com/foaf/spec/",
status: "Informational",
publisher: "Dan Brickley and Libby Miller",
},
"FOOTPRINT": {
title: "The environmental footprint of the digital world",
date: "01 November 2019",
href: "https://www.greenit.fr/wp-content/uploads/2019/11/GREENIT_EENM_etude_EN_accessible.pdf",
status: "Informational",
publisher: "Frédéric Bordage",
},
"FRAMEWORKS": {
title: "Measuring energy consumption of cross-platform frameworks for mobile applications",
href: "https://www.math.unipd.it/~gaggi/doc/webistext15.pdf",
status: "Informational",
publisher: "Matteo Ciman and Ombretta Gaggi",
},
"FRUGAL": {
title: "Frugal AI",
date: "01 September 2024",
href: "https://telechargement.afnor.info/standardization-afnor-spec-ai-frugal",
status: "Informational",
publisher: "AFNOR",
},
"FRUGALML": {
title: "Frugal Machine Learning: Making AI More Efficient, Accessible, and Sustainable",
date: "20 December 2024",
href: "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5012869",
status: "Informational",
publisher: "Taro Yamada",
},
"FUNIT": {
title: "Defining Functional Units For LCA and TEA",
date: "03 May 2022",
href: "https://www.energy.gov/sites/default/files/2022-06/2022-05-03%20-%20Functional%20Unit%20PDF_compliant.pdf",
status: "Informational",
publisher: "US Department of Energy",
},
"GAMING": {
title: "Climate Change Implications of Gaming Products and Services",
date: "01 February 2020",
href: "https://openresearch.surrey.ac.uk/discovery/delivery/44SUR_INST:ResearchRepository/99512335802346#13140594990002346",
status: "Informational",
publisher: "Joshua Aslan",
},
"GDPR": {
title: "General Data Protection Regulation",
href: "https://gdpr.eu/",
status: "Informational",
publisher: "European Union",
},
"GHGP": {
title: "Greenhouse Gas Protocol",
href: "https://ghgprotocol.org/",
status: "Informational",
publisher: "WRI & WBCSD",
},
"GHGP-CLOUD": {
title: "Greenhouse Gas Protocol - Cloud & Data Center Services",
href: "https://ghgprotocol.org/sites/default/files/GHGP-ICTSG%20-%20ALL%20Chapters.pdf#page=142",
status: "Informational",
publisher: "WRI & WBCSD",
},
"GON": {
title: "Future trends of Green All Optical Networks and ICT Infrastructure in a large context",
date: "29 March 2023",
href: "https://www.researchgate.net/publication/368690756_Future_trends_of_Green_All_Optical_Networks_and_ICT_Infrastructure_in_a_large_context_-_trends_to_2050",
status: "Informational",
publisher: "Anders S.G. Andrae",
},
"GPFEDS": {
title: "General Policy Framework for the Ecodesign of Digital Services (GPFEDS)",
date: "17 May 2024",
href: "https://www.arcep.fr/uploads/tx_gspublication/general_policy_framework_for_the_ecodesign_of_digital_services_version_2024.pdf",
status: "Informational",
publisher: "French Republic",
},
"GR491": {
title: "Handbook of Sustainable Design of Digital Services",
date: "15 October 2021",
href: "https://gr491.isit-europe.org/en/",
status: "Informational",
publisher: "Institute for Sustainable IT",
},
"GREEN-D": {
title: "The power of green defaults",
date: "01 August 2020",
href: "https://www.sciencedirect.com/science/article/pii/S0921800919317975",
status: "Informational",
publisher: "Micha Kaiser, Manuela Bernauer, Cass R. Sunstein, and Lucia A. Reisch",
},
"GREEN-SW": {
title: "Green software: Refactoring approach",
date: "04 November 2020",
href: "https://www.sciencedirect.com/science/article/pii/S1319157820305164",
status: "Informational",
publisher: "Rajni Sehgal, Deepti Mehrotra, Renuka Nagpal, and Ramanuj Sharma",
},
"GRI": {
title: "Global Reporting Initiative",
date: "30 June 2022",
href: "https://www.globalreporting.org/",
status: "Informational",
publisher: "Global Reporting Initiative",
},
"GREENCODE": {
title: "Energy Efficiency across Programming Languages",
date: "24 October 2017",
href: "https://greenlab.di.uminho.pt/wp-content/uploads/2017/10/sleFinal.pdf",
status: "Informational",
publisher: "Rui Pereira, Marco Couto, Francisco Ribeiro, Rui Rua, Jácome Cunha, João Paulo Fernandes, and João Saraiva",
},
"GSMA": {
title: "Best practises for 5G App Developers",
date: "23 November 2022",
href: "https://www.gsma.com/get-involved/working-groups/wp-content/uploads/2022/11/IG.15-v1.0-1.pdf",
status: "Informational",
publisher: "GSMA",
},
"HOLCOL": {
title: "Cost of living: Impact of rising costs on disabled people",
date: "14 December, 2022",
href: "https://lordslibrary.parliament.uk/cost-of-living-impact-of-rising-costs-on-disabled-people/",
status: "Informational",
publisher: "House Of Lords, U.K. Government",
},
"HUMANS": {
title: "Humans.txt - We Are People, Not Machines",
date: "04 April 2011",
href: "https://humanstxt.org/Standard.html",
status: "Informational",
publisher: "Abel Cabans, Abel Sutilo, Carlos Mañas, Juanjo Bernabeu, and Maria Macias",
},
"HR-Spec": {
title: "Human rights and technical standard-setting for the Web",
date: "10 March 2023",
href: "https://cdt.org/wp-content/uploads/2023/03/human-rights-web-standards.html",
status: "Informational",
publisher: "Nick Doty, Alissa Cooper, and Wendy Seltzer",
},
"ICODD": {
title: "Your right to get your data deleted",
date: "07 January 2023",
href: "https://ico.org.uk/for-the-public/your-right-to-get-your-data-deleted/",
status: "Informational",
publisher: "Information Comissioners Office, U.K. Government",
},
"ICTCA": {
title: "Study on the practical application of the new framework methodology for measuring the environmental impact of ICT",
date: "01 January 2014",
href: "https://op.europa.eu/en/publication-detail/-/publication/ef17c01f-ea7c-49e0-91aa-878f16ba6361",
status: "Informational",
publisher: "European Union",
},
"IEA": {
title: "Data Centres and Data Transmission Networks",
href: "https://www.iea.org/energy-system/buildings/data-centres-and-data-transmission-networks",
status: "Informational",
publisher: "IEA",
},
"IEA-DE": {
title: "Digitalisation and Energy",
href: "https://www.iea.org/reports/digitalisation-and-energy",
date: "01 November 2020",
status: "Informational",
publisher: "IEA",
},
"IEA-V": {
title: "The carbon footprint of streaming video: fact-checking the headlines",
date: "11 December 2020",
href: "https://www.iea.org/commentaries/the-carbon-footprint-of-streaming-video-fact-checking-the-headlines",
status: "Informational",
publisher: "IEA",
},
"IEU": {
title: "New perspectives on internet electricity use in 2030",
date: "30 June 2020",
href: "https://pisrt.org/psr-press/journals/easl/05-vol-3-2020-issue-2/new-perspectives-on-internet-electricity-use-in-2030/",
status: "Informational",
publisher: "Anders S.G. Andrae",
},
"INR": {
title: "Label numérique responsable",
href: "https://institutnr.org/label-numerique-responsable",
status: "Informational",
publisher: "INR & Agence LUCIE",
},
"LIFESPAN": {
title: "Promoting product longevity",
date: "01 March 2020",
href: "https://www.europarl.europa.eu/RegData/etudes/STUD/2020/648767/IPOL_STU(2020)648767_EN.pdf",
status: "Informational",
publisher: "European Union",
},
"LLMS": {
title: "LLMS.txt - Proposed Standard",
href: "https://llmstxt.org/",
status: "Informational",
publisher: "Jeremy Howard",
},
"METAEX": {
title: "MetaExtensions",
date: "31 July 2021",
href: "https://wiki.whatwg.org/wiki/MetaExtensions",
status: "Informational",
publisher: "WHATWG",
},
"MF": {
title: "Microformats",
date: "18 July 2020",
href: "https://microformats.org/wiki/Main_Page",
status: "Informational",
publisher: "Microformats Community",
},
"MGGR": {
title: "Mobile Gender Gap Report",
date: "01 March 2020",
href: "https://www.gsma.com/solutions-and-impact/connectivity-for-good/mobile-for-development/wp-content/uploads/2020/05/GSMA-The-Mobile-Gender-Gap-Report-2020.pdf",
status: "Informational",
publisher: "GSMA",
},
"MOBI": {
title: "The state of the art in measurement-based experiments on the mobile web",
date: "20 May 2022",
href: "https://www.sciencedirect.com/science/article/pii/S095058492200091X",
status: "Informational",
publisher: "Omar de Munk, Gian Luca Scoccia, and Ivano Malavolta",
},
"MPWA": {
title: "Evaluating the Impact of Caching on the Energy Consumption and Performance of Progressive Web Apps",
date: "6 October 2020",
href: "https://www.ivanomalavolta.com/files/papers/MOBILESoft_Caching_PWA_2020.pdf",
status: "Informational",
publisher: "Ivano Malavolta, Katerina Chinnappan, Lukas Jasmontas, Sarthak Gupta, and Kaveh Ali Karam Soltany",
},
"NCSC-CC": {
title: "Produce clean and maintainable code",
date: "22 November 2018",
href: "https://www.ncsc.gov.uk/collection/developers-collection/principles/produce-clean-maintainable-code",
status: "Informational",
publisher: "National Cyber Security Center, U.K. Government",
},
"NCSC-HS": {
title: "Serve websites over HTTPS",
date: "22 November 2018",
href: "https://www.ncsc.gov.uk/information/page-removed",
status: "Informational",
publisher: "National Cyber Security Center, U.K. Government",
},
"NETCACHE": {
title: "A Review on Green Caching Strategies for Next Generation Communication Networks",
date: "09 November 2020",
href: "https://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=9272291",
status: "Informational",
publisher: "M. Ishtiaque A. Zahed, Iftekhar Ahmad, Daryoush Habibi, Quoc Viet Phung, Md. Munjure Mowla, and Muhammad Waqas",
},
"NETWORK": {
title: "Network energy use not directly proportional to data volume",
date: "21 June 2024",
href: "https://onlinelibrary.wiley.com/doi/10.1111/jiec.13512",
status: "Informational",
publisher: "David Mytton, Dag Lundén, and Jens Malmodin",
},
"OAG43": {
title: "43% of major environmental websites make mass carbon emissions",
date: "21 April 2022",
href: "https://www.openaccessgovernment.org/43-of-major-environmental-websites-make-mass-carbon-emissions/134119/",
status: "Informational",
publisher: "Open Access Government",
},
"OGRAPH": {
title: "Open Graph Protocol",
date: "11 December 2010",
href: "https://ogp.me/",
status: "Informational",
publisher: "OGP Team",
},
"OSEARCH": {
title: "OpenSearch Protocol",
date: "18 November 2020",
href: "https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md",
status: "Informational",
publisher: "OpenSearch Team",
},
"OXCCHR": {
title: "Impact of New and Emerging Internet Technologies on Climate Change and Human Rights",
date: "01 October 2019",
href: "https://www.law.ox.ac.uk/sites/default/files/migrated/un_human_rights_council_advisory_committee_submission_-_new_and_emerging_technologies_-_allmann_hazas.pdf",
status: "Informational",
publisher: "Kira Allmann and Mike Hazas",
},
"PARTDES": {
title: "An introduction to radical participatory design",
date: "20 December 2022",
href: "https://www.cambridge.org/core/journals/design-science/article/an-introduction-to-radical-participatory-design-decolonising-participatory-design-processes/63F70ECC408844D3CD6C1A5AC7D35F4D",
status: "Informational",
publisher: "Victor Udoewa",
},
"PEWR": {
title: "Smartphone Ownership Is Growing Rapidly Around the World, but Not Always Equally",
date: "05 Febuary 2019",
href: "https://www.pewresearch.org/global/2019/02/05/smartphone-ownership-is-growing-rapidly-around-the-world-but-not-always-equally/",
status: "Informational",
publisher: "Pew Research Center",
},
"PHP-FM": {
title: "PHP Function and Method listing",
href: "https://www.php.net/manual/en/indexes.functions.php",
status: "Informational",
publisher: "The PHP Group",
},
"PSEC": {
title: "Investigating the correlation between performance scores and energy consumption of mobile web apps",
date: "17 April 2020",
href: "https://www.ivanomalavolta.com/files/papers/EASE_2020.pdf",
status: "Informational",
publisher: "Kwame Chan-Jong-Chu, Tanjina Islam, Miguel Morales Exposito, Sanjay Sheombar, Christian Valladares, Olivier Philippot, Eoin Martino Grua, and Ivano Malavolta",
},
"QUANTUM": {
title: "Dismantling the Quantum Threat",
date: "06 December 2022",
href: "https://www.researchgate.net/publication/367205680_Dismantling_the_Quantum_Threat",
status: "Informational",
publisher: "Tilman Runge",
},
"RAHS": {
title: "Rethinking Allocation in High-Baseload Systems",
date: "05 July 2022",
href: "https://research-information.bris.ac.uk/ws/portalfiles/portal/348324297/Schien_rethinking_allocation.pdf",
status: "Informational",
publisher: "D. Schien, P. J. S. Shabajee, and C. W. Preist",
},
"REEM": {
title: "Requirements for Energy Efficiency Management",
date: "21 January 2025",
href: "https://www.ietf.org/archive/id/draft-stephan-green-ucs-and-reqs-02.html",
status: "Informational",
publisher: "E. Stephan, M. Palmero, B. Claise, L. M. Contreras, and Q. Wu",
},
"ROBOTS2": {
title: "An Extended Standard for Robot Exclusion",
date: "05 November 2002",
href: "https://www.conman.org/people/spc/robots2.html",
status: "Informational",
publisher: "Sean Conner",
},
"RREPDC": {
title: "Reporting requirements on the energy performance and sustainability of data centres for the Energy Efficiency Directive",
date: "01 October 2023",
href: "https://op.europa.eu/en/publication-detail/-/publication/d9404897-7221-11ee-9220-01aa75ed71a1/language-en",
status: "Informational",
publisher: "European Commission",
},
"RSS": {
title: "RSS 2.0 Specification",
date: "30 March 2009",
href: "https://www.rssboard.org/rss-specification",
status: "Informational",
publisher: "RSS Advisory Board",
},
"SASB": {
title: "Sustainability Accounting Standards Board",
href: "https://sasb.ifrs.org/",
status: "Informational",
publisher: "IFRS Foundation",
},
"SCHEMA": {
title: "Structured Data",
date: "23 May 2023",
href: "https://schema.org/",
status: "Informational",
publisher: "Schema Community",
},
"SDGS": {
title: "Sustainable Development Goals",
date: "11 July 2020",
href: "https://sdgs.un.org/goals",
status: "Informational",
publisher: "United Nations",
},
"SECURITY": {
title: "security.txt - A proposed standard which allows websites to define security policies",
date: "01 April 2022",
href: "https://securitytxt.org/",
status: "Informational",
publisher: "E. Foudil and Y. Shafranovich",
},
"SEMVER": {
title: "Semantic Versioning",
href: "https://semver.org/",
status: "Informational",
publisher: "Tom Preston-Werner",
},
"SITEMAP": {
title: "Sitemaps Protocol",
date: "21 November 2016",
href: "https://www.sitemaps.org/protocol.html",
status: "Informational",
publisher: "Google, Yahoo, and Microsoft",
},
"SOLID": {
title: "Solid Protocol",