Valid path URLs + app URL without index.html

This commit is contained in:
relikd
2020-09-14 00:51:36 +02:00
parent 34fe1c1aae
commit c1f0b09399
3 changed files with 9 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ def gen_obj(bundle_id):
def gen_entry(obj):
return '''
<a href="/app/{id}/index.html">
<a href="/app/{id}/">
<div>
<img src="{img}" width="100" height="100">
<span class="name">{name}</span><br />
@@ -30,7 +30,7 @@ def gen_pager(current, total):
def mklink(i, name, active=False):
clss = ' class="active"' if active else ''
return '<a href="../{}"{}>{}</a>'.format(i, clss, name)
return '<a href="../{}/"{}>{}</a>'.format(i, clss, name)
links = ''
# if current > 1:

View File

@@ -18,16 +18,16 @@ def gen_root():
</p>
</a>
<p>
The source code of the app is available <a href="https://github.com/relikd/appcheck" target="_blank">on GitHub</a>.
The source code of the app is available <a href="https://github.com/relikd/appcheck/" target="_blank">on GitHub</a>.
</p>
<h2>Results</h2>
<p>
If you're just interested in the results, go ahead to <a href="/index/page/1">all apps</a>.
If you're just interested in the results, go ahead to <a href="/index/page/1/">all apps</a>.
</p>
<h2>Current research</h2>
<p>
We have an ongoing research project open. Your help is highly appreciated. <br>
For mor infos follow <a href="/help">this link</a>.
For mor infos follow <a href="/help/">this link</a>.
</p>
'''))
@@ -65,7 +65,7 @@ def gen_help():
txt += '''
<tr><td>{0}</td>
<td><a href="/app/{1}/index.html">{2}</a></td>
<td><a href="/app/{1}/">{2}</a></td>
<td>{3}</td>
<td><a href="{4}" target="_blank">{4}</a></td>
</tr>'''.format(i + 1, bid, x[0], rr, asurl)
@@ -85,7 +85,7 @@ def gen_search():
<script type="text/javascript">
var GET={};
window.location.search.substr(1).split("&").forEach(function(x){GET[x.split("=")[0]]=x.split("=")[1]});
if (GET["id"]) { window.location = "/app/" + GET["id"] + "/index.html"; }
if (GET["id"]) { window.location = "/app/" + GET["id"] + "/"; }
</script>'''))