You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
(53) |
Apr
(48) |
May
(14) |
Jun
(3) |
Jul
(21) |
Aug
(11) |
Sep
(77) |
Oct
(67) |
Nov
(28) |
Dec
(163) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(112) |
Feb
(143) |
Mar
(114) |
Apr
(138) |
May
(173) |
Jun
(119) |
Jul
(119) |
Aug
(117) |
Sep
(187) |
Oct
(170) |
Nov
(254) |
Dec
(193) |
2005 |
Jan
(336) |
Feb
(284) |
Mar
(189) |
Apr
(100) |
May
(89) |
Jun
(52) |
Jul
(85) |
Aug
(138) |
Sep
(181) |
Oct
(137) |
Nov
(104) |
Dec
(98) |
2006 |
Jan
(76) |
Feb
(106) |
Mar
(224) |
Apr
(270) |
May
(103) |
Jun
(144) |
Jul
(77) |
Aug
(38) |
Sep
(37) |
Oct
(20) |
Nov
(14) |
Dec
(73) |
2007 |
Jan
(130) |
Feb
(68) |
Mar
(78) |
Apr
(60) |
May
(45) |
Jun
(63) |
Jul
(84) |
Aug
(45) |
Sep
(40) |
Oct
(12) |
Nov
(71) |
Dec
(56) |
2008 |
Jan
(44) |
Feb
(20) |
Mar
(25) |
Apr
(17) |
May
(33) |
Jun
(60) |
Jul
(97) |
Aug
(38) |
Sep
(10) |
Oct
(20) |
Nov
(13) |
Dec
(19) |
2009 |
Jan
(7) |
Feb
(5) |
Mar
(23) |
Apr
(10) |
May
(6) |
Jun
(5) |
Jul
(17) |
Aug
(7) |
Sep
(14) |
Oct
(27) |
Nov
(13) |
Dec
(12) |
2010 |
Jan
(37) |
Feb
(9) |
Mar
(13) |
Apr
(12) |
May
(8) |
Jun
(3) |
Jul
(1) |
Aug
(9) |
Sep
(3) |
Oct
(1) |
Nov
(1) |
Dec
(4) |
2011 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(4) |
May
|
Jun
(2) |
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Roger B. <ro...@ro...> - 2004-04-06 23:24:27
|
> So, it is something with not being attached to a proper wx control? I > dunno.... Just throwing this out to see if it rings any bells for you. There is a problem with the drag and drop and you have notebook panes. What I found was that it isn't necessarily the currently viewed pane that gets a drop message: http://bitpim.sf.net/pyxr/c/projects/bitpim/guiwidgets.py.html#1042 Roger |
From: Steven P. <n9...@n9...> - 2004-04-06 23:08:27
|
On Apr 6, 2004, at 5:52 PM, Steven Palm wrote: > Strange, I'm still digging but can't grok why the dragndrop events > aren't coming through... The OnDrop() method is never called. > Hmmmm.... Interesting... I put in a drop event on the LogWindow, just to test... (in __init__) self.droptarget=MyFileDropTarget(self) self.SetDropTarget(self.droptarget) print "LogWindow Drop Target:",self.droptarget Didn't work. However, if I changed the self.SetDropTarget() to self.tb.SetDropTarget(), it worked. So, it is something with not being attached to a proper wx control? I dunno.... Just throwing this out to see if it rings any bells for you. :-) |
From: Steven P. <n9...@n9...> - 2004-04-06 22:52:55
|
On Apr 6, 2004, at 12:12 PM, Roger Binns wrote: >> ...was that a general issue with the new fileview, > > My plan was to complete more of it in the wallpaper view, > and then the ringer view would be a quick changeover :-) Strange, I'm still digging but can't grok why the dragndrop events aren't coming through... The OnDrop() method is never called. Hmmmm.... I thought it may be due to using a subclass of a subclass of wxPanel, but that isn't it... I took the dragndrop sample and made it use a bpmedia.MediaDisplayer object and it works just fine... I'll include that below, but you also need the run.py module from the wxPython demo directory. Anyway, still working on it, but still not getting anything to trigger the OnDrop() method... import wx import guiwidgets import bpmedia #---------------------------------------------------------------------- class MyFileDropTarget(wx.FileDropTarget): def __init__(self, window, log): wx.FileDropTarget.__init__(self) self.window = window self.log = log def OnDropFiles(self, x, y, filenames): print "%d file(s) dropped at %d,%d\n" % (len(filenames), x, y) for file in filenames: print file,":", class FileDropPanel(wx.Panel): def __init__(self, parent, log): wx.Panel.__init__(self, parent, -1) dt = MyFileDropTarget(self, log) self.SetDropTarget(dt) #---------------------------------------------------------------------- #class TestPanel(wx.Panel): class TestPanel(bpmedia.MediaDisplayer): def __init__(self, parent, log): # wx.Panel.__init__(self, parent, -1) bpmedia.MediaDisplayer.__init__(self, parent) self.SetAutoLayout(True) outsideSizer = wx.BoxSizer(wx.VERTICAL) outsideSizer.Add(FileDropPanel(self, log), 1, wx.EXPAND) self.SetSizer(outsideSizer) #---------------------------------------------------------------------- def runTest(frame, nb, log): win = TestPanel(nb, log) return win #---------------------------------------------------------------------- if __name__ == '__main__': import sys,os import run run.main(['', os.path.basename(sys.argv[0])]) |
From: Roger B. <ro...@ro...> - 2004-04-06 17:11:58
|
> ...was that a general issue with the new fileview, My plan was to complete more of it in the wallpaper view, and then the ringer view would be a quick changeover :-) > I realize you are on other issues now, so I will keep working on this > as time allows and see if I can make some more progress. I do have the > 'origin' of the ringers coming through now, so at least that little bit > is cleaned up. :-) Yup. The principle here is that you touched it last, so it is yours to cleanup :-) Hopefully BitFling will be read for the next build. All the security is done, the transport is done, and I just have to implement a few more methods. (There are still a few more issues with the paramiko library but the author has promised me fixes). Roger |
From: Steven P. <n9...@n9...> - 2004-04-06 15:19:47
|
On Apr 6, 2004, at 2:31 AM, Roger Binns wrote: > You also can't add anything. A fair amount more code needs to > written to complete it. ...was that a general issue with the new fileview, or is that something specific to the ringer implementation? I just tried a dragndrop on the Mac and it doesn't work, but then again it doesn't work on the wallpaper view either. I see some code in there to deal with it, but haven't traced it through all the way to make sure it's being used. I realize you are on other issues now, so I will keep working on this as time allows and see if I can make some more progress. I do have the 'origin' of the ringers coming through now, so at least that little bit is cleaned up. :-) |
From: Steven P. <n9...@n9...> - 2004-04-06 13:36:26
|
On Apr 6, 2004, at 2:31 AM, Roger Binns wrote: >>> Since I'm not really very familiar with all the stuff you are doing >>> in >>> there and the bpmedia stuff, please have a look at it to make sure I >>> haven't made a mess of things. >> >> I did some tweaking on it. There are definitely pieces missing, as >> the >> origin doesn't show up. (I had remembered that it was going to be >> quite a bit of work, which is why I kept deferring starting it) Well, as time permits I'll keep poking at it if you don't mind. If I get in your way, just let me know. :-) |
From: Roger B. <ro...@ro...> - 2004-04-06 07:31:19
|
> > Since I'm not really very familiar with all the stuff you are doing in > > there and the bpmedia stuff, please have a look at it to make sure I > > haven't made a mess of things. > > I did some tweaking on it. There are definitely pieces missing, as the > origin doesn't show up. (I had remembered that it was going to be > quite a bit of work, which is why I kept deferring starting it) You also can't add anything. A fair amount more code needs to written to complete it. Roger |
From: Roger B. <ro...@ro...> - 2004-04-06 07:27:56
|
> I made a first pass at taking your logic/code for wallpaper.py and move > it into ringtone.py. I got tired of not being able to view them > properly on my Mac. :-) > Since I'm not really very familiar with all the stuff you are doing in > there and the bpmedia stuff, please have a look at it to make sure I > haven't made a mess of things. I did some tweaking on it. There are definitely pieces missing, as the origin doesn't show up. (I had remembered that it was going to be quite a bit of work, which is why I kept deferring starting it) > If we keep that same view (with a > graphic) it might be nice to have a different graphic for MID and QCP > files, although I think the value of the graphic at all is somewhat > dubious. ;-) The intention was to have different icons for the different formats. I have changed the default icon size to be 24x24 so less screen real estate is used. One of my future plans is to highlight media that are not compatible/ appropriate for the currently selected phone. That would happen for example if the format isn't supported (eg one entry is an mp3 and the phone doesn't support them) or if the size is wrong (eg and image is 640x480 but the phone expects 120x98). Roger |
From: Roger B. <ro...@ro...> - 2004-04-06 07:21:10
|
Stephen Wood wrote: > I'm trying to do media support now (and my taxes). Which model of Sanyo helps you do taxes :-) Roger |
From: Stephen W. <sa...@us...> - 2004-04-06 05:00:19
|
On Mon, 2004-04-05 at 00:34, John Camin wrote: ... > For the Ready Link stuff, it looks like I can get a month for free sometime. > Let me know if/when you have time to work on that and I'll sign up for it. I'm trying to do media support now (and my taxes). But it will be neat to see if there is anything BitPim can do to maintain ReadyLink phonebooks. Probably the thing to do is set up some readylink phonebook entries and then see if those entries show up in any files in the file system view. > Anything else to check? Is it trivial to add a setting for the 5400 even > though it appears to be only cosmetic? Nothing I can think of to check at the moment. Just keep your eyes open for things that don't seem right. Thanks for checking the 7300 and 5400 with BitPim. I have added the 5400 to the CVS, so now BitPim will support the phonebook and calendar for 7 Sanyo phones. Stephen |
From: Roger B. <ro...@ro...> - 2004-04-06 00:44:12
|
> > I had to approve you posting this message. You will need to subscribe to > > post any more messages. > > Yes, I noticed. Doesn't that defeat the purpose of Gmane? Err, you subscribed this list to Gmane. As I pointed out, the list settings on SF require all posts to be from a subscribed member. > > There is currently one problem which the Gmane folks are looking into. > > I have the lists at SourceForge set so that only subscribers can > > post. That stops the zillions of annoying messages from mail > > systems responding to forged email from viruses. (There are between > > 3 and 10 a day on each list). > > Wow, I had thought this list low-trafficked enough to be under the radar > of most spammers and viruses. Gmane certainly won't add to that since it > verifies all email addresses coming from the newsgroup end. The spam has been trivial. There is a flood of the "your message couldn't be delivered due to a virus" stuff. Although Gmane may do some verification, that doesn't solve the problem on the SF end. Quite frankly, I don't want to see all those idiotic virus things. Unfortunately I still have to go into the mailing list admin interface and remove them every few days (they are help up due to not being from a subscribed member). Roger |
From: Steven P. <n9...@n9...> - 2004-04-06 00:22:22
|
Roger, I made a first pass at taking your logic/code for wallpaper.py and move it into ringtone.py. I got tired of not being able to view them properly on my Mac. Since I'm not really very familiar with all the stuff you are doing in there and the bpmedia stuff, please have a look at it to make sure I haven't made a mess of things. If we keep that same view (with a graphic) it might be nice to have a different graphic for MID and QCP files, although I think the value of the graphic at all is somewhat dubious. ;-) |
From: Alex Z. <ze...@no...> - 2004-04-05 21:31:31
|
Roger Binns wrote: > Alex Zeiger wrote: > >>Yeah, I'm the one who registered devel and users. > > > I had to approve you posting this message. You will need to subscribe to > post any more messages. Yes, I noticed. Doesn't that defeat the purpose of Gmane? > I should also point out that it was fairly rude > not actually asking permission or saying you were going to do that. Sorry. I've subscribed a lot of groups, and I usually do ask. Yet, no one's ever refused registration so I began laxing the formalities. > There is currently one problem which the Gmane folks are looking into. > I have the lists at SourceForge set so that only subscribers can > post. That stops the zillions of annoying messages from mail > systems responding to forged email from viruses. (There are between > 3 and 10 a day on each list). Wow, I had thought this list low-trafficked enough to be under the radar of most spammers and viruses. Gmane certainly won't add to that since it verifies all email addresses coming from the newsgroup end. |
From: Roger B. <ro...@ro...> - 2004-04-05 04:50:50
|
> One interesting thing, whenever either phones are being written to, it > flashes the "Service Required. Please call..." message while the download > is in progress and then reboots. After it reboots, all's fine. http://bitpim.sourceforge.net/testhelp/phones-sanyo-sprint-notes.htm Roger |
From: John C. <ra...@ho...> - 2004-04-05 04:34:54
|
I tested both the 5400 & 7300 under the newest version and all seems to work just fine. Read/Writes to both phonebook and calendars work just peachy. No GUI error's that I could find related to this. The ringers come up fine for existing phonebook entries. Both phones were tested under the setting for the 7300. One interesting thing, whenever either phones are being written to, it flashes the "Service Required. Please call..." message while the download is in progress and then reboots. After it reboots, all's fine. I dont recall this happening before, but the 7300 beeps during this and brought it to my attention this time. For the Ready Link stuff, it looks like I can get a month for free sometime. Let me know if/when you have time to work on that and I'll sign up for it. Anything else to check? Is it trivial to add a setting for the 5400 even though it appears to be only cosmetic? -John _________________________________________________________________ Check out MSN PC Safety & Security to help ensure your PC is protected and safe. http://specials.msn.com/msn/security.asp |
From: Roger B. <ro...@ro...> - 2004-04-04 21:13:06
|
Alex Zeiger wrote: > Yeah, I'm the one who registered devel and users. I had to approve you posting this message. You will need to subscribe to post any more messages. I should also point out that it was fairly rude not actually asking permission or saying you were going to do that. There is currently one problem which the Gmane folks are looking into. I have the lists at SourceForge set so that only subscribers can post. That stops the zillions of annoying messages from mail systems responding to forged email from viruses. (There are between 3 and 10 a day on each list). The messages relayed from Gmane are supposed to have the SMTP From field being who they subscribed as with the Envelope From field being who posted, and Mailman is supposed to OK that. We will see what the results of Gmane's investigation is. Assuming that doesn't work, there are three resolutions: - Turn off the requirements for subscription, which will result in the lists being filled with virus and auto-responder crap, but Gmane will work. - Make the lists at Gmane read-only (ie anyone can read, but you still have to subscribe to post) - Take the lists off Gmane I am unlikely to do the first. We will probably have to do the middle one. Roger |
From: Alex Z. <ze...@no...> - 2004-04-04 20:21:23
|
Yeah, I'm the one who registered devel and users. I just got a 6000 and find Bitpim a useful utility. Great work guys! Roger Binns wrote: > Gmane is trying to host a newsgroup of this mailing list, > and also has a web interface. This message is testing > that. > > Roger > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click |
From: Roger B. <ro...@ro...> - 2004-04-03 23:56:34
|
Gmane is trying to host a newsgroup of this mailing list, and also has a web interface. This message is testing that. Roger |
From: Roger B. <ro...@ro...> - 2004-04-01 02:25:05
|
> Since it worked, I left it alone and didn't look back. Cleaning that up > before 0.7 would be a good idea. I don't personally care, as long as it works. I was just answering someone's question on bitpim-user (the usual complaints about phone baud rates and how slowly the read/write from flash) and pointed them at the code and noticed the lgdmgo function and a call to it! > What is the difference between AT$LGDMGO and AT$QCDMG on the LG phones? Nothing detectable on the phones I have. I suspect that LGDMGO may also work on LG phones that are not Qualcomm based, or that predated Brew and filesystem access. Roger |
From: Stephen W. <sa...@us...> - 2004-04-01 02:15:16
|
Roger: I am sure that sending AT$LGDMGO to a Sanyo phone doesn't do anything. I was also sure of that when I started adding Sanyo support to BitPim. When I came to this project, I had a perl script that could read information out of the phone. But in between runs of the script, I had to power cycle my phone or it wouldn't work. When I started with BitPim, I just copied the mode changing code from the LG4400. I didn't really understand it, but it had the magic feature that I didn't have to reboot my phone in between BitPim runs. A big plus when debugging! Since it worked, I left it alone and didn't look back. Cleaning that up before 0.7 would be a good idea. What is the difference between AT$LGDMGO and AT$QCDMG on the LG phones? Stephen On Wed, 2004-03-31 at 16:44, Roger Binns wrote: > Stephen, > > Are you sure the Sanyo phonebook mode code is correct? > |
From: Roger B. <ro...@ro...> - 2004-04-01 01:21:26
|
http://www.python.org/cgi-bin/moinmoin/MostPopularPythonProjects You can see the project stats at http://sourceforge.net/project/stats/?group_id=75211 The monthly view is interesting. January marked the first 0.7 test release and downloads consequently doubled. As for the mailing lists, there are the following number of subscribers to each: bitpim-announce 166 bitpim-cvs-checkins 5 bitpim-devel 67 bitpim-trackers 5 bitpim-user 153 Roger |
From: Roger B. <ro...@ro...> - 2004-03-31 21:44:22
|
Stephen, Are you sure the Sanyo phonebook mode code is correct? http://bitpim.sf.net/pyxr/c/projects/bitpim/com_sanyo.py.html#0067 I seriously doubt that AT$LGDMGO would work on a non-LG phone? Or maybe it is always in the mode so most of that function doesn't get called. Roger |
From: Steven P. <n9...@n9...> - 2004-03-31 20:51:02
|
On Mar 31, 2004, at 1:16 PM, Roger Binns wrote: >> as Jaguar uses Python 2.2. > > I thought you had to use 2.3 to get wxPython to work? Oh, my aching brain... ;-) I actually can't remember right now, I'll have to check. Well, one way or the other, the pieces are there to make it work, now it's just a matter of seeing if it *will* work or not. Thanks! |
From: Roger B. <ro...@ro...> - 2004-03-31 19:16:29
|
Steven Palm wrote: > On Mar 30, 2004, at 8:40 PM, Roger Binns wrote: > > - Double-check that Paramiko is okay to use (it is LGPL) > > (ie would you be happy exposing it to the open Internet?) > > Are you going to check this, or is this something you are suggesting > we do? Are you asking for another set of eyes to go over it's code, or > is this a licensing issue question? I have checked the license and that the code works. However I may have missed something (else?) so would appreciate an extra set of eyes seeing if there is anything I missed. > as Jaguar uses Python 2.2. I thought you had to use 2.3 to get wxPython to work? Roger |
From: Steven P. <n9...@n9...> - 2004-03-31 05:33:32
|
On Mar 30, 2004, at 8:40 PM, Roger Binns wrote: > - Double-check that Paramiko is okay to use (it is LGPL) > (ie would you be happy exposing it to the open Internet?) Are you going to check this, or is this something you are suggesting we do? Are you asking for another set of eyes to go over it's code, or is this a licensing issue question? > - Install pycrypto package from > http://www.amk.ca/python/code/crypto.html Well, that installed on MacOS X just fine, at least Panther... I'll try Jaguar tomorrow, but that will also require the logging module as Jaguar uses Python 2.2. |