Skip to content
Open
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2bdcaf4
feat: migrate web app frontend to Astro and update GAE routing to ser…
max-ostapenko Jun 28, 2026
d0702b1
refactor: remove Python/Jinja2 server and templates in favor of a Nod…
max-ostapenko Jun 28, 2026
f0e7cad
feat: update UI headers, improve pagination links, and refine timesta…
max-ostapenko Jun 28, 2026
f5c20a4
docs: add comprehensive HTTP Archive documentation and guides structure
max-ostapenko Jun 28, 2026
e37a0d6
feat: implement versioned filename helper and replace Starlight heade…
max-ostapenko Jun 28, 2026
4cb8ff9
style: override documentation header layout with custom height and pa…
max-ostapenko Jun 28, 2026
a53b588
refactor: implement comprehensive style system and optimize FAQ initi…
max-ostapenko Jun 28, 2026
0d91e60
chore: reorganize project dependencies and devDependencies in package…
max-ostapenko Jun 28, 2026
ac31257
fix: remove redundant normalize.css source comment from bootstrap.min…
max-ostapenko Jun 28, 2026
fa43e0d
fix: resolve font preload duplicate downloads and CSP violations
max-ostapenko Jun 28, 2026
2ba80b6
feat: add dynamic page timestamp management to Base layout using last…
max-ostapenko Jun 28, 2026
6daf7d6
fix: refactor website test script and workflows to support fully Node…
max-ostapenko Jun 28, 2026
30488f5
Potential fix for pull request finding 'CodeQL / Client-side cross-si…
max-ostapenko Jun 28, 2026
a3be0c6
Potential fix for pull request finding 'CodeQL / Log injection'
max-ostapenko Jun 28, 2026
b61b456
Potential fix for pull request finding 'CodeQL / Unused variable, imp…
max-ostapenko Jun 28, 2026
ae6d7bb
feat: add data analysis workbooks and refactor documentation and inde…
max-ostapenko Jun 28, 2026
d9cfa65
chore: update documentation content hashes in last_updated.json
max-ostapenko Jun 28, 2026
01f4aa4
chore: update project documentation
max-ostapenko Jun 28, 2026
8180e57
chore: upgrade local linter configuration
max-ostapenko Jun 28, 2026
f9c3dc5
refactor: remove legacy static CSS files, update deployment config, a…
max-ostapenko Jun 28, 2026
ce8acb9
refactor: migrate Highcharts to module-based initialization via highc…
max-ostapenko Jun 28, 2026
ee2b5a8
refactor: inline summary component styles into SummaryCard.astro and …
max-ostapenko Jun 28, 2026
5b3492c
refactor: migrate all static assets to the public directory for Astro…
max-ostapenko Jun 28, 2026
67444a5
Merge branch 'main' into visiting-snail
max-ostapenko Jun 28, 2026
d28629c
refactor: remove font module imports and update icon SVG symbols
max-ostapenko Jun 28, 2026
36cfd76
Merge branch 'visiting-snail' of https://github.com/HTTPArchive/httpa…
max-ostapenko Jun 28, 2026
de493ae
refactor: remove Python dependencies and modernize build configuratio…
max-ostapenko Jun 29, 2026
d433d71
refactor: migrate deployment and testing scripts from Python to Node.…
max-ostapenko Jun 29, 2026
0296cc6
chore: remove unused .htmlhintrc_morechecks configuration file
max-ostapenko Jun 29, 2026
f0f263d
Merge branch 'main' into visiting-snail
max-ostapenko Jun 29, 2026
ed38d9b
feat: revert .htmlhintrc_morechecks configuration
max-ostapenko Jun 29, 2026
25e2994
refactor: update test workflow to keep server running and exclude nod…
max-ostapenko Jun 29, 2026
9886803
fix: disable valid-source-maps in lighthouse, add tech report filter …
max-ostapenko Jun 29, 2026
a7c1580
feat: enable build sourcemaps via environment variable and re-enable …
max-ostapenko Jun 29, 2026
b604418
fix: improve security and update server configuration
max-ostapenko Jun 30, 2026
986d842
unnecessary escape
max-ostapenko Jun 30, 2026
8fcddb5
Merge branch 'main' into visiting-snail
max-ostapenko Jul 2, 2026
e9f960a
refactor: replace object with Map for latestMetricDates and latestMet…
max-ostapenko Jul 2, 2026
8b0c110
fix: enhance path normalization and sanitization to prevent directory…
max-ostapenko Jul 2, 2026
122d5cc
refactor: centralize API base URL constants and remove deprecated loc…
max-ostapenko Jul 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .gcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,9 @@
.git
.gitignore

# Python pycache:
__pycache__/
# Ignored by the build system
/setup.cfg
.coverage

env/
.venv/
node_modules/

static/html
Expand Down
6 changes: 0 additions & 6 deletions .github/linters/.flake8

This file was deleted.

2 changes: 1 addition & 1 deletion .github/linters/.htmlhintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"attr-value-double-quotes": true,
"attr-value-not-empty": false,
"attr-no-duplication": true,
"attr-unsafe-chars": true,
"attr-unsafe-chars": false,
"doctype-first": false,
"doctype-html5": true,
"empyty-tag-self-close": true,
Expand Down
4 changes: 2 additions & 2 deletions .github/linters/.htmlhintrc_morechecks
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"attr-value-double-quotes": true,
"attr-value-not-empty": false,
"attr-no-duplication": true,
"attr-unsafe-chars": true,
"attr-unsafe-chars": false,
"doctype-first": true,
"doctype-html5": true,
"empyty-tag-self-close": true,
"id-unique": true,
"id-unique": false,
"id-class-value": true,
"head-script-disabled": false,
"href-abs-or-rel": false,
Expand Down
Loading