roundabout,
created on Sunday, 3 December 2023, 19:24:17 (1701631457),
received on Wednesday, 31 July 2024, 06:54:38 (1722408878)
Author identity: vlad <vlad.muntoiu@gmail.com>
fa3256d2c4415bc3794d13d1482084242bc24149
app.py
@@ -491,8 +491,8 @@ def repositoryTree(username, repository, branch, subpath):
icon = specialIcon
elif os.path.isdir(path):
icon = config.folderIcon
elif guessMIME(path)[0] in config.fileIcons:
icon = config.fileIcons[guessMIME(path)[0]]
elif mimetypes.guess_type(path)[0] in config.fileIcons:
icon = config.fileIcons[mimetypes.guess_type(path)[0]]
else:
icon = config.unknownIcon
templates/about.html
@@ -74,6 +74,11 @@
font-style: italic;
font-size: 1.25em;
}
body > footer {
position: relative;
background: #00000040;
}
</style>
<x-vbox id="about-page">
<div id="logo-shadow">
templates/repo-file.html
@@ -87,7 +87,6 @@
</section>
</article>
</x-frame>
-->
<dialog id="new-branch">
<x-frame style="--width: 448px; --margin: 0;">
<div class="card">
@@ -121,6 +120,7 @@
</div>
</x-frame>
</dialog>
-->
<x-frame style="--width: 896px;" class="flexible-space">
<article class="card">
<section class="card-main">
@@ -133,7 +133,7 @@
<option value="branch-{{ branch.name }}">{{ branch.name }}</option>
{% endif %}
{% endfor %}
<option value="new">[CREATE NEW BRANCH]</option>
<!-- <option value="new">[CREATE NEW BRANCH]</option>-->
</select>
<input id="repo-path-bar" value="{{ subpath }}">
<script>