Skip to content

Commit

Permalink
rebuild pages at 8027fff
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Apr 15, 2015
1 parent 0fceeb6 commit c593c75
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 34 deletions.
8 changes: 5 additions & 3 deletions doc/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@
return;
}

if (e.which === 191 && $('#help').hasClass('hidden')) { // question mark
e.preventDefault();
$('#help').removeClass('hidden');
if (e.which === 191) { // question mark
if (e.shiftKey && $('#help').hasClass('hidden')) {
e.preventDefault();
$('#help').removeClass('hidden');
}
} else if (e.which === 27) { // esc
if (!$('#help').hasClass('hidden')) {
e.preventDefault();
Expand Down
2 changes: 1 addition & 1 deletion doc/openssl/bn/sidebar-items.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
initSidebarItems({"mod":[["unchecked",""]],"enum":[["RNGProperty",""]],"struct":[["BigNum",""]]});
initSidebarItems({"enum":[["RNGProperty",""]],"mod":[["unchecked",""]],"struct":[["BigNum",""]]});
2 changes: 1 addition & 1 deletion doc/openssl/crypto/hash/sidebar-items.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion doc/openssl/crypto/hmac/sidebar-items.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion doc/openssl/crypto/symm/sidebar-items.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion doc/openssl/ssl/enum.MaybeSslStream.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<section id='main' class="content enum">
<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'>
<a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a>
</span><a id='src-13795' href='../../src/openssl/ssl/mod.rs.html#926-931'>[src]</a></span></h1>
</span><a id='src-13795' href='../../src/openssl/ssl/mod.rs.html#920-925'>[src]</a></span></h1>
<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> {
Ssl(<a class='struct' href='../../openssl/ssl/struct.SslStream.html' title='openssl::ssl::SslStream'>SslStream</a>&lt;S&gt;),
Normal(S),
Expand Down
2 changes: 1 addition & 1 deletion doc/openssl/ssl/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<section id='main' class="content mod">
<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'>
<a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a>
</span><a id='src-8045' href='../../src/openssl/ssl/mod.rs.html#1-978'>[src]</a></span></h1>
</span><a id='src-8045' href='../../src/openssl/ssl/mod.rs.html#1-972'>[src]</a></span></h1>
<h2 id='modules' class='section-header'><a href="#modules">Modules</a></h2>
<table>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion doc/openssl/ssl/sidebar-items.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions doc/openssl/ssl/struct.SslStream.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,6 @@ <h4 id='method.new_from' class='method'><a class='stability Unmarked' title='No
<div class='docblock'><p>Creates a new SSL stream</p>
</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>
<div class='docblock'><p>Creates a new SSL server stream</p>
</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>
<div class='docblock'><p>Returns a mutable reference to the underlying stream.</p>

<h2 id="warning" class='section-header'><a
href="#warning">Warning</a></h2>
<p><code>read</code>ing or <code>write</code>ing directly to the underlying stream will most
likely desynchronize the SSL session.</p>
</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>
<div class='docblock'><p>Returns a reference to the underlying stream.</p>
</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>
Expand Down
Loading

0 comments on commit c593c75

Please sign in to comment.