Kernel Traffic Latest | Archives | People | Topics |
Wine Latest | Archives | People | Topics |
GNUe Latest | Archives | People | Topics |
Czech |
Home | News | RSS Feeds | Mailing Lists | Authors Info | Mirrors | Stalled Traffic |
Table Of Contents
1. | 8 Feb 2003 - 14 Feb 2003 | (1 post) | News: Linux Desktop Consortium |
2. | 8 Feb 2003 | (1 post) | Code to Test / Learn With |
3. | 12 Feb 2003 | (10 posts) | Clipboard Implementation |
4. | 9 Feb 2003 - 10 Feb 2003 | (2 posts) | Smatch |
5. | 13 Feb 2003 | (5 posts) | Testing for Unimplemented Functionality |
Introduction
This is the 157th release of the Wine's kernel cousin publication. It's main goal is to serve as a Valentines Day reminder. It also serves to inform you of what's going on around Wine (the Un*x windows emulator).
Mailing List Stats For This Week
We looked at 175 posts in 608K.
There were 63 different contributors. 34 posted more than once. 34 posted last week too.
The top posters of the week were:
1. News: Linux Desktop Consortium
8 Feb 2003 - 14 Feb 2003 (1 post) Archive Link: "News"
Topics: News
People: , Jeremy White, News
Looks like a new advocacy committee is in town - the Linux Desktop Consortium. What makes this notable (from a Wine perspective) is that CodeWeaver's Jeremy White is the interim chairman. PC World has an article discussing the role of the new organization. Anyone else not excited?
2. Code to Test / Learn With
8 Feb 2003 (1 post) Archive Link: "Good source of test case source?"
Topics: Documentation
People: Dan Kegel,
Dan Kegel gave a pointer for anyone looking for code snippets to test or learn Windows programming:
So where should a developer go to find good code snippets when writing Wine regression or compliance tests, without running afoul of copyright laws?
One possibility is http://www.codeproject.com. Their submission page, http://www.codeproject.com/info/submit.asp, quite clearly states:
"If you post to CodeProject then you retain copyright of your article and code. You also give CodeProject permission to use it in a fair manner and also permit all developers to freely use the code in their own applications. ... You are more than welcome to submit code that is already published at another site, provided you own the copyright on that article, and provided you have not given the other site exclusive rights to your article."
That sounds like code at CodeProject is fair game. Do other (smarter) people agree? I ask, of course, because I'd like to make sure it'll be ok to submit a testcase based partly on CodeProject code.
3. Clipboard Implementation
12 Feb 2003 (10 posts) Archive Link: "X11 Clipboard implementation"
Topics: Integration
People: Mike Hearn, Ulrich Czekalla, CodeWeavers,
Mike Hearn looked at the clipboard code and wasn't happy with what he found:
I've been poking around inside the wine clipboard system, in an attempt to make it properly compliant with the agreed upon specs over at
At the moment, Wine mixes up CLIPBOARD and PRIMARY, which is not a good idea. Ideally, Wine would work like GTK, Qt, Mozilla and all the rest do, which is to keep CLIPBOARD for ctrl-c, ctrl-v type operations, and primary for selected text/middle click.
When you select some text in say notepad, both CLIPBOARD and PRIMARY are grabbed, which is wrong, only primary should be grabbed. In a similar fashion, when you select Edit | Copy only CLIPBOARD should be grabbed.
Currently, selecting text in Wine doesn't do anything (at least, not in notepad). So, the obvious way to fix that would be to introduce a new Wine-specific API, that lets the Wine controls call SetSelectedText or something, which then interfaces with X.
So, I think x11drv/clipboard.c should be changed to basically eliminate references to PRIMARY, as without the ability to deal with middle clicks and grab-on-select, Wine has no business changing that selection.
Therefore my questions are:
Ulrich Czekalla wrote back to say he was already working on changes to the clipboard:
You may be able to hack some of the controls to support text selection but you won't be able to do it for the general case. For example this wouldn't work in Word. So I don't see this working. In fact it could break assumption made by the application. In my opinion, the only way to copy data from a Windows App to X is via control-c/Clipboard API.
In Windows, to copy data you generally need to select the data (Under X this would grab the PRIMARY selection) and then hit control-c (Under X this would grab the CLIPBOARD selection).
In think we should always be grabbing both PRIMARY and CLIPBOARD and releasing them when we loose either (ClearAllSelections=1). This seemed to be the least confusing for many users as well.
I'm in the process of finishing a large clipboard patch for CodeWeavers that should also address the dll separation issues. Hopefully I'll get the patch together soon and post it to the list.
Mike didn't like the idea of grabbing both and thought the spec was pretty clear on this. Ulrich wrote back to explain the reasoning:
As you pointed out, if we can't use text selection to pass data via PRIMARY (because Windows apps don't allow this) then it follows that we should only use CLIPBOARD. But when I select and copy text from Word, I want be able to paste it into my xterm! I find this to be a common complaint.
I guess in Wine we have been simulating the selection of data into PRIMARY by assuming that if you copied data into the clipboard you probably selected it.
Your right though, Wine apps may be somewhat unique but at the end of the day its behaviour is non-standard. What does everyone else think? This is one area that most people will have an opinion :)
Mike didn't think the problem was with Wine though, " If xterm can't use the CLIPBOARD selection then it's broken I'm afraid. gnome-terminal for instance can use both (shift-ctrl-v pastes clipboard). I guess Konsole is similar. The solution isn't to break wine, really it's to unbreak xterm (or for you to use a different terminal emulator)."
Several people went back and forth about using the middle mouse button to paste text from the clipboard. No conclusion was reached but it was pointed out that supporting it would be difficult, if not impossible, simply because the middle mouse button may be used in an application. I guess we'll wait for Ulrich's patch and see if anything noticably misbehaves.
4. Smatch
9 Feb 2003 - 10 Feb 2003 (2 posts) Archive Link: "smatch, something like the Stanford Checker"
Topics: Debugging
People: Michael Stefaniuc,
Michael Stefaniuc gave a pointer to a program he thought could be useful:
i always dreamed to have something like the Stanford Checker for Wine and some days ago i've seen on freshmeat smatch. It's a project from KernelJanitors and it seems useful, at least it's worth an entry on Dimi's janitorial page.
A short description:
Michael went on to write some test scripts, located some problems, and submitted patches to correct them. Dimi added it to his Wine Janitorial page.
5. Testing for Unimplemented Functionality
13 Feb 2003 (5 posts) Archive Link: "CreateNamedPipe questions"
Topics: Testing
People: Dan Kegel, Francois Gouget,
Dan Kegel had a question about how a test should perform on different platforms:
Oddly enough, it looks like it's ok to pass NULL as the filename to CreateNamedPipe. Anyone know what programs do that, and why?
Here's a patch that makes our CreateNamedPipe check for legal filenames (or NULL). It should probably allow forward slashes... The patch also adds a quickie regression test, but I still have to use late binding for CreateNamedPipe (or is it ok for the test to fail on win9x?).
Francois Gouget pointed out a workaround for the test failing:
Tests should succeed on all Windows platforms. For platforms where the API is not supported, the individual checks should be skipped. Typically this involves either:
CreateNamedPipe{A,W} exists on Win95 so at most you will need something along the lines of 2.
Sharon And Joy
Kernel Traffic is grateful to be developed on a computer donated by Professor Greg Benson and Professor Allan Cruse in the Department of Computer Science at the University of San Francisco. This is the same department that invented FlashMob Computing. Kernel Traffic is hosted by the generous folks at kernel.org. All pages on this site are copyright their original authors, and distributed under the terms of the GNU General Public License version 2.0. |