30
30
}
31
31
row . append ( $ ( '<td>' ) . text ( stars ) ) ;
32
32
33
- row . append ( $ ( '<td>' )
34
- . append ( $ ( '<a>' ) . attr ( 'href' , impl . repoURL ) . text ( impl . name ) ) ) ;
33
+ const name = $ ( '<td>' ) ;
34
+ name . append ( $ ( '<a>' ) . attr ( 'href' , impl . repoURL ) . text ( impl . name ) ) ;
35
+ if ( impl . archived === true ) {
36
+ name . append ( ' (archived)' ) ;
37
+ }
38
+ row . append ( name ) ;
35
39
36
40
const authors = $ ( '<td>' ) ;
37
41
if ( impl . authors !== undefined ) {
93
97
impl . rank = repo . rank ;
94
98
impl . stars = repo . stars ;
95
99
impl . updated = repo . updated ;
100
+ impl . archived = repo . archived ;
96
101
}
97
102
} ) ;
98
103
impls . sort ( function ( a , b ) { return b . rank - a . rank ; } )
@@ -634,7 +639,7 @@ <h2>Courses teaching Raft</h2>
634
639
< a href ="https://changlousys.github.io/ "> Chang Lou</ a > .
635
640
Includes lecture on Raft and programming assignment (Go). (Spring 2024 ...)
636
641
</ li >
637
-
642
+
638
643
< li >
639
644
< a href ="https://ucsd.edu "> University of California, San Deigo</ a > ,
640
645
< a href ="https://canvas.ucsd.edu/courses/43955/assignments/syllabus "> CSE224: Graduate Networked Systems</ a > ,
@@ -649,7 +654,7 @@ <h2>Courses teaching Raft</h2>
649
654
< a href ="https://martin.kleppmann.com/ "> Martin Kleppmann</ a > .
650
655
Includes lecture on Raft. (Winter 2022/2023, ...)
651
656
</ li >
652
-
657
+
653
658
< li >
654
659
< a href ="https://illinois.edu "> University of Illinois Urbana-Champaign</ a > ,
655
660
< a href ="https://courses.grainger.illinois.edu/cs425/ "> CS425: Distributed Systems</ a > ,
0 commit comments