Эх сурвалжийг харах

Update repo and doc links

Josh Stone 9 жил өмнө
parent
commit
b4026b9fec

+ 1 - 1
.travis.yml

@@ -26,7 +26,7 @@ after_success: |
   eval "$(ssh-agent -s)" &&
   ssh-add .travis/deploy &&
   pip install ghp-import --user $USER &&
-  cp doc/index.html target/doc/ &&
+  cp doc/* target/doc/ &&
   $HOME/.local/bin/ghp-import -n target/doc &&
   git push -qf ssh://[email protected]/${TRAVIS_REPO_SLUG}.git gh-pages
 notifications:

+ 3 - 3
Cargo.toml

@@ -4,9 +4,9 @@ name = "num"
 version = "0.1.27"
 authors = ["The Rust Project Developers"]
 license = "MIT/Apache-2.0"
-homepage = "https://github.com/rust-lang/num"
-repository = "https://github.com/rust-lang/num"
-documentation = "http://doc.rust-lang.org/num"
+homepage = "https://github.com/rust-num/num"
+repository = "https://github.com/rust-num/num"
+documentation = "http://rust-num.github.io/num"
 keywords = ["mathematics", "numerics"]
 description = """
 Simple numerics. This crate contains basic arbitrary-sized integer,

+ 1 - 1
README.md

@@ -2,7 +2,7 @@
 
 Arbitrary sized numeric types for Rust.
 
-[Documentation](http://doc.rust-lang.org/num)
+[Documentation](http://rust-num.github.io/num)
 
 ## Usage
 

BIN
doc/favicon.ico


BIN
doc/rust-logo-128x128-blk-v2.png


+ 3 - 3
num-macros/Cargo.toml

@@ -3,9 +3,9 @@ name = "num-macros"
 version = "0.1.27"
 authors = ["The Rust Project Developers"]
 license = "MIT/Apache-2.0"
-homepage = "https://github.com/rust-lang/num"
-repository = "https://github.com/rust-lang/num"
-documentation = "http://doc.rust-lang.org/num"
+homepage = "https://github.com/rust-num/num"
+repository = "https://github.com/rust-num/num"
+documentation = "http://rust-num.github.io/num"
 keywords = ["mathematics", "numerics"]
 description = """
 Numeric syntax extensions.

+ 3 - 3
src/lib.rs

@@ -48,9 +48,9 @@
 //! ```
 //!
 //! [newt]: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method
-#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
-       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
-       html_root_url = "http://doc.rust-lang.org/num/",
+#![doc(html_logo_url = "http://rust-num.github.io/num/rust-logo-128x128-blk-v2.png",
+       html_favicon_url = "http://rust-num.github.io/num/favicon.ico",
+       html_root_url = "http://rust-num.github.io/num/",
        html_playground_url = "http://play.rust-lang.org/")]
 
 #[cfg(feature = "rustc-serialize")]