Skip to content

Commit 8bf4324

Browse files
author
Deploy from CI
committed
Deploy 4c6d66c to gh-pages
0 parents  commit 8bf4324

File tree

282 files changed

+421920
-0
lines changed

Some content is hidden

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

282 files changed

+421920
-0
lines changed

.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.

404.html

Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="light sidebar-visible" dir="ltr">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Page not found - Rust Compiler Development Guide</title>
7+
<base href="/">
8+
9+
10+
<!-- Custom HTML head -->
11+
12+
<meta name="description" content="A guide to developing the Rust compiler (rustc)">
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
<meta name="theme-color" content="#ffffff">
15+
16+
<link rel="icon" href="favicon.svg">
17+
<link rel="shortcut icon" href="favicon.png">
18+
<link rel="stylesheet" href="css/variables.css">
19+
<link rel="stylesheet" href="css/general.css">
20+
<link rel="stylesheet" href="css/chrome.css">
21+
<link rel="stylesheet" href="css/print.css" media="print">
22+
23+
<!-- Fonts -->
24+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
25+
<link rel="stylesheet" href="fonts/fonts.css">
26+
27+
<!-- Highlight.js Stylesheets -->
28+
<link rel="stylesheet" id="highlight-css" href="highlight.css">
29+
<link rel="stylesheet" id="tomorrow-night-css" href="tomorrow-night.css">
30+
<link rel="stylesheet" id="ayu-highlight-css" href="ayu-highlight.css">
31+
32+
<!-- Custom theme stylesheets -->
33+
34+
35+
<!-- Provide site root and default themes to javascript -->
36+
<script>
37+
const path_to_root = "";
38+
const default_light_theme = "light";
39+
const default_dark_theme = "navy";
40+
</script>
41+
<!-- Start loading toc.js asap -->
42+
<script src="toc.js"></script>
43+
</head>
44+
<body>
45+
<div id="body-container">
46+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
47+
<script>
48+
try {
49+
let theme = localStorage.getItem('mdbook-theme');
50+
let sidebar = localStorage.getItem('mdbook-sidebar');
51+
52+
if (theme.startsWith('"') && theme.endsWith('"')) {
53+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
54+
}
55+
56+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
57+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
58+
}
59+
} catch (e) { }
60+
</script>
61+
62+
<!-- Set the theme before any content is loaded, prevents flash -->
63+
<script>
64+
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
65+
let theme;
66+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
67+
if (theme === null || theme === undefined) { theme = default_theme; }
68+
const html = document.documentElement;
69+
html.classList.remove('light')
70+
html.classList.add(theme);
71+
html.classList.add("js");
72+
</script>
73+
74+
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
75+
76+
<!-- Hide / unhide sidebar before it is displayed -->
77+
<script>
78+
let sidebar = null;
79+
const sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
80+
if (document.body.clientWidth >= 1080) {
81+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
82+
sidebar = sidebar || 'visible';
83+
} else {
84+
sidebar = 'hidden';
85+
}
86+
sidebar_toggle.checked = sidebar === 'visible';
87+
html.classList.remove('sidebar-visible');
88+
html.classList.add("sidebar-" + sidebar);
89+
</script>
90+
91+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
92+
<!-- populated by js -->
93+
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
94+
<noscript>
95+
<iframe class="sidebar-iframe-outer" src="toc.html"></iframe>
96+
</noscript>
97+
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
98+
<div class="sidebar-resize-indicator"></div>
99+
</div>
100+
</nav>
101+
102+
<div id="page-wrapper" class="page-wrapper">
103+
104+
<div class="page">
105+
<div id="menu-bar-hover-placeholder"></div>
106+
<div id="menu-bar" class="menu-bar sticky">
107+
<div class="left-buttons">
108+
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
109+
<i class="fa fa-bars"></i>
110+
</label>
111+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
112+
<i class="fa fa-paint-brush"></i>
113+
</button>
114+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
115+
<li role="none"><button role="menuitem" class="theme" id="default_theme">Auto</button></li>
116+
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
117+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
118+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
119+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
120+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
121+
</ul>
122+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
123+
<i class="fa fa-search"></i>
124+
</button>
125+
</div>
126+
127+
<h1 class="menu-title">Rust Compiler Development Guide</h1>
128+
129+
<div class="right-buttons">
130+
<a href="print.html" title="Print this book" aria-label="Print this book">
131+
<i id="print-button" class="fa fa-print"></i>
132+
</a>
133+
<a href="https://github.com/rust-lang/rustc-dev-guide" title="Git repository" aria-label="Git repository">
134+
<i id="git-repository-button" class="fa fa-github"></i>
135+
</a>
136+
137+
</div>
138+
</div>
139+
140+
<div id="search-wrapper" class="hidden">
141+
<form id="searchbar-outer" class="searchbar-outer">
142+
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
143+
</form>
144+
<div id="searchresults-outer" class="searchresults-outer hidden">
145+
<div id="searchresults-header" class="searchresults-header"></div>
146+
<ul id="searchresults">
147+
</ul>
148+
</div>
149+
</div>
150+
151+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
152+
<script>
153+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
154+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
155+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
156+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
157+
});
158+
</script>
159+
160+
<div id="content" class="content">
161+
<main>
162+
<h1 id="document-not-found-404"><a class="header" href="#document-not-found-404">Document not found (404)</a></h1>
163+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
164+
165+
</main>
166+
167+
<nav class="nav-wrapper" aria-label="Page navigation">
168+
<!-- Mobile navigation buttons -->
169+
170+
171+
<div style="clear: both"></div>
172+
</nav>
173+
</div>
174+
</div>
175+
176+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
177+
178+
</nav>
179+
180+
</div>
181+
182+
183+
184+
185+
<script>
186+
window.playground_copyable = true;
187+
</script>
188+
189+
190+
<script src="elasticlunr.min.js"></script>
191+
<script src="mark.min.js"></script>
192+
<script src="searcher.js"></script>
193+
194+
<script src="clipboard.min.js"></script>
195+
<script src="highlight.js"></script>
196+
<script src="book.js"></script>
197+
198+
<!-- Custom JS scripts -->
199+
<script src="mermaid.min.js"></script>
200+
<script src="mermaid-init.js"></script>
201+
202+
203+
</div>
204+
</body>
205+
</html>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rustc-dev-guide.rust-lang.org

FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FontAwesome/fonts/FontAwesome.ttf

162 KB
Binary file not shown.
162 KB
Binary file not shown.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy