about summary refs log tree commit diff
path: root/src/librustdoc/html/static/main.js
AgeCommit message (Collapse)AuthorLines
2020-03-16Update src/librustdoc/html/static/main.js Guillaume Gomez-1/+1
Fix variable name Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
2020-03-16formattingGuillaume Gomez-6/+4
2020-03-16Support type search for arguments and returned typesGuillaume Gomez-62/+66
2020-02-27Remove "important traits" featureGuillaume Gomez-28/+0
2020-02-15Auto merge of #68668 - GuillaumeGomez:struct-variant-field-search, r=ollie27bors-8/+22
Struct variant field search Fixes #16017. Reopening of #64724. cc @tomjakubowski cc @ollie27 r? @kinnison
2020-01-30rustdoc: emit JS paths for struct-like variantsTom Jakubowski-8/+22
On the backend, rustdoc now emits `paths` entries to a crate's search index for struct-like enum variants, and index items of type structfield which belong to such variants point to their variant parents in the `paths` table, rather than their enum grandparents. The path entry for a variant is the fully qualified module path plus the enum name. On the frontend, the search code recognizes structfields belonging to structlike variants in the `paths` table and re-constructs the URL to the field's anchor on the enum documentation page. closes #16017
2020-01-28Fix null synthetic_implementors errorGuillaume Gomez-14/+16
2020-01-20Remove usage of global variable "inlined_types"Guillaume Gomez-2/+18
2020-01-12rustdoc: HTML escape arrows on help popupOliver Middleton-2/+2
2019-12-22Fix invalid results showing backGuillaume Gomez-0/+4
2019-12-22Improve code readabilityGuillaume Gomez-43/+37
2019-12-22Improve JS code a bit by avoid erasing all event handlersGuillaume Gomez-4/+5
2019-12-15Fix JS error when loading page with searchGuillaume Gomez-1/+1
2019-12-02Add missing checkGuillaume Gomez-1/+1
2019-11-20Rollup merge of #66514 - GuillaumeGomez:fix-search-filter-save, r=kinnisonMazdak Farrokhzad-15/+10
Fix selected crate search filter Fixes #62929. r? @kinnison
2019-11-20Rollup merge of #66298 - Ppjet6:disable-search-field, r=GuillaumeGomezMazdak Farrokhzad-4/+4
rustdoc: fixes #64305: disable search field instead of hidding it The result seems to be ok but I wasn't entirely sure how to get there. I tried to stay generic a bit but maybe it's not required at all. @GuillaumeGomez Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2019-11-20rustdoc: fixes #64305: disable search field instead of hidding itMaxime “pep” Buquet-4/+4
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2019-11-19Rollup merge of #66430 - dns2utf8:fix_code_selection_click_handler, ↵Mazdak Farrokhzad-24/+37
r=GuillaumeGomez [doc] Fix the source code highlighting on source comments The code would always forget the previous selection. r? @GuillaumeGomez
2019-11-18Fix selected crate search filterGuillaume Gomez-15/+10
2019-11-15Prevent jumps when selecting one or many linesStefan Schindler-0/+5
2019-11-15Fix the source code highlighting on source commentsStefan Schindler-24/+32
2019-11-15Code cleanup to remove douplacte var definitionStefan Schindler-3/+2
Also move the declaration outside the loop since they accumulate state with each iteration
2019-11-15Remove unused argumentStefan Schindler-1/+1
2019-11-08Rollup merge of #66123 - GuillaumeGomez:no-more-hidden-elements, r=Dylan-DPCYuki Okushi-11/+51
No more hidden elements Fixes #66046. Follow-up of #66082. r? @kinnison
2019-11-07Rollup merge of #64696 - GuillaumeGomez:rustdoc-sub-settings, r=kinnisonMazdak Farrokhzad-4/+28
[rustdoc] add sub settings This PR is to give a finer control over what types are automatically expanded or not as well as the possibility to add sub-settings in the settings page. ![Screenshot from 2019-09-23 00-46-14](https://user-images.githubusercontent.com/3050060/65395521-15aff300-dd9c-11e9-9437-429ca347d455.png) r? @Mark-Simulacrum
2019-11-07Only call onHashChange instead of both functionsGuillaume Gomez-3/+2
2019-11-07Remove old isHidden functionGuillaume Gomez-1/+1
2019-11-06When a URL hash refers to a hidden element, it makes the element visibleGuillaume Gomez-10/+51
2019-11-04clean highlightSourceLines codeGuillaume Gomez-42/+54
2019-11-03Auto merge of #65780 - GuillaumeGomez:move-help-popup-generation-code, ↵bors-2/+49
r=Mark-Simulacrum Move help popup generation code The first commit is just a small cleanup. The idea behind this PR is to reduce a bit more the generated HTML files by moving the duplicated code into one place instead. r? @kinnison
2019-10-29Rollup merge of #65741 - GuillaumeGomez:help-popup, r=Dylan-DPCTyler Mandry-3/+7
Prevent help popup to disappear when clicking on it Fixes #65736. r? @kinnison
2019-10-29add sub settings in rustdocGuillaume Gomez-4/+28
2019-10-27reduce size of generated HTML files by moving the popup helper code to the JSGuillaume Gomez-0/+47
2019-10-27Cleanup search element getterGuillaume Gomez-2/+2
2019-10-25Improve help popup detectionGuillaume Gomez-3/+4
2019-10-24Prevent help popup to disappear when clicking on itGuillaume Gomez-2/+5
2019-10-24Fix default "disable-shortcuts" feature valueGuillaume Gomez-1/+1
2019-10-21Add option to disable keyboard shortcuts in docsGuillaume Gomez-1/+2
2019-09-09Rollup merge of #64312 - GuillaumeGomez:rustdoc-better-esc-handling, ↵Mazdak Farrokhzad-18/+29
r=Mark-Simulacrum Unify escape usage Fixes #63443. I chose to keep the search text when pressing escape so when we focus on the search bar, we got the results again without needing to load them again. I also unified a bit a few things (maybe I should have done it in another commit, sorry...). r? @Mark-Simulacrum
2019-09-09Unify escape usageGuillaume Gomez-18/+29
2019-09-06Rollup merge of #64094 - kawa-yoiko:rustdoc-search, r=GuillaumeGomezMazdak Farrokhzad-10/+6
Improve searching in rustdoc and add tests 👋 I have made searching in rustdoc more intuitive, added a couple more tests and made a little shell script to aid testing. Closes #63005. It took me quite a while to figure out how to run the tests for rustdoc (instead of running tests for other crates with rustdoc); the only pointer I found was [hidden in the rustc book](https://rust-lang.github.io/rustc-guide/rustdoc.html#cheat-sheet). Maybe this could be better documented? I shall be delighted to help if it is desirable.
2019-09-05Rollup merge of #63774 - chocol4te:fix_63707, r=GuillaumeGomezMazdak Farrokhzad-1/+1
Fix `window.hashchange is not a function` Closes #63707.
2019-09-04Improve searching in rustdoc and add testsShiqing-10/+6
2019-08-29Rollup merge of #62734 - GuillaumeGomez:hide-default-methods, r=Mark-SimulacrumMazdak Farrokhzad-1/+1
Hide trait default methods Fixes #62499. However, the question remains: do we want to extend it to this point or not? r? @QuietMisdreavus
2019-08-28Auto merge of #62941 - GuillaumeGomez:save-crate-filter, r=Mark-Simulacrumbors-2/+18
Save crate filtering on rustdoc Fixes #62929. I added a hashmap and a hash encoding for the current crate list in case you have multiple crates handling on a same website (who talked about docs.rs?!). Like that, for each context, you have the filter crate selected. r? @QuietMisdreavus
2019-08-28Save crate filtering on rustdocGuillaume Gomez-2/+18
2019-08-21Fix confusion in theme picker functionsGuillaume Gomez-6/+6
2019-08-21Fix `window.hashchange is not a function`Ferdia McKeogh-1/+1
2019-07-16code formattingGuillaume Gomez-1/+1
2019-05-21Fix lines highlighting in rustdoc source viewGuillaume Gomez-3/+14