about summary refs log tree commit diff
path: root/src/tools/rustbook
AgeCommit message (Collapse)AuthorLines
2019-03-01tools/rustbook: deny(rust_2018_idioms)Mazdak Farrokhzad-4/+5
2019-01-30Update to newer version of mdbook(2)James Munns-1/+1
2019-01-30Remove stable featureJames Munns-2/+0
2019-01-30Only the compatibility items from the embedded book PRJames Munns-17/+67
PR: https://github.com/rust-lang/rust/pull/56291
2018-12-25Remove licensesMark Rousskov-9/+0
2018-04-22Update MDBookMatt Ickstadt-1/+1
2018-04-05update mdbooksteveklabnik-1/+2
This includes search for all books, a long-requested feature!
2018-02-04update mdbook to 0.1.2steveklabnik-4/+8
and improve printing of errors
2018-01-15Check for deadlinks from the summary during book generationest31-6/+8
Previously, any deadlinks from a book's SUMMARY.md wouldn't cause any errors or warnings or similar but mdbook would simply create a page with blank content. This has kept bug #47394 hidden. It should have been detected back in the PR when those wrongly named files got added to the book. PR #47414 was one component of the solution. This change is a second line of defense for the unstable book and a first line of defense for any other book. We also update mdbook to the most recent version.
2017-10-02update mdbooksteveklabnik-1/+1
Fixes #44704
2017-09-11update mdbooksteveklabnik-21/+8
2017-09-04rustbook: remove dead test functionsRalf Jung-9/+0
2017-07-11update crate dependenciessteveklabnik-2/+2
I wanted to update mdbook's version. This ended up updating a bunch of other stuff too.
2017-04-27Bump mdbook dep to pick up new 'create missing' toggle feature.Corey Farwell-5/+16
This will avoid obscure Travis CI error messages: * https://github.com/rust-lang/rust/pull/40290#issuecomment-294137045 Original mdbook issue: * https://github.com/azerupi/mdBook/issues/253 mdbook PR: * https://github.com/azerupi/mdBook/pull/254
2017-04-18update mdbooksteveklabnik-1/+1
2017-03-11Update mdbook to new versionsteveklabnik-1/+1
This brings back playpen integration for the books.
2017-02-28update mdbook versionSteve Klabnik-1/+1
This contains two important bugfixes
2017-02-20Update mdBook versionSteve Klabnik-1/+1
This brings in a needed bugfix.
2017-02-19Update mdbook versionSteve Klabnik-1/+1
This version of mdbook includes https://github.com/azerupi/mdBook/pull/207 , which is needed so that we can start doing linkchecker on the various books.
2017-02-13Add exceptions to tidySteve Klabnik-7/+18
We've decided that these deps are okay.
2017-02-13Re-implement rustbook in terms of mdbookSteve Klabnik-971/+87
mdbook has a lot of optional dependencies that we don't want, so instead of using it directly, we re-build rustbook to use mdbook as a library. For convenience' sake, we keep the same CLI interface as mdbook; the only difference is that it only accepts build and test subcommands, rather than the full range.
2016-12-29Fallout from updating bootstrap CargoAlex Crichton-0/+1
2016-10-31Changed most vec! invocations to use square bracesiirelu-5/+5
Most of the Rust community agrees that the vec! macro is clearer when called using square brackets [] instead of regular brackets (). Most of these ocurrences are from before macros allowed using different types of brackets. There is one left unchanged in a pretty-print test, as the pretty printer still wants it to have regular brackets.
2016-10-15rustdoc: Improve playground run buttonsOliver Middleton-6/+1
The main change is to stop using javascript to generate the URLs and use rustdoc instead. This also adds run buttons to the error index examples.
2016-10-12Stabilise `?`Nick Cameron-1/+0
cc [`?` tracking issue](https://github.com/rust-lang/rust/issues/31436)
2016-10-07Use workspaces and switch to a single Cargo.lock.Ahmed Charles-4/+0
This involves hacking the code used to run cargo test on various packages, because it reads Cargo.lock to determine which packages should be tested. This change implements a blacklist, since that will catch new crates when they are added in the future.
2016-08-29rustbook chapters/sections should be an ordered list.Corey Farwell-4/+4
2016-07-03std: Stabilize APIs for the 1.11.0 releaseAlex Crichton-1/+0
Although the set of APIs being stabilized this release is relatively small, the trains keep going! Listed below are the APIs in the standard library which have either transitioned from unstable to stable or those from unstable to deprecated. Stable * `BTreeMap::{append, split_off}` * `BTreeSet::{append, split_off}` * `Cell::get_mut` * `RefCell::get_mut` * `BinaryHeap::append` * `{f32, f64}::{to_degrees, to_radians}` - libcore stabilizations mirroring past libstd stabilizations * `Iterator::sum` * `Iterator::product` Deprecated * `{f32, f64}::next_after` * `{f32, f64}::integer_decode` * `{f32, f64}::ldexp` * `{f32, f64}::frexp` * `num::One` * `num::Zero` Added APIs (all unstable) * `iter::Sum` * `iter::Product` * `iter::Step` - a few methods were added to accomodate deprecation of One/Zero Removed APIs * `From<Range<T>> for RangeInclusive<T>` - everything about `RangeInclusive` is unstable Closes #27739 Closes #27752 Closes #32526 Closes #33444 Closes #34152 cc #34529 (new tracking issue)
2016-05-03Remove unused trait imports flagged by lintSeo Sanghyeon-2/+0
2016-03-22fix alignmentJorge Aparicio-4/+4
2016-03-22sprinkle feature gates here and thereJorge Aparicio-0/+1
2016-03-22try! -> ?Jorge Aparicio-39/+39
Automated conversion using the untry tool [1] and the following command: ``` $ find -name '*.rs' -type f | xargs untry ``` at the root of the Rust repo. [1]: https://github.com/japaric/untry
2016-03-08rustbuild: Move rustbook to a `src/tools` directoryAlex Crichton-0/+986
We've actually got quite a few tools that are compiled as part of our build, let's start housing them all in a `tools` directory.