3030 }
3131 row . append ( $ ( '<td>' ) . text ( stars ) ) ;
3232
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 ) ;
3539
3640 const authors = $ ( '<td>' ) ;
3741 if ( impl . authors !== undefined ) {
9397 impl . rank = repo . rank ;
9498 impl . stars = repo . stars ;
9599 impl . updated = repo . updated ;
100+ impl . archived = repo . archived ;
96101 }
97102 } ) ;
98103 impls . sort ( function ( a , b ) { return b . rank - a . rank ; } )
@@ -634,7 +639,7 @@ <h2>Courses teaching Raft</h2>
634639 < a href ="https://changlousys.github.io/ "> Chang Lou</ a > .
635640 Includes lecture on Raft and programming assignment (Go). (Spring 2024 ...)
636641 </ li >
637-
642+
638643 < li >
639644 < a href ="https://ucsd.edu "> University of California, San Deigo</ a > ,
640645 < a href ="https://canvas.ucsd.edu/courses/43955/assignments/syllabus "> CSE224: Graduate Networked Systems</ a > ,
@@ -649,7 +654,7 @@ <h2>Courses teaching Raft</h2>
649654 < a href ="https://martin.kleppmann.com/ "> Martin Kleppmann</ a > .
650655 Includes lecture on Raft. (Winter 2022/2023, ...)
651656 </ li >
652-
657+
653658 < li >
654659 < a href ="https://illinois.edu "> University of Illinois Urbana-Champaign</ a > ,
655660 < a href ="https://courses.grainger.illinois.edu/cs425/ "> CS425: Distributed Systems</ a > ,
0 commit comments