This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into rh-voting-rule-tweak
* master: (67 commits) Downstream `node-template` pull (#9915) Implement core::fmt::Debug for BoundedVec (#9914) Quickly skip invalid transactions during block authorship. (#9789) Add SS58 prefix for Automata (#9805) Clean up sc-peerset (#9806) Test each benchmark case in own #[test] (#9860) Add build with docker section to README (#9792) Simple Trait to Inspect Metadata (#9893) Pallet Assets: Create new asset classes from genesis config (#9742) doc: subkey usage (#9905) Silence alert about large-statement-fetcher (#9882) Fix democracy on-initialize weight (#9890) Fix basic authorship flaky test (#9906) contracts: Add event field names (#9896) subkey readme update on install (#9900) add feature wasmtime-jitdump (#9871) Return `target_hash` for finality_target instead of an Option (#9867) Update wasmtime to 0.29.0 (#9552) Less sleeps (#9848) remove unidiomatic (#9895) ...
- Loading branch information
Showing
341 changed files
with
19,013 additions
and
4,606 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<% | ||
const capFirst = s => (s && s[0].toUpperCase() + s.slice(1)) || ""; | ||
%> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title><%= capFirst(repo_name) %> Rustdocs</title> | ||
<meta name="description" content="Nothing here." /> | ||
<meta name="robots" content="noindex"> | ||
<style> | ||
body { | ||
font-family: Helvetica, Arial, Sans Serif; | ||
margin: 0; | ||
} | ||
.center-me { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
.content { | ||
display: block; | ||
} | ||
.content li { | ||
font-size: 1em; | ||
line-height: .4em; | ||
padding: .8em 0; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="center-me"> | ||
<div class="content"> | ||
<h1><%= capFirst(repo_name) %> Rustdocs</h1> | ||
<section> | ||
<ul> | ||
<%_ deploy_refs.split(/\s+/).forEach(ref => { _%> | ||
<li> | ||
<a href="/<%= repo_name _%>/<%= ref _%>"><%- ref -%></a> | ||
<%_ if (latest && latest.trim() !== '' && latest === ref) { _%> | ||
(<a href="/<%= repo_name _%>/latest">latest</a>) | ||
<%_ } _%> | ||
</li> | ||
<%_ }) _%> | ||
</ul> | ||
</section> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.