Skip to content

Commit ffc9d8c

Browse files
committed
Annotate archived repos with "(archived)"
Closes #200
1 parent 8e2bbd6 commit ffc9d8c

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

fetch_repo_info.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
"""
1414
Possibly interesting fields:
15+
- archived
1516
- created_at
1617
- description
1718
- forks_count
@@ -101,7 +102,8 @@ def main(filename='repos.jsonp'):
101102
json.dump(dict([(url,
102103
{'rank': repo['rank'],
103104
'stars': repo['stargazers_count'],
104-
'updated': repo['updated_at']})
105+
'updated': repo['updated_at'],
106+
'archived': repo['archived']})
105107
for (url, repo) in repos]),
106108
f,
107109
indent=4)

index.html

+9-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,12 @@
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) {
@@ -93,6 +97,7 @@
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

Comments
 (0)