-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathbuild_colophon.py
executable file
·263 lines (240 loc) · 8.07 KB
/
build_colophon.py
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
#!/usr/bin/env python3
import json
import re
from datetime import datetime
import html
from pathlib import Path
import markdown
def format_commit_message(message):
"""Format commit message with line breaks and linkified URLs."""
# Escape HTML entities
escaped = html.escape(message)
# Linkify URLs first (before adding breaks)
url_pattern = r"(https?://[^\s]+)"
linkified = re.sub(url_pattern, r'<a href="\1">\1</a>', escaped)
# Then convert newlines to <br>
return linkified.replace("\n", "<br>")
def build_colophon():
# Load the gathered_links.json file
try:
with open("gathered_links.json", "r") as f:
data = json.load(f)
except FileNotFoundError:
print("Error: gathered_links.json not found. Run gather_links.py first.")
return
pages = data.get("pages", {})
if not pages:
print("No pages found in gathered_links.json")
return
# Sort pages by most recent commit date (newest first)
def get_most_recent_date(page_data):
commits = page_data.get("commits", [])
if not commits:
return "0000-00-00T00:00:00"
# Find the most recent commit date
dates = [commit.get("date", "0000-00-00T00:00:00") for commit in commits]
return max(dates) if dates else "0000-00-00T00:00:00"
sorted_pages = sorted(
pages.items(), key=lambda x: get_most_recent_date(x[1]), reverse=True
)
# Start building the HTML
html_content = """<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tools.simonwillison.net colophon</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.5;
max-width: 800px;
margin: 0 auto;
padding: 1rem;
color: #1a1a1a;
}
h1 {
border-bottom: 2px solid #f0f0f0;
padding-bottom: 0.5rem;
margin-top: 2rem;
}
h2 {
margin-top: 2rem;
font-size: 1.4rem;
}
h3 {
margin-top: 1.5rem;
font-size: 1.2rem;
}
a {
color: #0066cc;
text-decoration: none;
overflow-wrap: break-word;
}
a:hover {
text-decoration: underline;
}
a.hashref:link,
a.hashref:visited,
a.hashref:hover,
a.hashref:focus,
a.hashref:active {
color: #666;
}
.tool {
margin-bottom: 2rem;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 1rem;
}
.tool-name {
font-weight: bold;
margin-bottom: 0.5rem;
}
.commit {
background-color: #f8f9fa;
padding: 1rem;
margin: 0.75rem 0;
border-radius: 4px;
border-left: 3px solid #ddd;
}
.commit-hash {
font-family: monospace;
color: #666;
font-size: 0.85rem;
}
.commit-date {
color: #666;
font-size: 0.85rem;
margin-left: 0.5rem;
}
.commit-message {
margin-top: 0.5rem;
}
.docs {
margin-top: 1.5rem;
}
.docs pre {
white-space: pre-wrap;
overflow-wrap: break-word;
font-size: 0.9rem;
line-height: 1.4;
}
.urls {
margin-top: 1rem;
}
/* New styles for the heading */
.heading {
display: flex;
align-items: center;
gap: 0.5rem;
}
.main-text {
font-size: 1.4rem;
font-weight: bold;
color: #0066cc;
}
.hash-text {
font-size: 1.4rem;
font-weight: bold;
color: #666;
}
.code-text {
font-size: 1rem;
color: #666;
position: relative;
top: 1px;
}
.main-text a {
color: #0066cc;
text-decoration: none;
}
.code-text a {
color: #666;
text-decoration: none;
}
@media (max-width: 600px) {
body {
padding: 0.5rem;
}
.commit {
padding: 0.75rem;
}
}
</style>
</head>
<body>
<h1>tools.simonwillison.net colophon</h1>
<p>The tools on <a href="https://tools.simonwillison.net/">tools.simonwillison.net</a> were mostly built using <a href="https://simonwillison.net/tags/ai-assisted-programming/">AI-assisted programming</a>.</p>
<p>This page lists the commit messages for each tool, many of which link to the LLM transcript used to produce the code.</p>
<p>Here's <a href="https://simonwillison.net/2025/Mar/11/using-llms-for-code/#a-detailed-example">how I built this colophon page</a>. The descriptions for each of the tools were <a href="https://simonwillison.net/2025/Mar/13/tools-colophon/">generated using Claude 3.7 Sonnet</a>.</p>
"""
# Modified tool heading HTML
for page_name, page_data in sorted_pages:
tool_url = f"https://tools.simonwillison.net/{page_name.replace('.html', '')}"
github_url = f"https://github.com/simonw/tools/blob/main/{page_name}"
commits = page_data.get("commits", [])
# Reverse the commits list to show oldest first
commits = list(reversed(commits))
# Modified tool heading with the new structure
html_content += f"""
<div class="tool" id="{page_name}">
<div class="tool-name">
<div class="heading">
<span class="hash-text"><a class="hashref" href="#{page_name}">#</a></span>
<span class="main-text"><a href="{tool_url}">{page_name.replace('.html', '')}</a></span>
<span class="code-text"><a href="{github_url}">code</a></span>
</div>
</div>
"""
# Check for corresponding docs.md file
docs_file = page_name.replace(".html", ".docs.md")
docs_replacement = ""
if Path(docs_file).exists():
try:
with open(docs_file, "r") as f:
docs_content = f.read()
# Render markdown to HTML
docs_html = markdown.markdown(docs_content)
# Add docs above commits
html_content += '<div class="docs">' + docs_html + "</div>"
except Exception as e:
print(f"Error reading {docs_file}: {e}")
# Add each commit
for commit in commits:
commit_hash = commit.get("hash", "")
short_hash = commit_hash[:7] if commit_hash else "unknown"
commit_date = commit.get("date", "")
# Format the date with time
formatted_date = ""
if commit_date:
try:
dt = datetime.fromisoformat(commit_date)
formatted_date = dt.strftime("%B %d, %Y %H:%M")
except ValueError:
formatted_date = commit_date
commit_message = commit.get("message", "")
formatted_message = format_commit_message(commit_message)
commit_url = f"https://github.com/simonw/tools/commit/{commit_hash}"
html_content += f"""
<div class="commit" id="commit-{short_hash}">
<div>
<a href="{commit_url}" class="commit-hash">{short_hash}</a>
<span class="commit-date">{formatted_date}</span>
</div>
<div class="commit-message">{formatted_message}</div>
</div>
"""
html_content += """
</div>
"""
# Close the HTML
html_content += """
</body>
</html>
"""
# Write the HTML to colophon.html
with open("colophon.html", "w") as f:
f.write(html_content)
print("Colophon page built successfully as colophon.html")
if __name__ == "__main__":
build_colophon()