fix: case-insensitive artifact URL lookup and normalize bare DOI links#10
Merged
vahldiek merged 1 commit intoMay 15, 2026
Merged
Conversation
- Profile page: use lowercase keys in artifactUrlMap so paper titles with different casing (e.g. EuroSys 2021/2022) still resolve to artifact URLs - Search & profile pages: add normalizeUrl() to prepend https://doi.org/ to bare DOI strings (e.g. '10.5281/zenodo.6337102') used as href values - Applies to artifact_urls, paper_url, doi_url, and appendix_url fields
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Two bugs on the ReproDB website:
Author profile pages: EuroSys 2021/2022 artifact papers (e.g. VMSH by Pramod Bhatotia) don't show clickable links even though artifact URLs exist. Root cause:
artifactUrlMapkeys use exact title casing fromartifacts.json(title case), but paper titles fromauthor_profiles.jsonuse different casing — the lookup is case-sensitive so it fails silently.Search page: DOI-based artifact URLs like
10.5281/zenodo.6337102are used directly ashrefvalues without thehttps://doi.org/prefix, causing them to resolve as relative paths on our site instead of linking to the actual DOI.Fix
reprodb-profile-page.js): Lowercase all keys inartifactUrlMapand lowercase the lookup key when resolving — makes matching case-insensitive.normalizeUrl()helper that detects bare DOI strings (matching10.NNNN/...) and prependshttps://doi.org/. Applied toartifact_urls,paper_url,doi_url, andappendix_urlfields.Impact