Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.javascript > #30050

Re: Read binary file

Path csiph.com!aioe.org!.POSTED!not-for-mail
From Herbert Kleebauer <klee@unibwm.de>
Newsgroups comp.lang.javascript
Subject Re: Read binary file
Date Fri, 18 Mar 2016 21:14:09 +0100
Organization Aioe.org NNTP Server
Lines 57
Message-ID <nchnk0$ggt$1@gioia.aioe.org> (permalink)
References <nccmg2$kq7$1@gioia.aioe.org> <145821661.4prVZSFEgG@PointedEars.de> <ncdmil$1ser$1@gioia.aioe.org> <2237637.9AE1fihV9u@PointedEars.de> <nceuqd$756$1@news.albasani.net> <6005521.MME42bj82n@PointedEars.de> <ncf81p$mqu$1@gioia.aioe.org> <ncfff1$64e$1@news.albasani.net> <2814357.mXD5CvAbfT@PointedEars.de>
NNTP-Posting-Host 93.209.114.88
Mime-Version 1.0
Content-Type text/plain; charset=utf-8
Content-Transfer-Encoding 8bit
X-Trace gioia.aioe.org 1458332096 16925 93.209.114.88 (18 Mar 2016 20:14:56 GMT)
X-Complaints-To abuse@aioe.org
NNTP-Posting-Date Fri, 18 Mar 2016 20:14:56 +0000 (UTC)
User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.0
Cache gioia.aioe.org 1458332096 16925 93.209.114.88 1458332096 93.209.114.88 1901 1010 Q6q+DTKQxjZjsyFLX1IkXA 93.209.114 1 0
In-Reply-To <2814357.mXD5CvAbfT@PointedEars.de>
Xref csiph.com comp.lang.javascript:30050

Show key headers only | View raw


On 18.03.2016 17:22, Thomas 'PointedEars' Lahn wrote:
> Stefan Weiss wrote:

>> Right, that doesn't really solve the problem. It makes server B fetch
>> the image from server A, which is what you wanted to avoid in the first
>> place.
> 
> Wishful thinking.  He did _not_ say that.  He said:
> 
> | Because of copyright I can't just copy the picture, modify it and
> | store it on server B. […]

Where is the difference?


> Proxying is different from copying, and from caching.

For me a proxy is a server which collects the HTTP requests
from a client, checks if a local copy is available
and if not fetches it from the original server. This is
transparent for the client because he always sends
the original URL. In this case this would mean, the
client sends a request for http://serverA/1.jpg.

But if I understand you correct, you are suggesting to
send a request for http://serverB/1.jpg and serverB
changes this to http://serverA/1.jpg and forwards it
to a local proxy. But the final effect is, that there
is a 1.jpg on server B which can be accessed by
http://serverB/1.jpg and this surely is a copyright
violation. It doesn't matter whether this jpg is stored
permanent in the file system, temporary in the proxy cache
or just forwarded from serverA.


>>>>>> There is no javascript.
>>>>> ???????????
>>>> See the reference to the “ES Matrix” in my signature.

I don't understand your problems with "javascript"
(http://pointedears.de/es-matrix just gives a "Forbidden").

JavaScript was introduced by and is a trademark of Netscape
(now Oracle). Later the Standard ECMA-262 was created and
there are many implementations of this standard (including
JavaScript). The commonly used name for all this implementation
is "javascript". Therefore normally is written:


>>> <html><head><title>jpg</title>
>>> <script type="text/javascript">

and not:

>>> <script type="text/JavaScript">

Back to comp.lang.javascript | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-16 23:20 +0100
  Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-17 01:04 +0100
    Re: Read binary file Stefan Weiss <krewecherl@gmail.com> - 2016-03-17 02:34 +0100
      Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-17 07:56 +0100
    Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-17 08:31 +0100
      Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-17 19:10 +0100
        Re: Read binary file Stefan Weiss <krewecherl@gmail.com> - 2016-03-17 19:59 +0100
          Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-17 21:43 +0100
            Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-17 22:36 +0100
              Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-17 23:15 +0100
              Re: Read binary file Stefan Weiss <krewecherl@gmail.com> - 2016-03-18 00:43 +0100
                Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-18 17:22 +0100
                Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-18 21:14 +0100
                Re: Read binary file Matthias Wiehl <mw@kwarg.de> - 2016-03-19 00:02 +0100
                Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-19 08:48 +0100
                There is no javascript (was: Read binary file) Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-19 13:02 +0100
                Re: There is no javascript (was: Read binary file) Mark - <nonemail@spamspamapam.net> - 2016-03-19 14:33 +0000
                Re: There is no javascript (was: Read binary file) Andrew Poulos <ap_prog@hotmail.com> - 2016-03-20 14:30 +1100
                Re: There is no javascript (was: Read binary file) Mark - <nonemail@spamspamapam.net> - 2016-03-20 13:07 +0000
                Re: There is no javascript (was: Read binary file) John Harris <niam@jghnorth.org.uk.invalid> - 2016-03-20 10:39 +0000
                Re: There is no javascript (was: Read binary file) John Harris <niam@jghnorth.org.uk.invalid> - 2016-03-20 11:19 +0000
                Re: There is no javascript (was: Read binary file) Philip Herlihy <thiswillbounceback@you.com> - 2016-03-21 17:06 +0000
                Re: Read binary file Scott Sauyet <scott.sauyet@gmail.com> - 2016-03-22 17:18 -0700
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-23 10:12 +0100
                Re: Read binary file John Harris <niam@jghnorth.org.uk.invalid> - 2016-03-23 16:27 +0000
                Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-24 10:41 +0100
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-24 11:14 +0100
                Re: Read binary file John Harris <niam@jghnorth.org.uk.invalid> - 2016-03-24 11:41 +0000
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-24 13:36 +0100
                Re: Read binary file John Harris <niam@jghnorth.org.uk.invalid> - 2016-03-25 10:07 +0000
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-25 11:28 +0100
                Re: Read binary file "Christoph M. Becker" <cmbecker69@arcor.de> - 2016-03-24 11:31 +0100
                Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-24 12:34 +0100
                Re: Read binary file "Christoph M. Becker" <cmbecker69@arcor.de> - 2016-03-24 17:15 +0100
                Re: Read binary file Ben Bacarisse <ben.usenet@bsb.me.uk> - 2016-03-24 11:33 +0000
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-24 11:05 +0100
                Re: Read binary file Scott Sauyet <scott.sauyet@gmail.com> - 2016-03-23 20:16 -0700
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-24 10:36 +0100
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-24 11:18 +0100
                Re: Read binary file Scott Sauyet <scott.sauyet@gmail.com> - 2016-03-27 10:22 -0700
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-28 00:18 +0200
                Re: Read binary file Scott Sauyet <scott.sauyet@gmail.com> - 2016-03-28 05:35 -0700
                Re: Read binary file "Evertjan." <exxjxw.hannivoort@inter.nl.net> - 2016-03-29 00:53 +0200
  Re: Read binary file Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-03-17 02:23 +0100
  Re: Read binary file Herbert Kleebauer <klee@unibwm.de> - 2016-03-17 08:42 +0100
  Re: Read binary file Dr J R Stockton <reply1600@merlyn.demon.co.uk.invalid> - 2016-03-20 22:03 +0000

csiph-web