roundabout,
created on Tuesday, 5 December 2023, 15:06:57 (1701788817),
received on Wednesday, 31 July 2024, 06:54:39 (1722408879)
Author identity: vlad <vlad.muntoiu@gmail.com>
5df7ee787dd1ccd9a98a756c1830fb7255d9c575
templates/repo-file.html
@@ -127,13 +127,13 @@
<x-vbox>
<x-buttonbox>
<select id="branch-selection" style="flex: 0 1 auto;">
<option value="branch-{{ current }}" selected>{{ current }}</option>
<option value="ref-{{ current }}" selected>{% if "tag:" in current %}tag:{% endif %}{{ current | replace("~", "/") | replace("tag:", " ") }}</option>
{% for branch in branches %}
{% if branch.name != current %}
<option value="branch-{{ branch.name }}">{{ branch.name }}</option>
{% if branch[0] != current | replace("~", "/") | replace("tag:", " ") %}
<option value="ref-{% if branch[1] == 'tag' %}tag:{% endif %}{{ branch[0] | replace('/', '~') }}">{% if branch[1] == "tag" %}tag: {% endif %}{{ branch[0] }}</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>
@@ -143,7 +143,7 @@
if(branchSelect.value == "new") {
document.getElementById("new-branch").showModal();
} else {
const PREFIX = "branch-";
const PREFIX = "ref-";
if(branchSelect.value.startsWith(PREFIX)) {
branch = branchSelect.value.slice(PREFIX.length);
}
@@ -161,7 +161,7 @@
path = document.getElementById("repo-path-bar");
path.addEventListener("change", function() {
location.href = "/{{ username }}/{{ repository }}/tree/";
location.href = "/{{ username }}/{{ repository }}/tree/{{ current }}" + path.value;
});
</script>
<button onclick="history.back();" class="button-flat big-button">