Skip to content

Commit 66ebbec

Browse files
committed
ci: generate pages at 8165f28 [ci skip]
1 parent 8165f28 commit 66ebbec

File tree

1,117 files changed

+287
-470270
lines changed

Some content is hidden

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

1,117 files changed

+287
-470270
lines changed

docs/404.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "404 Not Found"
3+
permalink: /404.html
4+
---
5+
6+
## 404 Not Found
7+
8+
<div id="suggestion">
9+
お探しのページは存在しません。
10+
<a href="https://doc.rust-jp.rs">トップページ</a>からご利用ください。
11+
</div>
12+
13+
<script>
14+
var base_url = 'https://doc.rust-jp.rs';
15+
var rbe_old = '/rust-by-example-ja/rust-by-example';
16+
var rbe_new = '/rust-by-example-ja'
17+
18+
var href = location.href;
19+
var path = location.pathname;
20+
var redirect_to = '';
21+
22+
if (path.startsWith(rbe_old)) {
23+
redirect_to = href.replace(rbe_old, rbe_new);
24+
}
25+
26+
if (redirect_to != '') {
27+
var elem = document.getElementById('suggestion');
28+
elem.innerHTML = '<p>お探しのページは移動したようです。こちらのURLをお試しください。</br>'
29+
elem.innerHTML += '<a href="' + redirect_to + '">' + redirect_to + '</a></p>';
30+
elem.innerHTML += '<p>または、このサイトの<a href="' + base_url + '">トップページ</a>をご利用ください。</p>'
31+
}
32+
</script>

docs/GLOSSARY.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="" data-basepath="." data-revision="1534934361378">
41+
<div class="book" data-level="" data-basepath="." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">

docs/attribute.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="12" data-basepath="." data-revision="1534934361378">
41+
<div class="book" data-level="12" data-basepath="." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">

docs/attribute/cfg.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="12.3" data-basepath=".." data-revision="1534934361378">
41+
<div class="book" data-level="12.3" data-basepath=".." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">
@@ -2856,7 +2856,7 @@ <h1>
28562856
<div class="page-inner">
28572857

28582858

2859-
<section class="normal" id="section-gitbook_9">
2859+
<section class="normal" id="section-gitbook_15">
28602860

28612861
<h2 id="123-cfg">12.3 <code>cfg</code></h2>
28622862
<!-- Conditional compilation is possible through two different operators:

docs/attribute/cfg/custom.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="12.3.1" data-basepath="../.." data-revision="1534934361378">
41+
<div class="book" data-level="12.3.1" data-basepath="../.." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">

docs/attribute/crate.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="12.2" data-basepath=".." data-revision="1534934361378">
41+
<div class="book" data-level="12.2" data-basepath=".." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">
@@ -2856,7 +2856,7 @@ <h1>
28562856
<div class="page-inner">
28572857

28582858

2859-
<section class="normal" id="section-gitbook_18">
2859+
<section class="normal" id="section-gitbook_9">
28602860

28612861
<h2 id="122-">12.2 クレイト</h2>
28622862
<!-- The `crate_type` attribute can be used to tell the compiler whether a crate is

docs/attribute/unused.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="12.1" data-basepath=".." data-revision="1534934361378">
41+
<div class="book" data-level="12.1" data-basepath=".." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">

docs/cast.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="5" data-basepath="." data-revision="1534934361378">
41+
<div class="book" data-level="5" data-basepath="." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">
@@ -2856,7 +2856,7 @@ <h1>
28562856
<div class="page-inner">
28572857

28582858

2859-
<section class="normal" id="section-gitbook_14">
2859+
<section class="normal" id="section-gitbook_17">
28602860

28612861
<h1 id="5-">5 型キャスティング</h1>
28622862
<!-- Rust provides no implicit type conversion (coercion) between primitive types.

docs/cast/alias.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="5.3" data-basepath=".." data-revision="1534934361378">
41+
<div class="book" data-level="5.3" data-basepath=".." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">

docs/cast/inference.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
<div class="book" data-level="5.2" data-basepath=".." data-revision="1534934361378">
41+
<div class="book" data-level="5.2" data-basepath=".." data-revision="1534936122532">
4242

4343

4444
<div class="book-summary">
@@ -2856,7 +2856,7 @@ <h1>
28562856
<div class="page-inner">
28572857

28582858

2859-
<section class="normal" id="section-gitbook_16">
2859+
<section class="normal" id="section-gitbook_13">
28602860

28612861
<h2 id="52-">5.2 型推論</h2>
28622862
<!-- The type inference engine is pretty smart. It does more than looking at the

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