Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-19 Thread Hallvord R. M. Steen
Siterer Paul Libbrecht p...@hoplahup.net: Hm.. you mean a page should be able to say Hello web browser, I just lve processing application/pdf data from the clipboard ? I don't see the use case for that. If I'm misunderstanding you please clarify :-) It means that if pdf is in the

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-19 Thread Daniel Cheng
On Sat, Feb 18, 2012 at 07:28, Hallvord R. M. Steen hallv...@opera.comwrote: On Fri, 17 Feb 2012 19:23:29 +0100, Daniel Cheng dch...@chromium.org wrote: Also, what does it mean to be supported? In new versions of Chrome, any kind of MIME type is supported in the sense that you can set data

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-18 Thread Anne van Kesteren
On Fri, 17 Feb 2012 19:23:29 +0100, Daniel Cheng dch...@chromium.org wrote: Also, what does it mean to be supported? In new versions of Chrome, any kind of MIME type is supported in the sense that you can set data for any arbitrary type, and it can be understood by any browser that uses the

Re: (aside) MIME type (was Re: Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard)

2012-02-18 Thread Paul Libbrecht
WHEN I registered a media-type on the ietf list I have been quite much hit as the first comment one says media-type nowadays. And indeed MIME is meant for email originally. So I guess politically media-type is a requirement. Should I dig for a formal requirement? paul Le 18 févr. 2012 à

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-18 Thread Paul Libbrecht
Does this include an ability for a page to say that a media-type is supported? (does it not appear natural?) I won't brag about native type names. I still find they're good but they're really not well ruled so it's ok. paul Le 18 févr. 2012 à 01:16, Hallvord Reiar Michaelsen Steen a écrit :

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-18 Thread Hallvord R. M. Steen
On Sat, 18 Feb 2012 13:48:52 +0100, Paul Libbrecht p...@hoplahup.net wrote: Does this include an ability for a page to say that a media-type is supported? (does it not appear natural?) Hm.. you mean a page should be able to say Hello web browser, I just lve processing

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-18 Thread Hallvord R. M. Steen
On Fri, 17 Feb 2012 19:23:29 +0100, Daniel Cheng dch...@chromium.org wrote: Also, what does it mean to be supported? In new versions of Chrome, any kind of MIME type is supported in the sense that you can set data for any arbitrary type, and it can be understood by any browser that uses

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-18 Thread Paul Libbrecht
Le 18 févr. 2012 à 16:25, Hallvord R. M. Steen a écrit : Does this include an ability for a page to say that a media-type is supported? (does it not appear natural?) Hm.. you mean a page should be able to say Hello web browser, I just lve processing application/pdf data from the

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Ryosuke Niwa
I like the idea of letting authors dynamically detectthe supported mime types. But providing methods on the interface object seems rather unusual. Also, I'm thinking there are cases where the supported mime types change dynamically without reloading the page. - Ryosuke On Feb 17, 2012 5:25 AM,

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Ryosuke Niwa
I meant to say *if* there are cases. On Feb 17, 2012 9:53 AM, Ryosuke Niwa rn...@webkit.org wrote:

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Paul Libbrecht
Hello Hallvord, I think it is a very good idea if such a method would be available from the point of view of a web-app author. I have one concern: media-types are likely to be insufficient and flavour names, whatever they are on the host platform should be allowed I think. Almost arbitrary

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Daniel Cheng
Any MIME type support restrictions that apply to clipboard MIME types will almost certainly apply to DnD MIME types as well. Therefore, it wouldn't make sense to tie it to ClipboardEvent. Also, what does it mean to be supported? In new versions of Chrome, any kind of MIME type is supported in the

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Ryosuke Niwa
On Fri, Feb 17, 2012 at 10:10 AM, Paul Libbrecht p...@hoplahup.net wrote: I have one concern: media-types are likely to be insufficient and flavour names, whatever they are on the host platform should be allowed I think. Almost arbitrary strings on Windows and Uniform Type Identifiers on Mac

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Paul Libbrecht
Le 17 févr. 2012 à 19:23, Daniel Cheng a écrit : Any MIME type support restrictions that apply to clipboard MIME types will almost certainly apply to DnD MIME types as well. Therefore, it wouldn't make sense to tie it to ClipboardEvent. Not sure to understand what lie means. Maybe you mean

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Paul Libbrecht
Le 17 févr. 2012 à 19:25, Ryosuke Niwa a écrit : On Fri, Feb 17, 2012 at 10:10 AM, Paul Libbrecht p...@hoplahup.net wrote: I have one concern: media-types are likely to be insufficient and flavour names, whatever they are on the host platform should be allowed I think. Almost arbitrary

Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Ryosuke Niwa
On Fri, Feb 17, 2012 at 11:15 AM, Paul Libbrecht p...@hoplahup.net wrote: Le 17 févr. 2012 à 19:23, Daniel Cheng a écrit : Any MIME type support restrictions that apply to clipboard MIME types will almost certainly apply to DnD MIME types as well. Therefore, it wouldn't make sense to tie it

(aside) MIME type (was Re: Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard)

2012-02-17 Thread Hallvord Reiar Michaelsen Steen
Hallvord, it should be called media-types btw, or? IMHO the term MIME type is more widely used and also less ambiguous than media type, so I'd definitely prefer using the former if I can get away with it :) -- Hallvord R. M. Steen Core tester, Opera Software

Re: Re: [Clipboard] checking if implementation allows reading/writing a given type to the OS clipboard

2012-02-17 Thread Hallvord Reiar Michaelsen Steen
Having thought about this some more, I see that there is a fingerprinting concern if we tie this closely into the available applications/OS capabilities. Also I understand that the API would be relevant for drag and drop (thought I'm not quite sure how it would work). Hence I think the method