| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-07-10 | rustdoc: Fix doc aliases with crate filtering | Oliver Middleton | -6/+7 | |
| Fix a crash when searching for an alias contained in the currently selected filter crate. Also remove alias search results for crates that should be filtered out. The test suite needed to be fixed to actually take into account the crate filtering and check that there are no results when none are expected. | ||||
| 2020-05-31 | Rollup merge of #72691 - GuillaumeGomez:escape-key-handling, r=kinnison | Dylan DPC | -4/+12 | |
| Fix escape key handling Fixes #72647. The problem was that you could have a timeout just after the moment you press "escape", putting back the results. r? @kinnison | ||||
| 2020-05-31 | Put input timeout clearance inside a function | Guillaume Gomez | -13/+11 | |
| 2020-05-28 | Fix escape key handling | Guillaume Gomez | -3/+13 | |
| 2020-05-26 | Improve formatting | Guillaume Gomez | -2/+2 | |
| 2020-05-26 | Fix eslint lints | Guillaume Gomez | -31/+23 | |
| 2020-05-26 | Reexported functions are now declared directly as "windows" field | Guillaume Gomez | -11/+6 | |
| 2020-05-26 | Move "global" code into anonymous functions | Guillaume Gomez | -248/+258 | |
| 2020-05-26 | Move focusSearchBar and defocusSearchBar functions to the top of the file ↵ | Guillaume Gomez | -10/+11 | |
| with other functions | ||||
| 2020-05-21 | Rollup merge of #72272 - ↵ | Ralf Jung | -0/+6 | |
| GuillaumeGomez:fix-back-on-page-with-search-behaviour, r=kinnison Fix going back in history to a search result page on firefox This bug was actually firefox not re-running JS script when you go back in history. To trigger it on the current docs: * Make a search * Pick an element (which isn't on the same page as the current element!) * Go back in history Instead of having the search results, you'll see the normal doc page. You can find a small explanation about it [here](http://web.archive.org/web/20100428053932/http://www.firefoxanswer.com/firefox/672-firefoxanswer.html). r? @kinnison cc @ollie27 | ||||
| 2020-05-19 | Fix going back in history to a search result page on firefox | Guillaume Gomez | -0/+6 | |
| 2020-05-14 | * Update aliases data struct from HashMap to BTreeMap to have more ↵ | Guillaume Gomez | -3/+4 | |
| deterministic results * Update Javascript to take this change into account * Update CrateData::aliases field to take a reference instead (it allowed to remove a conversion loop) | ||||
| 2020-05-14 | Make current crate aliases go first | Guillaume Gomez | -6/+14 | |
| 2020-05-14 | Move doc alias discovery into the Attributes struct and some code improvements | Guillaume Gomez | -1/+1 | |
| 2020-05-07 | Merge aliases and search-index | Guillaume Gomez | -39/+87 | |
| 2020-05-07 | Improve doc alias JS code | Guillaume Gomez | -23/+50 | |
| 2020-05-05 | Replace title "Methods" with "Implementations" | Guillaume Gomez | -1/+1 | |
| 2020-03-16 | Update src/librustdoc/html/static/main.js | Guillaume Gomez | -1/+1 | |
| Fix variable name Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com> | ||||
| 2020-03-16 | formatting | Guillaume Gomez | -6/+4 | |
| 2020-03-16 | Support type search for arguments and returned types | Guillaume Gomez | -62/+66 | |
| 2020-02-27 | Remove "important traits" feature | Guillaume Gomez | -28/+0 | |
| 2020-02-15 | Auto merge of #68668 - GuillaumeGomez:struct-variant-field-search, r=ollie27 | bors | -8/+22 | |
| Struct variant field search Fixes #16017. Reopening of #64724. cc @tomjakubowski cc @ollie27 r? @kinnison | ||||
| 2020-01-30 | rustdoc: emit JS paths for struct-like variants | Tom 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-28 | Fix null synthetic_implementors error | Guillaume Gomez | -14/+16 | |
| 2020-01-20 | Remove usage of global variable "inlined_types" | Guillaume Gomez | -2/+18 | |
| 2020-01-12 | rustdoc: HTML escape arrows on help popup | Oliver Middleton | -2/+2 | |
| 2019-12-22 | Fix invalid results showing back | Guillaume Gomez | -0/+4 | |
| 2019-12-22 | Improve code readability | Guillaume Gomez | -43/+37 | |
| 2019-12-22 | Improve JS code a bit by avoid erasing all event handlers | Guillaume Gomez | -4/+5 | |
| 2019-12-15 | Fix JS error when loading page with search | Guillaume Gomez | -1/+1 | |
| 2019-12-02 | Add missing check | Guillaume Gomez | -1/+1 | |
| 2019-11-20 | Rollup merge of #66514 - GuillaumeGomez:fix-search-filter-save, r=kinnison | Mazdak Farrokhzad | -15/+10 | |
| Fix selected crate search filter Fixes #62929. r? @kinnison | ||||
| 2019-11-20 | Rollup merge of #66298 - Ppjet6:disable-search-field, r=GuillaumeGomez | Mazdak 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-20 | rustdoc: fixes #64305: disable search field instead of hidding it | Maxime “pep” Buquet | -4/+4 | |
| Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | ||||
| 2019-11-19 | Rollup 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-18 | Fix selected crate search filter | Guillaume Gomez | -15/+10 | |
| 2019-11-15 | Prevent jumps when selecting one or many lines | Stefan Schindler | -0/+5 | |
| 2019-11-15 | Fix the source code highlighting on source comments | Stefan Schindler | -24/+32 | |
| 2019-11-15 | Code cleanup to remove douplacte var definition | Stefan Schindler | -3/+2 | |
| Also move the declaration outside the loop since they accumulate state with each iteration | ||||
| 2019-11-15 | Remove unused argument | Stefan Schindler | -1/+1 | |
| 2019-11-08 | Rollup merge of #66123 - GuillaumeGomez:no-more-hidden-elements, r=Dylan-DPC | Yuki Okushi | -11/+51 | |
| No more hidden elements Fixes #66046. Follow-up of #66082. r? @kinnison | ||||
| 2019-11-07 | Rollup merge of #64696 - GuillaumeGomez:rustdoc-sub-settings, r=kinnison | Mazdak 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.  r? @Mark-Simulacrum | ||||
| 2019-11-07 | Only call onHashChange instead of both functions | Guillaume Gomez | -3/+2 | |
| 2019-11-07 | Remove old isHidden function | Guillaume Gomez | -1/+1 | |
| 2019-11-06 | When a URL hash refers to a hidden element, it makes the element visible | Guillaume Gomez | -10/+51 | |
| 2019-11-04 | clean highlightSourceLines code | Guillaume Gomez | -42/+54 | |
| 2019-11-03 | Auto 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-29 | Rollup merge of #65741 - GuillaumeGomez:help-popup, r=Dylan-DPC | Tyler Mandry | -3/+7 | |
| Prevent help popup to disappear when clicking on it Fixes #65736. r? @kinnison | ||||
| 2019-10-29 | add sub settings in rustdoc | Guillaume Gomez | -4/+28 | |
| 2019-10-27 | reduce size of generated HTML files by moving the popup helper code to the JS | Guillaume Gomez | -0/+47 | |
