From a0201877069f2c9b1dbea36b0ecd67178cf51225 Mon Sep 17 00:00:00 2001 From: Nadav Tasher Date: Sun, 3 Nov 2024 22:57:18 +0200 Subject: [PATCH] Fix newlines in EOF --- .gitignore | 2 +- Makefile | 2 +- bundles/buildless/Makefile | 2 +- .../src/frontend/application/application.css | 2 +- bundles/buildless/src/frontend/index.html | 2 +- bundles/headless/empty-page.html | 12 ++++++------ bundles/headless/example-page.html | 12 ++++++------ bundles/independent/Makefile | 2 +- .../src/frontend/application/application.css | 2 +- .../independent/application/src/frontend/index.html | 2 +- image/Dockerfile | 2 +- image/resources/entrypoint.conf | 2 +- image/resources/requirements.txt | 2 +- image/src/frontend/application/application.css | 2 +- image/src/frontend/index.html | 2 +- image/src/frontend/stylesheets/colors.css | 2 +- image/src/frontend/stylesheets/layout.css | 2 +- image/src/frontend/stylesheets/modals.css | 2 +- image/src/frontend/stylesheets/theme.css | 2 +- resources/headless/example-page.html | 2 +- 20 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.gitignore b/.gitignore index e65d434..5400446 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ __pycache__ # Dockerfile caches -image/Dockerfile-* \ No newline at end of file +image/Dockerfile-* diff --git a/Makefile b/Makefile index 1268702..bce0879 100644 --- a/Makefile +++ b/Makefile @@ -198,4 +198,4 @@ test-independent-makefile: independent .PHONY: clean clean: - $(RM) -r $(VENV_PATH) \ No newline at end of file + $(RM) -r $(VENV_PATH) diff --git a/bundles/buildless/Makefile b/bundles/buildless/Makefile index 12a46d6..5aeb768 100644 --- a/bundles/buildless/Makefile +++ b/bundles/buildless/Makefile @@ -7,4 +7,4 @@ develop: .PHONY: clean clean: - @docker compose down --volumes --remove-orphans \ No newline at end of file + @docker compose down --volumes --remove-orphans diff --git a/bundles/buildless/src/frontend/application/application.css b/bundles/buildless/src/frontend/application/application.css index a0e00f8..ad73e48 100644 --- a/bundles/buildless/src/frontend/application/application.css +++ b/bundles/buildless/src/frontend/application/application.css @@ -1,3 +1,3 @@ body { - max-width: 500px; + max-width: 800px; } diff --git a/bundles/buildless/src/frontend/index.html b/bundles/buildless/src/frontend/index.html index b3c924d..5716503 100644 --- a/bundles/buildless/src/frontend/index.html +++ b/bundles/buildless/src/frontend/index.html @@ -56,4 +56,4 @@ - \ No newline at end of file + diff --git a/bundles/headless/empty-page.html b/bundles/headless/empty-page.html index fef7fcc..1b6df4c 100644 --- a/bundles/headless/empty-page.html +++ b/bundles/headless/empty-page.html @@ -28,10 +28,10 @@ - - - - + + + + @@ -39,7 +39,7 @@ - + @@ -56,4 +56,4 @@ - \ No newline at end of file + diff --git a/bundles/headless/example-page.html b/bundles/headless/example-page.html index cd43c26..9b0bd52 100644 --- a/bundles/headless/example-page.html +++ b/bundles/headless/example-page.html @@ -28,10 +28,10 @@ - - - - + + + + @@ -39,7 +39,7 @@ - + @@ -153,4 +153,4 @@ - \ No newline at end of file + diff --git a/bundles/independent/Makefile b/bundles/independent/Makefile index bc5e373..9b55e96 100644 --- a/bundles/independent/Makefile +++ b/bundles/independent/Makefile @@ -47,4 +47,4 @@ develop: image .PHONY: clean clean: - @docker compose down --volumes --remove-orphans \ No newline at end of file + @docker compose down --volumes --remove-orphans diff --git a/bundles/independent/application/src/frontend/application/application.css b/bundles/independent/application/src/frontend/application/application.css index a0e00f8..ad73e48 100644 --- a/bundles/independent/application/src/frontend/application/application.css +++ b/bundles/independent/application/src/frontend/application/application.css @@ -1,3 +1,3 @@ body { - max-width: 500px; + max-width: 800px; } diff --git a/bundles/independent/application/src/frontend/index.html b/bundles/independent/application/src/frontend/index.html index b3c924d..5716503 100644 --- a/bundles/independent/application/src/frontend/index.html +++ b/bundles/independent/application/src/frontend/index.html @@ -56,4 +56,4 @@ - \ No newline at end of file + diff --git a/image/Dockerfile b/image/Dockerfile index 37463e1..b189e67 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -35,4 +35,4 @@ WORKDIR /application/backend CMD [ "python", "/application/entrypoint.py" ] # Create the certificate and the key -RUN openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj / -keyout /etc/ssl/private/server.key -out /etc/ssl/private/server.crt \ No newline at end of file +RUN openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj / -keyout /etc/ssl/private/server.key -out /etc/ssl/private/server.crt diff --git a/image/resources/entrypoint.conf b/image/resources/entrypoint.conf index 62fda1b..6194e07 100644 --- a/image/resources/entrypoint.conf +++ b/image/resources/entrypoint.conf @@ -11,4 +11,4 @@ directory=/application/backend [proxy] signal=SIGTERM command=socat OPENSSL-LISTEN:8443,cert=/etc/ssl/private/server.crt,key=/etc/ssl/private/server.key,verify=0,fork TCP:0.0.0.0:8080 -directory=/application/backend \ No newline at end of file +directory=/application/backend diff --git a/image/resources/requirements.txt b/image/resources/requirements.txt index ec452e6..6f2f5fc 100644 --- a/image/resources/requirements.txt +++ b/image/resources/requirements.txt @@ -7,4 +7,4 @@ hiredis==3.0.0 munch==4.0.0 rednest==0.7.0 runtypes==0.6.3 -guardify==0.4.0 \ No newline at end of file +guardify==0.4.0 diff --git a/image/src/frontend/application/application.css b/image/src/frontend/application/application.css index a0e00f8..ad73e48 100644 --- a/image/src/frontend/application/application.css +++ b/image/src/frontend/application/application.css @@ -1,3 +1,3 @@ body { - max-width: 500px; + max-width: 800px; } diff --git a/image/src/frontend/index.html b/image/src/frontend/index.html index b3c924d..5716503 100644 --- a/image/src/frontend/index.html +++ b/image/src/frontend/index.html @@ -56,4 +56,4 @@ - \ No newline at end of file + diff --git a/image/src/frontend/stylesheets/colors.css b/image/src/frontend/stylesheets/colors.css index 6aad956..850beaf 100644 --- a/image/src/frontend/stylesheets/colors.css +++ b/image/src/frontend/stylesheets/colors.css @@ -14,4 +14,4 @@ --active: #c0c0c0; --passive: #f0f0f0; } -} \ No newline at end of file +} diff --git a/image/src/frontend/stylesheets/layout.css b/image/src/frontend/stylesheets/layout.css index 9eef648..7910c08 100644 --- a/image/src/frontend/stylesheets/layout.css +++ b/image/src/frontend/stylesheets/layout.css @@ -83,4 +83,4 @@ div.left { div.right { /* Align flex items to the right */ justify-content: right; -} \ No newline at end of file +} diff --git a/image/src/frontend/stylesheets/modals.css b/image/src/frontend/stylesheets/modals.css index 73ad2a9..70b0523 100644 --- a/image/src/frontend/stylesheets/modals.css +++ b/image/src/frontend/stylesheets/modals.css @@ -87,4 +87,4 @@ html:has(.overlay) { 100% { transform: rotate(360deg); } -} \ No newline at end of file +} diff --git a/image/src/frontend/stylesheets/theme.css b/image/src/frontend/stylesheets/theme.css index 50ef842..6bc24ec 100644 --- a/image/src/frontend/stylesheets/theme.css +++ b/image/src/frontend/stylesheets/theme.css @@ -134,4 +134,4 @@ html { [hidden], .hidden, *::-webkit-scrollbar { /* Layout properties */ display: none !important; -} \ No newline at end of file +} diff --git a/resources/headless/example-page.html b/resources/headless/example-page.html index 085cd31..40b1e5a 100644 --- a/resources/headless/example-page.html +++ b/resources/headless/example-page.html @@ -153,4 +153,4 @@ - \ No newline at end of file +