public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] Fix bug 10504: match download's sourceurl mangling in, updxlrator
Date: Sat, 30 Dec 2017 14:27:40 +0000	[thread overview]
Message-ID: <1514644060.3685.11.camel@ipfire.org> (raw)
In-Reply-To: <287ec1cd-00b7-b6b8-2fcd-13206ef08d5b@mail.com>

[-- Attachment #1: Type: text/plain, Size: 2242 bytes --]

Hello Justin,

and welcome to the team.

Thanks for your submission. Indeed we have not been touching update accelerator
much in the last years. Some people have been working on forks but never
submitted their changes and just uploaded them somewhere. Therefore I am happy
that you had a look.

On Fri, 2017-12-29 at 17:12 +0300, Justin Luth wrote:
> Updatexlrator stores its files in a hash of the URL.
> 
> The download utility mangles the URL for [+/~], but
> the updxlrator only does it for [/]. Thus, download
> stores the result as one hash, and updxlrator looks for it
> with a different hash. The result is that the file is
> re-downloaded every time by both the client, and updxlrator.

Wouldn't it be a better idea to generally escape/unescape the URLs? There is a
perl module that does that:

  http://search.cpan.org/dist/URI/lib/URI/Escape.pm

Your changes certainly make sense, but there are more characters that could
cause the same problem here.

Let me know if that would make sense, too.

Best,
-Michael

> This is fixed by making updxlrator mangle the url in the
> same way as the downloader. apt-get install g++ would
> be a good test for this.
> 
> Signed-off-by: Justin Luth  <jluth(a)mail.com>
> 
> ---
> I submitted the bug report and attached this patch three years
> ago, but the maintainer of updxlrator - although he
> incorporated it into his own ipcop packagea - has never
> released it (for ipcop) or any of the other promised updates that
> he has been working on (in ipfire).
> 
> I have a few more fixes for updxlrator that I want to submit,
> if this process goes well.
> ---
>   config/updxlrator/updxlrator | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/config/updxlrator/updxlrator b/config/updxlrator/updxlrator
> index 2ddc6d8e4..b728902f6 100644
> --- a/config/updxlrator/updxlrator
> +++ b/config/updxlrator/updxlrator
> @@ -345,7 +345,9 @@ sub check_cache
>       my $sourceurl=$_[0];
>       my $cfmirror=$_[4];
> 
> +    $sourceurl =~ s@\%2b(a)+@ig;
>       $sourceurl =~ s@\%2f@/@ig;
> +    $sourceurl =~ s@\%7e@~@ig;
>       $updfile = substr($sourceurl,rindex($sourceurl,"/")+1);
>       $updfile =~ s@\%20@ @ig;
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2017-12-30 14:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <6d686769-7667-5383-6dec-ba2d3dfc5be3@sil.org>
2017-12-29 14:12 ` Justin Luth
2017-12-30 14:27   ` Michael Tremer [this message]
2017-12-30 15:57     ` Justin Luth
2018-01-07 19:53       ` Michael Tremer

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=1514644060.3685.11.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