Skip to content
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

Rollup of 7 pull requests #41400

Closed
wants to merge 20 commits into from
Closed

Rollup of 7 pull requests #41400

wants to merge 20 commits into from

Commits on Apr 15, 2017

  1. Cleaned up throughout std::path's docs

    Part of rust-lang#29368.
    * added missing links
    * updated method summaries to use 3rd person style
    * added missing periods in `Component`'s variant summaries
    * use standard iterator boilerplate in `Components`' and `Iter`'s docs
    * added example to `Iter::as_path`, adapted from `Components::as_path`'s
      example
    * consolidated examples for `Path::file_name`
    * some other small fixes
    lukaramu committed Apr 15, 2017
    Configuration menu
    Copy the full SHA
    1afe77f View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2017

  1. Configuration menu
    Copy the full SHA
    8c21b60 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2017

  1. Restructure and redistribute std::path's module docs

    Part of rust-lang#29368.
    * Added a new summary paragraph about std::path's parsing facilities
    * Slightly exanded `Component`'s docs
    * removed the now redundant section on component types from the module docs
    * moved the section on path normalization during parsing to the docs on
      `Path::components`
    * Clarified difference between `Prefix` and `PrefixComponent` in their
      respecive summary sentences
    lukaramu committed Apr 17, 2017
    Configuration menu
    Copy the full SHA
    51ca5fe View commit details
    Browse the repository at this point in the history
  2. Expand std::path::Display's docs

    Part of rust-lang#29368.
    * Added explanation for why the struct exists
    * Added link to where it is created
    * Added example
    lukaramu committed Apr 17, 2017
    Configuration menu
    Copy the full SHA
    32132d9 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2017

  1. Fix typos in std::path's docs

    * Closed an unclosed paren
    * seperator -> separator
    * deperator -> separator
    lukaramu committed Apr 18, 2017
    Configuration menu
    Copy the full SHA
    d6f7577 View commit details
    Browse the repository at this point in the history
  2. update mdbook

    steveklabnik committed Apr 18, 2017
    Configuration menu
    Copy the full SHA
    43d92bb View commit details
    Browse the repository at this point in the history
  3. Fix a few stability attributes

    These show up in rustdoc so need to be correct.
    ollie27 committed Apr 18, 2017
    Configuration menu
    Copy the full SHA
    fd325a1 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2017

  1. Add top level sections to the Unstable Book.

    Prior to this commit, the contents of the Unstable Book were assumed to
    be unstable features. This commit moves features into 'language features'
    or 'library features' subsections. It also moves the 'linker_flavor'
    compiler flag into a new 'Compiler Flags' subsection.
    
    Even though it was helpful, I removed the tidy check that
    cross-references the SUMMARY.md links with the Unstable Book directory
    contents just because it would be difficult to maintain.
    
    Relevant PR: rust-lang#41142.
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    fea3576 View commit details
    Browse the repository at this point in the history
  2. Bump book and reference.

    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    bf202c8 View commit details
    Browse the repository at this point in the history
  3. Override ToOwned::clone_into for Path and OsStr

    The only non-overridden one remaining is the CStr impl, which cannot
    be optimized as doing so would break CString's second invariant.
    scottmcm committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    295bcdb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d6b8d9f View commit details
    Browse the repository at this point in the history
  5. Disable git caches again

    aidanhs committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    24640b3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2e2a670 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#41295 - frewsxcv:frewsxcxv-unstability, r=s…

    …teveklabnik
    
    Add top level sections to the Unstable Book.
    
    Prior to this commit, the contents of the Unstable Book were assumed to
    be unstable features. This commit moves features into 'language features'
    or 'library features' subsections. It also moves the 'linker_flavor'
    compiler flag into a new 'Compiler Flags' subsection.
    
    Even though it was helpful, I removed the tidy check that
    cross-references the SUMMARY.md links with the Unstable Book directory
    contents just because it would be difficult to maintain.
    
    Relevant PR: rust-lang#41142.
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    04b31f7 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#41348 - lukaramu:std-path-docs, r=frewsxcv

    Improve std::path docs
    
    Fixes rust-lang#29368.
    
    This PR contains a pretty significant redistribution of some of the module docs to more appropriate places, as well as general expansion, clarification, and additional examples.
    
    For more details, see the commit descriptions.
    
    r? @steveklabnik
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    a72e384 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#41374 - steveklabnik:update-mdbook, r=frewsxcv

    update mdbook
    
    Ship some more improvements.
    
    r? @rust-lang/docs
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    31906a9 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#41380 - ollie27:stability, r=BurntSushi

    Fix a few stability attributes
    
    These show up in rustdoc so need to be correct.
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    559a4b3 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#41390 - scottmcm:toowned-clone-into, r=alex…

    …crichton
    
    Override ToOwned::clone_into for Path and OsStr
    
    The only non-overridden one remaining is the CStr impl, which cannot
    be optimized as doing so would break CString's second invariant.
    
    Follow-up to 7ec27ae (PR rust-lang#41009).
    
    r? @alexcrichton
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    c28372d View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#41391 - durka:patch-40, r=petrochenkov

    remove disclaimer from bootstrap/README.md
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    644b5b1 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#41398 - aidanhs:aphs-no-git-caches-again, r…

    …=alexcrichton
    
    Disable git caches again
    
    The appveyor ones aren't working anyway (I need to talk to appveyor about them being corrupt) and the travis cache is taking too long to restore and is being killed, which is sometimes causing bad things to happen because the integrity checking made assumptions that restore was atomic.
    
    I could fix the integrity checks, but we clearly need a different approach if restore is taking too long. Let's disable it all for now.
    frewsxcv committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    8efa218 View commit details
    Browse the repository at this point in the history