[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2014-09-17 Thread Walker Gusmão
@pyrates Here: http://wayland.freedesktop.org/docs/html/sect-Protocol-
data-sharing.html

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2014-08-24 Thread Amr Ibrahim
** Changed in: wayland (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2013-02-15 Thread Bug Watch Updater
** Changed in: wayland
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2013-02-15 Thread pyrates
May I get a link to check over the modern clipboard specifications?
I'd like to see how it works.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2013-02-15 Thread pyrates
And I'd like to just say, woohoo!

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2013-01-21 Thread Bug Watch Updater
Launchpad has imported 1 comments from the remote bug at
https://bugs.freedesktop.org/show_bug.cgi?id=52077.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2012-07-14T09:47:07+00:00 Pyrates wrote:

Please implement a modern clipboard while wayland is still being
developed.  It's such a shame that linux itself has never had a proper
one.  Instead work arounds such as clipboard managers, that only handle
text, are implemented.  Here's how it works with xorg:

1.  You copy some text storing the location in memory where that text is
2.  You then tell another program to paste that text
3.  The program goes back to the xorg clipboard and asks for the text to be 
pasted
4.  The xorg clipboard asks the program that the text is supposed to come from 
for the text
5.  That program then says here is the text
6.  The text is then pasted into the new program

Now this process breaks if you close the original program before doing
the pasting.  Windows and Mac users find this very frustrating!  Now the
supposed fix is for each program to check if there is any data that
the clipboard is pointing to.  Some have done it, but the vast majority
have not because those developers are use to the way windows and mac do
it, where it handles it for them and they don't have to worry about it.

Also that selection based clipboard thing has got to go.  It's only
useful in the terminal because the terminal already was using the
ctrl+c, ctrl+v, ctrl+x shortcut commands.  So instead of making it
system wide, make it on a per application basis when those applications
need it.  For example on windows, selection based copying works on mirc
and putty, because they implemented it for only them to use it.  So if
another program wants selection based copying, then that program can
implement it.  Not many programs will I bet.

Now here is how we could redo it:

1.  When copying text, copy both the plain text version and the stylized 
version.  Any text pasting program can then specify if they want the stylized 
version, and if they don't, then they get the plain version.  But they still 
need to specify they want text as the type.
2.  Copying audio will identify that it is audio and programs that work with 
that, will expect that.  This way 2 audio programs can interact with each other.
3.  Copying video will identify that it is video and programs that work with 
that, will expect that.  This way 2 video programs can interact with each other.
4.  Copying files/directories will store the location of where the 
file/directory is and the name of it.  This will identify itself as a 
file/directory when doing pasting of it.  There will be 2 types though, one for 
a file, and one for a directory.  This way if the file manager needs to have a 
special way to handle a file and another way to handle a directory, it can do 
that.  Same thing if it's a symbolic link, both for soft and hard kinds being 
each of their own.
5.  For any other kinds of data, it will have a unique identifier that wayland 
has to support.  So if we need to add more types of data that the clipboard 
will support, we can do that.
6.  Finally we will be copying the data to the clipboard, not storing a pointer 
to it.  This solves the problem of what happens if you copy the data and then 
close the program before pasting it that frustrates so many windows and mac 
users who try out linux.
7.  One more thing, when a program quits and has data in the clipboard over a 
certain size, the program or wayland, will intercept when that program is told 
to quit, asking the user if they want to clear the clipboard or not since it 
would free up some memory.

Now this would be all nice if it was implemented.  And since wayland is
still under development, I believe a proper implemented clipboard is the
way to go.

And here's a rant on it:

http://elliotth.blogspot.com/2008/08/desktop-linux-suckage-
clipboard.html

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/comments/8


** Changed in: wayland
   Status: Unknown = Confirmed

** Changed in: wayland
   Importance: Unknown = Wishlist

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2012-07-15 Thread papukaija
** Bug watch removed: freedesktop.org Bugzilla #25220
   https://bugs.freedesktop.org/show_bug.cgi?id=25220

** Also affects: wayland via
   https://bugs.freedesktop.org/show_bug.cgi?id=52077
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2012-07-14 Thread pyrates
As Hugo's suggestion, here is the bug submitted to wayland:

https://bugs.freedesktop.org/show_bug.cgi?id=52077

I wonder if it will be accepted or not.

** Bug watch added: freedesktop.org Bugzilla #52077
   https://bugs.freedesktop.org/show_bug.cgi?id=52077

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2012-07-13 Thread Hugo Osvaldo Barrera
As I have stated on a comment to the linked xorg bug:
https://bugs.freedesktop.org/show_bug.cgi?id=25220#c15

There is no negative impact for the selection-based copying for users
who don't want it; you might as well use X for years without knowing
it's existance and using CLIPBOARD without any issues.

Unless you can actually point out any way in which this interfieres with
users who don't want use it, I see no point in requesting that
selection-based copying isn't implemented in wayland.

** Bug watch added: freedesktop.org Bugzilla #25220
   https://bugs.freedesktop.org/show_bug.cgi?id=25220

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: Implement proper clipboard in wayland

2012-04-09 Thread papukaija
** Summary changed:

- implement proper clipboard in wayland
+ Implement proper clipboard in wayland

** Description changed:

  Well the bug to implement a proper clipboard in xorg has just been set
  to invalid:
  
  https://bugs.freedesktop.org/show_bug.cgi?id=25220
  
  So since wayland is replacing xorg, might as well implement a proper
  clipboard.  Please do not follow the path xorg did to implement it.
  Normal users do not want a selection based clipboard.  It's confusing
  for them and if some app wants it, then that app alone can implement it.
  This way those who need it can get it and the rest of us can go about
  without worrying that when I highlight something, I haven't just lost
  what was copied using ctrl+c.
  
  Here's a rant on it:
  
  http://elliotth.blogspot.com/2008/08/desktop-linux-suckage-
  clipboard.html
  
  And here's a very simple implementation:
  
  1.  When copying text, copy it directly to the clipboard so that it is there 
even if the application is closed.
  2.  No more selection based copy.  If an app wants it, it can implement it.  
Putty does that on windows and so does mirc.  But it shouldn't be forced upon 
apps if they don't intend to use it.
  3.  When copying something to the clipboard and it is not text, the app must 
specify what kind of data it is so that if it can be used in another app if 
that app says it is compatible with it.  Otherwise when that happens, nothing 
gets pasted if the app says it is not expecting that data type.
  4.  Wayland will monitor when an application wants to exit that has data in 
the clipboard that is above a certain size.  If it is above a certain size, 
when that application wants to exit, then it will ask if the user wants to 
clear the clipboard before the application exits.  This way the application 
developer doesn't have to worry about implementing this, the OS takes care of 
it.
  5.  When copying data to the clipboard, it will report what application it 
came from storing the full path.  This way the above can be done.
  6.  When copying data from the file system, it will be stored in a separate 
clipboard.  It will store the path to the file/directory it is set to copy and 
not the actual copy as that could get very large.
- 7.  Finally when copying data to the clipboard, it will indicate if the data 
is to be copied or cut.  If cut, then when it is pasted, it will delete the 
original copy.  If it is cut, it will simply paste it to the place you pasted 
it to from the clipboard.
+ 7.  Finally when copying data to the clipboard, it will indicate if the data 
is to be copied or cut.  If cut, then when it is pasted, it will delete the 
original copy.  If it is copied, it will simply paste it to the place you 
pasted it to from the clipboard.
  
  I think this is a good start.  As I said, x and now xorg refused to do
  this, so may as well put it in wayland.
  
  If not, I'll see this being complained about 30 years down the line with
  people asking why wasn't this implemented?

** Tags removed: clipboard wayland
** Tags added: wishlist

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  Implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2012-04-08 Thread Darxus
** Tags added: wayland

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2012-03-19 Thread Darxus
I doubt anybody involved in these decisions is reading bugs here.

Wayland bugs are tracked here:
https://bugs.freedesktop.org/enter_bug.cgi?product=Wayland

Wayland mailing list: http://lists.freedesktop.org/mailman/listinfo
/wayland-devel

And #wayland on irc.freenode.net.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2011-10-07 Thread Philip Muškovac
I'm not usually using windows so I don't know what windows users expect
from a clipboard, and I'm not particulary affected by bug 11334 as KDE
has a clipboard manager running by default, but I do want to remind
people that there are a lot of linux users that _like_ the selection
based clipboard behaiour.

Interestingly, Klipper manages to provide a working ctrl-c/v clipboard
while still allowing selection based copy and paste. So it shouldn't be
impossible to provide both as I do agree that the current situation
needs to be improved.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2011-10-07 Thread pyrates
You can include mac users too, not just windows users.  They too expect
the clipboard to behave this way.

Does the clipboard manager in kde handle anything other then text?  I
would guess it doesn't.  This is why I want this properly implemented.

As for the selection method of those who want it, if the majority of
linux users want it, then that means the majority of linux users are
technical.  And those who want linux to be made for the masses have to
realize that a badly designed feature like the selection based clipboard
will only confuse them.  It's one of the many reasons why I don't use
linux as a desktop.  Of course the moment I say this, I'm then told that
linux isn't for me.  If so, who is it for exactly?

Clearly the selection based method was only put in because you couldn't
use ctrl+c in a terminal emulator.  That's the only reason.  And because
of that, it shouldn't hold back linux from having a proper clipboard.
Now correct me if I'm wrong, but don't applications that don't want the
selection based clipboard have to exclude it?  I guess that's why
firefox doesn't support it.  If there users on linux don't want it, how
many linux users actually want it?  My guess is not that many.  Just the
ones who do want it are louder then the rest.

Here is my guess on how the clipboard works on mac since it seems it has
more then one clipboard:

1.  One type for text
2.  Another type for audio
3.  Another type for video
4.  Another type for images
5.  Another type for files/directories

If it works this way, then that means you have application
interoperability.  2 completely different applications for say editing
audio, could copy sound bytes back and forth between each other.  I
don't see windows doing this.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2011-10-05 Thread papukaija
To maintain a respectful atmosphere, please follow the code of conduct -
http://www.ubuntu.com/community/conduct/ . Bug reports are handled by
humans, the majority of whom are volunteers, so please bear this in
mind.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2011-10-04 Thread robbert
Users of this crappy operating system have been annoyed by this bug
since... well, actually since the first release. After all those years
they failed (actually refused) to implement a proper clipboard. I've
lost all hopes. I don't think Ubuntu or Linux in general will ever get a
proper clipboard. The developers are just stupid and keep on sticking to
their old fashioned habits of the early '90s. They don't listen to the
users and only want to keep on using Linux the old fashioned way. They
don't want a proper clipboard, so a proper clipboard will never be
implemented in Ubuntu of Linux in general.

That's exactly the reason why Linux will NEVER get more than 1% of
market share. The market share of Linux is at 1% for years now. In all
those years its market share didn't grow a single bit. Mac OS X keeps on
growing. Why? Because their products just work. People use it and see it
just works and they keep on using it and recommend it to family and
friends who also keep on using it.

Linux is also recommended by Linux users, but after using it for a few
weeks or a few months, everyone realizes it's just crap. Within a few
months most users have encountered so many bugs they won't use it
anymore. When you first install Ubuntu or any other distribution you
think: Yeah, this is actually quite good. but that feeling doesn't
last for long. Within two months you get so annoyed of all those bugs,
you just want to throw your computer out of the window.

Linux will never be a mature operating system and it will never get more
than 1% market share. At least, not as long as those developers refuse
to implement even the most basic features an operating system should
contain. Unless they get their head of their asses Linux will stay an
amateuristic operating system for ever.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 865885] Re: implement proper clipboard in wayland

2011-10-03 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: wayland (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wayland in Ubuntu.
https://bugs.launchpad.net/bugs/865885

Title:
  implement proper clipboard in wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wayland/+bug/865885/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp