Add ZF DAG view

This commit is contained in:
Jack Grigg 2021-06-15 17:45:18 +01:00
parent 6b2650410e
commit bf822e557c
2 changed files with 12 additions and 3 deletions

View File

@ -6,8 +6,9 @@
<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 ECC teams.</p>
<p><a href="zcash-core-dag.svg">Zcash core team DAG</a></p>
<p><a href="zcash-wallet-dag.svg">Zcash wallet team DAG</a></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.svg">ECC core team DAG</a></p>
<p><a href="zcash-wallet-dag.svg">ECC wallet team DAG</a></p>
<p><a href="zcash-zf-dag.svg">ZF DAG</a></p>
</body>
</html>

View File

@ -39,9 +39,17 @@ WALLET_REPOS = {
225922879: ('zcash', 'zcash-ios-wallet'),
}
ZF_REPOS = {
205255683: ('ZcashFoundation', 'zebra'),
225479018: ('ZcashFoundation', 'redjubjub'),
235651437: ('ZcashFoundation', 'ed25519-zebra'),
279422254: ('ZcashFoundation', 'zcash_script'),
}
REPO_SETS = {
'core': CORE_REPOS,
'wallet': WALLET_REPOS,
'zf': ZF_REPOS,
}
REPOS = REPO_SETS[DAG_VIEW]