Skip to content

Commit c593c75

Browse files
committed
rebuild pages at 8027fff
1 parent 0fceeb6 commit c593c75

14 files changed

+17
-34
lines changed

doc/main.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,11 @@
7878
return;
7979
}
8080

81-
if (e.which === 191 && $('#help').hasClass('hidden')) { // question mark
82-
e.preventDefault();
83-
$('#help').removeClass('hidden');
81+
if (e.which === 191) { // question mark
82+
if (e.shiftKey && $('#help').hasClass('hidden')) {
83+
e.preventDefault();
84+
$('#help').removeClass('hidden');
85+
}
8486
} else if (e.which === 27) { // esc
8587
if (!$('#help').hasClass('hidden')) {
8688
e.preventDefault();

doc/openssl/bn/sidebar-items.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
initSidebarItems({"mod":[["unchecked",""]],"enum":[["RNGProperty",""]],"struct":[["BigNum",""]]});
1+
initSidebarItems({"enum":[["RNGProperty",""]],"mod":[["unchecked",""]],"struct":[["BigNum",""]]});

doc/openssl/crypto/hash/sidebar-items.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/openssl/crypto/hmac/sidebar-items.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/openssl/crypto/symm/sidebar-items.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/openssl/ssl/enum.MaybeSslStream.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<section id='main' class="content enum">
4444
<h1 class='fqn'><span class='in-band'>Enum <a href='../index.html'>openssl</a>::<wbr><a href='index.html'>ssl</a>::<wbr><a class='enum' href=''>MaybeSslStream</a><wbr></span><span class='out-of-band'><span id='render-detail'>
4545
<a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a>
46-
</span><a id='src-13795' href='../../src/openssl/ssl/mod.rs.html#926-931'>[src]</a></span></h1>
46+
</span><a id='src-13795' href='../../src/openssl/ssl/mod.rs.html#920-925'>[src]</a></span></h1>
4747
<pre class='rust enum'>pub enum MaybeSslStream&lt;S&gt; <span class='where'>where S: <a class='trait' href='http://doc.rust-lang.org/nightly/std/io/trait.Read.html' title='std::io::Read'>Read</a> + <a class='trait' href='http://doc.rust-lang.org/nightly/std/io/trait.Write.html' title='std::io::Write'>Write</a></span> {
4848
Ssl(<a class='struct' href='../../openssl/ssl/struct.SslStream.html' title='openssl::ssl::SslStream'>SslStream</a>&lt;S&gt;),
4949
Normal(S),

doc/openssl/ssl/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<section id='main' class="content mod">
4444
<h1 class='fqn'><span class='in-band'>Module <a href='../index.html'>openssl</a>::<wbr><a class='mod' href=''>ssl</a><wbr></span><span class='out-of-band'><span id='render-detail'>
4545
<a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a>
46-
</span><a id='src-8045' href='../../src/openssl/ssl/mod.rs.html#1-978'>[src]</a></span></h1>
46+
</span><a id='src-8045' href='../../src/openssl/ssl/mod.rs.html#1-972'>[src]</a></span></h1>
4747
<h2 id='modules' class='section-header'><a href="#modules">Modules</a></h2>
4848
<table>
4949
<tr>

doc/openssl/ssl/sidebar-items.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/openssl/ssl/struct.SslStream.html

-7
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ <h4 id='method.new_from' class='method'><a class='stability Unmarked' title='No
5656
<div class='docblock'><p>Creates a new SSL stream</p>
5757
</div><h4 id='method.new_server' class='method'><a class='stability Unmarked' title='No stability level'></a><code>fn <a href='#method.new_server' class='fnname'>new_server</a>(ctx: &amp;<a class='struct' href='../../openssl/ssl/struct.SslContext.html' title='openssl::ssl::SslContext'>SslContext</a>, stream: S) -&gt; <a class='enum' href='http://doc.rust-lang.org/nightly/core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a class='struct' href='../../openssl/ssl/struct.SslStream.html' title='openssl::ssl::SslStream'>SslStream</a>&lt;S&gt;, <a class='enum' href='../../openssl/ssl/error/enum.SslError.html' title='openssl::ssl::error::SslError'>SslError</a>&gt;</code></h4>
5858
<div class='docblock'><p>Creates a new SSL server stream</p>
59-
</div><h4 id='method.get_inner' class='method'><a class='stability Unmarked' title='No stability level'></a><code>fn <a href='#method.get_inner' class='fnname'>get_inner</a>(&amp;mut self) -&gt; &amp;mut S</code></h4>
60-
<div class='docblock'><p>Returns a mutable reference to the underlying stream.</p>
61-
62-
<h2 id="warning" class='section-header'><a
63-
href="#warning">Warning</a></h2>
64-
<p><code>read</code>ing or <code>write</code>ing directly to the underlying stream will most
65-
likely desynchronize the SSL session.</p>
6659
</div><h4 id='method.get_ref' class='method'><a class='stability Unmarked' title='No stability level'></a><code>fn <a href='#method.get_ref' class='fnname'>get_ref</a>(&amp;self) -&gt; &amp;S</code></h4>
6760
<div class='docblock'><p>Returns a reference to the underlying stream.</p>
6861
</div><h4 id='method.get_mut' class='method'><a class='stability Unmarked' title='No stability level'></a><code>fn <a href='#method.get_mut' class='fnname'>get_mut</a>(&amp;mut self) -&gt; &amp;mut S</code></h4>

0 commit comments

Comments
 (0)