This commit is contained in:
relikd
2020-09-23 21:02:53 +02:00
parent c396861bcc
commit 861b6a6893
3 changed files with 9 additions and 5 deletions

View File

@@ -119,7 +119,7 @@ def gen_stats(c_apps, c_domains, title):
<p>Collected through <b>{:,}&nbsp;recordings</b> with <b>{:,} individual requests</b>.</p>
<ul>
<li>List of <a href="/index/apps/">Apps</a></li>
<li>List of <a href="/category/">All Categories</a></li>
<li>List of <a href="/category/">Categories</a></li>
<li>List of <a href="/index/domains/all/">Requested Domains</a></li>
<li>List of <a href="/index/domains/tracker/">Trackers</a></li>
</ul>'''.format(title, c_apps, c_domains, c_recordings, c_logs), title=title)
@@ -154,7 +154,7 @@ def process():
symlink=index_domains.fname_tracker())
# Stats
print(' Stats')
gen_stats(app_count, dom_count, title='Statistics')
gen_stats(app_count, dom_count, title='Results')
print('')

View File

@@ -103,10 +103,14 @@ def gen_404():
def process():
print('generating root html ...')
print(' index.html')
gen_root() # root index.thml
print(' redirect.html')
gen_search() # root redirect.html?id=my.bundle.id
gen_help()
print(' 404.html')
gen_404()
print(' /help/')
gen_help()
print('')

View File

@@ -21,8 +21,8 @@
<header>
<nav>
<ul id="main-nav">
<li><a href="/index/apps/">Results</a></li>
<li><a href="/stats/">Stats</a></li>
<li><a href="/index/apps/">Apps</a></li>
<li><a href="/stats/">Results</a></li>
<li><a href="/help/">Help needed</a></li>
<li><a class="no-ul" href="https://github.com/relikd/appcheck" target="_blank"><img src="/static/github.svg" alt="GitHub"></a></li>
</ul>