Discussion:
[BitPim-devel] Getting Zipped File
p***@cox-internet.com
2005-02-16 05:36:44 UTC
Permalink
I am new at this CSV. I downloaded Tortis and WINCsv and was unable
to use it to download files. Can I get a simple .ZIP file instead. The
password does not work? Please pardon me if this is improper. I have
spent about a week trying to achieve this, but have been unable to
move forward in this area.



-----Original Message-----
From: bitpim-devel-***@lists.sourceforge.net
[mailto:bitpim-devel-***@lists.sourceforge.net]On Behalf Of
bitpim-devel-***@lists.sourceforge.net
Sent: Monday, February 14, 2005 8:03 PM
To: bitpim-***@lists.sourceforge.net
Subject: BitPim-devel digest, Vol 1 #566 - 6 msgs



Send BitPim-devel mailing list submissions to
bitpim-***@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/bitpim-devel
or, via email, send a message with subject or body 'help' to
bitpim-devel-***@lists.sourceforge.net

You can reach the person managing the list at
bitpim-devel-***@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of BitPim-devel digest..."


Today's Topics:

1. Re: brew mode (Stephen Wood)
2. Re: LG VX 6100 index updates (Roger Binns)
3. Re: LG VX 6100 Camera images <= 60 mod (Roger Binns)
4. Re: Displaying Hebrew charachters (Roger Binns)
5. Re: Displaying Hebrew charachters (Stephen Wood)
6. Re: Displaying Hebrew characters (Yosef Meller)

--__--__--

Message: 1
Date: Sun, 13 Feb 2005 23:19:57 -0500
From: Stephen Wood <***@gmail.com>
To: bitpim-***@lists.sourceforge.net
Subject: Re: [BitPim-devel] brew mode
Hey,
if I get my phone in brew mode manually is there a way I can check
what's going on there?
Not really. You have to contruct proper HDLC packets. (with CRC64
checksum, escapping of 0x7d and 0x7e and termination with -x7e). Then
you have to know the protocol contained in the packets.
When I try to do it through bitpim it tries to reset the phone which
doesn't work
so I want to try it manually first.
If the phone is already in brew mode and you try to browse the
filesystem, it won't reset the phone, it will just detect that it is
in brew mode and go from there. If you can't browse the filesystem,
then either the phone doesn't have a filesystem, or the brew mode and
filesystem is on a different USB interface. I don't know too much
about it, but apparantly on some phones, one interface is used as a
modem and for AT commands, while another is used for diagnostic mode.

Your carrier seems to support CDMA. Is the Samsung SCH-N392 a CDMA
phone? If so, it should have a filesystem.

With Samsung phones, the phonebook and calendar can usually be
supported with AT#P commands, so that level of support should be
possible. Ringer and wallpaper is usually done through the
filesystems, except some Sanyo phone which have a different protocol
in diagnostic mode. If your phone has some protocol other than the
filesystem protocol, you'll have to do protocol analysis to find it
out.

Stephen
Ely
--__--__--

Message: 2
From: "Roger Binns" <***@rogerbinns.com>
To: <bitpim-***@lists.sourceforge.net>
Subject: Re: [BitPim-devel] LG VX 6100 index updates
Date: Sun, 13 Feb 2005 22:28:39 -0800
+ # reserving 80-120 for Other Internal images
+ ( 16, "download/dloadindex/brewImageIndex.map", "brew/shared",
"images", 60) ,
+ ( 202, "download/dloadindex/mmsImageIndex.map",
"brew/shared/mms",
"mms", 30),
+ ( 240, "download/dloadindex/mmsDrmImageIndex.map",
"brew/shared/mms/d", "drm", 20),
+ ( 130, None, None, "camera", 60) # nb camera must be last
Applied. Your "reserving" comment doesn't make sense since defines
the ranges.

Roger


--__--__--

Message: 3
From: "Roger Binns" <***@rogerbinns.com>
To: <bitpim-***@lists.sourceforge.net>
Subject: Re: [BitPim-devel] LG VX 6100 Camera images <= 60 mod
Date: Sun, 13 Feb 2005 22:29:34 -0800
[aladdin:Dev/BitPimDev/bitpim] osh% cvs diff -u p_lgvx6100.p
Applied.

Roger


--__--__--

Message: 4
From: "Roger Binns" <***@rogerbinns.com>
To: <bitpim-***@lists.sourceforge.net>
Subject: Re: [BitPim-devel] Displaying Hebrew charachters
Date: Sun, 13 Feb 2005 22:37:47 -0800
to replace makepackets.sh. The advantage of it is that if you're only
updating your own protocol, there's no need to remake all other
protocols (not really an issue now, but I'm a forward thinker).
The shell file has the advantage of automatically picking up all
the files. The previous scheme often had people forgetting to
add new .p files to the main list. We were also adding new phones
at a considerably higher rate.
So, I guess I need to tell it what encoding I'm using, but I could not
find where to do so. Can anyone direct me?
BitPim originally used host encoding which was whatever flavour of
8 bit codepage the user had.

During the migration to wxPython 2.5, we switched over to using Unicode
everywhere. (BTW Mac doesn't have a Unicode 2.5.2 so things are worse
there).

There is currently zero code that deals with characters going to or from
phones. This is in the todo list to fix: http://bitpim.org/todo.html

Data that comes from external sources such as Outlook, vCards etc should
work fine.

Roger


--__--__--

Message: 5
Date: Mon, 14 Feb 2005 09:25:04 -0500
From: Stephen Wood <***@gmail.com>
To: bitpim-***@lists.sourceforge.net
Subject: Re: [BitPim-devel] Displaying Hebrew charachters
to replace makepackets.sh. The advantage of it is that if you're only
updating your own protocol, there's no need to remake all other
protocols (not really an issue now, but I'm a forward thinker).
The shell file has the advantage of automatically picking up all
the files. The previous scheme often had people forgetting to
add new .p files to the main list. We were also adding new phones
at a considerably higher rate.
How about this?

PYTHON=python
PACKET_SOURCES:= $(wildcard p_*.p)

packets: $(patsubst %.p, %.py, $(PACKET_SOURCES))

%.py: %.p
@echo $<; $(PYTHON) protogen.py $< $@

It's gnumake only. Can we assume that gnumake exists on any platform
that /bin/sh scripts run on?

Better yet, could we compile the .p files in bp.py with something like this:

if __debug__:
compile_out_of_date_dotp_files()

Stephen


--__--__--

Message: 6
Date: Mon, 14 Feb 2005 23:20:51 +0200
From: Yosef Meller <***@netvision.net.il>
Subject: Re: [BitPim-devel] Displaying Hebrew characters
So, I guess I need to tell it what encoding I'm using, but I could not
find where to do so. Can anyone direct me?
BitPim originally used host encoding which was whatever flavour of
8 bit codepage the user had.
During the migration to wxPython 2.5, we switched over to using Unicode
everywhere. (BTW Mac doesn't have a Unicode 2.5.2 so things are worse
there).
There is currently zero code that deals with characters going to or from
phones. This is in the todo list to fix: http://bitpim.org/todo.html
Data that comes from external sources such as Outlook, vCards etc should
work fine.
Ok, I have a workaround that will alow me to work for now:
some_string.decode('cp1255') right where I get the string. I think after
I get something working I can work on adding an encoding listbox to the
settings dialog and enforce its value in (I think) common.py:
forceascii->force_user_enc or something. Haven't really dug in yet.

BTW - Ely, didn't you have to deal with the same issue? I see you are
with Pelephone too.
And not to be only on the asking side, I'm attaching a Makefile I
wrote to replace makepackets.sh. The advantage of it is that if you're
only updating your own protocol, there's no need to remake all other
protocols (not really an issue now, but I'm a forward thinker).
The shell file has the advantage of automatically picking up all
the files. The previous scheme often had people forgetting to
add new .p files to the main list. We were also adding new phones
at a considerably higher rate.
I like Stephen's idea.
--
Keep on rocking in a free world!



--__--__--

_______________________________________________
BitPim-devel mailing list
BitPim-***@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bitpim-devel


End of BitPim-devel Digest

Loading...