Skip to content

Commit 16329b0

Browse files
committedDec 22, 2018
Auto merge of #57063 - kennytm:rollup, r=kennytm
Rollup of 25 pull requests Successful merges: - #56802 (Add DoubleEndedIterator::nth_back) - #56909 (static eval: Do not ICE on layout size overflow) - #56914 (Ignore ui/target-feature-gate on sparc, sparc64, powerpc, powerpc64 and powerpc64le) - #56919 (Remove a wrong multiplier on relocation offset computation) - #56933 (Add --progress to git submodule commands in x.py) - #56936 (rename div_euc -> div_euclid, and mod_euc -> rem_euclid) - #56941 (deny intra-doc link resolution failures in libstd) - #56945 (Fix rustdoc-js tests) - #56967 (Replace current crate's searchIndex when regenerating) - #56970 (Mem uninit doc ptr drop) - #56973 (make basic CTFE tracing available on release builds) - #56979 (Adding unwinding support for x86_64_fortanix_unknown_sgx target.) - #56981 (miri: allocation is infallible) - #56984 (A few tweaks to dropck_outlives) - #56989 (Fix compiletest `trim` deprecation warnings) - #56992 (suggest similar lint names for unknown lints) - #57002 (Stabilize Vec(Deque)::resize_with) - #57011 (rustdoc: add new CLI flag to load static files from a different location) - #57027 (Optimize away a move) - #57034 (Inline tweaks) - #57039 (Update migrate warning wording.) - #57040 (Fix feature gate to point to 1.32.0 for `path_from_str`) - #57049 (Stabilize #[repr(packed(N))]) - #57050 (Fixed typo in HashMap documentation) - #57052 (Fix stabilization version numbers (exhaustive_integer_patterns + macro_literal_matcher))
2 parents 2d3e909 + 628c6d8 commit 16329b0

File tree

99 files changed

+869
-450
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+869
-450
lines changed
 

‎src/bootstrap/bootstrap.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -678,10 +678,10 @@ def update_submodule(self, module, checked_out, recorded_submodules):
678678

679679
print("Updating submodule", module)
680680

681-
run(["git", "submodule", "-q", "sync", module],
681+
run(["git", "submodule", "-q", "sync", "--progress", module],
682682
cwd=self.rust_root, verbose=self.verbose)
683683
run(["git", "submodule", "update",
684-
"--init", "--recursive", module],
684+
"--init", "--recursive", "--progress", module],
685685
cwd=self.rust_root, verbose=self.verbose)
686686
run(["git", "reset", "-q", "--hard"],
687687
cwd=module_path, verbose=self.verbose)

‎src/doc/rustdoc/src/unstable-features.md

+15
Original file line numberDiff line numberDiff line change
@@ -402,3 +402,18 @@ Using `index-page` option enables `enable-index-page` option as well.
402402
### `--enable-index-page`: generate a default index page for docs
403403

404404
This feature allows the generation of a default index-page which lists the generated crates.
405+
406+
### `--static-root-path`: control how static files are loaded in HTML output
407+
408+
Using this flag looks like this:
409+
410+
```bash
411+
$ rustdoc src/lib.rs -Z unstable-options --static-root-path '/cache/'
412+
```
413+
414+
This flag controls how rustdoc links to its static files on HTML pages. If you're hosting a lot of
415+
crates' docs generated by the same version of rustdoc, you can use this flag to cache rustdoc's CSS,
416+
JavaScript, and font files in a single location, rather than duplicating it once per "doc root"
417+
(grouping of crate docs generated into the same output directory, like with `cargo doc`). Per-crate
418+
files like the search index will still load from the documentation root, but anything that gets
419+
renamed with `--resource-suffix` will load from the given path.

0 commit comments

Comments
 (0)
Please sign in to comment.