| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-09-03 | Use named arguments in `code-color.goml` GUI test | Guillaume Gomez | -3/+15 | |
| 2023-09-02 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -9/+9 | |
| 2023-08-26 | Remove unneeded "background_color" parameter | Guillaume Gomez | -5/+2 | |
| 2023-08-26 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -10/+10 | |
| 2023-08-24 | Auto merge of #115078 - camelid:tydef-to-alias, r=aDotInTheVoid,GuillaumeGomez | bors | -2/+2 | |
| rustdoc: Rename typedef to type alias This matches the name used by the [Rust Reference][1], which is also what people usually call these items. [1]: https://doc.rust-lang.org/reference/items/type-aliases.html r? `@GuillaumeGomez` | ||||
| 2023-08-21 | Fix test | Noah Lev | -2/+2 | |
| 2023-08-21 | Auto merge of #106561 - GuillaumeGomez:warning-block, r=rustdoc | bors | -0/+57 | |
| Add warning block support in rustdoc Fixes https://github.com/rust-lang/rust/issues/79710. You can test it [here](https://rustdoc.crud.net/imperio/warning-block/foo/struct.Foo.html). It currently looks like this:  So a few things to note: * Since it's a new add and it's changing the UI, we'll need to go through an FCP. * Does the UI looks good? * Is the way picked to add a warning block ok for everyone? The discussion on the issue seemed to be in favour of this solution but it doesn't hurt to double-check. cc `@rust-lang/rustdoc` | ||||
| 2023-08-20 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -8/+8 | |
| 2023-08-19 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -24/+24 | |
| 2023-08-19 | Merge values with same colors | Guillaume Gomez | -37/+20 | |
| 2023-08-19 | Use function to remove code duplication for `search-form-elements.goml` test | Guillaume Gomez | -255/+148 | |
| 2023-08-15 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -3/+3 | |
| 2023-08-14 | Add GUI test for warning blocks | Guillaume Gomez | -0/+57 | |
| 2023-08-13 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -26/+26 | |
| 2023-08-12 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -63/+63 | |
| 2023-08-08 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -36/+36 | |
| 2023-08-06 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -3/+3 | |
| 2023-08-05 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -6/+6 | |
| 2023-08-04 | Rollup merge of #114475 - GuillaumeGomez:migrate-gui-test-color-27, r=notriddle | Michael Goulet | -6/+6 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle` | ||||
| 2023-08-04 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -6/+6 | |
| 2023-08-04 | Rollup merge of #114404 - GuillaumeGomez:migrate-gui-test-color-26, r=notriddle | Matthias Krüger | -1/+1 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. Seems like this one was forgotten... r? `@notriddle` | ||||
| 2023-08-04 | Rollup merge of #114348 - GuillaumeGomez:migrate-gui-test-color-25, r=notriddle | Matthias Krüger | -43/+30 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle` | ||||
| 2023-08-03 | Add `internal_features` lint | Nilstrieb | -0/+2 | |
| It lints against features that are inteded to be internal to the compiler and standard library. Implements MCP #596. We allow `internal_features` in the standard library and compiler as those use many features and this _is_ the standard library from the "internal to the compiler and standard library" after all. Marking some features as internal wasn't exactly the most scientific approach, I just marked some mostly obvious features. While there is a categorization in the macro, it's not very well upheld (should probably be fixed in another PR). We always pass `-Ainternal_features` in the testsuite About 400 UI tests and several other tests use internal features. Instead of throwing the attribute on each one, just always allow them. There's nothing wrong with testing internal features^^ | ||||
| 2023-08-03 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -1/+1 | |
| 2023-08-02 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -43/+30 | |
| 2023-07-31 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -8/+8 | |
| 2023-07-23 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -2/+2 | |
| 2023-07-22 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -24/+25 | |
| 2023-07-18 | Update rustdoc GUI tests | Guillaume Gomez | -3/+3 | |
| 2023-07-15 | Rollup merge of #113724 - GuillaumeGomez:migrate-gui-test-color-21, r=notriddle | Matthias Krüger | -10/+10 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle` | ||||
| 2023-07-15 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -10/+10 | |
| 2023-07-14 | rustdoc: use `src` consistently over `source` in code | Michael Howell | -64/+64 | |
| The CSS uses an inconsistent mix of both. This commit switches it to always use `src`. | ||||
| 2023-07-12 | Update jump to def tests | Guillaume Gomez | -3/+3 | |
| 2023-07-08 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -6/+6 | |
| 2023-07-03 | Rollup merge of #113285 - GuillaumeGomez:display-long-inline-cfg, r=notriddle | Guillaume Gomez | -1/+20 | |
| [rustdoc] Fix display of long inline cfg labels Fixes #87957. Fixes #112880. Before:  After:  r? `@notriddle` | ||||
| 2023-07-03 | Add GUI test for long inline cfg labels display | Guillaume Gomez | -1/+20 | |
| 2023-07-02 | Rollup merge of #113258 - GuillaumeGomez:migrate-gui-test-color-19, r=notriddle | Matthias Krüger | -15/+15 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle` | ||||
| 2023-07-02 | Auto merge of #108537 - ↵ | bors | -1/+1 | |
| GuillaumeGomez:rustdoc-search-whitespace-as-separator, r=notriddle rustdoc: Allow whitespace as path separator like double colon Fixes https://github.com/rust-lang/rust/issues/108447. I think it makes sense since it allows more common cases, however it also makes the syntax heavier. Not sure what the rest of the team thinks about it. In any case we'll need to go through FCP. Full explanation for the changes is available [here](https://github.com/rust-lang/rust/pull/108537#issuecomment-1589480564). r? `@notriddle` | ||||
| 2023-07-02 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -15/+15 | |
| 2023-07-02 | Rollup merge of #113228 - GuillaumeGomez:migrate-gui-test-color-18, r=notriddle | Matthias Krüger | -9/+9 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? ``@notriddle`` | ||||
| 2023-07-01 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -9/+9 | |
| 2023-06-30 | Improve search-result-display.goml test | Guillaume Gomez | -4/+5 | |
| 2023-06-28 | Update GUI tests | Guillaume Gomez | -11/+37 | |
| 2023-06-25 | Rollup merge of #113023 - GuillaumeGomez:migrate-gui-test-color-17, r=notriddle | Matthias Krüger | -3/+3 | |
| Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle` | ||||
| 2023-06-25 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -3/+3 | |
| 2023-06-25 | Rollup merge of #112937 - camelid:align-typenames, r=notriddle,GuillaumeGomez | Matthias Krüger | -1/+2 | |
| rustdoc: Align search results horizontally for easy scanning The recent PR #110688 added info about an item's kind before its name in search results. However, because the kind and name are inline with no alignment, it's now hard to visually scan downward through the search results, looking at item names. This PR fixes that by horizontally aligning search results such that there are now two columns of information. r? `@GuillaumeGomez` | ||||
| 2023-06-24 | rustdoc: Update GUI test | Noah Lev | -1/+2 | |
| 2023-06-24 | Migrate GUI colors test to original CSS color format | Guillaume Gomez | -30/+30 | |
| 2023-06-23 | Rollup merge of #112962 - GuillaumeGomez:fix-rustdoc-gui-tester, r=ozkanonur | Matthias Krüger | -1/+4 | |
| Fix rustdoc gui tester Problem was that the `main` was always exiting with `0`, whether or not there was an error. It led to failing GUI tests being ignored in the CI since no one saw them. r? ````@klensy```` | ||||
| 2023-06-23 | Fix GUI test for popover | Guillaume Gomez | -2/+2 | |
