Update
ci/woodpecker/push/woodpecker Pipeline was successful Podrobnosti

This commit is contained in:
tree 2022-10-21 22:30:43 +02:00
rodič 4ee076afe4
revize d84e6c4b51
3 změnil soubory, kde provedl 14 přidání a 3 odebrání

Zobrazit soubor

@ -71,6 +71,7 @@ services:
- name: Tor Relay (#1) (Exit)
server: hex
repo: https://gitweb.torproject.org/tor.git
monitor: 34
version_conf:
from:
@ -83,6 +84,7 @@ services:
- name: Tor Relay (#2)
server: palatinus
repo: https://gitweb.torproject.org/tor.git
monitor: 33
version_conf:
from:

Zobrazit soubor

@ -1,3 +1,12 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
.gh-ico {
display: inline-block;
width: 1em;
height: 1em;
vertical-align: -2px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92pt' height='92pt' viewBox='0 0 92 92'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath d='M0 .113h91.887V92H0Zm0 0'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath style='stroke:none;fill-rule:nonzero;fill:%23100f0d;fill-opacity:1' d='M90.156 41.965 50.036 1.848a5.913 5.913 0 0 0-8.368 0l-8.332 8.332 10.566 10.566a7.03 7.03 0 0 1 7.23 1.684 7.043 7.043 0 0 1 1.673 7.277l10.183 10.184a7.026 7.026 0 0 1 7.278 1.672 7.04 7.04 0 0 1 0 9.957 7.045 7.045 0 0 1-9.961 0 7.038 7.038 0 0 1-1.532-7.66l-9.5-9.497V59.36a7.04 7.04 0 0 1 1.86 11.29 7.04 7.04 0 0 1-9.957 0 7.04 7.04 0 0 1 0-9.958 7.034 7.034 0 0 1 2.308-1.539V33.926a7.001 7.001 0 0 1-2.308-1.535 7.049 7.049 0 0 1-1.516-7.7L29.242 14.273 1.734 41.777a5.918 5.918 0 0 0 0 8.371L41.855 90.27a5.92 5.92 0 0 0 8.368 0l39.933-39.934a5.925 5.925 0 0 0 0-8.371'/%3E%3C/g%3E%3C/svg%3E");
background-size: cover;
}

Zobrazit soubor

@ -66,7 +66,7 @@
]
const cols = [
{ title: 'Name', key: 'name' },
{ title: 'Name', key: s => `${s.name} (<a href="https://github.com/${s.repo}" target="_blank" class="git-link underline hover:no-underline">git</a>)` },
{ title: 'Server', key: 'server' },
{ title: 'Endpoint', key: (s) => s.url ? `<a href="${s.url}" class="underline hover:no-underline">${s.url.replace(/^https?:\/\//, '')}</a>` : '' },
{ title: 'Status', key: (s) => `<a href="https://status.gwei.cz/dashboard/${s.monitor}" target="_blank"><img src="https://status.gwei.cz/api/badge/${s.monitor}/status?style=flat-square" /></a>` },
@ -93,7 +93,7 @@
<thead>
<tr class="">
{#each serverCols as col}
<th class="text-left pb-2">{col.title}</th>
<th class="text-left pb-2 sysinfo-server-col">{col.title}</th>
{/each}
</tr>
</thead>
@ -124,7 +124,7 @@
{#each spec.services as service}
<tr class="hover:bg-gray-100">
{#each cols as col}
<td class="">{@html typeof col.key === 'string' ? service[col.key] : col.key(service)}</td>
<td class="sysinfo-service-col">{@html typeof col.key === 'string' ? service[col.key] : col.key(service)}</td>
{/each}
</tr>
{/each}