Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add FROST DAG; revamp index #16

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 20 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Zcash Developers Hub</title>
</head>
<body>
<h1>Zcash Developers Hub</h1>
<p>Eventually this will be a common resource for development teams working on Zcash.</p>
<p>Currently this is just hosting DAGs showing dependencies between issues and PRs, for several Zcash teams.</p>
<p><a href="zcash-core-dag">ECC core team DAG</a></p>
<p><a href="zcash-wallet-dag">ECC wallet team DAG</a></p>
<p><a href="zcash-zf-dag">ZF DAG</a></p>
<p><a href="zcash-halo2-dag">Halo2-focused DAG</a></p>
</body>
</html>

<head>
<title>Zcash Foundation DAGs</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/simple.css"
integrity="sha256-v8KWnmx4+mlZ/f1S8frggTGREo4BpdgdZ2L2a1ZdmoA=" crossorigin="anonymous">
</head>

<body>
<h1>Zcash Foundation DAGs</h1>
<main>
<p><a href="zcash-zf-dag">Zebra & related repos</a></p>
<p><a href="zcash-zf-frost-dag">FROST</a></p>
</main>
<footer>Generated with a <a href="https://github.com/ZcashFoundation/developers">script</a>
forked from <a href="https://github.com/zcash/developers">ECC</a>.
See also <a href="https://zcash.github.io/developers/">ECC DAGs</a>.
</footer>
</body>

</html>
5 changes: 5 additions & 0 deletions zcash-issue-dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,18 @@
279422254: ('ZcashFoundation', 'zcash_script'),
}

ZF_FROST_REPOS = {
437862440: ('ZcashFoundation', 'frost'),
}

REPO_SETS = {
'core': CORE_REPOS,
'halo2': HALO2_REPOS,
'wallet': WALLET_REPOS,
'wallet-ios': IOS_REPOS,
'wallet-android': ANDROID_REPOS,
'zf': ZF_REPOS,
'zf-frost': ZF_FROST_REPOS,
}

REPOS = REPO_SETS[DAG_VIEW]
Expand Down