Fwd: [GSoC Mentors Announce] Re: GSoC 2013 Mentors/Org Admins: "Pencils Down" and Final Evaluation Dates Approaching

2013-09-23 Thread Austin English
-- Forwarded message -- From: Carol Smith Date: Mon, Sep 23, 2013 at 12:04 PM Subject: [GSoC Mentors Announce] Re: GSoC 2013 Mentors/Org Admins: "Pencils Down" and Final Evaluation Dates Approaching To: GSoC Mentors Announce Hi GSoC 2013 mentors and org admins, This

Re: Fwd: [GSoC Mentors Announce] GSoC 2013: Mentor Summit Travel and Details

2013-06-14 Thread Stefan Dösinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2013-06-13 20:52, schrieb Austin English: > FYI for GSoC mentors. It's a ways away, but have the date in mind > if you'd like to attend. Remember we have two slots, so if there > are more than 2 people, we'll give p

Fwd: [GSoC Mentors Announce] GSoC 2013: Mentor Summit Travel and Details

2013-06-13 Thread Austin English
FYI for GSoC mentors. It's a ways away, but have the date in mind if you'd like to attend. Remember we have two slots, so if there are more than 2 people, we'll give preference to people that haven't gone before. -Austin -- Forwarded message -- From: Carol S

Re: GSoC 2013 has begun!

2013-05-29 Thread Austin English
roject. > > June 17: coding officially begins > > July 29th - Aug 2nd: mid-term reviews are submitted. > > Mentors/students, please feel free to contact me or André Hentschel if > you have any GSoC administrative/procedural questions. Otherwise use > wine-devel or ask your mentor

GSoC 2013 has begun!

2013-05-29 Thread Austin English
ct me or André Hentschel if you have any GSoC administrative/procedural questions. Otherwise use wine-devel or ask your mentor for help with learning the Wine development process/codebase/etc. -- -Austin

Re: Question about legal requirement on gsoc page

2013-05-22 Thread Christian Costa
2013/5/22 Stefan Dösinger > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Am 2013-05-22 10:59, schrieb Christian Costa: > > *"You are not allowed to analyze Windows files with the trace > > functions of Wine" > E.g. when you are working on Wine's d3dx9 implementation, you > shouldn't use na

Re: Question about legal requirement on gsoc page

2013-05-22 Thread Stefan Dösinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2013-05-22 10:59, schrieb Christian Costa: > *"You are not allowed to analyze Windows files with the trace > functions of Wine" E.g. when you are working on Wine's d3dx9 implementation, you shouldn't use native d3dx9.dll and create a +d3d9 log to se

Question about legal requirement on gsoc page

2013-05-22 Thread Christian Costa
*Hi, * *I read on the GSoC page this: * *"You are not allowed to analyze Windows files with the trace functions of Wine" * *What does that mean? * *Thanks * *Christian *

Re: GSoC proposal

2013-05-17 Thread George Stephanos
You're right about RegOpenUserClassesRoot(). It'll just serve as another way to RegOpenKeyEx(HKEY_CLASSES_ROOT) for now because wine doesn't yet support multiple NT users. For the list.. it's very strange. I've tested on my side and it does seem that there's no difference whatsoever. But then what

Re: GSoC 2013 - Registry Merging Project

2013-05-17 Thread Guo Jian
Tests for read-operations has been done. http://newtestbot.winehq.org/JobDetails.pl?Key=942 All the results are expected: 1. query_value prefer values in hkcu. 2. query_key_info gives the count of subkeys and values distincted. 3. enum_value & enum_key combine result from hkcu & hklm and return in

Re: GSoC proposal

2013-05-17 Thread Guo Jian
Hi George, Di you notice this in that page: The RegOpenUserClassesRoot function provides a merged view for processes, such as services, that are dealing with clients other than the interactive user In http://msdn.microsoft.com/en-us/library/windows/desktop/ms724899(v=vs.85).aspx it says: Applicat

Re: GSoC proposal

2013-05-17 Thread George Stephanos
As we know already from [1], the merge is going to happen according to certain rules. The list at the end of the page signifies which subkeys are going to be *merged* from HKLM\Software\Classes\subkey and HKCU\Software\Classes\subkey and not simply linked to. Now there's a comment on the article t

Re: Participate in GSoC

2013-05-16 Thread Austin English
On May 15, 2013 10:32 PM, "Adam Chyła" wrote: > > Hi all, > I'm a student who would like to participate in GSoC with task > "Tools - Winetest Graphical User Interface". What should I do? > > > Adam Ch. It is too late to apply for this year, you&#

Participate in GSoC

2013-05-15 Thread Adam Chyła
Hi all, I'm a student who would like to participate in GSoC with task "Tools - Winetest Graphical User Interface". What should I do? Adam Ch. signature.asc Description: PGP signature

Re: GSoC 2013 - Registry Merging Project

2013-05-14 Thread Guo Jian
Sorry to bother. Forgot CC to wine-devel. > In this case, though, I think you might have stumbled across something > that's relatively rare, and unless there's an application that depends on > this behavior, it might be worth ignoring for now. It's in rear case that applications use volatile key

Re: GSoC 2013 - Registry Merging Project

2013-05-14 Thread Juan Lang
Hi Guo, On Tue, May 14, 2013 at 1:32 PM, Guo Jian wrote: > I just found that the REG_OPTION_VOLATILE of create_key in hkcr may > have some tricks. Not surprisingly found a strange situation when > testing on windows. See my test here please : > http://newtestbot.winehq.org/JobDetails.pl?Key=932

Re: GSoC 2013 - Registry Merging Project

2013-05-14 Thread Guo Jian
And a new test is here http://newtestbot.winehq.org/JobDetails.pl?Key=934 2013/5/15 Guo Jian : > I just found that the REG_OPTION_VOLATILE of create_key in hkcr may > have some tricks. Not surprisingly found a strange situation when > testing on windows. See my test here please : > http://newtestb

Re: GSoC 2013 - Registry Merging Project

2013-05-14 Thread Guo Jian
I just found that the REG_OPTION_VOLATILE of create_key in hkcr may have some tricks. Not surprisingly found a strange situation when testing on windows. See my test here please : http://newtestbot.winehq.org/JobDetails.pl?Key=932 This happens as following : First create hkcu/software/classes/key1,

Re: GSoC 2013 - Registry Merging Project

2013-05-14 Thread Guo Jian
I decided to rewrite the tests in orderliness. Today I have done the tests on write-operations ( http://newtestbot.winehq.org/JobDetails.pl?Key=931 ) . And ome of my assumptions has been confirmed: All the operations that change hkcr should prefer hkcu to hklm. That means if the _full_path_of_the_

Re: GSoC 2013 - Registry Merging Project

2013-05-13 Thread Guo Jian
Have been working hard to get familiar with the workflow in wine, by reporting bugs (bug 33542 33550 and 33558) and sending patches (patch 96154 and 96157) to wine. I got more accustomed to the community to find I like here and I will keep working in wine even after GSoC. Working progress : I&#x

GSoC 2013 - Registry Merging Project

2013-05-04 Thread orzhvs
Hi, everyone. Thank you for your viewing and comments on the proposal. Sorry that the rough plan is kind of mess and now I've rewritten this part a little more like a Time Schedule. I appreciate it if you have a glance at it. >From now to 27th, May. Work on some basic knowledge such as the u

Re: GSoC 2013 - Registry Merging Project

2013-05-03 Thread orzhvs
; at about 8 years old. When I was 12 years old, i was building some little >> games to happy classmates, and have learned c and c++ 2 years latter, then >> x86 asm 2 more years latter. And have done some graduation-designs for >> college brothers before I got to university. Also

Re: GSoC 2013 - Registry Merging Project

2013-05-03 Thread Juan Lang
ld now, studying software engineering in Shandong > University of Science and Technology in China. I'm a really enthusiastic > user of Wine, who has been using it from version 1.2 to 1.4, on ubuntu, > debian and gentoo. Since the first day I apt-got it I could not help trying > all applications I used in Windows to it and making them running stably, > during which I have learned much about configuring Wine. Another day I > began to emerging that and I was once deep interested in building my > customed Wine and Wine based tests. > I heard about GSoC last year but missed the time. This year, I decided > that I will try my best to contribute, transform my ideas to powerful codes > that people will run with satisfaction. Please do not hesitate to contact > me. > > Thanks. > Guo Jian > > > >

GSoC 2013 - Registry Merging Project

2013-05-03 Thread orzhvs
een using it from version 1.2 to 1.4, on ubuntu, debian and gentoo. Since the first day I apt-got it I could not help trying all applications I used in Windows to it and making them running stably, during which I have learned much about configuring Wine. Another day I began to emerging that

GSoC proposal

2013-05-02 Thread George Stephanos
C). I'm a freelancer. I've worked (alone) on around 25-30 projects rating 4+/5 in each. I've enrolled in Google Code-In 2010 and 2011 (which is basically GSoC for high school students) writing lots of ARM assembly code for VideoLAN (#x264dev on freenode). In 2011, I would have ranked

Re: GSoC proposal

2013-05-01 Thread Juan Lang
2 API > experience. I've previously developed small WinSock, DirectX and classic > GUI applications (with and without MFC). > I'm a freelancer. I've worked (alone) on around 25-30 projects rating 4+/5 > in each. > I've enrolled in Google Code-In 2010 and 2

Re: GSoC proposal

2013-05-01 Thread Stefan Dösinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2013-05-01 17:14, schrieb George Stephanos: > Tell me if you need more information. Hope you consider me! I can't comment on the details of the proposal, but please note that you have to submit the proposal at http://www.google-melange.

GSoC proposal

2013-05-01 Thread George Stephanos
C). I'm a freelancer. I've worked (alone) on around 25-30 projects rating 4+/5 in each. I've enrolled in Google Code-In 2010 and 2011 (which is basically GSoC for high school students) writing lots of ARM assembly code for VideoLAN (#x264dev on freenode). In 2011, I would have ranked

Re: [GSOC 2013] Tools - Implement new control panel applets

2013-04-29 Thread Kaiyi Zhang
t;I'm Kaiyi Zhang,A Computer Science and Engineering student from > Civil Aviation University > > of China.I hear the GSOC and I'm very Interested in this,I look through > many projects until i see > > > > the "Tools - Implement new control panel applet

Re: [GSOC 2013] Tools - Implement new control panel applets

2013-04-29 Thread André Hentschel
Am 29.04.2013 05:34, schrieb Kaiyi Zhang: >I'm Kaiyi Zhang,A Computer Science and Engineering student from Civil > Aviation University > of China.I hear the GSOC and I'm very Interested in this,I look through many > projects until i see > > the "To

[GSOC 2013] Tools - Implement new control panel applets

2013-04-28 Thread Kaiyi Zhang
I'm Kaiyi Zhang,A Computer Science and Engineering student from Civil Aviation University of China.I hear the GSOC and I'm very Interested in this,I look through many projects until i see the "Tools - Implement new control panel applets". I have used wine for a

Re: Application for GSoC 2013 - improve Richedit

2013-04-23 Thread Jactry Zeng
2013/4/23 André Hentschel > > Hi Jactry, > thanks for the interest in Wine. > I'm not that much familiar with Richedit, but as i understand you have your own idea and it's not related to > "Richedit - implement Windowless mode" from the ideas page. That's fine, i'm just curious. > Your idea sounds

Re: Application for GSoC 2013 - improve Richedit

2013-04-22 Thread André Hentschel
Am 22.04.2013 12:51, schrieb Jactry Zeng: > Hi folks, > > I am Jactry Zeng, a sophomore majoring in Electronic Science from China. > My nickname in #winehackers is Jactry. > > I would like to apply for this year's GSoC to work for wine. I have reported > some bugs[1]

Application for GSoC 2013 - improve Richedit

2013-04-22 Thread Jactry Zeng
Hi folks, I am Jactry Zeng, a sophomore majoring in Electronic Science from China. My nickname in #winehackers is Jactry. I would like to apply for this year's GSoC to work for wine. I have reported some bugs[1] of wine and submitted a few easy patches[2] for wine. And I feel quite good to

Re: Application for GSoC 2013

2013-04-18 Thread Jacek Caban
On 04/18/13 12:06, larmbr zhan wrote: >> You're going to have to be (much) more specific with your application, what >> modules do you plan to implement, what applications does this help (if you >> know of any), etc. > Actually I am a huge fan of underlying stuff like OS, programming > language int

Re: Application for GSoC 2013

2013-04-18 Thread Jacek Caban
On 04/17/13 18:38, larmbr zhan wrote: > Hi all, > > I'm a junior student from a non-famous college, > I apply to parcitipate in GSoC , to help do some > vbscript module implementation. I've just submitted > a patchset on this. No worries, no collage name can give you

Re: Application for GSoC 2013

2013-04-18 Thread larmbr zhan
Hi, Austin. On Thu, Apr 18, 2013 at 3:00 AM, Austin English wrote: > While your college may not be famous, it's still nice information to have > (and let's us get to know you better). Well, I am a student from Defence Industry Staff College of GuangDong, China, and major in electric automatizati

Re: Application for GSoC 2013

2013-04-17 Thread Austin English
On Wed, Apr 17, 2013 at 9:38 AM, larmbr zhan wrote: > Hi all, > > I'm a junior student from a non-famous college, > I apply to parcitipate in GSoC , to help do some > vbscript module implementation. I've just submitted > a patchset on this. > Howdy Zhan, While

Application for GSoC 2013

2013-04-17 Thread larmbr zhan
Hi all, I'm a junior student from a non-famous college, I apply to parcitipate in GSoC , to help do some vbscript module implementation. I've just submitted a patchset on this. Thanks. -- Regards, Zhan Jianyu

Re: GSoC '13 - Hello!

2013-04-15 Thread André Hentschel
Am 14.04.2013 04:59, schrieb Eric Zheng: > Hello everyone, > > My name is Eric Zheng, I'm a junior in Computer Engineering at the University > of Illinois Urbana-Champaign. I just wanted to introduce myself and state my > interest in the "Xinput / Xbox 360 controller compatibility" project. I ho

GSoC '13 - Hello!

2013-04-13 Thread Eric Zheng
Hello everyone, My name is Eric Zheng, I'm a junior in Computer Engineering at the University of Illinois Urbana-Champaign. I just wanted to introduce myself and state my interest in the "Xinput / Xbox 360 controller compatibility" project. I hope to be able to jump on IRC later in the week to spe

Re: GSoC 2013 proposal: Implement XPath from scratch

2013-04-12 Thread Alex Bradbury
On 11 April 2013 11:26, Nikolay Sivov wrote: > By the way, the main reason why I added this topic to GSoC page was that it > seems to me that it's possible to implement it incrementally, this is a very > important, and XPath implementation is a significant part of a long term > p

Re: GSoC 2013 proposal: Implement XPath from scratch

2013-04-11 Thread Nikolay Sivov
On 4/11/2013 05:52, John Chadwick wrote: Hello, I am a student of computer science interested in entering Wine development via GSoC 2013. Upon looking at the various suggested proposals, the project of reimplementing XPath without libxml2 looked particularly interesting. I am familiar with

Re: We're in GSoC 2013

2013-04-10 Thread paulo lesgaz
Hello, can the project "Implementing a vertex pipeline" be added for the possible GSOC projects? It would fix plenty of broken games (see bug 6955). Henri Verbeet said it could be a project, depending of skills of the student. David De : Austin

GSoC 2013 proposal: Implement XPath from scratch

2013-04-10 Thread John Chadwick
Hello, I am a student of computer science interested in entering Wine development via GSoC 2013. Upon looking at the various suggested proposals, the project of reimplementing XPath without libxml2 looked particularly interesting. I am familiar with the C language, W3C DOM and XPath, and I

Re: We're in GSoC 2013

2013-04-10 Thread Austin English
On Tue, Apr 9, 2013 at 1:21 PM, paulo lesgaz wrote: > Hello, > > can the project "Implementing a vertex pipeline" be added for the possible > GSOC projects? > > It would fix plenty of broken games (see bug 6955). > > Henri Verbeet said it could be a project, de

We're in GSoC 2013

2013-04-09 Thread Austin English
If you're interested in mentoring, please apply at: https://www.google-melange.com/gsoc/org/google/gsoc2013/wine In either case, please take a look at http://wiki.winehq.org/SummerOfCodeand update/remove/any projects you're familiar with. If you have any questions, feel free to

Re: [GSoC] My (new) proposal for GSoC 2013

2013-04-09 Thread Stefan Dösinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2013-04-09 13:01, schrieb Stefan Dösinger: > I'm also running some of those tests That sentence got cut off: I'm also running some of those tests on a nightly basis to monitor Wine's performance. -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.19

Re: [GSoC] My (new) proposal for GSoC 2013

2013-04-09 Thread Stefan Dösinger
ence between the GL and d3d drivers, or the Windows and Linux drivers. Adding more benchmarks to this collection and investigating spotted performance differences would be a useful gsoc project imo. > Regarding the way of testing if opengl works - I was thinking in > the lines of: Making a GUI

Re: [GSoC] My (new) proposal for GSoC 2013

2013-04-05 Thread Gediminas Jakutis
with built-in dxdiag a bit might just come naturally. I hope that makes my intentions for GSoC a bit more clear. And, sorry - I should've gone with more detail on previous letter, indeed. -- Gediminas Jakutis LDK Varčiai www.varciai.lt

Re: [GSoC] My (new) proposal for GSoC 2013

2013-04-05 Thread Stefan Dösinger
here have been some projects concerning that in the past, I recommend to do some research. Lastly there are some bug reports which need tests, e.g. 10164 and 29052. Bug 29052 should provide a nice introduction into ddraw/d3d programming in Wine, but those two bugs do not provide enough work for a full

[GSoC] My (new) proposal for GSoC 2013

2013-04-04 Thread Gediminas Jakutis
allow users to easily test if d3d and wgl / opengl work & are set up properly. Info about me (copied over from [1]): >My name is Gediminas Jakutis. I study Informatics Engineering >[bachelor / undergraduate] at Kaunas University of Technology, second >year. >I wish to try out GSoC fo

Re: GSoC 2013 Ideas Page

2013-04-02 Thread Austin English
-- Forwarded message -- > From: Carol Smith > Date: Tue, Apr 2, 2013 at 1:41 PM > Subject: GSoC 2013 Ideas Page > To: Carol Smith > > > Hi there, > > You're receiving this email because we've reviewed your application for > GSoC 2013. We're curr

Fwd: GSoC 2013 Ideas Page

2013-04-02 Thread Austin English
: GSoC 2013 Ideas Page To: Carol Smith Hi there, You're receiving this email because we've reviewed your application for GSoC 2013. We're currently disappointed with the quality of your Ideas Page and would like to give you an opportunity to improve it and your chances of getting into

Re: [GSoC] My proposal for GSoC 2013

2013-03-21 Thread Gediminas Jakutis
to think of something else - what general areas in Wine are most welcome for GSoC ideas? I Looked over the GSoC Wine's wiki page, but I do not know how much I can trust it. That is because after GSoC 2012, it was only edited once. And the edit comment says: > remove some stuff that's done (

Re: [GSoC] My proposal for GSoC 2013

2013-03-20 Thread Austin English
On Wed, Mar 20, 2013 at 11:35 AM, Gediminas Jakutis wrote: > Hello! > For GSoC, I am suggesting my own idea. In case this idea is not good, > I am open to changing it, thinking of a new one, or adopting one. > My idea: I have noticed that Wine's virtual desktop feature is very &

Re: [GSoC] My proposal for GSoC 2013

2013-03-20 Thread Vincent Povirk
I think the reasons for the limitation on the virtual desktop setting are more ideological than technical. It used to work the way you say, but then Wine's desktop management was overhauled so that: * Explorer.exe manages all desktop windows, including the virtual desktop. I believe this is requir

[GSoC] My proposal for GSoC 2013

2013-03-20 Thread Gediminas Jakutis
Hello! My name is Gediminas Jakutis. I study Informatics Engineering [bachelor / undergraduate] at Kaunas University of Technology, second year. I wish to try out GSoC for the first time by helping to improve Wine. My primary programming language is C. I am self-taught in C, but I believe my

GSoC 2013 guidelines.

2013-02-28 Thread Tejas Nikumbh
Hi, I am Tejas Nikumbh, an undergrad at Indian Institute of Technology Bombay. I will be participating in GSoC this year. [GSoC 2013]. In order to imporve my chances for getting selected this year, I would like to start contributing early on to Open Source development via Wine. Here's a l

Fwd: [GSoC Mentors] [Announce] GSoC 2012 Mentors/Org Admins: "Pencils Down" and Final Evaluation Dates Approaching

2012-08-06 Thread Austin English
-- Forwarded message -- From: Carol Smith Date: Mon, Aug 6, 2012 at 12:33 PM Subject: [GSoC Mentors] [Announce] GSoC 2012 Mentors/Org Admins: "Pencils Down" and Final Evaluation Dates Approaching To: Google Summer of Code Mentors List Hi there, This is a friendly rem

Re: GSoC mentor summit 2012

2012-08-06 Thread Owen Rudge
On 06/08/2012 17:17, Stefan Dösinger wrote: Am Freitag, 3. August 2012, 14:38:29 schrieb Aric Stewart: ok, then how about you two just go. That seems easy. Cool :-) . I've filled out the attendee registration, and I'm currently figuring out how to add myself to the attendee list o

Re: GSoC mentor summit 2012

2012-08-06 Thread Stefan Dösinger
Am Freitag, 3. August 2012, 14:38:29 schrieb Aric Stewart: > ok, then how about you two just go. That seems easy. Cool :-) . I've filled out the attendee registration, and I'm currently figuring out how to add myself to the attendee list on the gsoc wiki(there's some password f

Re: GSoC mentor summit 2012

2012-08-04 Thread Marcus Meissner
On Fri, Jul 27, 2012 at 01:20:20PM +0200, Stefan Dösinger wrote: > Am Donnerstag, 26. Juli 2012, 16:07:52 schrieb Owen Rudge: > > It looks like the GSoC mentor summit for 2012 has been announced. Are > > any of the mentors this year interested in attending? It's happening

Re: GSoC mentor summit 2012

2012-08-03 Thread Aric Stewart
ok, then how about you two just go. That seems easy. -aric On 8/2/12 6:02 AM, Owen Rudge wrote: On 02/08/2012 11:48, Stefan Dösinger wrote: Am Montag, 30. Juli 2012, 08:16:38 schrieb Aric Stewart: I could be interested. I have never been and am a first time mentor. October is still a bit far

Re: GSoC mentor summit 2012

2012-08-02 Thread Owen Rudge
On 02/08/2012 11:48, Stefan Dösinger wrote: Am Montag, 30. Juli 2012, 08:16:38 schrieb Aric Stewart: I could be interested. I have never been and am a first time mentor. October is still a bit far off for me to be able to plan. So if someone else can completely commit that is cool. But I will tr

Re: GSoC mentor summit 2012

2012-08-02 Thread Stefan Dösinger
Am Montag, 30. Juli 2012, 08:16:38 schrieb Aric Stewart: > I could be interested. I have never been and am a first time mentor. > October is still a bit far off for me to be able to plan. So if someone > else can completely commit that is cool. But I will try to get info > about my availability tha

Re: GSoC mentor summit 2012

2012-07-30 Thread Aric Stewart
wrote: It looks like the GSoC mentor summit for 2012 has been announced. Are any of the mentors this year interested in attending? It's happening on the 20th/21st October in Mountain View. Details are on the GSoC mentor wiki: http://gsoc-wiki.osuosl.org/index.php/2012 Cheers,

Re: GSoC mentor summit 2012

2012-07-27 Thread Owen Rudge
On 27/07/2012 12:20, Stefan Dösinger wrote: > That said, I've been there before, so if two other mentors who haven't been to > the summit yet want to go I am happy to yield the spot. Likewise, I'd put my name forward to attend again this year, but as with Stefan, if there are others who haven

Re: GSoC mentor summit 2012

2012-07-27 Thread Stefan Dösinger
Am Donnerstag, 26. Juli 2012, 16:07:52 schrieb Owen Rudge: > It looks like the GSoC mentor summit for 2012 has been announced. Are > any of the mentors this year interested in attending? It's happening on > the 20th/21st October in Mountain View. Sure, why not :-) That said, I

Re: GSoC mentor summit 2012

2012-07-26 Thread Austin English
On Thu, Jul 26, 2012 at 8:07 AM, Owen Rudge wrote: > It looks like the GSoC mentor summit for 2012 has been announced. Are any of > the mentors this year interested in attending? It's happening on the > 20th/21st October in Mountain View. > > Details are on the GSoC mentor w

GSoC mentor summit 2012

2012-07-26 Thread Owen Rudge
It looks like the GSoC mentor summit for 2012 has been announced. Are any of the mentors this year interested in attending? It's happening on the 20th/21st October in Mountain View. Details are on the GSoC mentor wiki: http://gsoc-wiki.osuosl.org/index.php/2012 Cheers, -- Owen Rudge

Fwd: [GSoC Mentors] [Announce] 2012 GSoC Mentor Midterm Evaluations 9 July - 13 July

2012-07-02 Thread Austin English
A friendly reminder for GSOC people. If you won't be able to submit your evaluation during the specified timeline, or have any other questions, please contact me privately. Cheers, Austin -- Forwarded message -- From: Carol Smith Date: Fri, Jun 29, 2012 at 11:41 AM Su

Re: GSoC Joystick Configuration Tools

2012-05-10 Thread Lucas Zawacki
On Thu, May 10, 2012 at 3:35 PM, Austin English wrote: > Any reason you're not using the wine wiki for that? This is a self-hosted wiki because a lot of the information I tend to write there is ephemereal, since I use it mostly as a way to document my progress and organize myself. I suppose I sh

Re: GSoC Joystick Configuration Tools

2012-05-10 Thread Austin English
On Thu, May 10, 2012 at 9:40 AM, Lucas Zawacki wrote: > Hello all, > > I'll use this thread to post information and ask questions regarding > my GSoC project. > > First there's a wiki which aggregates some information and lists tasks > I'm working on: http:/

GSoC Joystick Configuration Tools

2012-05-10 Thread Lucas Zawacki
Hello all, I'll use this thread to post information and ask questions regarding my GSoC project. First there's a wiki which aggregates some information and lists tasks I'm working on: http://lfzawacki.heroku.com/wine/published/HomePage Then there's a github repo: https://

Re: GSOC 2012 has started

2012-05-02 Thread Michael Mc Donnell
On Wed, May 2, 2012 at 5:28 PM, Józef Kucia wrote: > On Wed, May 2, 2012 at 10:00 PM, Michael Mc Donnell > wrote: >> I just saw you added D3DXCreateCubeTextureFromFileInMemory, will you >> be adding forwards for D3DXCreateCubeTextureFromFile too? > > So yes, I plan to implement these functions, b

Re: GSOC 2012 has started

2012-05-02 Thread Józef Kucia
On Wed, May 2, 2012 at 10:00 PM, Michael Mc Donnell wrote: > That sounds great! Józef which functions are you implementing? > I plan to implement the following: * DDS file format support in D3DXGetImageInfo functions * DDS file format support in D3DXCreateTextureFromFile functions * ID3DXRenderTo

Re: GSOC 2012 has started

2012-05-02 Thread Michael Mc Donnell
On Mon, Apr 23, 2012 at 8:17 PM, Austin English wrote: > Howdy, > > Google Summer of Code 2012 has started, and we have 5 students this year: > > Józef Kucia - Implement missing functions in D3DX9, mentored by Stefan > Dösinger - > https://google-melange.appspot.com/gsoc/pr

GSOC 2012 has started

2012-04-23 Thread Austin English
Howdy, Google Summer of Code 2012 has started, and we have 5 students this year: Józef Kucia - Implement missing functions in D3DX9, mentored by Stefan Dösinger - https://google-melange.appspot.com/gsoc/project/google/gsoc2012/jos/58002 Lucas Fialho Zawacki, mentored by Joystick configuration

Re: Updating GSoC proposal

2012-04-19 Thread Steven Edwards
On Tue, Mar 20, 2012 at 2:41 AM, Jacek Caban wrote: > > Cleanup Winemenubuilder to support generating Application Bundles on Mac > OS X There is a much better version of my patch for this on the morth-wine tree on GitHub. It just needs to be broken up and submitted by someone that cares. If a So

Re: [GSoC] Reduce dependency on native dlls

2012-04-15 Thread Henri Verbeet
On 14 April 2012 05:03, William Panlener wrote: > I have two concerns with this proposal: > 1) Is it unusual to work towards improving a specific application rather > than focusing on a specific component of wine? In general Wine development it's pretty common. For GSoC it's

[GSoC] Reduce dependency on native dlls

2012-04-14 Thread William Panlener
My name is William Panlener, and I am currently attending the University of Mississippi as a first semester Masters student in Computer Science. This is my first time participating in GSoC. My proposal for GSoC involves choosing an application with high dependence on native dlls and implementing

Re: [GSoC] Control panel proposal

2012-04-06 Thread Magdalena Nowak
p in mind that winecfg is a historical app, you'll > need a nice and clean incremental way of patching it out. That's why I want to work incrementally, (c.f. the timeline on my proposal). > For further communication please CC wine-devel. Oops! BTW, the proposal can be found on http://www.google-melange.com/gsoc/proposal/review/google/gsoc2012/magdalena/1

Re: [GSoC] Control panel proposal

2012-04-05 Thread André Hentschel
Am 05.04.2012 14:10, schrieb Magdalena Nowak: > Hi, my name is Magdalena Nowak and I'd like to apply for this year's > Summer of Code with Wine. My proposal is to merge the two control > panel suggestions (Tools - Merge winecfg and control panel and Tools - > Implement new control panel applets) in

Re: [GSoC] Control panel proposal

2012-04-05 Thread Magdalena Nowak
I just wanted to point out that my proposal is now up on Melange.

Re: My GSoC proposition: Raw Input

2012-04-05 Thread Eryk Wieliczko
12 20:21, Eryk Wieliczko  wrote: >>> >>> I've been thinking about joining GSoC as a student this year. As an >>> idea I propose Raw Input, and I seek your advise. Is this topic good, >>> what are possible catches, etc. >>> I think that it might be poss

[GSoC] Control panel proposal

2012-04-05 Thread Magdalena Nowak
Hi, my name is Magdalena Nowak and I'd like to apply for this year's Summer of Code with Wine. My proposal is to merge the two control panel suggestions (Tools - Merge winecfg and control panel and Tools - Implement new control panel applets) into one project. I would start off with splitting wine

Re: My GSoC proposition: Raw Input

2012-04-04 Thread Vitaliy Margolen
On 04/04/2012 12:34 PM, Henri Verbeet wrote: On 4 April 2012 20:21, Eryk Wieliczko wrote: I've been thinking about joining GSoC as a student this year. As an idea I propose Raw Input, and I seek your advise. Is this topic good, what are possible catches, etc. I think that it might be pos

Re: My GSoC proposition: Raw Input

2012-04-04 Thread Henri Verbeet
On 4 April 2012 20:21, Eryk Wieliczko wrote: > I've been thinking about joining GSoC as a student this year. As an > idea I propose Raw Input, and I seek your advise. Is this topic good, > what are possible catches, etc. > I think that it might be possible to finally do a decent

My GSoC proposition: Raw Input

2012-04-04 Thread Eryk Wieliczko
I've been thinking about joining GSoC as a student this year. As an idea I propose Raw Input, and I seek your advise. Is this topic good, what are possible catches, etc. I think that it might be possible to finally do a decent implementation, that would (besides mouse and keyboard) also su

GSoC: Encryption - implement a DSS provider

2012-04-02 Thread Alexander Sulfrian
Hi, I am Alexander Sulfrian and I am currently studding computer science at the "Freie Universität Berlin". I recently got my bachelor degree and currently attending the second semester to get my master. Last year, I took part in the GSoC for vlc and successfully implemented a

Re: Would like to get some feedback on GSOC idea

2012-03-29 Thread Juan Lang
> worked with it as much as the other languages. > > Implementing a DSS provider sounds like an awesome task to tackle, if > someone has never written code for Linux, can they take on such a > task? Are there any significant issues implementing a DSS that you > guys know about? Any c

Would like to get some feedback on GSOC idea

2012-03-27 Thread M C
task to tackle, if someone has never written code for Linux, can they take on such a task? Are there any significant issues implementing a DSS that you guys know about? Any crypt GSOC ideas would you suggest for someone who has wrote limited amount of code for Linux? What I would also like to do

Re: Need suggestion to choose a GSoC idea

2012-03-27 Thread Qian Hong
;s possible I think the OCR plan could be schedule low priority, maybe I'll investigate it in the future. Is it a good GSoC idea to improve font related testcase base on bitmap compares? Thank you! -- Regards, Qian Hong - Sent from Ubuntu http://www.ubuntu.com/

Re: Need suggestion to choose a GSoC idea

2012-03-27 Thread Aric Stewart
Hi, On 3/26/12 10:29 PM, Qian Hong wrote: - Improve Wine CJK font support The main idea is fix Bug 16325 [11], Aric and others have done a lot of work on it, and I'm glad to participating too. I think the main blocker for Wine CJK font support is Font Association now, is it suitable for a

Re: Need suggestion to choose a GSoC idea

2012-03-27 Thread Qian Hong
Hi Holy, On Tue, Mar 27, 2012 at 12:38 PM, HolyCause wrote: > I already asked Austin about that for my GSoC proposal: > >> in short, I think this effort is best spent somewhere else. GUI >> testing is really hard to get right, and very expensive(time, effort, >> di

Re: GSoC proposal

2012-03-26 Thread Hin-Tak Leung
--- On Mon, 26/3/12, Aric Stewart wrote: > Hi, > > Not to argue if it will be useful or not, as I do not know. > I think this > will be technically very hard. You will have to be able to > get the > keystrokes for a native linux applications feed them into > WINE, have > wine do the IME proce

Re: Need suggestion to choose a GSoC idea

2012-03-26 Thread HolyCause
font relate regression as well. I already asked Austin about that for my GSoC proposal: > in short, I think this effort is best spent somewhere else. GUI > testing is really hard to get right, and very expensive(time, effort, > disk space, cpu power, etc.). I've since decided ag

Need suggestion to choose a GSoC idea

2012-03-26 Thread Qian Hong
great if I can get start with the 2012 GSoC and keep submitting patches to Wine after that. I have lots of ideas in my TODO list, unfortunately most of them might too hard to do as a GSoC project. Anyway, I'll post my ideas here, wait for feedbacks, choose one of them as my GSoC idea, and leave

[GSoC] participate and contribute in opensource community

2012-03-26 Thread Narendra Kishan
Sir, I am Naren Krishna, I am students of CSE, I have some background in c++ and I have been using wine to run *.exe files in ubuntu. I want to help improve this software as this is a very good software, what do you expect from one. Please guide me, tell me if you want some bugs to be fixed.

  1   2   3   4   5   6   >