[PythonCE] Re: ?PythonCe is functional?
First, thanks for your answers. > Looks like no one else answered this so I'll take a shot at it... > > Lord_ZealoN ono.com> writes: > > > I would like to develop an email application. I'm thinking in use > python. > > PythonCe is totally functional? > > well, most of the widgets seem to work, also Pmw and I suspect > bwidgets would as > well. But if you have some particular module you want to use, you can > use the > command-line interpreter and write some simple tests to see if what > you want to > do is feasible. > > > Whath bbdd can i use? sqlite only? > > I see that kirbybase is also mentioned on the list. But what's wrong > with > sqlite? seems simple to use, and fast, to me. The problem, i think, is that sqlite is a single user bbdd and i think this is a problem with big applications. No? > > > What are the limits of pythonce? > > dunno! dunno = ¿I don't know? Sorry, but my english is very bad. > > > Is pythonce slow? > > compared to what? > Compared with C#.NET for example. Greetings. ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce
[PythonCE] Non-english PPC device users on this list?
Can someone confirm that non-english version of PPC devices use language specific names for \Program Files or \Storage Card\Program Files? I'm working on the python code that figures out sys.path and where to dynamically load python23.dll from, and I think this is an long standing bug that we hard-code "\Program Files" which doesn't work on non-english devices. -- Brad Clements,[EMAIL PROTECTED] (315)268-1000 http://www.murkworks.com (315)268-9812 Fax http://www.wecanstopspam.org/ AOL-IM: BKClements ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce
AW: [PythonCE] Non-english PPC device users on this list?
Yep, confirmed. On my german version of Microsoft PPC the location is "\Programme", and "\Storage Card" is called "\CF-Card" on my device. Also, it comes with a built-in flash storage area in "\LOOXstore". This is what is available in the registry regarding the directory names on my PDA: [HKEY_LOCAL_MACHINE\Explorer\Shell Folders] "Application Data"="\\Anwendungsdaten" "Desktop"="\\Windows\\Desktop" "Favorites"="\\Windows\\Favoriten" "Fonts"="\\Windows\\Schriftarten" "My Documents"="\\My Documents" "Program Files"="\\Programme" "Programs"="\\Windows\\Programme" "Recent"="\\Windows\\Zuletzt verwendete Dateien" "StartUp"="\\Windows\\Autostart" "Windows"="\\Windows" "Templates"="\\My Documents\\Vorlagen" [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\FlshDrv] "FolderName"="LOOXstore" [HKEY_LOCAL_MACHINE\Drivers\USB\ClientDrivers\Mass_Storage_Class\2] "DLL"="USBDISK6.DLL" "Prefix"="DSK" "Folder"="USB Disk" "IOCTL"=dword:0004 "IClass"="{A4E7EDDA-E575-4252-9D6B-4195D48BB865}" [HKEY_LOCAL_MACHINE\Drivers\USB\ClientDrivers\Mass_Storage_Class\6] "UnitAttnRepeat"=dword:000a "ScsiCommandTimeout"=dword:1388 "WriteSectorTimeout"=dword:2710 "ReadSectorTimeout"=dword:2710 "MediaPollInterval"=dword:04e2 "DLL"="USBDISK6.DLL" "Prefix"="DSK" "Folder"="USB Disk" "IOCTL"=dword:0004 "IClass"="{A4E7EDDA-E575-4252-9D6B-4195D48BB865}" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles] "Folder"="Bereitgestellte Datentrager" "AutoMount"=dword:0001 "AutoPart"=dword: "AutoFormat"=dword: "MountFlags"=dword: "DefaultFileSystem"="" "PartitionDriver"="mspart.dll" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\CDProfile] "Folder"="CD-ROM-Laufwerk" "Name"="IDE CDROM/DVD Drive" "DefaultFileSystem"="UDFS" "PartitionDriver"="" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\CDProfile\PartitionTable] [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\HDProfile] "Folder"="Festplatte" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\MMC] "Name"="MMC Card" "Folder"="SD-MMCard" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\PCMCIA] "Folder"="CF-Card" "Name"="PCMCIA/Compact Flash Device" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\SDMemory] "Name"="SD Memory Card" "Folder"="SD-MMCard" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\SDMMC] "Folder"="Speicherkarte" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\USBCDProfile] "Name"="USB CDROM/DVD Drive" "Folder"="CD-ROM-Laufwerk" "DefaultFileSystem"="UDFS" "PartitionDriver"="" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\USBCDProfile\PartitionTab le] [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\USBFDProfile] "Name"="USB Floppy Disk Drive" "Folder"="Diskettenlaufwerk" "DefaultFileSystem"="FATFS" "PartitionDriver"="" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\USBHDProfile] "Name"="USB Hard Disk Drive" "Folder"="Festplatte" [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\USBHDProfile\FATFS] "EnableCacheWarm"=dword: Regards, Sebastian -Ursprungliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von Brad Clements Gesendet: Montag, 10. Januar 2005 15:23 An: pythonce@python.org Betreff: [PythonCE] Non-english PPC device users on this list? Can someone confirm that non-english version of PPC devices use language specific names for \Program Files or \Storage Card\Program Files? I'm working on the python code that figures out sys.path and where to dynamically load python23.dll from, and I think this is an long standing bug that we hard-code "\Program Files" which doesn't work on non-english devices. -- Brad Clements,[EMAIL PROTECTED] (315)268-1000 http://www.murkworks.com (315)268-9812 Fax http://www.wecanstopspam.org/ AOL-IM: BKClements ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce
Re: [PythonCE] Non-english PPC device users on this list?
Obtaining the "Program Files"-Folder: I think the standard way to get it, is to use the windows API function SHGetSpecialFolderPath() with nFolder = CSIDL_PROGRAM_FILES, see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceshellui5 /html/wce50lrfSHGetSpecialFolderPath.asp ATTENTION: In in earlier documentation, (for WinCE3.0) I read, that the operating system returns FALSE, even if this function succeeds. I have not tried this function on WinCE, but use it on standard windows systems. Regards, Christian - Original Message - From: "Brad Clements" <[EMAIL PROTECTED]> To: Sent: Monday, January 10, 2005 3:23 PM Subject: [PythonCE] Non-english PPC device users on this list? > Can someone confirm that non-english version of PPC devices use language specific > names for \Program Files or \Storage Card\Program Files? > > I'm working on the python code that figures out sys.path and where to dynamically load > python23.dll from, and I think this is an long standing bug that we hard-code "\Program > Files" which doesn't work on non-english devices. > > > > -- > Brad Clements,[EMAIL PROTECTED] (315)268-1000 > http://www.murkworks.com (315)268-9812 Fax > http://www.wecanstopspam.org/ AOL-IM: BKClements > > ___ > PythonCE mailing list > PythonCE@python.org > http://mail.python.org/mailman/listinfo/pythonce > ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce