2018-11-10 22:05:29 +00:00
|
|
|
//! Static files bundled with documentation output.
|
|
|
|
//!
|
|
|
|
//! All the static files are included here for centralized access in case anything other than the
|
|
|
|
//! HTML rendering code (say, the theme checker) needs to access one of these files.
|
|
|
|
//!
|
|
|
|
//! Note about types: CSS and JavaScript files are included as `&'static str` to allow for the
|
|
|
|
//! minifier to run on them. All other files are included as `&'static [u8]` so they can be
|
|
|
|
//! directly written to a `Write` handle.
|
|
|
|
|
|
|
|
/// The file contents of the main `rustdoc.css` file, responsible for the core layout of the page.
|
|
|
|
pub static RUSTDOC_CSS: &'static str = include_str!("static/rustdoc.css");
|
|
|
|
|
|
|
|
/// The file contents of `settings.css`, responsible for the items on the settings page.
|
|
|
|
pub static SETTINGS_CSS: &'static str = include_str!("static/settings.css");
|
|
|
|
|
2018-12-02 17:00:50 +00:00
|
|
|
/// The file contents of the `noscript.css` file, used in case JS isn't supported or is disabled.
|
|
|
|
pub static NOSCRIPT_CSS: &'static str = include_str!("static/noscript.css");
|
|
|
|
|
2018-11-10 22:05:29 +00:00
|
|
|
/// The file contents of `normalize.css`, included to even out standard elements between browser
|
|
|
|
/// implementations.
|
|
|
|
pub static NORMALIZE_CSS: &'static str = include_str!("static/normalize.css");
|
|
|
|
|
|
|
|
/// The file contents of `main.js`, which contains the core JavaScript used on documentation pages,
|
|
|
|
/// including search behavior and docblock folding, among others.
|
|
|
|
pub static MAIN_JS: &'static str = include_str!("static/main.js");
|
|
|
|
|
|
|
|
/// The file contents of `settings.js`, which contains the JavaScript used to handle the settings
|
|
|
|
/// page.
|
|
|
|
pub static SETTINGS_JS: &'static str = include_str!("static/settings.js");
|
|
|
|
|
|
|
|
/// The file contents of `storage.js`, which contains functionality related to browser Local
|
|
|
|
/// Storage, used to store documentation settings.
|
|
|
|
pub static STORAGE_JS: &'static str = include_str!("static/storage.js");
|
|
|
|
|
|
|
|
/// The file contents of `brush.svg`, the icon used for the theme-switch button.
|
|
|
|
pub static BRUSH_SVG: &'static [u8] = include_bytes!("static/brush.svg");
|
|
|
|
|
|
|
|
/// The file contents of `wheel.svg`, the icon used for the settings button.
|
|
|
|
pub static WHEEL_SVG: &'static [u8] = include_bytes!("static/wheel.svg");
|
|
|
|
|
2018-11-29 00:29:49 +00:00
|
|
|
/// The file contents of `down-arrow.svg`, the icon used for the crate choice combobox.
|
|
|
|
pub static DOWN_ARROW_SVG: &'static [u8] = include_bytes!("static/down-arrow.svg");
|
|
|
|
|
2018-11-10 22:05:29 +00:00
|
|
|
/// The contents of `COPYRIGHT.txt`, the license listing for files distributed with documentation
|
|
|
|
/// output.
|
|
|
|
pub static COPYRIGHT: &'static [u8] = include_bytes!("static/COPYRIGHT.txt");
|
|
|
|
|
|
|
|
/// The contents of `LICENSE-APACHE.txt`, the text of the Apache License, version 2.0.
|
|
|
|
pub static LICENSE_APACHE: &'static [u8] = include_bytes!("static/LICENSE-APACHE.txt");
|
|
|
|
|
|
|
|
/// The contents of `LICENSE-MIT.txt`, the text of the MIT License.
|
|
|
|
pub static LICENSE_MIT: &'static [u8] = include_bytes!("static/LICENSE-MIT.txt");
|
|
|
|
|
2019-01-12 21:25:29 +00:00
|
|
|
/// The contents of `rust-logo.png`, the default icon of the documentation.
|
|
|
|
pub static RUST_LOGO: &'static [u8] = include_bytes!("static/rust-logo.png");
|
2019-01-12 21:27:09 +00:00
|
|
|
/// The contents of `favicon.ico`, the default favicon of the documentation.
|
|
|
|
pub static RUST_FAVICON: &'static [u8] = include_bytes!("static/favicon.ico");
|
2019-01-12 21:25:29 +00:00
|
|
|
|
2018-11-10 22:05:29 +00:00
|
|
|
/// The built-in themes given to every documentation site.
|
|
|
|
pub mod themes {
|
|
|
|
/// The "light" theme, selected by default when no setting is available. Used as the basis for
|
|
|
|
/// the `--theme-checker` functionality.
|
|
|
|
pub static LIGHT: &'static str = include_str!("static/themes/light.css");
|
|
|
|
|
|
|
|
/// The "dark" theme.
|
|
|
|
pub static DARK: &'static str = include_str!("static/themes/dark.css");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Files related to the Fira Sans font.
|
|
|
|
pub mod fira_sans {
|
|
|
|
/// The file `FiraSans-Regular.woff`, the Regular variant of the Fira Sans font.
|
|
|
|
pub static REGULAR: &'static [u8] = include_bytes!("static/FiraSans-Regular.woff");
|
|
|
|
|
|
|
|
/// The file `FiraSans-Medium.woff`, the Medium variant of the Fira Sans font.
|
|
|
|
pub static MEDIUM: &'static [u8] = include_bytes!("static/FiraSans-Medium.woff");
|
|
|
|
|
|
|
|
/// The file `FiraSans-LICENSE.txt`, the license text for the Fira Sans font.
|
|
|
|
pub static LICENSE: &'static [u8] = include_bytes!("static/FiraSans-LICENSE.txt");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Files related to the Source Serif Pro font.
|
|
|
|
pub mod source_serif_pro {
|
2019-01-07 13:27:50 +00:00
|
|
|
/// The file `SourceSerifPro-Regular.ttf.woff`, the Regular variant of the Source Serif Pro
|
|
|
|
/// font.
|
|
|
|
pub static REGULAR: &'static [u8] = include_bytes!("static/SourceSerifPro-Regular.ttf.woff");
|
|
|
|
|
|
|
|
/// The file `SourceSerifPro-Bold.ttf.woff`, the Bold variant of the Source Serif Pro font.
|
|
|
|
pub static BOLD: &'static [u8] = include_bytes!("static/SourceSerifPro-Bold.ttf.woff");
|
2018-11-10 22:05:29 +00:00
|
|
|
|
2019-01-07 13:27:50 +00:00
|
|
|
/// The file `SourceSerifPro-It.ttf.woff`, the Italic variant of the Source Serif Pro font.
|
|
|
|
pub static ITALIC: &'static [u8] = include_bytes!("static/SourceSerifPro-It.ttf.woff");
|
2018-11-10 22:05:29 +00:00
|
|
|
|
|
|
|
/// The file `SourceSerifPro-LICENSE.txt`, the license text for the Source Serif Pro font.
|
2019-04-21 02:27:37 +00:00
|
|
|
pub static LICENSE: &'static [u8] = include_bytes!("static/SourceSerifPro-LICENSE.md");
|
2018-11-10 22:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Files related to the Source Code Pro font.
|
|
|
|
pub mod source_code_pro {
|
|
|
|
/// The file `SourceCodePro-Regular.woff`, the Regular variant of the Source Code Pro font.
|
|
|
|
pub static REGULAR: &'static [u8] = include_bytes!("static/SourceCodePro-Regular.woff");
|
|
|
|
|
|
|
|
/// The file `SourceCodePro-Semibold.woff`, the Semibold variant of the Source Code Pro font.
|
|
|
|
pub static SEMIBOLD: &'static [u8] = include_bytes!("static/SourceCodePro-Semibold.woff");
|
|
|
|
|
|
|
|
/// The file `SourceCodePro-LICENSE.txt`, the license text of the Source Code Pro font.
|
2019-04-29 21:15:28 +00:00
|
|
|
pub static LICENSE: &'static [u8] = include_bytes!("static/SourceCodePro-LICENSE.txt");
|
2018-11-10 22:05:29 +00:00
|
|
|
}
|
2018-11-16 10:36:40 +00:00
|
|
|
|
|
|
|
/// Files related to the sidebar in rustdoc sources.
|
|
|
|
pub mod sidebar {
|
|
|
|
/// File script to handle sidebar.
|
|
|
|
pub static SOURCE_SCRIPT: &'static str = include_str!("static/source-script.js");
|
|
|
|
}
|