From 715815e3bea7fec41a385742b0a6a8fee4c5cf99 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 2 May 2025 18:34:58 -0300 Subject: Switch from POSIX sh to Go --- tests/resources/assets/index.html | 73 --------------------- tests/resources/assets/logo.svg | 62 ------------------ tests/resources/assets/repo/logo.svg | 62 ------------------ tests/resources/assets/repo/refs.html | 116 ---------------------------------- tests/resources/assets/repo/style.css | 100 ----------------------------- tests/resources/assets/style.css | 100 ----------------------------- 6 files changed, 513 deletions(-) delete mode 100644 tests/resources/assets/index.html delete mode 100644 tests/resources/assets/logo.svg delete mode 100644 tests/resources/assets/repo/logo.svg delete mode 100644 tests/resources/assets/repo/refs.html delete mode 100644 tests/resources/assets/repo/style.css delete mode 100644 tests/resources/assets/style.css (limited to 'tests/resources/assets') diff --git a/tests/resources/assets/index.html b/tests/resources/assets/index.html deleted file mode 100644 index 344a73b..0000000 --- a/tests/resources/assets/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - Repositories - - -
-
- -

- Repositories -

-
-
-
-
- - - - - - - - - - - - - - - - - - - - -
- Name - - Description - - Last commit -
- - repo-1 - - - Submodule repository for gistatic project tests - - 2021-07-31 19:29 -
- - repo-2 - - - - - 2021-07-31 19:27 -
-
- - - diff --git a/tests/resources/assets/logo.svg b/tests/resources/assets/logo.svg deleted file mode 100644 index ce566b2..0000000 --- a/tests/resources/assets/logo.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/resources/assets/repo/logo.svg b/tests/resources/assets/repo/logo.svg deleted file mode 100644 index ce566b2..0000000 --- a/tests/resources/assets/repo/logo.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/resources/assets/repo/refs.html b/tests/resources/assets/repo/refs.html deleted file mode 100644 index 1faaf0c..0000000 --- a/tests/resources/assets/repo/refs.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - - repo-1 - - -
-
- - - -
-

- repo-1 -

-

- Submodule repository for gistatic project tests -

- - git clone https://example.com/ - -
-
- -
-
-
- - - - - - - - - - - - - - - - - -
- Branch - - Commit message - - Author - - Date -
- - main - - - - description: Add - - - EuAndreh - - 2021-07-31 19:29 -
- - - - - - - - - - -
- Tag - - Author - - Date -
-
- - - diff --git a/tests/resources/assets/repo/style.css b/tests/resources/assets/repo/style.css deleted file mode 100644 index ad8a08b..0000000 --- a/tests/resources/assets/repo/style.css +++ /dev/null @@ -1,100 +0,0 @@ -:root { - --color: black; - --background-color: white; - --hover-color: hsl(0, 0%, 93%); - --nav-color: hsl(0, 0%, 87%); -} - -@media(prefers-color-scheme: dark) { - :root { - --color: white; - --background-color: black; - --hover-color: hsl(0, 0%, 7%); - --nav-color: hsl(0, 0%, 13%); - } - - body { - color: var(--color); - background-color: var(--background-color); - } - - a { - color: hsl(211, 100%, 60%); - } - - a:visited { - color: hsl(242, 100%, 80%); - } -} - -body { - font-family: monospace; - max-width: 1100px; - margin: 0 auto 0 auto; -} - -.logo { - height: 6em; - width: 6em; -} - -.header-horizontal-grouping { - display: flex; - align-items: center; - margin-top: 1em; - margin-bottom: 1em; -} - -.header-description { - margin-left: 2em; -} - -nav { - margin-top: 2em; -} - -nav ul { - display: flex; - list-style-type: none; - margin-bottom: 0; -} - -nav li { - margin-left: 10px; -} - -nav a, nav a:visited { - padding: 2px 8px 0px 8px; - color: var(--color); -} - -.selected-nav-item { - background-color: var(--nav-color); -} - -hr { - margin-top: 0; - border: 0; - border-top: 3px solid var(--nav-color); -} - -table { - margin: 2em auto; -} - -th { - padding-bottom: 1em; -} - -tbody tr:hover { - background-color: var(--hover-color); -} - -td { - padding-left: 1em; - padding-right: 1em; -} - -footer { - text-align: center; -} diff --git a/tests/resources/assets/style.css b/tests/resources/assets/style.css deleted file mode 100644 index ad8a08b..0000000 --- a/tests/resources/assets/style.css +++ /dev/null @@ -1,100 +0,0 @@ -:root { - --color: black; - --background-color: white; - --hover-color: hsl(0, 0%, 93%); - --nav-color: hsl(0, 0%, 87%); -} - -@media(prefers-color-scheme: dark) { - :root { - --color: white; - --background-color: black; - --hover-color: hsl(0, 0%, 7%); - --nav-color: hsl(0, 0%, 13%); - } - - body { - color: var(--color); - background-color: var(--background-color); - } - - a { - color: hsl(211, 100%, 60%); - } - - a:visited { - color: hsl(242, 100%, 80%); - } -} - -body { - font-family: monospace; - max-width: 1100px; - margin: 0 auto 0 auto; -} - -.logo { - height: 6em; - width: 6em; -} - -.header-horizontal-grouping { - display: flex; - align-items: center; - margin-top: 1em; - margin-bottom: 1em; -} - -.header-description { - margin-left: 2em; -} - -nav { - margin-top: 2em; -} - -nav ul { - display: flex; - list-style-type: none; - margin-bottom: 0; -} - -nav li { - margin-left: 10px; -} - -nav a, nav a:visited { - padding: 2px 8px 0px 8px; - color: var(--color); -} - -.selected-nav-item { - background-color: var(--nav-color); -} - -hr { - margin-top: 0; - border: 0; - border-top: 3px solid var(--nav-color); -} - -table { - margin: 2em auto; -} - -th { - padding-bottom: 1em; -} - -tbody tr:hover { - background-color: var(--hover-color); -} - -td { - padding-left: 1em; - padding-right: 1em; -} - -footer { - text-align: center; -} -- cgit v1.2.3