From chris at bayareadigital.us Sun Mar 14 01:36:02 2010 From: chris at bayareadigital.us (Christopher Gray) Date: Sat, 13 Mar 2010 16:36:02 -0800 (Pacific Standard Time) Subject: [PythonCE] Beginner Questions Message-ID: Hello: I am new to Python and even newer to PythonCE. Here are a couple of relatively elementary questions. I found what looks to be the newest download called pythoncesetup.exe. It ran on my PC under Windows XP and upon finishing says it will install PythonCE the next time I attach my PDA. Is this done somehow through ActiveSync? I tried running pythoncesetup.exe on my PDA directly using a thumb drive. I got an error that the program was not a valid win32 application. Is this expected behavior? On the Python wikki, I found a lot of files that seem to be a smartphone application. Is PythonCE only for smartphones? What about Symbian phones or the Google phone and droids? Right now, I'm mostly learning Python using the ActiveState Python 2.6 on a PC running XP and Ubuntu Linux. My longer term objectives are to: Create stand-alone applications on mobile phones that allow blind, visually impaired and numeracy impaired people to gather data from medical equipment and have it spoken from their cell phones or PDAs Explore the use of PythonCE on a braille PDA running Windows CE 6. Do these seem like reasonable objectives? I have experience programming in Java and C, assisted in the implementation of the FORTH language on a braille-based PDA, so am not a complete stranger to this work. Any advice, particularly pointers to documentation, would really be appreciated. Thanks. Chris ---------------------------------------- Christopher Gray, President Bay Area Digital Promoting good health with innovative technology and superior health products 870 Market Street, #653 San Francisco, CA 94102 Phone: (415) 217-6667 fax: (415) 962-2520 Email: chris at bayareadigital.us Visit my blog at http://ChristopherGray.squarespace.com Visit me on Facebook by linking to http://www.facebook.com/cpgray From adam.walley at gmail.com Sun Mar 14 20:21:28 2010 From: adam.walley at gmail.com (Adam Walley) Date: Sun, 14 Mar 2010 19:21:28 +0000 Subject: [PythonCE] Beginner Questions In-Reply-To: References: Message-ID: <518d94ee1003141221t239aa7b2obeb6023b4f4533a6@mail.gmail.com> Welcome, Christopher! I hope you like what you have seen so far with Python and PythonCE. To answer your questions: - Yes, the setup executable is intended to work through Activesync, so next time you connect Activesync will do the install on your device for you. - Running the setup executable directly on your device will not work (because it is compiled to run on a PC and then transfer through Async). To install directly on your device you need a CAB package (I seem to have one for PythonCE 2.5 in my original install files so it is probably available out there somewhere). - PythonCE is definitely not only for smartphones, although that is a popular use for it. Any platform that runs Windows CE or Windows Mobile should (hopefully) let you run PythonCE without any problems. PythonCE will not run on Symbian or Android phones because PythonCE needs Microsoft's operating system - there may be other Python packages for these platforms (but that's not anything to do with this list). - Your objectives are not unreasonable, although depending on your exact requirements you may find "stand-alone" to be a sticking point; the target device will need to have PythonCE installed before any scripts will run on it, and there is no method for making a single executable file from your script (as you might do with a C compiler, for example). - Java and C experience will certainly be useful. - Documentation is mainly what you find on the wiki and sourceforge pages, as well as the main Python pages (most things are implemented the same way in PythonCE). Many things are covered in this list. I have some personal pages I put together, which may be of interest - including how to record from the built-in microphone and save out to a WAV file, as well as stylus input. There is also information about using the system's notifications to schedule a script to run at a certain time. Take a look here: http://watersprite.awardspace.com/python Happy Python-ing! Adam On 14 March 2010 00:36, Christopher Gray wrote: > Hello: > > I am new to Python and even newer to PythonCE. Here are a couple of > relatively elementary questions. > > I found what looks to be the newest download called pythoncesetup.exe. It > ran on my PC under Windows XP and upon finishing says it will install > PythonCE the next time I attach my PDA. Is this done somehow through > ActiveSync? > > I tried running pythoncesetup.exe on my PDA directly using a thumb drive. > I got an error that the program was not a valid win32 application. Is this > expected behavior? > > On the Python wikki, I found a lot of files that seem to be a smartphone > application. Is PythonCE only for smartphones? What about Symbian phones > or the Google phone and droids? > > Right now, I'm mostly learning Python using the ActiveState Python 2.6 on a > PC running XP and Ubuntu Linux. My longer term objectives are to: > > Create stand-alone applications on mobile phones that allow blind, > visually impaired and numeracy impaired people to gather data from medical > equipment and have it spoken from their cell phones or PDAs > > Explore the use of PythonCE on a braille PDA running Windows CE 6. > > Do these seem like reasonable objectives? > > I have experience programming in Java and C, assisted in the implementation > of the FORTH language on a braille-based PDA, so am not a complete stranger > to this work. > > Any advice, particularly pointers to documentation, would really be > appreciated. > > Thanks. > > Chris > > > ---------------------------------------- > Christopher Gray, President > Bay Area Digital > > Promoting good health with innovative technology and superior health > products > > 870 Market Street, #653 > San Francisco, CA 94102 > Phone: (415) 217-6667 > fax: (415) 962-2520 > Email: chris at bayareadigital.us > > Visit my blog at http://ChristopherGray.squarespace.com > > Visit me on Facebook by linking to http://www.facebook.com/cpgray > > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > -------------- next part -------------- An HTML attachment was scrubbed... URL: From adam.walley at gmail.com Mon Mar 15 01:08:57 2010 From: adam.walley at gmail.com (Adam Walley) Date: Mon, 15 Mar 2010 00:08:57 +0000 Subject: [PythonCE] Beginner Questions In-Reply-To: <4B9D5B3F.7030405@daystar.nl> References: <518d94ee1003141221t239aa7b2obeb6023b4f4533a6@mail.gmail.com> <4B9D5B3F.7030405@daystar.nl> Message-ID: <518d94ee1003141708w3f723a7w20c680f14cfdfc29@mail.gmail.com> Hi, Remco. Thanks for spotting the bad link - I had taken it down to update the SDL version. Fixed it now. The 'wrapper' is a simple set of C functions that go between the SDL library and PythonCE's ctypes module, making it easy to call SDL functions from Python scripts. Python is probably a great choice as a first language, as it is so elegant. A lot can be achieved in a few lines of code. It is worth noting that it was originally a scripting language (not really for programming per se), but so much is now possible with it that the lines become blurred. The online docs for the Python language are pretty comprehensive, so I'm sure you will find what you need. Adam. On 14 March 2010 21:55, Remco Krijgsman wrote: > Hi Adam, > > I'm new to python(ce) as well. I checked out your link and found the link "Get > the SDL 1.2.13 compiled for ARM processors here"to be dead. What exactly is this SDL? And what is the wrapper? > > I read your page and am also interested in getting devices like iPAQ's to > control stuff since the old ones are cheap and low power so it seems logical > to use them this way. I have a few 3600 and 3660's lying around somewhere. > But first I must read a couple of books like Invent Your Own Games with > Python to get a feel for the language and get some programming experience > since it's my first programming language. > > regards, > > Remco > > Op 3/14/2010 8:21 PM, Adam Walley schreef: > > Welcome, Christopher! > > I hope you like what you have seen so far with Python and PythonCE. To > answer your questions: > > - Yes, the setup executable is intended to work through Activesync, so next > time you connect Activesync will do the install on your device for you. > > - Running the setup executable directly on your device will not work > (because it is compiled to run on a PC and then transfer through Async). To > install directly on your device you need a CAB package (I seem to have one > for PythonCE 2.5 in my original install files so it is probably available > out there somewhere). > > - PythonCE is definitely not only for smartphones, although that is a > popular use for it. Any platform that runs Windows CE or Windows Mobile > should (hopefully) let you run PythonCE without any problems. PythonCE will > not run on Symbian or Android phones because PythonCE needs Microsoft's > operating system - there may be other Python packages for these platforms > (but that's not anything to do with this list). > > - Your objectives are not unreasonable, although depending on your exact > requirements you may find "stand-alone" to be a sticking point; the target > device will need to have PythonCE installed before any scripts will run on > it, and there is no method for making a single executable file from your > script (as you might do with a C compiler, for example). > > - Java and C experience will certainly be useful. > > - Documentation is mainly what you find on the wiki and sourceforge pages, > as well as the main Python pages (most things are implemented the same way > in PythonCE). Many things are covered in this list. > > I have some personal pages I put together, which may be of interest - > including how to record from the built-in microphone and save out to a WAV > file, as well as stylus input. There is also information about using the > system's notifications to schedule a script to run at a certain time. Take a > look here: http://watersprite.awardspace.com/python > > Happy Python-ing! > > Adam > > On 14 March 2010 00:36, Christopher Gray wrote: > >> Hello: >> >> I am new to Python and even newer to PythonCE. Here are a couple of >> relatively elementary questions. >> >> I found what looks to be the newest download called pythoncesetup.exe. It >> ran on my PC under Windows XP and upon finishing says it will install >> PythonCE the next time I attach my PDA. Is this done somehow through >> ActiveSync? >> >> I tried running pythoncesetup.exe on my PDA directly using a thumb drive. >> I got an error that the program was not a valid win32 application. Is this >> expected behavior? >> >> On the Python wikki, I found a lot of files that seem to be a smartphone >> application. Is PythonCE only for smartphones? What about Symbian phones >> or the Google phone and droids? >> >> Right now, I'm mostly learning Python using the ActiveState Python 2.6 on >> a PC running XP and Ubuntu Linux. My longer term objectives are to: >> >> Create stand-alone applications on mobile phones that allow blind, >> visually impaired and numeracy impaired people to gather data from medical >> equipment and have it spoken from their cell phones or PDAs >> >> Explore the use of PythonCE on a braille PDA running Windows CE 6. >> >> Do these seem like reasonable objectives? >> >> I have experience programming in Java and C, assisted in the >> implementation of the FORTH language on a braille-based PDA, so am not a >> complete stranger to this work. >> >> Any advice, particularly pointers to documentation, would really be >> appreciated. >> >> Thanks. >> >> Chris >> >> >> ---------------------------------------- >> Christopher Gray, President >> Bay Area Digital >> >> Promoting good health with innovative technology and superior health >> products >> >> 870 Market Street, #653 >> San Francisco, CA 94102 >> Phone: (415) 217-6667 >> fax: (415) 962-2520 >> Email: chris at bayareadigital.us >> >> Visit my blog at http://ChristopherGray.squarespace.com >> >> Visit me on Facebook by linking to http://www.facebook.com/cpgray >> >> _______________________________________________ >> PythonCE mailing list >> PythonCE at python.org >> http://mail.python.org/mailman/listinfo/pythonce >> > > > _______________________________________________ > PythonCE mailing listPythonCE at python.orghttp://mail.python.org/mailman/listinfo/pythonce > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From c22rs at web.de Mon Mar 15 06:11:19 2010 From: c22rs at web.de (rodi) Date: Mon, 15 Mar 2010 06:11:19 +0100 Subject: [PythonCE] project announcement - KaaShopping Message-ID: <201003150611.21455.c22rs@web.de> Hello PythonCE users, I'm proud to present my project named KaaShopping. It's a shopping list application. - Yes , an other shoppig list app, but the onely one writen based on PythonCE, PPyGUI and most of all published under GPL :) ! You'l find the project's web site on sourceforge http://kaashopping.sourceforge.net/ The project staus is currently at alpha level, but IMHO works quite well in daily use. Any comments, evaluation reports and suggestions are welcome. Especially if you find a bug I would be delighted if you envoke a ticket on the projects trac facility. Unfortunately, the initial database is only available in German, but that's what I use for live application. Versions for other countries are welcome - but they should be 'real live' not just translations. ;) So, have fun. rodi From yahoo at vapourforge.com Fri Mar 26 07:11:48 2010 From: yahoo at vapourforge.com (Jake Anderson) Date: Fri, 26 Mar 2010 17:11:48 +1100 Subject: [PythonCE] wiki seems to be down Message-ID: <4BAC5024.8020109@vapourforge.com> it looks like the wiki on sourceforge is broken http://pythonce.sourceforge.net/Wikka/Troubleshooting gives An error has been encountered in accessing this page. 1. *Server:* pythonce.sourceforge.net 2. *URL path:* /Wikka/Troubleshooting 3. *Error notes:* Server unable to read htaccess file, denying access to be safe 4. *Error type:* 403 5. *Request method:* GET 6. *Request query string:* NONE 7. *Time:* 2010-03-26 06:09:15 UTC (1269583755) *Reporting this problem:* The problem you have encountered is with a project web site hosted by SourceForge.net. This issue should be reported to the SourceForge.net-hosted project (not to SourceForge.net). /If this is a severe or recurring/persistent problem,/ please do one of the following, and provide the error text (numbered 1 through 7, above): 1. Contact the project via their designated support resources . 2. Contact the project administrators of this project via email (see the upper right-hand corner of the Project Summary page for their usernames) at /user-name/@users.sourceforge.net If you are a maintainer of this web content, please refer to the Site Documentation regarding web services for further assistance. NOTE: As of 2008-10-23 directory index display has been disabled by default. This option may be re-enabled by the project by placing a file with the name ".htaccess" with this line: Options +Indexes -------------- next part -------------- An HTML attachment was scrubbed... URL: From c22rs at web.de Sat Mar 27 19:41:46 2010 From: c22rs at web.de (rodi) Date: Sat, 27 Mar 2010 19:41:46 +0100 Subject: [PythonCE] How to determine special folder location Message-ID: <201003271941.47157.c22rs@web.de> Hello PytonCE users, I need to determine the location of special folder like 'start menu' but ther's neither SHGetFolderPathA nor SHGetFolderPathW in ctypes.windll.coredll. Has someone a workaround to solve this problem? Cheers rodi. From adam.walley at gmail.com Sun Mar 28 13:41:33 2010 From: adam.walley at gmail.com (Adam Walley) Date: Sun, 28 Mar 2010 12:41:33 +0100 Subject: [PythonCE] PythonCE and SSL Message-ID: <518d94ee1003280441n56b094a9q365ec123e66fc5e5@mail.gmail.com> Hello, all. I would like to ask what the current status is with the SSL library in PythonCE. It is not available with my main PythonCE package (v2.5 19/12/2006), so is there any way to add it? I have not, until recently, had any reason to need the SSL module, but I came across the following handy Python script, which lets you check your inbox status programmatically: ================ Python code ================ import urllib2, getpass def get_unread_msgs(user, passwd=getpass.getpass("pwd:")): auth_handler = urllib2.HTTPBasicAuthHandler() auth_handler.add_password( realm='New mail feed', uri='https://mail.google.com', user='%s at gmail.com' % user, passwd=passwd ) opener = urllib2.build_opener(auth_handler) urllib2.install_opener(opener) feed = urllib2.urlopen('https://mail.google.com/mail/feed/atom') return feed.read() ================ Python code ================ I would really like to get this working with PythonCE, but need to overcome the lacking SSL capability on PythonCE. I know the device can do it, since PocketIE can happily log into email accounts securely. I have so far looked into the following: a) attempting to compile the SSL module from the main Python 2.5 source using all the PythonCE references - not got very far with this yet. b) compiling openSSL and either using it in step a), or somehow accessing the parts I need directly with PythonCE and maybe ctypes. Unfortunately, openSSL documentation for arm processors is not very clear, and rather confusing (it seems to require various extra tools such as perl and a package called wcecompat). c) TLS Lite - this could be an option, but also appears to require some other modules/libraries. Have not explored this fully yet. d) Create my own DLL using VS2008 and the .NET CF3.5 functions. I think this would probably involve a considerable amount of work. Again, have not got an idea yet of exactly what would be required. My current workaround for all this is to use the GmAtom.php class (other mailbox types can be handled with similar scripts). Using this PHP class I can reproduce the same function as the script above from a PHP server, and then make the information accessible without the need for SSL to my PythonCE device (I could probably include some additional measures to make this more secure without the need for SSL type encryption). This workaround is not fully satisfactory to me, because it still relies on there being an available PHP server to do the accessing. I suppose this could possibly also be done using a 'pocket' PHP server, assuming it has SSL capabilities (any recommendations?), but I would be worried about the amount of resources this would use. Any help on any of the above would be much appreciated! Adam -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexandre.delattre at telecom-bretagne.eu Sun Mar 28 23:04:01 2010 From: alexandre.delattre at telecom-bretagne.eu (Alexandre Delattre) Date: Sun, 28 Mar 2010 23:04:01 +0200 Subject: [PythonCE] How to determine special folder location In-Reply-To: <201003271941.47157.c22rs@web.de> References: <201003271941.47157.c22rs@web.de> Message-ID: <3a0145151003281404m12a882adn5dfdf0df84102abc@mail.gmail.com> Hello, I don't have a winmo device at hand to test but maybe you can try finding the function in ctypes.windll.aygshell instead of coredll. 2010/3/27 rodi > Hello PytonCE users, > > I need to determine the location of special folder like 'start menu' > but ther's neither SHGetFolderPathA nor SHGetFolderPathW in > ctypes.windll.coredll. > Has someone a workaround to solve this problem? > > Cheers rodi. > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > > -- Alexandre Delattre Phone number : +33674116213 Mail : alexandre.delattre at telecom-bretagne.eu Web log : http://alexdweb.alwaysdata.com/blog/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From c22rs at web.de Tue Mar 30 00:02:43 2010 From: c22rs at web.de (rodi) Date: Tue, 30 Mar 2010 00:02:43 +0200 Subject: [PythonCE] How to determine special folder location Message-ID: <201003300002.45022.c22rs@web.de> Hello PytonCE users, have solved the question. The appropriate function is 'SHGetSpecialFolderPath': see http://msdn.microsoft.com/en-us/library/aa931257.aspx May be this info and the follwing code snippet is helpfull to others :) import ctypes from time import sleep HANDLE = ctypes.c_ulong HWND = HANDLE INT = ctypes.c_int BOOL = ctypes.c_int SHGetSpecialFolderPath = ctypes.windll.coredll.SHGetSpecialFolderPath # BOOL SHGetSpecialFolderPath( HWND hwndOwner, LPTSTR lpszPath, int nFolder, BOOL fCreate ); SHGetSpecialFolderPath.argtypes = [HWND, ctypes.c_wchar_p, INT, BOOL] MAX_PATH = 260 path = ctypes.create_unicode_buffer(MAX_PATH) for i in range(0, 60): #[CSIDL_STARTMENU, CSIDL_PROGRAMS]: try: SHGetSpecialFolderPath( 0, path, i, 0) if len(path.value)>0: print i, path.value else: print i, 'not supported' except Exception, e: print i, 'exception', e sleep(5) Cheers rodi. From adam.walley at gmail.com Tue Mar 30 00:52:53 2010 From: adam.walley at gmail.com (Adam Walley) Date: Mon, 29 Mar 2010 23:52:53 +0100 Subject: [PythonCE] How to determine special folder location In-Reply-To: <201003300002.45022.c22rs@web.de> References: <201003300002.45022.c22rs@web.de> Message-ID: <518d94ee1003291552t68bf1626o63ee774211a1c8c2@mail.gmail.com> Nice work. I will definitely make a note of that one. Thanks rodi. Adam. On 29 March 2010 23:02, rodi wrote: > Hello PytonCE users, > > have solved the question. The appropriate function > is 'SHGetSpecialFolderPath': see > http://msdn.microsoft.com/en-us/library/aa931257.aspx > > May be this info and the follwing code snippet is helpfull to others :) > > import ctypes > from time import sleep > > HANDLE = ctypes.c_ulong > HWND = HANDLE > INT = ctypes.c_int > BOOL = ctypes.c_int > > SHGetSpecialFolderPath = ctypes.windll.coredll.SHGetSpecialFolderPath > # BOOL SHGetSpecialFolderPath( HWND hwndOwner, LPTSTR lpszPath, int > nFolder, > BOOL fCreate ); > SHGetSpecialFolderPath.argtypes = [HWND, ctypes.c_wchar_p, INT, BOOL] > MAX_PATH = 260 > path = ctypes.create_unicode_buffer(MAX_PATH) > for i in range(0, 60): #[CSIDL_STARTMENU, CSIDL_PROGRAMS]: > try: > SHGetSpecialFolderPath( 0, path, i, 0) > if len(path.value)>0: > print i, path.value > else: > print i, 'not supported' > except Exception, e: > print i, 'exception', e > sleep(5) > > > Cheers rodi. > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > -------------- next part -------------- An HTML attachment was scrubbed... URL: From emailvarie at davide.it Tue Mar 30 16:20:07 2010 From: emailvarie at davide.it (Angelo Compagnucci) Date: Tue, 30 Mar 2010 16:20:07 +0200 Subject: [PythonCE] Pythonce Roadmap Message-ID: <777f2ade1003300720l68916da6x5c52ad17b52041e1@mail.gmail.com> Hello list! Is pythonce actively developed or it's is in a dead end state? In positive case, what is the roadmap? PS: Wiki is down ... Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bkc at murkworks.com Tue Mar 30 16:24:34 2010 From: bkc at murkworks.com (Brad Clements) Date: Tue, 30 Mar 2010 10:24:34 -0400 Subject: [PythonCE] Pythonce Roadmap In-Reply-To: <777f2ade1003300720l68916da6x5c52ad17b52041e1@mail.gmail.com> References: <777f2ade1003300720l68916da6x5c52ad17b52041e1@mail.gmail.com> Message-ID: <4BB209A2.9070605@murkworks.com> PythonCE isn't dead, though I do not know who all is using it these days. I no longer have a CE device. I am maintaining the mailing list (welcome to the list ..) I do not know who is in charge of the wiki @ sf .. anyone? Angelo Compagnucci wrote: > Hello list! > > Is pythonce actively developed or it's is in a dead end state? > > In positive case, what is the roadmap? > > PS: Wiki is down ... > > Thanks! > ------------------------------------------------------------------------ > > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > -- Brad Clements, bkc at murkworks.com (315)268-1000 http://www.murkworks.com AOL-IM: BKClements From adam.walley at gmail.com Tue Mar 30 17:18:54 2010 From: adam.walley at gmail.com (Adam Walley) Date: Tue, 30 Mar 2010 16:18:54 +0100 Subject: [PythonCE] PythonCE and SSL Message-ID: <518d94ee1003300818l5d0bea9u7554d5bba1512750@mail.gmail.com> Success! Using the TLSLite package I was able to achieve what I was aiming for - that is to access Gmail programmatically from PythonCE. For anyone interested, this is how I got there (after quite a bit of puzzling and trawling through the net): Having downloaded the TLSLite-0.3.8 package, I placed the 'tlslite' folder into my 'Lib/site-packages' without any modifications. Now it would be accessible to any of my PythonCE scripts. Next, I wrote the following script: ------ Example PythonCE code ------ import base64, string from tlslite.api import * user="anyuser" passwd="whatever" h=HTTPTLSConnection("mail.google.com",443) auth="Basic "+string.strip(base64.encodestring(user+":"+passwd)) h.putrequest("GET","/mail/feed/atom") h.putheader("Authorization",auth) h.endheaders() r=h.getresponse() txt=r.read() msgs=txt[txt.index("")+11:txt.index("")] raw=raw_input("inbox("+msgs+")") ------ Example PythonCE code ------ the above simply connects on port 443 (https) to the Gmail atom feed and returns an XML message about new messages in the inbox, which is then searched for the number of new messages. It's not the fastest thing in the world, but it works. Adam. -------------- next part -------------- An HTML attachment was scrubbed... URL: From c22rs at web.de Tue Mar 30 19:20:24 2010 From: c22rs at web.de (rodi) Date: Tue, 30 Mar 2010 19:20:24 +0200 Subject: [PythonCE] Pythonce Roadmap In-Reply-To: <4BB209A2.9070605@murkworks.com> References: <777f2ade1003300720l68916da6x5c52ad17b52041e1@mail.gmail.com> <4BB209A2.9070605@murkworks.com> Message-ID: <201003301920.25013.c22rs@web.de> Hello PythonCE users, my litle project KaaShooping relies on PythonCE. I don't knov how valuable it is to the ones that downlodes it? - At least it works for me. About the WiKi: access to 'http://pythonce.sourceforge.net/Wikka' reports An error has been encountered in accessing this page. 1. Server: pythonce.sourceforge.net 2. URL path: /Wikka 3. Error notes: Server unable to read htaccess file, denying access to be safe 4. Error type: 403 5. Request method: GET 6. Request query string: NONE As I remember, reading down those 'does&dont's of sf.net; sf.net will react on site abuses as follows: ..(?send e-mail) and as last resort alter the unix file access rights. !) Cheers, rodi Am Dienstag, 30. M?rz 2010 16:24:34 schrieb Brad Clements: > PythonCE isn't dead, though I do not know who all is using it these days. > > I no longer have a CE device. I am maintaining the mailing list (welcome > to the list ..) > > I do not know who is in charge of the wiki @ sf .. anyone? > > Angelo Compagnucci wrote: > > Hello list! > > > > Is pythonce actively developed or it's is in a dead end state? > > > > In positive case, what is the roadmap? > > > > PS: Wiki is down ... > > > > Thanks! > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > PythonCE mailing list > > PythonCE at python.org > > http://mail.python.org/mailman/listinfo/pythonce >