From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH v5] embed background image in redirect template
Date: Mon, 10 Sep 2018 16:31:31 +0100 [thread overview]
Message-ID: <c94790847f55c7f33ea6dfe5af1e70ba3bc75df2.camel@ipfire.org> (raw)
In-Reply-To: <20180910141544.4669-1-peter.mueller@link38.eu>
[-- Attachment #1: Type: text/plain, Size: 2495 bytes --]
Cool. Merged!
On Mon, 2018-09-10 at 16:15 +0200, Peter Müller wrote:
> Embed the IPFire background image into the redirect template
> directly via CSS instead of loading it from somewhere else.
> This is necessary because of Content Security Policy (CSP).
>
> This patch inserts the base64 encoded image during build so
> nothing needs to be updated twice in case background image
> changes.
>
> It supersedes first to fourth version of this patch and has
> been successfully tested during a clean build.
>
> Fixes #11650
>
> Signed-off-by: Peter Müller <peter.mueller(a)link38.eu>
> ---
> html/html/redirect-templates/legacy/template.html | 7 ++++++-
> lfs/web-user-interface | 5 +++++
> 2 files changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/html/html/redirect-templates/legacy/template.html
> b/html/html/redirect-templates/legacy/template.html
> index b5fb61ebe..297561e3a 100644
> --- a/html/html/redirect-templates/legacy/template.html
> +++ b/html/html/redirect-templates/legacy/template.html
> @@ -3,11 +3,16 @@
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=utf-
> 8">
> <title>ACCESS MESSAGE</title>
> + <style content="text/css">
> + td.image {
> + background-image:
> url(data:image/gif;base64,IMAGEDATAPLACEHOLDER);
> + }
> + </style>
> </head>
> <body>
> <table width="100%" height='100%' border="0">
> <tr>
> - <td colspan='3' width='100%' height='130'
> align="center" background="<TMPL_VAR NAME="ADDRESS">/images/background.gif">
> + <td colspan='3' width='100%' height='152px'
> align="center" class="image"> </td>
> <tr>
> <td width='10%'>
> <td align='center' bgcolor='#CC000000'
> width='80%'>
> diff --git a/lfs/web-user-interface b/lfs/web-user-interface
> index 0c5688252..73aec3a8d 100644
> --- a/lfs/web-user-interface
> +++ b/lfs/web-user-interface
> @@ -55,6 +55,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> mkdir -p /var/updatecache/{download,metadata}
> cp -aR $(DIR_SRC)/html/* /srv/web/ipfire
>
> + # Add base64 encoded background image to Squid content access page
> + basedata="$$( base64 $(DIR_SRC)/html/html/images/background.gif | tr -d
> '\n' )"; \
> + sed -i "s|IMAGEDATAPLACEHOLDER|$${basedata}|g" \
> + /srv/web/ipfire/html/redirect-templates/legacy/template.html
> +
> # Change CONFIG_ROOT in cgi-scripts
> for i in /srv/web/ipfire/cgi-bin/{*,logs.cgi/*,vpn.cgi/*}; do \
> if [ -f $$i ]; then \
prev parent reply other threads:[~2018-09-10 15:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-10 14:15 Peter Müller
2018-09-10 15:31 ` Michael Tremer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c94790847f55c7f33ea6dfe5af1e70ba3bc75df2.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox