Skip to content

Rollup of 6 pull requests #139363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bacd57a
Add integer to string formatting tests
GuillaumeGomez Mar 16, 2025
25900c2
Tweak integer to string conversion test a bit to be future-proof
GuillaumeGomez Mar 23, 2025
6ce74f7
replace extra_filename with strict version hash in metrics file names
yaahc Mar 25, 2025
53ef53a
settings.js: begin typechecking migration
lolbinarycat Apr 2, 2025
6ca7bd0
settings.js: add new rustdoc.Setting interface
lolbinarycat Apr 2, 2025
f056836
settings.js: remove dead code for adding <hr> to settings page
lolbinarycat Apr 2, 2025
9f8d3d0
settings.js: refactor settingsBlurHandler
lolbinarycat Apr 2, 2025
d2ff26b
settings.js: add some null checks to buildSettingsPage
lolbinarycat Apr 2, 2025
a805f52
settings.js: make top-level code typecheck
lolbinarycat Apr 2, 2025
8a34129
main.js: make hideAllModals docs clearer
lolbinarycat Apr 2, 2025
9f54910
settings.js: add elemContainsTarget utility function
lolbinarycat Apr 2, 2025
9c26a09
Update the minimum external LLVM to 19
cuviper Apr 2, 2025
eed8d09
Make target maintainers more easily pingable
Noratrieb Mar 27, 2025
ef1827b
settings.js: fix whitespace
lolbinarycat Apr 2, 2025
4435c99
rustdoc js: satisfy eslint
lolbinarycat Apr 2, 2025
a91e97c
Fix 2024 edition doctest panic output
GuillaumeGomez Apr 3, 2025
fff2484
Add regression test for #137970
GuillaumeGomez Apr 3, 2025
f9927ee
Use `eprint!` instead of `eprintln!`
GuillaumeGomez Apr 3, 2025
c46ee13
Rollup merge of #138546 - GuillaumeGomez:integer-to-string-tests, r=A…
matthiaskrgr Apr 4, 2025
8400060
Rollup merge of #138950 - yaahc:svh-metrics-name, r=bjorn3
matthiaskrgr Apr 4, 2025
436f634
Rollup merge of #139028 - Noratrieb:ping-pong, r=RalfJung
matthiaskrgr Apr 4, 2025
f60277e
Rollup merge of #139274 - lolbinarycat:rustdoc-js-less-expect-error-p…
matthiaskrgr Apr 4, 2025
676950e
Rollup merge of #139275 - cuviper:min-llvm-19, r=nikic
matthiaskrgr Apr 4, 2025
7bed27f
Rollup merge of #139328 - GuillaumeGomez:fix-panic-output-137970, r=f…
matthiaskrgr Apr 4, 2025
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
Prev Previous commit
Next Next commit
settings.js: remove dead code for adding <hr> to settings page
  • Loading branch information
lolbinarycat committed Apr 2, 2025
commit f05683639d64dc26e51f63d97a0ba3cd812dc374
5 changes: 0 additions & 5 deletions src/librustdoc/html/static/js/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,6 @@
let output = "";

for (const setting of settings) {
if (setting === "hr") {
output += "<hr>";
continue;
}

const js_data_name = setting["js_name"];
const setting_name = setting["name"];

Expand Down