sepy-macdev Mailing List for SE|PY ASEditor (Page 10)
Brought to you by:
sephiroth_tmm
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(16) |
Aug
(41) |
Sep
(99) |
Oct
(4) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(51) |
Feb
(24) |
Mar
(4) |
Apr
|
May
|
Jun
(17) |
Jul
(39) |
Aug
(14) |
Sep
(12) |
Oct
(4) |
Nov
(2) |
Dec
(4) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Isaac R. <isa...@mi...> - 2004-09-06 15:43:41
|
Any thoughts on this? Do others on this subject realize they are not using Python 2.3.4, but built in 2.3? I wonder if just moving Python up to "/usr/bin/" would take care of this issues. Isaac On Sep 4, 2004, at 11:43 PM, Ashley McCoy wrote: > ... same thing happening here, > > how to point new install to old wxPython Module > > using $PYTHONPATH does not help > > Ashley > > Isaac Rivera wrote: > >> OK. >> >> I upgraded python to 2.3.4 and installed wxPython. >> >> But after checking the version of python discovered that the shell >> accessed the old version, 2.3 that comes with the system and not the >> upgrade. The old version was installed in /usr/bin/ while the new >> 2.3.4 in /usr/local/bin/. >> >> Removed old, added the path to the bash PATH. nice, I can access >> python upgrade. BUT it does not access wxPython: "ImportError: No >> module named wx". >> >> Isaac >> >> On Sep 4, 2004, at 7:22 PM, Ashley McCoy wrote: >> >>> Are you trying to install wxPython or write a script with it? >>> >>> I've been reading the Python tutorial which is very helpful >>> http://www.python.org/doc/2.3.4/ >>> >>> Ashley >>> >>> Isaac Rivera wrote: >>> >>>> same problem: >>>> >>>> isaacriv$ export >>>> PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/ >>>> usr/ local/bin/ >>>> isaacriv$ python >>>> Python 2.3.4 (#1, Sep 4 2004, 17:00:17) >>>> [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin >>>> Type "help", "copyright", "credits" or "license" for more >>>> information. >>>> >>> import wx >>>> Traceback (most recent call last): >>>> File "<stdin>", line 1, in ? >>>> ImportError: No module named wx >>>> >>>> >>>> On Sep 4, 2004, at 5:24 PM, Alessandro Crugnola *sephiroth* wrote: >>>> >>>>> For using wxPython, use this syntax: >>>>> >>>>> import wx >>>>> >>>>> Then you have all wxpython modules as: >>>>> >>>>> wx.Frame >>>>> wx.Dialog >>>>> ... >>>>> >>>>> >>>>> >>>>> Alessandro Crugnola - sephiroth >>>>> --------------------------------------------- >>>>> Macromedia Flash Team Volunteer >>>>> http://www.macromedia.com/go/team >>>>> Flash && PHP developer >>>>> ale...@se... >>>>> >>>>> *relax with SEPY http://www.sf.net/projects/sepy >>>>> --------------------------------------------- >>>>> >>>>> >>>>> ::-----Original Message----- >>>>> ::From: sep...@li... >>>>> ::[mailto:sep...@li...] On Behalf Of >>>>> ::Isaac Rivera >>>>> ::Sent: sabato 4 settembre 2004 22.17 >>>>> ::To: sep...@li... >>>>> ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >>>>> :: >>>>> ::Ok--- >>>>> :: >>>>> ::I added ":/usr/local/bin" to my path and deleted Python on >>>>> "/usr/bin" >>>>> :: >>>>> ::Now Python 2.3.4 launches on the terminal correctly when I >>>>> ::type python during the current shell session. >>>>> :: >>>>> ::However, I does not find wxPython from this location. I just the >>>>> the >>>>> ::classic: >>>>> :: >>>>> :: >>> import wxPython >>>>> ::Traceback (most recent call last): >>>>> :: File "<stdin>", line 1, in ? >>>>> ::ImportError: No module named wxPython >>>>> :: >>>>> ::2 questions: >>>>> :: >>>>> ::How do I alter PATH to this permanently and not just the >>>>> ::current session. >>>>> ::"export >>>>> ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/ >>>>> usr/ >>>>> ::local/bin/" >>>>> :: >>>>> ::and how do I make python see wxPython? >>>>> :: >>>>> :: >>>>> ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: >>>>> :: >>>>> ::> Remove or rename old python binary, make sure /usr/local/bin >>>>> is is >>>>> ::> your PATH >>>>> ::> >>>>> ::> % echo $PATH >>>>> ::> % export PATH=$PATH:/usr/local/bin >>>>> ::> % echo $PATH >>>>> ::> >>>>> ::> Did you get $suite to compile? >>>>> ::> >>>>> ::> Ashley >>>>> ::> >>>>> ::> old pythoIsaac Rivera wrote: >>>>> ::> >>>>> ::>> Thats exactly what happens. >>>>> ::>> >>>>> ::>> But when I type "/usr/local/bin/python" then this happens: >>>>> ::>> >>>>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 >>>>> (Apple >>>>> ::>> Computer, Inc. build 1666)] on darwin Type "help", >>>>> "copyright", >>>>> ::>> "credits" or "license" for more information. >>>>> ::>> >>> >>>>> ::>> >>>>> ::>> Notice two the headers: >>>>> ::>> >>>>> ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >>>>> ::>> >>>>> ::>> vs. >>>>> ::>> >>>>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >>>>> ::>> >>>>> ::>> Diferent versions and dates. The second one, the one I >>>>> ::just updated >>>>> ::>> and I invoke by typing "/usr/local/bin/python" is the current >>>>> ::>> version. The other one accessed by just typing "python" is >>>>> ::older, the >>>>> ::>> Panther default and the one we are all using unless we are >>>>> calling >>>>> ::>> "/usr/local/bin/python". >>>>> ::>> >>>>> ::>> Isaac >>>>> ::>> >>>>> ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: >>>>> ::>> >>>>> ::>>> So what happens when you type 'python' or 'python2.3' in >>>>> ::your shell ? >>>>> ::>>> Normally something like this should appear: >>>>> ::>>> $ python >>>>> ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 >>>>> (Apple >>>>> ::>>> Computer, build 1495)] on darwin Type "help", >>>>> ::"copyright", "credits" >>>>> ::>>> or "license" for more information. >>>>> ::>>> >>>>> ::>>>>>> >>>>> ::>>> >>>>> ::>>> Perhaps it's a path problem. On the 4Suite site it is >>>>> ::said that you >>>>> ::>>> don't have to do the build for installing it, just type >>>>> ::>>> python setup.py install >>>>> ::>>> >>>>> ::>>> >>>>> ::>>> valley >>>>> ::>>> >>>>> ::>>> >>>>> ::>>> >>>>> ::>>> ----- Original Message ----- >>>>> ::>>> From: "Isaac Rivera" <isa...@mi...> >>>>> ::>>> To: <sep...@li...> >>>>> ::>>> Sent: Thursday, September 02, 2004 3:17 PM >>>>> ::>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS >>>>> latest >>>>> ::>>> >>>>> ::>>> >>>>> ::>>>> On trying to install 4Suite in Panther I get >>>>> ::>>>> >>>>> ::>>>> "command 'gcc' failed with exit status 1" >>>>> ::>>>> >>>>> ::>>>> I have upgraded XCode tools and the gcc is the new version >>>>> 3.3. >>>>> ::>>>> >>>>> ::>>>> Isaac >>>>> ::>>>> >>>>> ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: >>>>> ::>>>> >>>>> ::>>>>> I never had this error. But 4Suite should build and install >>>>> ::>>>>> correctly, so try a little bit around ;-) This error >>>>> ::perhaps also >>>>> ::>>>>> could be a SEPY error due to changes that Alessandro >>>>> ::made - I can >>>>> ::>>>>> try this out this evening with the latest cvs version. >>>>> ::>>>>> >>>>> ::>>>>> valley >>>>> ::>>>>> >>>>> ::>>>>> >>>>> ::>>>>> >>>>> ::>>>>> >>>>> ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>>> ::>>>>> >>>>> ::>>>>>> Thanks Valley, >>>>> ::>>>>>> >>>>> ::>>>>>> got the latest wxpython, sepy runs splash screen then >>>>> tooltips >>>>> ::>>>>>> appear but splash screen stays, the document window >>>>> ::which appears >>>>> ::>>>>>> under the tool tips resizes with incorrect screen redraw >>>>> ::>>>>>> >>>>> ::>>>>>> Throws an errror at command line --> below >>>>> ::>>>>>> >>>>> ::>>>>>> I had thought to check through the list of dependancies >>>>> you >>>>> ::>>>>>> mentioned on the Wiki and have found an error building >>>>> 4suite >>>>> ::>>>>>> that does not seem to be resolved as of yet, it fails on >>>>> ::>>>>>> build_ext this appears to be a problem with python2.3 >>>>> ::>>>>>> >>>>> ::>>>>>> So I wonder if I I would have to build python from >>>>> scratch ?? >>>>> ::>>>>>> >>>>> ::>>>>>> Ashley >>>>> ::>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] 20:32:46: >>>>> ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. >>>>> ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', >>>>> ::accel string >>>>> ::>>>>>> ignored. >>>>> ::>>>>>> Traceback (most recent call last): >>>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>>> ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>>> ::>>>>>> title=About_title, dialog = self.dialog) >>>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in >>>>> __init__ >>>>> ::>>>>>> self.loadDB() >>>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB >>>>> ::>>>>>> self.DB["values"] = DB.values() >>>>> ::>>>>>> AttributeError: _DBWithCursor instance has no >>>>> ::attribute 'values' >>>>> ::>>>>>> >>>>> ::>>>>>> Valentin Treu wrote: >>>>> ::>>>>>> >>>>> ::>>>>>>> i also had this error. be sure that you've got the newest >>>>> ::>>>>>>> wxpython from here: >>>>> ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ >>>>> ::>>>>>>> >>>>> ::>>>>>>> valley >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>>> Is there a curent list of changes I need to make? >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> Ashley >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> First Error :: >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> Traceback (most recent call last): >>>>> ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>>> ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>>> ::>>>>>>>> title=About_title, dialog = self.dialog) File >>>>> ::>>>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ >>>>> ::>>>>>>>> self.project_history = wx.FileHistory(5, >>>>> ::wx.ID_FILE11) File >>>>> ::>>>>>>>> >>>>> ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>>>> ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", >>>>> ::>>>>>>>> line 1072, in __init__ >>>>> ::>>>>>>>> self.this = >>>>> misc2c.new_wxFileHistory(*_args,**_kwargs) >>>>> ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument >>>>> (2 >>>>> ::>>>>>>>> given) >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> ------------------------------------------------------- >>>>> ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> FREE >>>>> ::>>>>>>>> Java Enterprise J2EE developer tools! >>>>> ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>>>>>>>> _______________________________________________ >>>>> ::>>>>>>>> sepy-macdev mailing list >>>>> ::>>>>>>>> sep...@li... >>>>> ::>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> >>>>> ::>>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> ------------------------------------------------------- >>>>> ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> FREE >>>>> ::>>>>>>> Java Enterprise J2EE developer tools! >>>>> ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>>>>>>> _______________________________________________ >>>>> ::>>>>>>> sepy-macdev mailing list >>>>> ::>>>>>>> sep...@li... >>>>> ::>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>>> ------------------------------------------------------- >>>>> ::>>>>>> This SF.Net email is sponsored by BEA Weblogic >>>>> ::Workshop FREE Java >>>>> ::>>>>>> Enterprise J2EE developer tools! >>>>> ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>>>>>> _______________________________________________ >>>>> ::>>>>>> sepy-macdev mailing list >>>>> ::>>>>>> sep...@li... >>>>> ::>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>>>>>> >>>>> ::>>>>>> >>>>> ::>>>>> >>>>> ::>>>>> >>>>> ::>>>>> >>>>> ::>>>>> ------------------------------------------------------- >>>>> ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> ::FREE Java >>>>> ::>>>>> Enterprise J2EE developer tools! >>>>> ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>>>>> _______________________________________________ >>>>> ::>>>>> sepy-macdev mailing list >>>>> ::>>>>> sep...@li... >>>>> ::>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>>>>> >>>>> ::>>>> >>>>> ::>>>> >>>>> ::>>>> >>>>> ::>>>> ------------------------------------------------------- >>>>> ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> ::FREE Java >>>>> ::>>>> Enterprise J2EE developer tools! >>>>> ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>>>> _______________________________________________ >>>>> ::>>>> sepy-macdev mailing list >>>>> ::>>>> sep...@li... >>>>> ::>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>>>> >>>>> ::>>> >>>>> ::>>> >>>>> ::>>> >>>>> ::>>> ------------------------------------------------------- >>>>> ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>>> Java >>>>> ::>>> Enterprise J2EE developer tools! >>>>> ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>>> _______________________________________________ >>>>> ::>>> sepy-macdev mailing list >>>>> ::>>> sep...@li... >>>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>>> >>>>> ::>> >>>>> ::>> >>>>> ::>> >>>>> ::>> ------------------------------------------------------- >>>>> ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>>> Java >>>>> ::>> Enterprise J2EE developer tools! >>>>> ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::>> _______________________________________________ >>>>> ::>> sepy-macdev mailing list >>>>> ::>> sep...@li... >>>>> ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::>> >>>>> ::> >>>>> ::> >>>>> ::> >>>>> ::> ------------------------------------------------------- >>>>> ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>>> Java >>>>> ::> Enterprise J2EE developer tools! >>>>> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::> _______________________________________________ >>>>> ::> sepy-macdev mailing list >>>>> ::> sep...@li... >>>>> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> ::> >>>>> :: >>>>> :: >>>>> :: >>>>> ::------------------------------------------------------- >>>>> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>>> ::Java Enterprise J2EE developer tools! >>>>> ::Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> ::_______________________________________________ >>>>> ::sepy-macdev mailing list >>>>> ::sep...@li... >>>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------- >>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> FREE Java Enterprise J2EE developer tools! >>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> _______________________________________________ >>>>> sepy-macdev mailing list >>>>> sep...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> >>>> >>>> >>>> >>>> ------------------------------------------------------- >>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> FREE Java Enterprise J2EE developer tools! >>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> _______________________________________________ >>>> sepy-macdev mailing list >>>> sep...@li... >>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE Java Enterprise J2EE developer tools! >>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> _______________________________________________ >>> sepy-macdev mailing list >>> sep...@li... >>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> sepy-macdev mailing list >> sep...@li... >> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <ale...@se...> - 2004-09-06 15:39:00
|
This from the documentation: However, usually you don't even need to know the precise nature of the cl= ass you're working with but you would just use the wxConfigBase methods. This allows you to write the same code regardless of whether you're working wi= th the registry under Win32 or text-based config files under Unix (or even Windows 3.1 .INI files if you're really unlucky). To make writing the portable code even easier, wxWidgets provides a typedef wxConfig which is mapped onto the native wxConfigBase implementation on the given platform: i.e. wxRegConfig under Win32 (optionally wxIniConfig) and wxFileConfig otherwise. So, unde windows i use the Registry, anc under mac and unix like os ot should be used a text file, but i dont know where it is stored.. can you write the exception you got? thanks Treu, Valentin said: > Ok, fine. > Another question: Where (directory) do you save modified > Preferences settings ? Yesterday I pressed 'Apply' after > my changes with the StaticBoxSizers, then the reminder > (restart necessary) popped up, but when I tried to restart > SEPY from then on I always got a system exception that some settings > couldn't > have been read correctly. Also a new cvs 'get' didn't work, so > it seems that there has sth. been stored outside the SEPY/Scite > directory. > > Thanks. > valley > > > > -----Ursprungliche Nachricht----- > Von: sep...@li... > [mailto:sep...@li...]Im Auftrag von > Alessandro Crugnola *sephiroth* > Gesendet: Sonntag, 5. September 2004 21:06 > An: sep...@li... > Betreff: RE: [SE|PY-macdev] Preferences frozen > > > Ah.. I understand.. So i have to create the boxsizer before everyting > else. I will do this tomorrow, thanks for the search! > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of valley > ::Sent: domenica 5 settembre 2004 18.33 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] Preferences frozen > :: > ::Perhaps this could be the problem: > ::http://lists.wxwidgets.org/cgi-bin/ezmlm-cgi?12:mss:1392:20040 > ::8:almmighmjdob > ::hbgnhaaj > :: > ::valley > :: > :: > :: > :: > ::----- Original Message ----- > ::From: "Alessandro Crugnola *sephiroth*" > ::<sep...@us...> > ::To: <sep...@li...> > ::Sent: Sunday, September 05, 2004 5:08 PM > ::Subject: RE: [SE|PY-macdev] Preferences frozen > :: > :: > ::> Damn, what an incredible thing! > ::> Let me ask in the wxPython mailing list first.. Maybe is a my fault > ::> ^_^ > ::> > ::> Alessandro Crugnola - sephiroth > ::> --------------------------------------------- > ::> Macromedia Flash Team Volunteer > ::> http://www.macromedia.com/go/team > ::> Flash && PHP developer > ::> ale...@se... > ::> > ::> *relax with SEPY http://www.sf.net/projects/sepy > ::> --------------------------------------------- > ::> > ::> > ::> ::-----Original Message----- > ::> ::From: sep...@li... > ::> ::[mailto:sep...@li...] On > ::Behalf Of valley > ::> ::Sent: domenica 5 settembre 2004 15.40 > ::> ::To: sep...@li... > ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen > ::> :: > ::> ::That's what I also just tried. And it's in this sort of line, ::= > > ::because with the replacement line it works!!! > ::> ::I've tried this replacement also on other pages and all > ::::elements > ::> were accessible and modifyable. > ::> ::Also the languages are now filled into the combobox on page 1. ::= > > :: > ::> ::So would it be possible to let these StaticBoxSizers away > ::and ::just > ::> use BoxSizer ? > ::> :: > ::> ::valley > ::> :: > ::> :: > ::> :: > ::> :: > ::> :: > ::> ::----- Original Message ----- > ::> ::From: "Alessandro Crugnola *sephiroth*" > ::> ::<sep...@us...> > ::> ::To: <sep...@li...> > ::> ::Sent: Sunday, September 05, 2004 4:23 PM > ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen > ::> :: > ::> :: > ::> ::> Mmhhh. > ::> ::> Try this in the windowsprefs.py file. > ::> ::> Line 660, change: > ::> ::> > ::> ::> sizer_general_options =3D > ::> ::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, ::> ::= > > self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::> > ::wx.VERTICAL) > ::> ::> > ::> ::> Into: > ::> ::> sizer_general_options =3D wx.BoxSizer(wx.VERTICAL) ::> > ::::> The only > ::> thing that come in my mind is the container of ::these elements. ::= > > ::> On the other side, there are no differences ::> ::> Alessandro ::> > Crugnola - sephiroth ::> > ::--------------------------------------------- > ::> ::> Macromedia Flash Team Volunteer > ::> ::> http://www.macromedia.com/go/team > ::> ::> Flash && PHP developer > ::> ::> ale...@se... > ::> ::> > ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> > ::> --------------------------------------------- > ::> ::> > ::> ::> > ::> ::> ::-----Original Message----- > ::> ::> ::From: sep...@li... > ::> ::> ::[mailto:sep...@li...] On > ::::Behalf Of > ::> valley ::> ::Sent: domenica 5 settembre 2004 14.17 ::> ::To: > ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] > ::> Preferences frozen ::> :: > ::> ::> ::...and I tell you all the elements that work, perhaps you ::= > > ::::know a ::> difference (binding events, filling in data, ...) to ::= > > ::all ::the other ::> elements that don't ::> ::work: > ::> ::> :: > ::> ::> ::page 1 (General) > ::> ::> ::=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > ::> ::> ::- radio buttons 'prompt' and 'ignore' at the bottom ::> ::- = ::> > checkbox 'Check filesize ...' at the bottom ::> :: > ::> ::> ::page 3 (Colors) > ::> ::> ::=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > ::> ::> ::- the three comboboxes at the bottom (line folding, tabs ::> > ::> ::placement, edge ::> ::column) also work ::> :: > ::> ::> :: > ::> ::> ::Are theses elements newer than the others (i.e. do you ::use > ::> ::another ::> strategy in implementing them) ? funny is also that = ::> > ::these ::elements ::> are at the bottom of their pages, but why ::> > ::doesn't then e.g. the ::> checkbox at the bottom of page > ::4 work..... > ::> ::> :: > ::> ::> ::valley > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> ::----- Original Message ----- > ::> ::> ::From: "Alessandro Crugnola *sephiroth*" > ::> ::> ::<sep...@us...> > ::> ::> ::To: <sep...@li...> > ::> ::> ::Sent: Sunday, September 05, 2004 2:50 PM ::> ::Subject: RE: = ::> > [SE|PY-macdev] Preferences frozen ::> :: > ::> ::> :: > ::> ::> ::> ::Hmmmmmmm, still no change. > ::> ::> ::> ::I'll look now if there's an exception in WindowsPrefs.py > ::> that ::> ::> ::causes some processes to abort a little bit > ::too early... > ::> ::> ::> > ::> ::> ::> Would be very helpful.. > ::> ::> ::> > ::> ::> ::> ::How is it going with PearPC ? > ::> ::> ::> Downloaded.. Now i have to look for a MAC OSX installation > ::> disc ::> ^_^ ::> ::> thanks ::> ::> ::> Alessandro Crugnola - ::> > sephiroth ::> ::> --------------------------------------------- ::> ::> > ::> Macromedia Flash Team Volunteer ::> ::> > ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP > ::developer ::> > ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY > ::> http://www.sf.net/projects/sepy ::> ::> > ::> --------------------------------------------- > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> ::-----Original Message----- > ::> ::> ::> ::From: sep...@li... > ::> ::> ::> ::[mailto:sep...@li...] On ::> > ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre > ::2004 13.38 > ::> ::> ::To: > ::> ::> sep...@li... ::> ::Subject: Re: > ::> [SE|PY-macdev] ::> Preferences frozen ::> :: > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> :: > ::> ::> ::> ::valley > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> ::----- Original Message ----- ::> ::> ::From: "Alessandro > ::> Crugnola *sephiroth*" > ::> ::> ::> ::<sep...@us...> > ::> ::> ::> ::To: <sep...@li...> > ::> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM ::> > ::::Subject: RE: > ::> ::> [SE|PY-macdev] Preferences frozen ::> :: > ::> ::> ::> :: > ::> ::> ::> ::> ::> The only notebook still alive is the one which ::> > contains ::> the ::> ::> ::documents ::itself! > ::> ::> ::> ::> ::> Maybe changing the notebook into a book > ::like for the > ::> ::> ::left ::> panel ? > ::> ::> ::> ::> ::> > ::> ::> ::> ::> :: > ::> ::> ::> ::> ::Yes I could try that. Where and what do I have to ::= > > ::change in ::> ::> ::the ::> source so that it works with > ::a Book ? Or > ::> if it's a ::> bigger ::> ::::change you ::> could the > ::changes and send > ::> me the ::> ::modified file(s) ::> ::as attachment. > ::> ::> ::> ::> > ::> ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: > ::> ::> ::> ::> > ::> ::> ::> ::> Line 27: > ::> ::> ::> ::> Change: > ::> ::> ::> ::> self.notebook_pref =3D wx.Notebook(self, -1, > ::style=3D0) ::::> > ::> ::::> ::> Into: > ::> ::> ::> ::> self.notebook_pref =3D wx.Listbook(self, -1, > ::style=3D0) ::::> > ::> ::::> ::> Line ::> 483: > ::> ::> ::> ::> Change: > ::> ::> ::> ::> > ::> ::notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), > ::1, ::> ::> > ::> ::wx.EXPAND, ::> 0) ::> ::> Into: > ::> ::> ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, ::> > ::0) ::::> > ::> ::> ::> ::> ::> ::Btw: With the latest cvs source I get the > ::following > ::> ::> error message: > ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO import ::> > ::TODOWindow > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: >ImportError: No module named WindowsTODO > ::> ::> ::> ::> :: > ::> ::> ::> ::> ::Maybe there's something missing with the new > ::feature... > ::> ::> ::> ::> > ::> ::> ::> ::> Ops, sorry.. > ::> ::> ::> ::> I forgot to add that file in the CVS commit.. I will do > ::> ::> ::> immediately ::> ::> ::> ::Btw2: Have you heard of the ::> > following ::> ::> Sourceforge project: > ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With > ::::that you > ::> can ::> emulate for instance OS X Panther on a ::> ::::Windows ::> > ::> machine, ::> and it seems to work quite well, as a ::> ::colleague > ::> ::told me. So ::> ::> you could also try your code ::changes on ::> > ::> ::a mac ::machine and ::> ::with that ::> having a better > ::::overview > ::> over the ::> ::::two os :-) ::> ::> ::> Wow, i will > ::download it now! > ::> ::> ::> ::> I hope to be able to install it without crashing my ::= > > ::::system ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola - > ::sephiroth ::> > ::> ::> ::> --------------------------------------------- > ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> > ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP > ::::developer ::> > ::> ::> ::> ale...@se... ::> ::> ::> ::> *relax with > ::SEPY ::> > ::> http://www.sf.net/projects/sepy ::> ::> ::> > ::> --------------------------------------------- > ::> ::> ::> ::> > ::> ::> ::> ::> > ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: > ::> sep...@li... > ::> ::> ::> ::> > ::::[mailto:sep...@li...] On ::> > ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 > ::> ::> ::> ::To: > ::> ::> ::> sep...@li... ::> ::Subject: Re: > ::> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> > ::> ::> ::> ::> :: > ::> ::> ::> ::> > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> > ::> ::> ::> ::> :: > ::> ::> ::> ::> ::valley > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> :: > ::> ::> ::> ::> > ::::------------------------------------------------------- > ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic > ::> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE > ::developer tools! > ::> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> ::> ::> > ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > ::> ::> ::> ::> ::_______________________________________________ > ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> > ::> ::sep...@li... > ::> ::> ::> ::> > ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> ::> ::> > ::> ::> ::> ::> > ::> ::> ::> ::> > ::> ::> ::> ::> > ::> ::> ::> ::> ------------------------------------------------------- > ::> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic > ::::Workshop > ::> ::FREE ::> Java ::> ::> Enterprise J2EE developer tools! > ::> ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. = ::> > ::> ::> ::> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dcli= ck ::> > ::> ::> ::> _______________________________________________ > ::> ::> ::> ::> sepy-macdev mailing list > ::> ::> ::> ::> sep...@li... ::> ::> ::> > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> ::> ::> > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> ::------------------------------------------------------- := :> > ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::= > > ::FREE ::> ::Java ::> Enterprise J2EE developer tools! > ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::= > > ::> ::> ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick= ::> ::> > ::> ::_______________________________________________ > ::> ::> ::> ::sepy-macdev mailing list > ::> ::> ::> ::sep...@li... > ::> ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev = ::> > ::> ::> > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> ------------------------------------------------------- ::> > ::> ::> This SF.Net email is sponsored by BEA Weblogic > ::Workshop ::FREE > ::> Java ::> ::> Enterprise J2EE developer tools! > ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> = ::> > ::> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::> := :> ::> > _______________________________________________ > ::> ::> ::> sepy-macdev mailing list > ::> ::> ::> sep...@li... ::> ::> > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> ::> > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> ::------------------------------------------------------- > ::> ::> ::This SF.Net email is sponsored by BEA Weblogic > ::Workshop ::FREE > ::> ::Java ::> Enterprise J2EE developer tools! > ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > ::> ::> ::_______________________________________________ > ::> ::> ::sepy-macdev mailing list > ::> ::> ::sep...@li... > ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> = ::> > ::> ::> > ::> ::> > ::> ::> > ::> ::> ------------------------------------------------------- > ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE Java > ::> ::> Enterprise J2EE developer tools! > ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > ::> ::> _______________________________________________ > ::> ::> sepy-macdev mailing list > ::> ::> sep...@li... > ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> > ::> :: > ::> :: > ::> :: > ::> ::------------------------------------------------------- > ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE ::Java > ::> Enterprise J2EE developer tools! > ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > ::> ::_______________________________________________ > ::> ::sepy-macdev mailing list > ::> ::sep...@li... > ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > ::> > ::> > ::> > ::> ------------------------------------------------------- > ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java = ::> > Enterprise J2EE developer tools! > ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > ::> _______________________________________________ > ::> sepy-macdev mailing list > ::> sep...@li... > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev --- Alessandro Crugnola *sephiroth* web: http://www.sephiroth.it mail: ale...@se... >>> mongia 9,26 <<< "la programmazione =E8 come il maiale. Non si butta via niente". --- |
From: Treu, V. <Val...@in...> - 2004-09-06 15:13:45
|
Ok, fine. Another question: Where (directory) do you save modified Preferences settings ? Yesterday I pressed 'Apply' after my changes with the StaticBoxSizers, then the reminder (restart necessary) popped up, but when I tried to restart SEPY from then on I always got a system exception that some settings couldn't have been read correctly. Also a new cvs 'get' didn't work, so it seems that there has sth. been stored outside the SEPY/Scite directory. Thanks. valley -----Ursprungliche Nachricht----- Von: sep...@li... [mailto:sep...@li...]Im Auftrag von Alessandro Crugnola *sephiroth* Gesendet: Sonntag, 5. September 2004 21:06 An: sep...@li... Betreff: RE: [SE|PY-macdev] Preferences frozen Ah.. I understand.. So i have to create the boxsizer before everyting else. I will do this tomorrow, thanks for the search! Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: domenica 5 settembre 2004 18.33 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: ::Perhaps this could be the problem: ::http://lists.wxwidgets.org/cgi-bin/ezmlm-cgi?12:mss:1392:20040 ::8:almmighmjdob ::hbgnhaaj :: ::valley :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Sunday, September 05, 2004 5:08 PM ::Subject: RE: [SE|PY-macdev] Preferences frozen :: :: ::> Damn, what an incredible thing! ::> Let me ask in the wxPython mailing list first.. Maybe is a my fault ::> ^_^ ::> ::> Alessandro Crugnola - sephiroth ::> --------------------------------------------- ::> Macromedia Flash Team Volunteer ::> http://www.macromedia.com/go/team ::> Flash && PHP developer ::> ale...@se... ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> --------------------------------------------- ::> ::> ::> ::-----Original Message----- ::> ::From: sep...@li... ::> ::[mailto:sep...@li...] On ::Behalf Of valley ::> ::Sent: domenica 5 settembre 2004 15.40 ::> ::To: sep...@li... ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::> :: ::> ::That's what I also just tried. And it's in this sort of line, ::> ::because with the replacement line it works!!! ::> ::I've tried this replacement also on other pages and all ::::elements ::> were accessible and modifyable. ::> ::Also the languages are now filled into the combobox on page 1. ::> :: ::> ::So would it be possible to let these StaticBoxSizers away ::and ::just ::> use BoxSizer ? ::> :: ::> ::valley ::> :: ::> :: ::> :: ::> :: ::> :: ::> ::----- Original Message ----- ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::<sep...@us...> ::> ::To: <sep...@li...> ::> ::Sent: Sunday, September 05, 2004 4:23 PM ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen ::> :: ::> :: ::> ::> Mmhhh. ::> ::> Try this in the windowsprefs.py file. ::> ::> Line 660, change: ::> ::> ::> ::> sizer_general_options = ::> ::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, ::> ::> self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::> ::wx.VERTICAL) ::> ::> ::> ::> Into: ::> ::> sizer_general_options = wx.BoxSizer(wx.VERTICAL) ::> ::::> The only ::> thing that come in my mind is the container of ::these elements. ::> ::> On the other side, there are no differences ::> ::> Alessandro ::> Crugnola - sephiroth ::> ::--------------------------------------------- ::> ::> Macromedia Flash Team Volunteer ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP developer ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::From: sep...@li... ::> ::> ::[mailto:sep...@li...] On ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 14.17 ::> ::To: ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::...and I tell you all the elements that work, perhaps you ::> ::::know a ::> difference (binding events, filling in data, ...) to ::> ::all ::the other ::> elements that don't ::> ::work: ::> ::> :: ::> ::> ::page 1 (General) ::> ::> ::=========== ::> ::> ::- radio buttons 'prompt' and 'ignore' at the bottom ::> ::- ::> checkbox 'Check filesize ...' at the bottom ::> :: ::> ::> ::page 3 (Colors) ::> ::> ::=========== ::> ::> ::- the three comboboxes at the bottom (line folding, tabs ::> ::> ::placement, edge ::> ::column) also work ::> :: ::> ::> :: ::> ::> ::Are theses elements newer than the others (i.e. do you ::use ::> ::another ::> strategy in implementing them) ? funny is also that ::> ::these ::elements ::> are at the bottom of their pages, but why ::> ::doesn't then e.g. the ::> checkbox at the bottom of page ::4 work..... ::> ::> :: ::> ::> ::valley ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::----- Original Message ----- ::> ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::> ::<sep...@us...> ::> ::> ::To: <sep...@li...> ::> ::> ::Sent: Sunday, September 05, 2004 2:50 PM ::> ::Subject: RE: ::> [SE|PY-macdev] Preferences frozen ::> :: ::> ::> :: ::> ::> ::> ::Hmmmmmmm, still no change. ::> ::> ::> ::I'll look now if there's an exception in WindowsPrefs.py ::> that ::> ::> ::causes some processes to abort a little bit ::too early... ::> ::> ::> ::> ::> ::> Would be very helpful.. ::> ::> ::> ::> ::> ::> ::How is it going with PearPC ? ::> ::> ::> Downloaded.. Now i have to look for a MAC OSX installation ::> disc ::> ^_^ ::> ::> thanks ::> ::> ::> Alessandro Crugnola - ::> sephiroth ::> ::> --------------------------------------------- ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP ::developer ::> ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY ::> http://www.sf.net/projects/sepy ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: sep...@li... ::> ::> ::> ::[mailto:sep...@li...] On ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::2004 13.38 ::> ::> ::To: ::> ::> sep...@li... ::> ::Subject: Re: ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::valley ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::----- Original Message ----- ::> ::> ::From: "Alessandro ::> Crugnola *sephiroth*" ::> ::> ::> ::<sep...@us...> ::> ::> ::> ::To: <sep...@li...> ::> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM ::> ::::Subject: RE: ::> ::> [SE|PY-macdev] Preferences frozen ::> :: ::> ::> ::> :: ::> ::> ::> ::> ::> The only notebook still alive is the one which ::> contains ::> the ::> ::> ::documents ::itself! ::> ::> ::> ::> ::> Maybe changing the notebook into a book ::like for the ::> ::> ::left ::> panel ? ::> ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::Yes I could try that. Where and what do I have to ::> ::change in ::> ::> ::the ::> source so that it works with ::a Book ? Or ::> if it's a ::> bigger ::> ::::change you ::> could the ::changes and send ::> me the ::> ::modified file(s) ::> ::as attachment. ::> ::> ::> ::> ::> ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: ::> ::> ::> ::> ::> ::> ::> ::> Line 27: ::> ::> ::> ::> Change: ::> ::> ::> ::> self.notebook_pref = wx.Notebook(self, -1, ::style=0) ::::> ::> ::::> ::> Into: ::> ::> ::> ::> self.notebook_pref = wx.Listbook(self, -1, ::style=0) ::::> ::> ::::> ::> Line ::> 483: ::> ::> ::> ::> Change: ::> ::> ::> ::> ::> ::notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), ::1, ::> ::> ::> ::wx.EXPAND, ::> 0) ::> ::> Into: ::> ::> ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, ::> ::0) ::::> ::> ::> ::> ::> ::> ::Btw: With the latest cvs source I get the ::following ::> ::> error message: ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO import ::> ::TODOWindow ::> ::> ::> ::> :: ::> ::> ::> ::> :: >ImportError: No module named WindowsTODO ::> ::> ::> ::> :: ::> ::> ::> ::> ::Maybe there's something missing with the new ::feature... ::> ::> ::> ::> ::> ::> ::> ::> Ops, sorry.. ::> ::> ::> ::> I forgot to add that file in the CVS commit.. I will do ::> ::> ::> immediately ::> ::> ::> ::Btw2: Have you heard of the ::> following ::> ::> Sourceforge project: ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With ::::that you ::> can ::> emulate for instance OS X Panther on a ::> ::::Windows ::> ::> machine, ::> and it seems to work quite well, as a ::> ::colleague ::> ::told me. So ::> ::> you could also try your code ::changes on ::> ::> ::a mac ::machine and ::> ::with that ::> having a better ::::overview ::> over the ::> ::::two os :-) ::> ::> ::> Wow, i will ::download it now! ::> ::> ::> ::> I hope to be able to install it without crashing my ::> ::::system ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola - ::sephiroth ::> ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP ::::developer ::> ::> ::> ::> ale...@se... ::> ::> ::> ::> *relax with ::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: ::> sep...@li... ::> ::> ::> ::> ::::[mailto:sep...@li...] On ::> ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 ::> ::> ::> ::To: ::> ::> ::> sep...@li... ::> ::Subject: Re: ::> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::valley ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> ::::------------------------------------------------------- ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE ::developer tools! ::> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::> ::::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::> ::_______________________________________________ ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::> ::sep...@li... ::> ::> ::> ::> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic ::::Workshop ::> ::FREE ::> Java ::> ::> Enterprise J2EE developer tools! ::> ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::> _______________________________________________ ::> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::> sep...@li... ::> ::> ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::------------------------------------------------------- ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::_______________________________________________ ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::sep...@li... ::> ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> Java ::> ::> Enterprise J2EE developer tools! ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> _______________________________________________ ::> ::> ::> sepy-macdev mailing list ::> ::> ::> sep...@li... ::> ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::------------------------------------------------------- ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::_______________________________________________ ::> ::> ::sepy-macdev mailing list ::> ::> ::sep...@li... ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::> ::> Enterprise J2EE developer tools! ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> _______________________________________________ ::> ::> sepy-macdev mailing list ::> ::> sep...@li... ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> :: ::> :: ::> :: ::> ::------------------------------------------------------- ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE ::Java ::> Enterprise J2EE developer tools! ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::_______________________________________________ ::> ::sepy-macdev mailing list ::> ::sep...@li... ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Valentin T. <va...@ic...> - 2004-09-06 07:00:30
|
So you have Jaguar (and not Panther) ? Because with Panther you don't need MacPython (all included in OS X 10.3). I built/installed Python 2.3.4 as described on the Wiki page. And I switched to Panther a few weeks ago because on Jaguar I also had some problems which I didn't know how to solve. valley On Mon, 6 Sep 2004, Ashley McCoy wrote: > Using > -- MacPython 2.3 (2nd Edition), > -- 4Suite (CVS Snapshot installs fine) > -- wxPython (wxPythonOSX-2-1.5.2.9p.20040901-panther-Py2.3.dmg) > -- PyXML-0.8.3 ( installed with sudo ) > -- pyRXP-0-9 ( installed ) > > Latest CVS of sepy produces the following error, > > --snip-- > g4-1ghz:~/SciTE amccoy$ pythonw2.3 main.pyw > [Debug] 09:20:17: Unrecognized accel key 'CAPSLOCK', accel string ignored. > [Debug] 09:20:17: Unrecognized accel key 'CAPSLOCK', accel string ignored. > Traceback (most recent call last): > File "/Users/amccoy/SciTE/SEPY.py", line 142, in Notify > frame = main_window(parent=None, id=wx.NewId(), title=About_title, > dialog = self.dialog) > File "/Users/amccoy/SciTE/SEPY.py", line 324, in __init__ > self.loadDB() > File "/Users/amccoy/SciTE/SEPY.py", line 374, in loadDB > self.DB["values"] = DB.values() > AttributeError: _DBWithCursor instance has no attribute 'values' > --endsnip-- > > Question :: > -------------- > Do I need to use Python Build as opposed to MacPython Installer? > > -- Python from source v.2.3.4 built as Framework does not see other > modules, such as wxPython, adding the wxPython directory to Python Path > the binary will not run. > > Suggestions ? > > Ashley > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > |
From: Ashley M. <as...@gv...> - 2004-09-05 23:39:34
|
Using -- MacPython 2.3 (2nd Edition), -- 4Suite (CVS Snapshot installs fine) -- wxPython (wxPythonOSX-2-1.5.2.9p.20040901-panther-Py2.3.dmg) -- PyXML-0.8.3 ( installed with sudo ) -- pyRXP-0-9 ( installed ) Latest CVS of sepy produces the following error, --snip-- g4-1ghz:~/SciTE amccoy$ pythonw2.3 main.pyw [Debug] 09:20:17: Unrecognized accel key 'CAPSLOCK', accel string ignored. [Debug] 09:20:17: Unrecognized accel key 'CAPSLOCK', accel string ignored. Traceback (most recent call last): File "/Users/amccoy/SciTE/SEPY.py", line 142, in Notify frame = main_window(parent=None, id=wx.NewId(), title=About_title, dialog = self.dialog) File "/Users/amccoy/SciTE/SEPY.py", line 324, in __init__ self.loadDB() File "/Users/amccoy/SciTE/SEPY.py", line 374, in loadDB self.DB["values"] = DB.values() AttributeError: _DBWithCursor instance has no attribute 'values' --endsnip-- Question :: -------------- Do I need to use Python Build as opposed to MacPython Installer? -- Python from source v.2.3.4 built as Framework does not see other modules, such as wxPython, adding the wxPython directory to Python Path the binary will not run. Suggestions ? Ashley |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-05 19:06:33
|
Ah.. I understand.. So i have to create the boxsizer before everyting else. I will do this tomorrow, thanks for the search! Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: domenica 5 settembre 2004 18.33 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: ::Perhaps this could be the problem: ::http://lists.wxwidgets.org/cgi-bin/ezmlm-cgi?12:mss:1392:20040 ::8:almmighmjdob ::hbgnhaaj :: ::valley :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Sunday, September 05, 2004 5:08 PM ::Subject: RE: [SE|PY-macdev] Preferences frozen :: :: ::> Damn, what an incredible thing! ::> Let me ask in the wxPython mailing list first.. Maybe is a my fault ::> ^_^ ::> ::> Alessandro Crugnola - sephiroth ::> --------------------------------------------- ::> Macromedia Flash Team Volunteer ::> http://www.macromedia.com/go/team ::> Flash && PHP developer ::> ale...@se... ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> --------------------------------------------- ::> ::> ::> ::-----Original Message----- ::> ::From: sep...@li... ::> ::[mailto:sep...@li...] On ::Behalf Of valley ::> ::Sent: domenica 5 settembre 2004 15.40 ::> ::To: sep...@li... ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::> :: ::> ::That's what I also just tried. And it's in this sort of line, ::> ::because with the replacement line it works!!! ::> ::I've tried this replacement also on other pages and all ::::elements ::> were accessible and modifyable. ::> ::Also the languages are now filled into the combobox on page 1. ::> :: ::> ::So would it be possible to let these StaticBoxSizers away ::and ::just ::> use BoxSizer ? ::> :: ::> ::valley ::> :: ::> :: ::> :: ::> :: ::> :: ::> ::----- Original Message ----- ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::<sep...@us...> ::> ::To: <sep...@li...> ::> ::Sent: Sunday, September 05, 2004 4:23 PM ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen ::> :: ::> :: ::> ::> Mmhhh. ::> ::> Try this in the windowsprefs.py file. ::> ::> Line 660, change: ::> ::> ::> ::> sizer_general_options = ::> ::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, ::> ::> self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::> ::wx.VERTICAL) ::> ::> ::> ::> Into: ::> ::> sizer_general_options = wx.BoxSizer(wx.VERTICAL) ::> ::::> The only ::> thing that come in my mind is the container of ::these elements. ::> ::> On the other side, there are no differences ::> ::> Alessandro ::> Crugnola - sephiroth ::> ::--------------------------------------------- ::> ::> Macromedia Flash Team Volunteer ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP developer ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::From: sep...@li... ::> ::> ::[mailto:sep...@li...] On ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 14.17 ::> ::To: ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::...and I tell you all the elements that work, perhaps you ::> ::::know a ::> difference (binding events, filling in data, ...) to ::> ::all ::the other ::> elements that don't ::> ::work: ::> ::> :: ::> ::> ::page 1 (General) ::> ::> ::=========== ::> ::> ::- radio buttons 'prompt' and 'ignore' at the bottom ::> ::- ::> checkbox 'Check filesize ...' at the bottom ::> :: ::> ::> ::page 3 (Colors) ::> ::> ::=========== ::> ::> ::- the three comboboxes at the bottom (line folding, tabs ::> ::> ::placement, edge ::> ::column) also work ::> :: ::> ::> :: ::> ::> ::Are theses elements newer than the others (i.e. do you ::use ::> ::another ::> strategy in implementing them) ? funny is also that ::> ::these ::elements ::> are at the bottom of their pages, but why ::> ::doesn't then e.g. the ::> checkbox at the bottom of page ::4 work..... ::> ::> :: ::> ::> ::valley ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::----- Original Message ----- ::> ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::> ::<sep...@us...> ::> ::> ::To: <sep...@li...> ::> ::> ::Sent: Sunday, September 05, 2004 2:50 PM ::> ::Subject: RE: ::> [SE|PY-macdev] Preferences frozen ::> :: ::> ::> :: ::> ::> ::> ::Hmmmmmmm, still no change. ::> ::> ::> ::I'll look now if there's an exception in WindowsPrefs.py ::> that ::> ::> ::causes some processes to abort a little bit ::too early... ::> ::> ::> ::> ::> ::> Would be very helpful.. ::> ::> ::> ::> ::> ::> ::How is it going with PearPC ? ::> ::> ::> Downloaded.. Now i have to look for a MAC OSX installation ::> disc ::> ^_^ ::> ::> thanks ::> ::> ::> Alessandro Crugnola - ::> sephiroth ::> ::> --------------------------------------------- ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP ::developer ::> ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY ::> http://www.sf.net/projects/sepy ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: sep...@li... ::> ::> ::> ::[mailto:sep...@li...] On ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::2004 13.38 ::> ::> ::To: ::> ::> sep...@li... ::> ::Subject: Re: ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::valley ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::----- Original Message ----- ::> ::> ::From: "Alessandro ::> Crugnola *sephiroth*" ::> ::> ::> ::<sep...@us...> ::> ::> ::> ::To: <sep...@li...> ::> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM ::> ::::Subject: RE: ::> ::> [SE|PY-macdev] Preferences frozen ::> :: ::> ::> ::> :: ::> ::> ::> ::> ::> The only notebook still alive is the one which ::> contains ::> the ::> ::> ::documents ::itself! ::> ::> ::> ::> ::> Maybe changing the notebook into a book ::like for the ::> ::> ::left ::> panel ? ::> ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::Yes I could try that. Where and what do I have to ::> ::change in ::> ::> ::the ::> source so that it works with ::a Book ? Or ::> if it's a ::> bigger ::> ::::change you ::> could the ::changes and send ::> me the ::> ::modified file(s) ::> ::as attachment. ::> ::> ::> ::> ::> ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: ::> ::> ::> ::> ::> ::> ::> ::> Line 27: ::> ::> ::> ::> Change: ::> ::> ::> ::> self.notebook_pref = wx.Notebook(self, -1, ::style=0) ::::> ::> ::::> ::> Into: ::> ::> ::> ::> self.notebook_pref = wx.Listbook(self, -1, ::style=0) ::::> ::> ::::> ::> Line ::> 483: ::> ::> ::> ::> Change: ::> ::> ::> ::> ::> ::notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), ::1, ::> ::> ::> ::wx.EXPAND, ::> 0) ::> ::> Into: ::> ::> ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, ::> ::0) ::::> ::> ::> ::> ::> ::> ::Btw: With the latest cvs source I get the ::following ::> ::> error message: ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO import ::> ::TODOWindow ::> ::> ::> ::> :: ::> ::> ::> ::> :: >ImportError: No module named WindowsTODO ::> ::> ::> ::> :: ::> ::> ::> ::> ::Maybe there's something missing with the new ::feature... ::> ::> ::> ::> ::> ::> ::> ::> Ops, sorry.. ::> ::> ::> ::> I forgot to add that file in the CVS commit.. I will do ::> ::> ::> immediately ::> ::> ::> ::Btw2: Have you heard of the ::> following ::> ::> Sourceforge project: ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With ::::that you ::> can ::> emulate for instance OS X Panther on a ::> ::::Windows ::> ::> machine, ::> and it seems to work quite well, as a ::> ::colleague ::> ::told me. So ::> ::> you could also try your code ::changes on ::> ::> ::a mac ::machine and ::> ::with that ::> having a better ::::overview ::> over the ::> ::::two os :-) ::> ::> ::> Wow, i will ::download it now! ::> ::> ::> ::> I hope to be able to install it without crashing my ::> ::::system ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola - ::sephiroth ::> ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP ::::developer ::> ::> ::> ::> ale...@se... ::> ::> ::> ::> *relax with ::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: ::> sep...@li... ::> ::> ::> ::> ::::[mailto:sep...@li...] On ::> ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 ::> ::> ::> ::To: ::> ::> ::> sep...@li... ::> ::Subject: Re: ::> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::valley ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> ::::------------------------------------------------------- ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE ::developer tools! ::> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::> ::::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::> ::_______________________________________________ ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::> ::sep...@li... ::> ::> ::> ::> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic ::::Workshop ::> ::FREE ::> Java ::> ::> Enterprise J2EE developer tools! ::> ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::> _______________________________________________ ::> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::> sep...@li... ::> ::> ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::------------------------------------------------------- ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::_______________________________________________ ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::sep...@li... ::> ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> Java ::> ::> Enterprise J2EE developer tools! ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> _______________________________________________ ::> ::> ::> sepy-macdev mailing list ::> ::> ::> sep...@li... ::> ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::------------------------------------------------------- ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::_______________________________________________ ::> ::> ::sepy-macdev mailing list ::> ::> ::sep...@li... ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::> ::> Enterprise J2EE developer tools! ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> _______________________________________________ ::> ::> sepy-macdev mailing list ::> ::> sep...@li... ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> :: ::> :: ::> :: ::> ::------------------------------------------------------- ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE ::Java ::> Enterprise J2EE developer tools! ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::_______________________________________________ ::> ::sepy-macdev mailing list ::> ::sep...@li... ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-05 17:34:29
|
Perhaps this could be the problem: http://lists.wxwidgets.org/cgi-bin/ezmlm-cgi?12:mss:1392:200408:almmighmjdob hbgnhaaj valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Sunday, September 05, 2004 5:08 PM Subject: RE: [SE|PY-macdev] Preferences frozen > Damn, what an incredible thing! > Let me ask in the wxPython mailing list first.. Maybe is a my fault ^_^ > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of valley > ::Sent: domenica 5 settembre 2004 15.40 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] Preferences frozen > :: > ::That's what I also just tried. And it's in this sort of line, > ::because with the replacement line it works!!! > ::I've tried this replacement also on other pages and all > ::elements were accessible and modifyable. > ::Also the languages are now filled into the combobox on page 1. > :: > ::So would it be possible to let these StaticBoxSizers away and > ::just use BoxSizer ? > :: > ::valley > :: > :: > :: > :: > :: > ::----- Original Message ----- > ::From: "Alessandro Crugnola *sephiroth*" > ::<sep...@us...> > ::To: <sep...@li...> > ::Sent: Sunday, September 05, 2004 4:23 PM > ::Subject: RE: [SE|PY-macdev] Preferences frozen > :: > :: > ::> Mmhhh. > ::> Try this in the windowsprefs.py file. > ::> Line 660, change: > ::> > ::> sizer_general_options = > ::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, > ::> self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), > ::wx.VERTICAL) > ::> > ::> Into: > ::> sizer_general_options = wx.BoxSizer(wx.VERTICAL) > ::> > ::> The only thing that come in my mind is the container of > ::these elements. > ::> On the other side, there are no differences > ::> > ::> Alessandro Crugnola - sephiroth > ::> --------------------------------------------- > ::> Macromedia Flash Team Volunteer > ::> http://www.macromedia.com/go/team > ::> Flash && PHP developer > ::> ale...@se... > ::> > ::> *relax with SEPY http://www.sf.net/projects/sepy > ::> --------------------------------------------- > ::> > ::> > ::> ::-----Original Message----- > ::> ::From: sep...@li... > ::> ::[mailto:sep...@li...] On > ::Behalf Of valley > ::> ::Sent: domenica 5 settembre 2004 14.17 > ::> ::To: sep...@li... > ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen > ::> :: > ::> ::...and I tell you all the elements that work, perhaps you > ::::know a > ::> difference (binding events, filling in data, ...) to ::all > ::the other > ::> elements that don't > ::> ::work: > ::> :: > ::> ::page 1 (General) > ::> ::=========== > ::> ::- radio buttons 'prompt' and 'ignore' at the bottom > ::> ::- checkbox 'Check filesize ...' at the bottom > ::> :: > ::> ::page 3 (Colors) > ::> ::=========== > ::> ::- the three comboboxes at the bottom (line folding, tabs > ::> ::placement, edge > ::> ::column) also work > ::> :: > ::> :: > ::> ::Are theses elements newer than the others (i.e. do you > ::use ::another > ::> strategy in implementing them) ? funny is also that ::these > ::elements > ::> are at the bottom of their pages, but why ::doesn't then e.g. the > ::> checkbox at the bottom of page 4 work..... > ::> :: > ::> ::valley > ::> :: > ::> :: > ::> :: > ::> :: > ::> ::----- Original Message ----- > ::> ::From: "Alessandro Crugnola *sephiroth*" > ::> ::<sep...@us...> > ::> ::To: <sep...@li...> > ::> ::Sent: Sunday, September 05, 2004 2:50 PM > ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen > ::> :: > ::> :: > ::> ::> ::Hmmmmmmm, still no change. > ::> ::> ::I'll look now if there's an exception in WindowsPrefs.py that > ::> ::> ::causes some processes to abort a little bit too early... > ::> ::> > ::> ::> Would be very helpful.. > ::> ::> > ::> ::> ::How is it going with PearPC ? > ::> ::> Downloaded.. Now i have to look for a MAC OSX installation disc > ::> ^_^ ::> ::> thanks ::> ::> ::> Alessandro Crugnola - sephiroth ::> > ::> --------------------------------------------- > ::> ::> Macromedia Flash Team Volunteer > ::> ::> http://www.macromedia.com/go/team > ::> ::> Flash && PHP developer > ::> ::> ale...@se... > ::> ::> > ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> > ::> --------------------------------------------- > ::> ::> > ::> ::> > ::> ::> ::-----Original Message----- > ::> ::> ::From: sep...@li... > ::> ::> ::[mailto:sep...@li...] On > ::::Behalf Of > ::> valley ::> ::Sent: domenica 5 settembre 2004 13.38 ::> ::To: > ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] > ::> Preferences frozen ::> :: > ::> ::> > ::> ::> > ::> ::> :: > ::> ::> ::valley > ::> ::> :: > ::> ::> :: > ::> ::> ::----- Original Message ----- > ::> ::> ::From: "Alessandro Crugnola *sephiroth*" > ::> ::> ::<sep...@us...> > ::> ::> ::To: <sep...@li...> > ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM ::> ::Subject: RE: > ::> [SE|PY-macdev] Preferences frozen ::> :: > ::> ::> :: > ::> ::> ::> ::> The only notebook still alive is the one which contains > ::> the ::> ::> ::documents ::itself! > ::> ::> ::> ::> Maybe changing the notebook into a book like for the > ::> ::left ::> panel ? > ::> ::> ::> ::> > ::> ::> ::> :: > ::> ::> ::> ::Yes I could try that. Where and what do I have to > ::change in > ::> ::> ::the ::> source so that it works with a Book ? Or if it's a > ::> bigger ::> ::::change you ::> could the changes and send me the > ::> ::modified file(s) ::> ::as attachment. > ::> ::> ::> > ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: > ::> ::> ::> > ::> ::> ::> Line 27: > ::> ::> ::> Change: > ::> ::> ::> self.notebook_pref = wx.Notebook(self, -1, style=0) > ::::> ::::> > ::> Into: > ::> ::> ::> self.notebook_pref = wx.Listbook(self, -1, style=0) > ::::> ::::> > ::> Line ::> 483: > ::> ::> ::> Change: > ::> ::> ::> > ::notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, ::> > ::> ::wx.EXPAND, ::> 0) ::> ::> Into: > ::> ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, > ::0) ::::> > ::> ::> ::> ::> ::Btw: With the latest cvs source I get the following > ::> error message: > ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO import > ::TODOWindow > ::> ::> ::> :: > ::> ::> ::> :: >ImportError: No module named WindowsTODO > ::> ::> ::> :: > ::> ::> ::> ::Maybe there's something missing with the new feature... > ::> ::> ::> > ::> ::> ::> Ops, sorry.. > ::> ::> ::> I forgot to add that file in the CVS commit.. I will do ::> > ::> immediately ::> ::> ::> ::Btw2: Have you heard of the following ::> > ::> Sourceforge project: > ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With > ::that you can > ::> emulate for instance OS X Panther on a ::> ::::Windows ::> machine, > ::> and it seems to work quite well, as a ::> ::colleague ::told me. So > ::> ::> you could also try your code ::changes on ::> ::a mac > ::machine and > ::> ::with that ::> having a better ::overview over the ::> > ::::two os :-) > ::> ::> ::> Wow, i will download it now! > ::> ::> ::> I hope to be able to install it without crashing my > ::::system > ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola - sephiroth ::> ::> > ::> --------------------------------------------- > ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> > ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP > ::developer ::> > ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY > ::> http://www.sf.net/projects/sepy ::> ::> > ::> --------------------------------------------- > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> ::-----Original Message----- > ::> ::> ::> ::From: sep...@li... > ::> ::> ::> ::[mailto:sep...@li...] On > ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 > ::> ::> ::To: > ::> ::> sep...@li... ::> ::Subject: Re: > ::> [SE|PY-macdev] ::> Preferences frozen ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> > ::> ::> ::> :: > ::> ::> ::> > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> > ::> ::> ::> :: > ::> ::> ::> ::valley > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> :: > ::> ::> ::> ::------------------------------------------------------- > ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop > ::> ::FREE ::> ::Java ::> Enterprise J2EE developer tools! > ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::> ::> ::_______________________________________________ > ::> ::> ::> ::sepy-macdev mailing list > ::> ::> ::> ::sep...@li... > ::> ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> > ::> ::> ::> ------------------------------------------------------- > ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic > ::Workshop ::FREE > ::> Java ::> ::> Enterprise J2EE developer tools! > ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::> ::> _______________________________________________ > ::> ::> ::> sepy-macdev mailing list > ::> ::> ::> sep...@li... ::> ::> > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> ::> > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> ::------------------------------------------------------- > ::> ::> ::This SF.Net email is sponsored by BEA Weblogic > ::Workshop ::FREE > ::> ::Java ::> Enterprise J2EE developer tools! > ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::> ::_______________________________________________ > ::> ::> ::sepy-macdev mailing list > ::> ::> ::sep...@li... > ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> > ::> ::> > ::> ::> > ::> ::> > ::> ::> ------------------------------------------------------- > ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE Java > ::> ::> Enterprise J2EE developer tools! > ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::> _______________________________________________ > ::> ::> sepy-macdev mailing list > ::> ::> sep...@li... > ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> > ::> :: > ::> :: > ::> :: > ::> ::------------------------------------------------------- > ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE ::Java > ::> Enterprise J2EE developer tools! > ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::_______________________________________________ > ::> ::sepy-macdev mailing list > ::> ::sep...@li... > ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > ::> > ::> > ::> > ::> ------------------------------------------------------- > ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::> Enterprise J2EE developer tools! > ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> _______________________________________________ > ::> sepy-macdev mailing list > ::> sep...@li... > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-05 15:08:51
|
Damn, what an incredible thing! Let me ask in the wxPython mailing list first.. Maybe is a my fault ^_^ Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: domenica 5 settembre 2004 15.40 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: ::That's what I also just tried. And it's in this sort of line, ::because with the replacement line it works!!! ::I've tried this replacement also on other pages and all ::elements were accessible and modifyable. ::Also the languages are now filled into the combobox on page 1. :: ::So would it be possible to let these StaticBoxSizers away and ::just use BoxSizer ? :: ::valley :: :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Sunday, September 05, 2004 4:23 PM ::Subject: RE: [SE|PY-macdev] Preferences frozen :: :: ::> Mmhhh. ::> Try this in the windowsprefs.py file. ::> Line 660, change: ::> ::> sizer_general_options = ::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, ::> self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::wx.VERTICAL) ::> ::> Into: ::> sizer_general_options = wx.BoxSizer(wx.VERTICAL) ::> ::> The only thing that come in my mind is the container of ::these elements. ::> On the other side, there are no differences ::> ::> Alessandro Crugnola - sephiroth ::> --------------------------------------------- ::> Macromedia Flash Team Volunteer ::> http://www.macromedia.com/go/team ::> Flash && PHP developer ::> ale...@se... ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> --------------------------------------------- ::> ::> ::> ::-----Original Message----- ::> ::From: sep...@li... ::> ::[mailto:sep...@li...] On ::Behalf Of valley ::> ::Sent: domenica 5 settembre 2004 14.17 ::> ::To: sep...@li... ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::> :: ::> ::...and I tell you all the elements that work, perhaps you ::::know a ::> difference (binding events, filling in data, ...) to ::all ::the other ::> elements that don't ::> ::work: ::> :: ::> ::page 1 (General) ::> ::=========== ::> ::- radio buttons 'prompt' and 'ignore' at the bottom ::> ::- checkbox 'Check filesize ...' at the bottom ::> :: ::> ::page 3 (Colors) ::> ::=========== ::> ::- the three comboboxes at the bottom (line folding, tabs ::> ::placement, edge ::> ::column) also work ::> :: ::> :: ::> ::Are theses elements newer than the others (i.e. do you ::use ::another ::> strategy in implementing them) ? funny is also that ::these ::elements ::> are at the bottom of their pages, but why ::doesn't then e.g. the ::> checkbox at the bottom of page 4 work..... ::> :: ::> ::valley ::> :: ::> :: ::> :: ::> :: ::> ::----- Original Message ----- ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::<sep...@us...> ::> ::To: <sep...@li...> ::> ::Sent: Sunday, September 05, 2004 2:50 PM ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen ::> :: ::> :: ::> ::> ::Hmmmmmmm, still no change. ::> ::> ::I'll look now if there's an exception in WindowsPrefs.py that ::> ::> ::causes some processes to abort a little bit too early... ::> ::> ::> ::> Would be very helpful.. ::> ::> ::> ::> ::How is it going with PearPC ? ::> ::> Downloaded.. Now i have to look for a MAC OSX installation disc ::> ^_^ ::> ::> thanks ::> ::> ::> Alessandro Crugnola - sephiroth ::> ::> --------------------------------------------- ::> ::> Macromedia Flash Team Volunteer ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP developer ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::From: sep...@li... ::> ::> ::[mailto:sep...@li...] On ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 13.38 ::> ::To: ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::> ::> ::> ::> :: ::> ::> ::valley ::> ::> :: ::> ::> :: ::> ::> ::----- Original Message ----- ::> ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::> ::<sep...@us...> ::> ::> ::To: <sep...@li...> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM ::> ::Subject: RE: ::> [SE|PY-macdev] Preferences frozen ::> :: ::> ::> :: ::> ::> ::> ::> The only notebook still alive is the one which contains ::> the ::> ::> ::documents ::itself! ::> ::> ::> ::> Maybe changing the notebook into a book like for the ::> ::left ::> panel ? ::> ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::Yes I could try that. Where and what do I have to ::change in ::> ::> ::the ::> source so that it works with a Book ? Or if it's a ::> bigger ::> ::::change you ::> could the changes and send me the ::> ::modified file(s) ::> ::as attachment. ::> ::> ::> ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: ::> ::> ::> ::> ::> ::> Line 27: ::> ::> ::> Change: ::> ::> ::> self.notebook_pref = wx.Notebook(self, -1, style=0) ::::> ::::> ::> Into: ::> ::> ::> self.notebook_pref = wx.Listbook(self, -1, style=0) ::::> ::::> ::> Line ::> 483: ::> ::> ::> Change: ::> ::> ::> ::notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, ::> ::> ::wx.EXPAND, ::> 0) ::> ::> Into: ::> ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, ::0) ::::> ::> ::> ::> ::> ::Btw: With the latest cvs source I get the following ::> error message: ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO import ::TODOWindow ::> ::> ::> :: ::> ::> ::> :: >ImportError: No module named WindowsTODO ::> ::> ::> :: ::> ::> ::> ::Maybe there's something missing with the new feature... ::> ::> ::> ::> ::> ::> Ops, sorry.. ::> ::> ::> I forgot to add that file in the CVS commit.. I will do ::> ::> immediately ::> ::> ::> ::Btw2: Have you heard of the following ::> ::> Sourceforge project: ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With ::that you can ::> emulate for instance OS X Panther on a ::> ::::Windows ::> machine, ::> and it seems to work quite well, as a ::> ::colleague ::told me. So ::> ::> you could also try your code ::changes on ::> ::a mac ::machine and ::> ::with that ::> having a better ::overview over the ::> ::::two os :-) ::> ::> ::> Wow, i will download it now! ::> ::> ::> I hope to be able to install it without crashing my ::::system ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola - sephiroth ::> ::> ::> --------------------------------------------- ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP ::developer ::> ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY ::> http://www.sf.net/projects/sepy ::> ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: sep...@li... ::> ::> ::> ::[mailto:sep...@li...] On ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 ::> ::> ::To: ::> ::> sep...@li... ::> ::Subject: Re: ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::> ::> ::> :: ::> ::> ::> ::valley ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> :: ::> ::> ::> ::------------------------------------------------------- ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> ::_______________________________________________ ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::sep...@li... ::> ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> Java ::> ::> Enterprise J2EE developer tools! ::> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::> _______________________________________________ ::> ::> ::> sepy-macdev mailing list ::> ::> ::> sep...@li... ::> ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::------------------------------------------------------- ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::_______________________________________________ ::> ::> ::sepy-macdev mailing list ::> ::> ::sep...@li... ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::> ::> Enterprise J2EE developer tools! ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> _______________________________________________ ::> ::> sepy-macdev mailing list ::> ::> sep...@li... ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> :: ::> :: ::> :: ::> ::------------------------------------------------------- ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE ::Java ::> Enterprise J2EE developer tools! ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::_______________________________________________ ::> ::sepy-macdev mailing list ::> ::sep...@li... ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-05 14:40:11
|
That's what I also just tried. And it's in this sort of line, because with the replacement line it works!!! I've tried this replacement also on other pages and all elements were accessible and modifyable. Also the languages are now filled into the combobox on page 1. So would it be possible to let these StaticBoxSizers away and just use BoxSizer ? valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Sunday, September 05, 2004 4:23 PM Subject: RE: [SE|PY-macdev] Preferences frozen > Mmhhh. > Try this in the windowsprefs.py file. > Line 660, change: > > sizer_general_options = wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, > self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), wx.VERTICAL) > > Into: > sizer_general_options = wx.BoxSizer(wx.VERTICAL) > > The only thing that come in my mind is the container of these elements. > On the other side, there are no differences > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of valley > ::Sent: domenica 5 settembre 2004 14.17 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] Preferences frozen > :: > ::...and I tell you all the elements that work, perhaps you > ::know a difference (binding events, filling in data, ...) to > ::all the other elements that don't > ::work: > :: > ::page 1 (General) > ::=========== > ::- radio buttons 'prompt' and 'ignore' at the bottom > ::- checkbox 'Check filesize ...' at the bottom > :: > ::page 3 (Colors) > ::=========== > ::- the three comboboxes at the bottom (line folding, tabs > ::placement, edge > ::column) also work > :: > :: > ::Are theses elements newer than the others (i.e. do you use > ::another strategy in implementing them) ? funny is also that > ::these elements are at the bottom of their pages, but why > ::doesn't then e.g. the checkbox at the bottom of page 4 work..... > :: > ::valley > :: > :: > :: > :: > ::----- Original Message ----- > ::From: "Alessandro Crugnola *sephiroth*" > ::<sep...@us...> > ::To: <sep...@li...> > ::Sent: Sunday, September 05, 2004 2:50 PM > ::Subject: RE: [SE|PY-macdev] Preferences frozen > :: > :: > ::> ::Hmmmmmmm, still no change. > ::> ::I'll look now if there's an exception in WindowsPrefs.py that > ::> ::causes some processes to abort a little bit too early... > ::> > ::> Would be very helpful.. > ::> > ::> ::How is it going with PearPC ? > ::> Downloaded.. Now i have to look for a MAC OSX installation disc ^_^ > ::> > ::> thanks > ::> > ::> > ::> Alessandro Crugnola - sephiroth > ::> --------------------------------------------- > ::> Macromedia Flash Team Volunteer > ::> http://www.macromedia.com/go/team > ::> Flash && PHP developer > ::> ale...@se... > ::> > ::> *relax with SEPY http://www.sf.net/projects/sepy > ::> --------------------------------------------- > ::> > ::> > ::> ::-----Original Message----- > ::> ::From: sep...@li... > ::> ::[mailto:sep...@li...] On > ::Behalf Of valley > ::> ::Sent: domenica 5 settembre 2004 13.38 > ::> ::To: sep...@li... > ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen > ::> :: > ::> > ::> > ::> :: > ::> ::valley > ::> :: > ::> :: > ::> ::----- Original Message ----- > ::> ::From: "Alessandro Crugnola *sephiroth*" > ::> ::<sep...@us...> > ::> ::To: <sep...@li...> > ::> ::Sent: Sunday, September 05, 2004 10:44 AM > ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen > ::> :: > ::> :: > ::> ::> ::> The only notebook still alive is the one which contains the > ::> ::> ::documents ::itself! > ::> ::> ::> Maybe changing the notebook into a book like for the ::left > ::> panel ? > ::> ::> ::> > ::> ::> :: > ::> ::> ::Yes I could try that. Where and what do I have to change in > ::> ::the ::> source so that it works with a Book ? Or if it's a bigger > ::> ::::change you ::> could the changes and send me the > ::modified file(s) > ::> ::as attachment. > ::> ::> > ::> ::> Ok. In the WindowsPrefs.py ake these changes: > ::> ::> > ::> ::> Line 27: > ::> ::> Change: > ::> ::> self.notebook_pref = wx.Notebook(self, -1, style=0) ::> > ::::> Into: > ::> ::> self.notebook_pref = wx.Listbook(self, -1, style=0) ::> > ::::> Line > ::> 483: > ::> ::> Change: > ::> ::> notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, > ::> ::wx.EXPAND, ::> 0) ::> ::> Into: > ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, 0) > ::::> ::> ::> > ::> ::Btw: With the latest cvs source I get the following error message: > ::> ::> :: >SEPY.py line 33 from WindowsTODO import TODOWindow > ::> ::> :: > ::> ::> :: >ImportError: No module named WindowsTODO > ::> ::> :: > ::> ::> ::Maybe there's something missing with the new feature... > ::> ::> > ::> ::> Ops, sorry.. > ::> ::> I forgot to add that file in the CVS commit.. I will do > ::> immediately ::> ::> ::> ::Btw2: Have you heard of the following > ::> Sourceforge project: > ::> ::> ::http://pearpc.sourceforge.net/ > ::> ::> ::With that you can emulate for instance OS X Panther on a > ::> ::::Windows ::> machine, and it seems to work quite well, as a > ::> ::colleague ::told me. So ::> you could also try your code > ::changes on > ::> ::a mac machine and ::with that ::> having a better > ::overview over the > ::> ::two os :-) ::> ::> Wow, i will download it now! > ::> ::> I hope to be able to install it without crashing my > ::system ^_^ ::> > ::> ::> ::> Alessandro Crugnola - sephiroth ::> > ::> --------------------------------------------- > ::> ::> Macromedia Flash Team Volunteer > ::> ::> http://www.macromedia.com/go/team > ::> ::> Flash && PHP developer > ::> ::> ale...@se... > ::> ::> > ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> > ::> --------------------------------------------- > ::> ::> > ::> ::> > ::> ::> ::-----Original Message----- > ::> ::> ::From: sep...@li... > ::> ::> ::[mailto:sep...@li...] On > ::::Behalf Of > ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 ::> ::To: > ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] > ::> Preferences frozen ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> > ::> ::> :: > ::> ::> > ::> ::> :: > ::> ::> :: > ::> ::> > ::> ::> :: > ::> ::> ::valley > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> :: > ::> ::> ::------------------------------------------------------- > ::> ::> ::This SF.Net email is sponsored by BEA Weblogic > ::Workshop ::FREE > ::> ::Java ::> Enterprise J2EE developer tools! > ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::> ::_______________________________________________ > ::> ::> ::sepy-macdev mailing list > ::> ::> ::sep...@li... > ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> > ::> ::> > ::> ::> > ::> ::> > ::> ::> ------------------------------------------------------- > ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE Java > ::> ::> Enterprise J2EE developer tools! > ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::> _______________________________________________ > ::> ::> sepy-macdev mailing list > ::> ::> sep...@li... > ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> ::> > ::> :: > ::> :: > ::> :: > ::> ::------------------------------------------------------- > ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE ::Java > ::> Enterprise J2EE developer tools! > ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::_______________________________________________ > ::> ::sepy-macdev mailing list > ::> ::sep...@li... > ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > ::> > ::> > ::> > ::> ------------------------------------------------------- > ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::> Enterprise J2EE developer tools! > ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> _______________________________________________ > ::> sepy-macdev mailing list > ::> sep...@li... > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-05 14:24:07
|
Mmhhh. Try this in the windowsprefs.py file. Line 660, change: sizer_general_options = wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), wx.VERTICAL) Into: sizer_general_options = wx.BoxSizer(wx.VERTICAL) The only thing that come in my mind is the container of these elements. On the other side, there are no differences Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: domenica 5 settembre 2004 14.17 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: ::...and I tell you all the elements that work, perhaps you ::know a difference (binding events, filling in data, ...) to ::all the other elements that don't ::work: :: ::page 1 (General) ::=========== ::- radio buttons 'prompt' and 'ignore' at the bottom ::- checkbox 'Check filesize ...' at the bottom :: ::page 3 (Colors) ::=========== ::- the three comboboxes at the bottom (line folding, tabs ::placement, edge ::column) also work :: :: ::Are theses elements newer than the others (i.e. do you use ::another strategy in implementing them) ? funny is also that ::these elements are at the bottom of their pages, but why ::doesn't then e.g. the checkbox at the bottom of page 4 work..... :: ::valley :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Sunday, September 05, 2004 2:50 PM ::Subject: RE: [SE|PY-macdev] Preferences frozen :: :: ::> ::Hmmmmmmm, still no change. ::> ::I'll look now if there's an exception in WindowsPrefs.py that ::> ::causes some processes to abort a little bit too early... ::> ::> Would be very helpful.. ::> ::> ::How is it going with PearPC ? ::> Downloaded.. Now i have to look for a MAC OSX installation disc ^_^ ::> ::> thanks ::> ::> ::> Alessandro Crugnola - sephiroth ::> --------------------------------------------- ::> Macromedia Flash Team Volunteer ::> http://www.macromedia.com/go/team ::> Flash && PHP developer ::> ale...@se... ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> --------------------------------------------- ::> ::> ::> ::-----Original Message----- ::> ::From: sep...@li... ::> ::[mailto:sep...@li...] On ::Behalf Of valley ::> ::Sent: domenica 5 settembre 2004 13.38 ::> ::To: sep...@li... ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::> :: ::> ::> ::> :: ::> ::valley ::> :: ::> :: ::> ::----- Original Message ----- ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::<sep...@us...> ::> ::To: <sep...@li...> ::> ::Sent: Sunday, September 05, 2004 10:44 AM ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen ::> :: ::> :: ::> ::> ::> The only notebook still alive is the one which contains the ::> ::> ::documents ::itself! ::> ::> ::> Maybe changing the notebook into a book like for the ::left ::> panel ? ::> ::> ::> ::> ::> :: ::> ::> ::Yes I could try that. Where and what do I have to change in ::> ::the ::> source so that it works with a Book ? Or if it's a bigger ::> ::::change you ::> could the changes and send me the ::modified file(s) ::> ::as attachment. ::> ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: ::> ::> ::> ::> Line 27: ::> ::> Change: ::> ::> self.notebook_pref = wx.Notebook(self, -1, style=0) ::> ::::> Into: ::> ::> self.notebook_pref = wx.Listbook(self, -1, style=0) ::> ::::> Line ::> 483: ::> ::> Change: ::> ::> notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, ::> ::wx.EXPAND, ::> 0) ::> ::> Into: ::> ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, 0) ::::> ::> ::> ::> ::Btw: With the latest cvs source I get the following error message: ::> ::> :: >SEPY.py line 33 from WindowsTODO import TODOWindow ::> ::> :: ::> ::> :: >ImportError: No module named WindowsTODO ::> ::> :: ::> ::> ::Maybe there's something missing with the new feature... ::> ::> ::> ::> Ops, sorry.. ::> ::> I forgot to add that file in the CVS commit.. I will do ::> immediately ::> ::> ::> ::Btw2: Have you heard of the following ::> Sourceforge project: ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With that you can emulate for instance OS X Panther on a ::> ::::Windows ::> machine, and it seems to work quite well, as a ::> ::colleague ::told me. So ::> you could also try your code ::changes on ::> ::a mac machine and ::with that ::> having a better ::overview over the ::> ::two os :-) ::> ::> Wow, i will download it now! ::> ::> I hope to be able to install it without crashing my ::system ^_^ ::> ::> ::> ::> Alessandro Crugnola - sephiroth ::> ::> --------------------------------------------- ::> ::> Macromedia Flash Team Volunteer ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP developer ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::From: sep...@li... ::> ::> ::[mailto:sep...@li...] On ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre 2004 9.26 ::> ::To: ::> sep...@li... ::> ::Subject: Re: [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> :: ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::> ::> :: ::> ::> :: ::> ::> ::> ::> :: ::> ::> ::valley ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::------------------------------------------------------- ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::_______________________________________________ ::> ::> ::sepy-macdev mailing list ::> ::> ::sep...@li... ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::> ::> Enterprise J2EE developer tools! ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> _______________________________________________ ::> ::> sepy-macdev mailing list ::> ::> sep...@li... ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> :: ::> :: ::> :: ::> ::------------------------------------------------------- ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE ::Java ::> Enterprise J2EE developer tools! ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::_______________________________________________ ::> ::sepy-macdev mailing list ::> ::sep...@li... ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-05 13:17:02
|
...and I tell you all the elements that work, perhaps you know a difference (binding events, filling in data, ...) to all the other elements that don't work: page 1 (General) =========== - radio buttons 'prompt' and 'ignore' at the bottom - checkbox 'Check filesize ...' at the bottom page 3 (Colors) =========== - the three comboboxes at the bottom (line folding, tabs placement, edge column) also work Are theses elements newer than the others (i.e. do you use another strategy in implementing them) ? funny is also that these elements are at the bottom of their pages, but why doesn't then e.g. the checkbox at the bottom of page 4 work..... valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Sunday, September 05, 2004 2:50 PM Subject: RE: [SE|PY-macdev] Preferences frozen > ::Hmmmmmmm, still no change. > ::I'll look now if there's an exception in WindowsPrefs.py that > ::causes some processes to abort a little bit too early... > > Would be very helpful.. > > ::How is it going with PearPC ? > Downloaded.. Now i have to look for a MAC OSX installation disc ^_^ > > thanks > > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of valley > ::Sent: domenica 5 settembre 2004 13.38 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] Preferences frozen > :: > > > :: > ::valley > :: > :: > ::----- Original Message ----- > ::From: "Alessandro Crugnola *sephiroth*" > ::<sep...@us...> > ::To: <sep...@li...> > ::Sent: Sunday, September 05, 2004 10:44 AM > ::Subject: RE: [SE|PY-macdev] Preferences frozen > :: > :: > ::> ::> The only notebook still alive is the one which contains the > ::> ::documents ::itself! > ::> ::> Maybe changing the notebook into a book like for the > ::left panel ? > ::> ::> > ::> :: > ::> ::Yes I could try that. Where and what do I have to change in ::the > ::> source so that it works with a Book ? Or if it's a bigger > ::::change you > ::> could the changes and send me the modified file(s) ::as attachment. > ::> > ::> Ok. In the WindowsPrefs.py ake these changes: > ::> > ::> Line 27: > ::> Change: > ::> self.notebook_pref = wx.Notebook(self, -1, style=0) > ::> > ::> Into: > ::> self.notebook_pref = wx.Listbook(self, -1, style=0) > ::> > ::> Line 483: > ::> Change: > ::> notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, > ::wx.EXPAND, > ::> 0) > ::> > ::> Into: > ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, 0) > ::> > ::> > ::> ::Btw: With the latest cvs source I get the following error message: > ::> :: >SEPY.py line 33 from WindowsTODO import TODOWindow > ::> :: > ::> :: >ImportError: No module named WindowsTODO > ::> :: > ::> ::Maybe there's something missing with the new feature... > ::> > ::> Ops, sorry.. > ::> I forgot to add that file in the CVS commit.. I will do immediately > ::> > ::> > ::> ::Btw2: Have you heard of the following Sourceforge project: > ::> ::http://pearpc.sourceforge.net/ > ::> ::With that you can emulate for instance OS X Panther on a > ::::Windows > ::> machine, and it seems to work quite well, as a ::colleague > ::told me. So > ::> you could also try your code changes on ::a mac machine and > ::with that > ::> having a better overview over the ::two os :-) > ::> > ::> Wow, i will download it now! > ::> I hope to be able to install it without crashing my system ^_^ > ::> > ::> > ::> Alessandro Crugnola - sephiroth > ::> --------------------------------------------- > ::> Macromedia Flash Team Volunteer > ::> http://www.macromedia.com/go/team > ::> Flash && PHP developer > ::> ale...@se... > ::> > ::> *relax with SEPY http://www.sf.net/projects/sepy > ::> --------------------------------------------- > ::> > ::> > ::> ::-----Original Message----- > ::> ::From: sep...@li... > ::> ::[mailto:sep...@li...] On > ::Behalf Of valley > ::> ::Sent: domenica 5 settembre 2004 9.26 > ::> ::To: sep...@li... > ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen > ::> :: > ::> :: > ::> :: > ::> > ::> :: > ::> > ::> :: > ::> :: > ::> > ::> :: > ::> ::valley > ::> :: > ::> :: > ::> :: > ::> :: > ::> :: > ::> :: > ::> :: > ::> ::------------------------------------------------------- > ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE ::Java > ::> Enterprise J2EE developer tools! > ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::_______________________________________________ > ::> ::sepy-macdev mailing list > ::> ::sep...@li... > ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > ::> > ::> > ::> > ::> ------------------------------------------------------- > ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::> Enterprise J2EE developer tools! > ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> _______________________________________________ > ::> sepy-macdev mailing list > ::> sep...@li... > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-05 12:50:39
|
::Hmmmmmmm, still no change. ::I'll look now if there's an exception in WindowsPrefs.py that ::causes some processes to abort a little bit too early... Would be very helpful.. ::How is it going with PearPC ? Downloaded.. Now i have to look for a MAC OSX installation disc ^_^ thanks Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: domenica 5 settembre 2004 13.38 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: :: ::valley :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Sunday, September 05, 2004 10:44 AM ::Subject: RE: [SE|PY-macdev] Preferences frozen :: :: ::> ::> The only notebook still alive is the one which contains the ::> ::documents ::itself! ::> ::> Maybe changing the notebook into a book like for the ::left panel ? ::> ::> ::> :: ::> ::Yes I could try that. Where and what do I have to change in ::the ::> source so that it works with a Book ? Or if it's a bigger ::::change you ::> could the changes and send me the modified file(s) ::as attachment. ::> ::> Ok. In the WindowsPrefs.py ake these changes: ::> ::> Line 27: ::> Change: ::> self.notebook_pref = wx.Notebook(self, -1, style=0) ::> ::> Into: ::> self.notebook_pref = wx.Listbook(self, -1, style=0) ::> ::> Line 483: ::> Change: ::> notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, ::wx.EXPAND, ::> 0) ::> ::> Into: ::> notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, 0) ::> ::> ::> ::Btw: With the latest cvs source I get the following error message: ::> :: >SEPY.py line 33 from WindowsTODO import TODOWindow ::> :: ::> :: >ImportError: No module named WindowsTODO ::> :: ::> ::Maybe there's something missing with the new feature... ::> ::> Ops, sorry.. ::> I forgot to add that file in the CVS commit.. I will do immediately ::> ::> ::> ::Btw2: Have you heard of the following Sourceforge project: ::> ::http://pearpc.sourceforge.net/ ::> ::With that you can emulate for instance OS X Panther on a ::::Windows ::> machine, and it seems to work quite well, as a ::colleague ::told me. So ::> you could also try your code changes on ::a mac machine and ::with that ::> having a better overview over the ::two os :-) ::> ::> Wow, i will download it now! ::> I hope to be able to install it without crashing my system ^_^ ::> ::> ::> Alessandro Crugnola - sephiroth ::> --------------------------------------------- ::> Macromedia Flash Team Volunteer ::> http://www.macromedia.com/go/team ::> Flash && PHP developer ::> ale...@se... ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> --------------------------------------------- ::> ::> ::> ::-----Original Message----- ::> ::From: sep...@li... ::> ::[mailto:sep...@li...] On ::Behalf Of valley ::> ::Sent: domenica 5 settembre 2004 9.26 ::> ::To: sep...@li... ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::> :: ::> :: ::> :: ::> ::> :: ::> ::> :: ::> :: ::> ::> :: ::> ::valley ::> :: ::> :: ::> :: ::> :: ::> :: ::> :: ::> :: ::> ::------------------------------------------------------- ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE ::Java ::> Enterprise J2EE developer tools! ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::_______________________________________________ ::> ::sepy-macdev mailing list ::> ::sep...@li... ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-05 12:37:53
|
Hmmmmmmm, still no change. I'll look now if there's an exception in WindowsPrefs.py that causes some processes to abort a little bit too early... How is it going with PearPC ? valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Sunday, September 05, 2004 10:44 AM Subject: RE: [SE|PY-macdev] Preferences frozen > ::> The only notebook still alive is the one which contains the > ::documents > ::itself! > ::> Maybe changing the notebook into a book like for the left panel ? > ::> > :: > ::Yes I could try that. Where and what do I have to change in > ::the source so that it works with a Book ? Or if it's a bigger > ::change you could the changes and send me the modified file(s) > ::as attachment. > > Ok. In the WindowsPrefs.py ake these changes: > > Line 27: > Change: > self.notebook_pref = wx.Notebook(self, -1, style=0) > > Into: > self.notebook_pref = wx.Listbook(self, -1, style=0) > > Line 483: > Change: > notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, wx.EXPAND, 0) > > Into: > notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, 0) > > > ::Btw: With the latest cvs source I get the following error message: > :: >SEPY.py line 33 from WindowsTODO import TODOWindow > :: > :: >ImportError: No module named WindowsTODO > :: > ::Maybe there's something missing with the new feature... > > Ops, sorry.. > I forgot to add that file in the CVS commit.. I will do immediately > > > ::Btw2: Have you heard of the following Sourceforge project: > ::http://pearpc.sourceforge.net/ > ::With that you can emulate for instance OS X Panther on a > ::Windows machine, and it seems to work quite well, as a > ::colleague told me. So you could also try your code changes on > ::a mac machine and with that having a better overview over the > ::two os :-) > > Wow, i will download it now! > I hope to be able to install it without crashing my system ^_^ > > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of valley > ::Sent: domenica 5 settembre 2004 9.26 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] Preferences frozen > :: > :: > :: > > :: > > :: > :: > > :: > ::valley > :: > :: > :: > :: > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-05 08:44:45
|
::> The only notebook still alive is the one which contains the ::documents ::itself! ::> Maybe changing the notebook into a book like for the left panel ? ::> :: ::Yes I could try that. Where and what do I have to change in ::the source so that it works with a Book ? Or if it's a bigger ::change you could the changes and send me the modified file(s) ::as attachment. Ok. In the WindowsPrefs.py ake these changes: Line 27: Change: self.notebook_pref = wx.Notebook(self, -1, style=0) Into: self.notebook_pref = wx.Listbook(self, -1, style=0) Line 483: Change: notbook_sizer.Add(wx.NotebookSizer(self.notebook_pref), 1, wx.EXPAND, 0) Into: notbook_sizer.Add(self.notebook_pref, 1, wx.EXPAND, 0) ::Btw: With the latest cvs source I get the following error message: :: >SEPY.py line 33 from WindowsTODO import TODOWindow :: :: >ImportError: No module named WindowsTODO :: ::Maybe there's something missing with the new feature... Ops, sorry.. I forgot to add that file in the CVS commit.. I will do immediately ::Btw2: Have you heard of the following Sourceforge project: ::http://pearpc.sourceforge.net/ ::With that you can emulate for instance OS X Panther on a ::Windows machine, and it seems to work quite well, as a ::colleague told me. So you could also try your code changes on ::a mac machine and with that having a better overview over the ::two os :-) Wow, i will download it now! I hope to be able to install it without crashing my system ^_^ Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: domenica 5 settembre 2004 9.26 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: :: :: :: :: :: :: ::valley :: :: :: :: :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-05 08:26:40
|
> The only notebook still alive is the one which contains the documents itself! > Maybe changing the notebook into a book like for the left panel ? > Yes I could try that. Where and what do I have to change in the source so that it works with a Book ? Or if it's a bigger change you could the changes and send me the modified file(s) as attachment. Btw: With the latest cvs source I get the following error message: >SEPY.py line 33 from WindowsTODO import TODOWindow >ImportError: No module named WindowsTODO Maybe there's something missing with the new feature... Btw2: Have you heard of the following Sourceforge project: http://pearpc.sourceforge.net/ With that you can emulate for instance OS X Panther on a Windows machine, and it seems to work quite well, as a colleague told me. So you could also try your code changes on a mac machine and with that having a better overview over the two os :-) valley |
From: Ashley M. <as...@gv...> - 2004-09-05 03:44:05
|
... same thing happening here, how to point new install to old wxPython Module using $PYTHONPATH does not help Ashley Isaac Rivera wrote: > OK. > > I upgraded python to 2.3.4 and installed wxPython. > > But after checking the version of python discovered that the shell > accessed the old version, 2.3 that comes with the system and not the > upgrade. The old version was installed in /usr/bin/ while the new > 2.3.4 in /usr/local/bin/. > > Removed old, added the path to the bash PATH. nice, I can access > python upgrade. BUT it does not access wxPython: "ImportError: No > module named wx". > > Isaac > > On Sep 4, 2004, at 7:22 PM, Ashley McCoy wrote: > >> Are you trying to install wxPython or write a script with it? >> >> I've been reading the Python tutorial which is very helpful >> http://www.python.org/doc/2.3.4/ >> >> Ashley >> >> Isaac Rivera wrote: >> >>> same problem: >>> >>> isaacriv$ export >>> PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ >>> local/bin/ >>> isaacriv$ python >>> Python 2.3.4 (#1, Sep 4 2004, 17:00:17) >>> [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin >>> Type "help", "copyright", "credits" or "license" for more information. >>> >>> import wx >>> Traceback (most recent call last): >>> File "<stdin>", line 1, in ? >>> ImportError: No module named wx >>> >>> >>> On Sep 4, 2004, at 5:24 PM, Alessandro Crugnola *sephiroth* wrote: >>> >>>> For using wxPython, use this syntax: >>>> >>>> import wx >>>> >>>> Then you have all wxpython modules as: >>>> >>>> wx.Frame >>>> wx.Dialog >>>> ... >>>> >>>> >>>> >>>> Alessandro Crugnola - sephiroth >>>> --------------------------------------------- >>>> Macromedia Flash Team Volunteer >>>> http://www.macromedia.com/go/team >>>> Flash && PHP developer >>>> ale...@se... >>>> >>>> *relax with SEPY http://www.sf.net/projects/sepy >>>> --------------------------------------------- >>>> >>>> >>>> ::-----Original Message----- >>>> ::From: sep...@li... >>>> ::[mailto:sep...@li...] On Behalf Of >>>> ::Isaac Rivera >>>> ::Sent: sabato 4 settembre 2004 22.17 >>>> ::To: sep...@li... >>>> ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >>>> :: >>>> ::Ok--- >>>> :: >>>> ::I added ":/usr/local/bin" to my path and deleted Python on >>>> "/usr/bin" >>>> :: >>>> ::Now Python 2.3.4 launches on the terminal correctly when I >>>> ::type python during the current shell session. >>>> :: >>>> ::However, I does not find wxPython from this location. I just the >>>> the >>>> ::classic: >>>> :: >>>> :: >>> import wxPython >>>> ::Traceback (most recent call last): >>>> :: File "<stdin>", line 1, in ? >>>> ::ImportError: No module named wxPython >>>> :: >>>> ::2 questions: >>>> :: >>>> ::How do I alter PATH to this permanently and not just the >>>> ::current session. >>>> ::"export >>>> ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/ >>>> usr/ >>>> ::local/bin/" >>>> :: >>>> ::and how do I make python see wxPython? >>>> :: >>>> :: >>>> ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: >>>> :: >>>> ::> Remove or rename old python binary, make sure /usr/local/bin >>>> is is >>>> ::> your PATH >>>> ::> >>>> ::> % echo $PATH >>>> ::> % export PATH=$PATH:/usr/local/bin >>>> ::> % echo $PATH >>>> ::> >>>> ::> Did you get $suite to compile? >>>> ::> >>>> ::> Ashley >>>> ::> >>>> ::> old pythoIsaac Rivera wrote: >>>> ::> >>>> ::>> Thats exactly what happens. >>>> ::>> >>>> ::>> But when I type "/usr/local/bin/python" then this happens: >>>> ::>> >>>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 >>>> (Apple >>>> ::>> Computer, Inc. build 1666)] on darwin Type "help", "copyright", >>>> ::>> "credits" or "license" for more information. >>>> ::>> >>> >>>> ::>> >>>> ::>> Notice two the headers: >>>> ::>> >>>> ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >>>> ::>> >>>> ::>> vs. >>>> ::>> >>>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >>>> ::>> >>>> ::>> Diferent versions and dates. The second one, the one I >>>> ::just updated >>>> ::>> and I invoke by typing "/usr/local/bin/python" is the current >>>> ::>> version. The other one accessed by just typing "python" is >>>> ::older, the >>>> ::>> Panther default and the one we are all using unless we are >>>> calling >>>> ::>> "/usr/local/bin/python". >>>> ::>> >>>> ::>> Isaac >>>> ::>> >>>> ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: >>>> ::>> >>>> ::>>> So what happens when you type 'python' or 'python2.3' in >>>> ::your shell ? >>>> ::>>> Normally something like this should appear: >>>> ::>>> $ python >>>> ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 (Apple >>>> ::>>> Computer, build 1495)] on darwin Type "help", >>>> ::"copyright", "credits" >>>> ::>>> or "license" for more information. >>>> ::>>> >>>> ::>>>>>> >>>> ::>>> >>>> ::>>> Perhaps it's a path problem. On the 4Suite site it is >>>> ::said that you >>>> ::>>> don't have to do the build for installing it, just type >>>> ::>>> python setup.py install >>>> ::>>> >>>> ::>>> >>>> ::>>> valley >>>> ::>>> >>>> ::>>> >>>> ::>>> >>>> ::>>> ----- Original Message ----- >>>> ::>>> From: "Isaac Rivera" <isa...@mi...> >>>> ::>>> To: <sep...@li...> >>>> ::>>> Sent: Thursday, September 02, 2004 3:17 PM >>>> ::>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS >>>> latest >>>> ::>>> >>>> ::>>> >>>> ::>>>> On trying to install 4Suite in Panther I get >>>> ::>>>> >>>> ::>>>> "command 'gcc' failed with exit status 1" >>>> ::>>>> >>>> ::>>>> I have upgraded XCode tools and the gcc is the new version >>>> 3.3. >>>> ::>>>> >>>> ::>>>> Isaac >>>> ::>>>> >>>> ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: >>>> ::>>>> >>>> ::>>>>> I never had this error. But 4Suite should build and install >>>> ::>>>>> correctly, so try a little bit around ;-) This error >>>> ::perhaps also >>>> ::>>>>> could be a SEPY error due to changes that Alessandro >>>> ::made - I can >>>> ::>>>>> try this out this evening with the latest cvs version. >>>> ::>>>>> >>>> ::>>>>> valley >>>> ::>>>>> >>>> ::>>>>> >>>> ::>>>>> >>>> ::>>>>> >>>> ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>> ::>>>>> >>>> ::>>>>>> Thanks Valley, >>>> ::>>>>>> >>>> ::>>>>>> got the latest wxpython, sepy runs splash screen then >>>> tooltips >>>> ::>>>>>> appear but splash screen stays, the document window >>>> ::which appears >>>> ::>>>>>> under the tool tips resizes with incorrect screen redraw >>>> ::>>>>>> >>>> ::>>>>>> Throws an errror at command line --> below >>>> ::>>>>>> >>>> ::>>>>>> I had thought to check through the list of dependancies you >>>> ::>>>>>> mentioned on the Wiki and have found an error building >>>> 4suite >>>> ::>>>>>> that does not seem to be resolved as of yet, it fails on >>>> ::>>>>>> build_ext this appears to be a problem with python2.3 >>>> ::>>>>>> >>>> ::>>>>>> So I wonder if I I would have to build python from >>>> scratch ?? >>>> ::>>>>>> >>>> ::>>>>>> Ashley >>>> ::>>>>>> >>>> ::>>>>>> >>>> ::>>>>>> >>>> ::>>>>>> >>>> ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] 20:32:46: >>>> ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. >>>> ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', >>>> ::accel string >>>> ::>>>>>> ignored. >>>> ::>>>>>> Traceback (most recent call last): >>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>> ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>> ::>>>>>> title=About_title, dialog = self.dialog) >>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ >>>> ::>>>>>> self.loadDB() >>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB >>>> ::>>>>>> self.DB["values"] = DB.values() >>>> ::>>>>>> AttributeError: _DBWithCursor instance has no >>>> ::attribute 'values' >>>> ::>>>>>> >>>> ::>>>>>> Valentin Treu wrote: >>>> ::>>>>>> >>>> ::>>>>>>> i also had this error. be sure that you've got the newest >>>> ::>>>>>>> wxpython from here: >>>> ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ >>>> ::>>>>>>> >>>> ::>>>>>>> valley >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>>> Is there a curent list of changes I need to make? >>>> ::>>>>>>>> >>>> ::>>>>>>>> Ashley >>>> ::>>>>>>>> >>>> ::>>>>>>>> First Error :: >>>> ::>>>>>>>> >>>> ::>>>>>>>> Traceback (most recent call last): >>>> ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>> ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>> ::>>>>>>>> title=About_title, dialog = self.dialog) File >>>> ::>>>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ >>>> ::>>>>>>>> self.project_history = wx.FileHistory(5, >>>> ::wx.ID_FILE11) File >>>> ::>>>>>>>> >>>> ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>>> ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", >>>> ::>>>>>>>> line 1072, in __init__ >>>> ::>>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) >>>> ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 >>>> ::>>>>>>>> given) >>>> ::>>>>>>>> >>>> ::>>>>>>>> >>>> ::>>>>>>>> ------------------------------------------------------- >>>> ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> FREE >>>> ::>>>>>>>> Java Enterprise J2EE developer tools! >>>> ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>>>>>>>> _______________________________________________ >>>> ::>>>>>>>> sepy-macdev mailing list >>>> ::>>>>>>>> sep...@li... >>>> ::>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>>>>>>>> >>>> ::>>>>>>>> >>>> ::>>>>>>>> >>>> ::>>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> ------------------------------------------------------- >>>> ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> FREE >>>> ::>>>>>>> Java Enterprise J2EE developer tools! >>>> ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>>>>>>> _______________________________________________ >>>> ::>>>>>>> sepy-macdev mailing list >>>> ::>>>>>>> sep...@li... >>>> ::>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>>> >>>> ::>>>>>> >>>> ::>>>>>> >>>> ::>>>>>> >>>> ::>>>>>> ------------------------------------------------------- >>>> ::>>>>>> This SF.Net email is sponsored by BEA Weblogic >>>> ::Workshop FREE Java >>>> ::>>>>>> Enterprise J2EE developer tools! >>>> ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>>>>>> _______________________________________________ >>>> ::>>>>>> sepy-macdev mailing list >>>> ::>>>>>> sep...@li... >>>> ::>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>>>>>> >>>> ::>>>>>> >>>> ::>>>>> >>>> ::>>>>> >>>> ::>>>>> >>>> ::>>>>> ------------------------------------------------------- >>>> ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> ::FREE Java >>>> ::>>>>> Enterprise J2EE developer tools! >>>> ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>>>>> _______________________________________________ >>>> ::>>>>> sepy-macdev mailing list >>>> ::>>>>> sep...@li... >>>> ::>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>>>>> >>>> ::>>>> >>>> ::>>>> >>>> ::>>>> >>>> ::>>>> ------------------------------------------------------- >>>> ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> ::FREE Java >>>> ::>>>> Enterprise J2EE developer tools! >>>> ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>>>> _______________________________________________ >>>> ::>>>> sepy-macdev mailing list >>>> ::>>>> sep...@li... >>>> ::>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>>>> >>>> ::>>> >>>> ::>>> >>>> ::>>> >>>> ::>>> ------------------------------------------------------- >>>> ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>> Java >>>> ::>>> Enterprise J2EE developer tools! >>>> ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>>> _______________________________________________ >>>> ::>>> sepy-macdev mailing list >>>> ::>>> sep...@li... >>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>>> >>>> ::>> >>>> ::>> >>>> ::>> >>>> ::>> ------------------------------------------------------- >>>> ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>> Java >>>> ::>> Enterprise J2EE developer tools! >>>> ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::>> _______________________________________________ >>>> ::>> sepy-macdev mailing list >>>> ::>> sep...@li... >>>> ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::>> >>>> ::> >>>> ::> >>>> ::> >>>> ::> ------------------------------------------------------- >>>> ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java >>>> ::> Enterprise J2EE developer tools! >>>> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::> _______________________________________________ >>>> ::> sepy-macdev mailing list >>>> ::> sep...@li... >>>> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> ::> >>>> :: >>>> :: >>>> :: >>>> ::------------------------------------------------------- >>>> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>>> ::Java Enterprise J2EE developer tools! >>>> ::Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> ::_______________________________________________ >>>> ::sepy-macdev mailing list >>>> ::sep...@li... >>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------- >>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> FREE Java Enterprise J2EE developer tools! >>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> _______________________________________________ >>>> sepy-macdev mailing list >>>> sep...@li... >>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE Java Enterprise J2EE developer tools! >>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> _______________________________________________ >>> sepy-macdev mailing list >>> sep...@li... >>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> sepy-macdev mailing list >> sep...@li... >> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-05 02:14:50
|
Mmhh.. Are you sure that wxpython wasn't installed on the old version ? Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of ::Isaac Rivera ::Sent: domenica 5 settembre 2004 1.22 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest :: ::OK. :: ::I upgraded python to 2.3.4 and installed wxPython. :: ::But after checking the version of python discovered that the ::shell accessed the old version, 2.3 that comes with the ::system and not the upgrade. The old version was installed in ::/usr/bin/ while the new 2.3.4 in /usr/local/bin/. :: ::Removed old, added the path to the bash PATH. nice, I can ::access python upgrade. BUT it does not access wxPython: ::"ImportError: No module named wx". :: ::Isaac :: ::On Sep 4, 2004, at 7:22 PM, Ashley McCoy wrote: :: ::> Are you trying to install wxPython or write a script with it? ::> ::> I've been reading the Python tutorial which is very helpful ::> http://www.python.org/doc/2.3.4/ ::> ::> Ashley ::> ::> Isaac Rivera wrote: ::> ::>> same problem: ::>> ::>> isaacriv$ export ::>> ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ ::>> local/bin/ ::>> isaacriv$ python ::>> Python 2.3.4 (#1, Sep 4 2004, 17:00:17) [GCC 3.3 20030304 (Apple ::>> Computer, Inc. build 1666)] on darwin Type "help", "copyright", ::>> "credits" or "license" for more information. ::>> >>> import wx ::>> Traceback (most recent call last): ::>> File "<stdin>", line 1, in ? ::>> ImportError: No module named wx ::>> ::>> ::>> On Sep 4, 2004, at 5:24 PM, Alessandro Crugnola *sephiroth* wrote: ::>> ::>>> For using wxPython, use this syntax: ::>>> ::>>> import wx ::>>> ::>>> Then you have all wxpython modules as: ::>>> ::>>> wx.Frame ::>>> wx.Dialog ::>>> ... ::>>> ::>>> ::>>> ::>>> Alessandro Crugnola - sephiroth ::>>> --------------------------------------------- ::>>> Macromedia Flash Team Volunteer ::>>> http://www.macromedia.com/go/team ::>>> Flash && PHP developer ::>>> ale...@se... ::>>> ::>>> *relax with SEPY http://www.sf.net/projects/sepy ::>>> --------------------------------------------- ::>>> ::>>> ::>>> ::-----Original Message----- ::>>> ::From: sep...@li... ::>>> ::[mailto:sep...@li...] On Behalf Of ::>>> ::Isaac Rivera ::>>> ::Sent: sabato 4 settembre 2004 22.17 ::>>> ::To: sep...@li... ::>>> ::Subject: Re: [SE|PY-macdev] newbie -- First Error from ::CVS latest ::>>> :: ::>>> ::Ok--- ::>>> :: ::>>> ::I added ":/usr/local/bin" to my path and deleted Python on ::>>> "/usr/bin" ::>>> :: ::>>> ::Now Python 2.3.4 launches on the terminal correctly ::when I ::type ::>>> python during the current shell session. ::>>> :: ::>>> ::However, I does not find wxPython from this location. I ::just the ::>>> the ::>>> ::classic: ::>>> :: ::>>> :: >>> import wxPython ::>>> ::Traceback (most recent call last): ::>>> :: File "<stdin>", line 1, in ? ::>>> ::ImportError: No module named wxPython ::>>> :: ::>>> ::2 questions: ::>>> :: ::>>> ::How do I alter PATH to this permanently and not just ::the ::current ::>>> session. ::>>> ::"export ::>>> ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/ ::>>> usr/ ::>>> ::local/bin/" ::>>> :: ::>>> ::and how do I make python see wxPython? ::>>> :: ::>>> :: ::>>> ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: ::>>> :: ::>>> ::> Remove or rename old python binary, make sure ::/usr/local/bin is ::>>> is ::> your PATH ::> ::> % echo $PATH ::> % export ::>>> PATH=$PATH:/usr/local/bin ::> % echo $PATH ::> ::> Did you get ::>>> $suite to compile? ::>>> ::> ::>>> ::> Ashley ::>>> ::> ::>>> ::> old pythoIsaac Rivera wrote: ::>>> ::> ::>>> ::>> Thats exactly what happens. ::>>> ::>> ::>>> ::>> But when I type "/usr/local/bin/python" then this happens: ::>>> ::>> ::>>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 ::>>> (Apple ::>> Computer, Inc. build 1666)] on darwin Type "help", ::>>> "copyright", ::>> "credits" or "license" for more information. ::>>> ::>> >>> ::>>> ::>> ::>>> ::>> Notice two the headers: ::>>> ::>> ::>>> ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) ::>> ::>> vs. ::>>> ::>> ::>>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) ::>> ::>> Diferent ::>>> versions and dates. The second one, the one I ::just updated ::>> ::>>> and I invoke by typing "/usr/local/bin/python" is the ::current ::>> ::>>> version. The other one accessed by just typing "python" ::is ::older, ::>>> the ::>> Panther default and the one we are all using ::unless we are ::>>> calling ::>> "/usr/local/bin/python". ::>>> ::>> ::>>> ::>> Isaac ::>>> ::>> ::>>> ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: ::>>> ::>> ::>>> ::>>> So what happens when you type 'python' or 'python2.3' in ::>>> ::your shell ? ::>>> ::>>> Normally something like this should appear: ::>>> ::>>> $ python ::>>> ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 ::>>> (Apple ::>>> Computer, build 1495)] on darwin Type "help", ::>>> ::"copyright", "credits" ::>>> ::>>> or "license" for more information. ::>>> ::>>> ::>>> ::>>>>>> ::>>> ::>>> ::>>> ::>>> Perhaps it's a path problem. On the 4Suite site it ::is ::said ::>>> that you ::>>> don't have to do the build for installing it, just ::>>> type ::>>> ::>>> python setup.py install ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> valley ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> ----- Original Message ----- ::>>> ::>>> From: "Isaac Rivera" <isa...@mi...> ::::>>> To: ::>>> <sep...@li...> ::>>> ::>>> Sent: Thursday, September 02, 2004 3:17 PM ::>>> ::Subject: Re: ::>>> [SE|PY-macdev] newbie -- First Error from CVS latest ::>>> ::>>> ::>>> ::>>>> On trying to install 4Suite in Panther I get ::>>>> ::>>>> ::>>> "command 'gcc' failed with exit status 1" ::>>> ::>>>> ::>>> ::>>>> I have upgraded XCode tools and the gcc is the new version ::>>> 3.3. ::>>> ::>>>> ::>>> ::>>>> Isaac ::>>> ::>>>> ::>>> ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: ::>>> ::>>>> ::>>> ::>>>>> I never had this error. But 4Suite should build ::and install ::>>> ::>>>>> correctly, so try a little bit around ;-) This error ::>>> ::perhaps also ::>>>>> could be a SEPY error due to changes that ::>>> Alessandro ::made - I can ::>>>>> try this out this ::evening with the ::>>> latest cvs version. ::>>> ::>>>>> ::>>> ::>>>>> valley ::>>> ::>>>>> ::>>> ::>>>>> ::>>> ::>>>>> ::>>> ::>>>>> ::>>> ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: ::>>> ::>>>>> ::>>> ::>>>>>> Thanks Valley, ::>>> ::>>>>>> ::>>> ::>>>>>> got the latest wxpython, sepy runs splash screen then ::>>> tooltips ::>>>>>> appear but splash screen stays, the document ::>>> window ::which appears ::>>>>>> under the tool tips resizes with ::>>> incorrect screen redraw ::>>>>>> ::>>>>>> Throws an errror at ::>>> command line --> below ::>>>>>> ::>>>>>> I had thought to check ::>>> through the list of dependancies you ::>>>>>> mentioned ::on the Wiki ::>>> and have found an error building 4suite ::>>>>>> that ::does not seem ::>>> to be resolved as of yet, it fails on ::>>>>>> build_ext this ::>>> appears to be a problem with python2.3 ::>>>>>> ::>>>>>> ::So I wonder ::>>> if I I would have to build python from scratch ?? ::>>> ::>>>>>> ::>>> ::>>>>>> Ashley ::>>> ::>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] ::20:32:46: ::>>> ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. ::>>> ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', ::>>> ::accel string ::>>>>>> ignored. ::>>> ::>>>>>> Traceback (most recent call last): ::>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify ::>>> ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), ::>>> ::>>>>>> title=About_title, dialog = self.dialog) ::>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, ::in __init__ ::>>> ::>>>>>> self.loadDB() ::>>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB ::>>> ::>>>>>> self.DB["values"] = DB.values() ::>>> ::>>>>>> AttributeError: _DBWithCursor instance has no ::::attribute ::>>> 'values' ::>>> ::>>>>>> ::>>> ::>>>>>> Valentin Treu wrote: ::>>> ::>>>>>> ::>>> ::>>>>>>> i also had this error. be sure that you've got ::the newest ::>>> ::>>>>>>> wxpython from here: ::>>> ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ ::>>> ::>>>>>>> ::>>> ::>>>>>>> valley ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>>> Is there a curent list of changes I need to make? ::>>> ::>>>>>>>> ::>>> ::>>>>>>>> Ashley ::>>> ::>>>>>>>> ::>>> ::>>>>>>>> First Error :: ::>>> ::>>>>>>>> ::>>> ::>>>>>>>> Traceback (most recent call last): ::>>> ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, ::in Notify ::>>> ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), ::>>> ::>>>>>>>> title=About_title, dialog = self.dialog) File ::::>>>>>>>> ::>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ ::>>> ::>>>>>>>> self.project_history = wx.FileHistory(5, ::>>> ::wx.ID_FILE11) File ::>>> ::>>>>>>>> ::>>> ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ ::>>> ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", ::>>> ::>>>>>>>> line 1072, in __init__ ::>>> ::>>>>>>>> self.this = ::misc2c.new_wxFileHistory(*_args,**_kwargs) ::>>> ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 ::argument ::>>> (2 ::>>>>>>>> given) ::>>>>>>>> ::>>>>>>>> ::>>>>>>>> ::>>> ------------------------------------------------------- ::>>> ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic ::Workshop ::>>> FREE ::>>>>>>>> Java Enterprise J2EE developer tools! ::>>> ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>>>>>>>> _______________________________________________ ::>>> ::>>>>>>>> sepy-macdev mailing list ::>>> ::>>>>>>>> sep...@li... ::>>>>>>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>>>>>>> ::>>> ::>>>>>>>> ::>>> ::>>>>>>>> ::>>> ::>>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ------------------------------------------------------- ::>>> ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop ::>>> FREE ::>>>>>>> Java Enterprise J2EE developer tools! ::>>> ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>>>>>>> _______________________________________________ ::>>> ::>>>>>>> sepy-macdev mailing list ::>>> ::>>>>>>> sep...@li... ::>>>>>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>>> ------------------------------------------------------- ::>>> ::>>>>>> This SF.Net email is sponsored by BEA Weblogic ::::Workshop ::>>> FREE Java ::>>>>>> Enterprise J2EE developer tools! ::>>> ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>>>>>> _______________________________________________ ::>>> ::>>>>>> sepy-macdev mailing list ::>>> ::>>>>>> sep...@li... ::>>>>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>>>>> ::>>> ::>>>>>> ::>>> ::>>>>> ::>>> ::>>>>> ::>>> ::>>>>> ::>>> ::>>>>> ------------------------------------------------------- ::>>> ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop ::>>> ::FREE Java ::>>>>> Enterprise J2EE developer tools! ::>>> ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>>>>> _______________________________________________ ::>>> ::>>>>> sepy-macdev mailing list ::>>> ::>>>>> sep...@li... ::>>>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>>>> ::>>> ::>>>> ::>>> ::>>>> ::>>> ::>>>> ::>>> ::>>>> ------------------------------------------------------- ::>>> ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop ::>>> ::FREE Java ::>>>> Enterprise J2EE developer tools! ::>>> ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>>>> _______________________________________________ ::>>> ::>>>> sepy-macdev mailing list ::>>> ::>>>> sep...@li... ::>>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>>> ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> ::>>> ------------------------------------------------------- ::>>> ::>>> This SF.Net email is sponsored by BEA Weblogic ::Workshop FREE ::>>> Java ::>>> Enterprise J2EE developer tools! ::>>> ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>>> _______________________________________________ ::>>> ::>>> sepy-macdev mailing list ::>>> ::>>> sep...@li... ::>>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>> ::>>> ::>> ::>>> ::>> ::>>> ::>> ::>>> ::>> ------------------------------------------------------- ::>>> ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::>>> Java ::>> Enterprise J2EE developer tools! ::>>> ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::>> _______________________________________________ ::>>> ::>> sepy-macdev mailing list ::>>> ::>> sep...@li... ::>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>> ::>>> ::> ::>>> ::> ::>>> ::> ::>>> ::> ------------------------------------------------------- ::>>> ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::>>> Java ::> Enterprise J2EE developer tools! ::>>> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::> _______________________________________________ ::>>> ::> sepy-macdev mailing list ::>>> ::> sep...@li... ::> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::>>> :: ::>>> :: ::>>> :: ::>>> ::------------------------------------------------------- ::>>> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::>>> ::Java Enterprise J2EE developer tools! ::>>> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> ::_______________________________________________ ::>>> ::sepy-macdev mailing list ::>>> ::sep...@li... ::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>>> ::>>> ::>>> ::>>> ------------------------------------------------------- ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::>>> Enterprise J2EE developer tools! ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> _______________________________________________ ::>>> sepy-macdev mailing list ::>>> sep...@li... ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>> ::>> ::>> ::>> ------------------------------------------------------- ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::>> Enterprise J2EE developer tools! ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>> _______________________________________________ ::>> sepy-macdev mailing list ::>> sep...@li... ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Isaac R. <isa...@mi...> - 2004-09-05 00:29:44
|
OK. I upgraded python to 2.3.4 and installed wxPython. But after checking the version of python discovered that the shell accessed the old version, 2.3 that comes with the system and not the upgrade. The old version was installed in /usr/bin/ while the new 2.3.4 in /usr/local/bin/. Removed old, added the path to the bash PATH. nice, I can access python upgrade. BUT it does not access wxPython: "ImportError: No module named wx". Isaac On Sep 4, 2004, at 7:22 PM, Ashley McCoy wrote: > Are you trying to install wxPython or write a script with it? > > I've been reading the Python tutorial which is very helpful > http://www.python.org/doc/2.3.4/ > > Ashley > > Isaac Rivera wrote: > >> same problem: >> >> isaacriv$ export >> PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ >> local/bin/ >> isaacriv$ python >> Python 2.3.4 (#1, Sep 4 2004, 17:00:17) >> [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin >> Type "help", "copyright", "credits" or "license" for more information. >> >>> import wx >> Traceback (most recent call last): >> File "<stdin>", line 1, in ? >> ImportError: No module named wx >> >> >> On Sep 4, 2004, at 5:24 PM, Alessandro Crugnola *sephiroth* wrote: >> >>> For using wxPython, use this syntax: >>> >>> import wx >>> >>> Then you have all wxpython modules as: >>> >>> wx.Frame >>> wx.Dialog >>> ... >>> >>> >>> >>> Alessandro Crugnola - sephiroth >>> --------------------------------------------- >>> Macromedia Flash Team Volunteer >>> http://www.macromedia.com/go/team >>> Flash && PHP developer >>> ale...@se... >>> >>> *relax with SEPY http://www.sf.net/projects/sepy >>> --------------------------------------------- >>> >>> >>> ::-----Original Message----- >>> ::From: sep...@li... >>> ::[mailto:sep...@li...] On Behalf Of >>> ::Isaac Rivera >>> ::Sent: sabato 4 settembre 2004 22.17 >>> ::To: sep...@li... >>> ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >>> :: >>> ::Ok--- >>> :: >>> ::I added ":/usr/local/bin" to my path and deleted Python on >>> "/usr/bin" >>> :: >>> ::Now Python 2.3.4 launches on the terminal correctly when I >>> ::type python during the current shell session. >>> :: >>> ::However, I does not find wxPython from this location. I just the >>> the >>> ::classic: >>> :: >>> :: >>> import wxPython >>> ::Traceback (most recent call last): >>> :: File "<stdin>", line 1, in ? >>> ::ImportError: No module named wxPython >>> :: >>> ::2 questions: >>> :: >>> ::How do I alter PATH to this permanently and not just the >>> ::current session. >>> ::"export >>> ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/ >>> usr/ >>> ::local/bin/" >>> :: >>> ::and how do I make python see wxPython? >>> :: >>> :: >>> ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: >>> :: >>> ::> Remove or rename old python binary, make sure /usr/local/bin is >>> is >>> ::> your PATH >>> ::> >>> ::> % echo $PATH >>> ::> % export PATH=$PATH:/usr/local/bin >>> ::> % echo $PATH >>> ::> >>> ::> Did you get $suite to compile? >>> ::> >>> ::> Ashley >>> ::> >>> ::> old pythoIsaac Rivera wrote: >>> ::> >>> ::>> Thats exactly what happens. >>> ::>> >>> ::>> But when I type "/usr/local/bin/python" then this happens: >>> ::>> >>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 >>> (Apple >>> ::>> Computer, Inc. build 1666)] on darwin Type "help", "copyright", >>> ::>> "credits" or "license" for more information. >>> ::>> >>> >>> ::>> >>> ::>> Notice two the headers: >>> ::>> >>> ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >>> ::>> >>> ::>> vs. >>> ::>> >>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >>> ::>> >>> ::>> Diferent versions and dates. The second one, the one I >>> ::just updated >>> ::>> and I invoke by typing "/usr/local/bin/python" is the current >>> ::>> version. The other one accessed by just typing "python" is >>> ::older, the >>> ::>> Panther default and the one we are all using unless we are >>> calling >>> ::>> "/usr/local/bin/python". >>> ::>> >>> ::>> Isaac >>> ::>> >>> ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: >>> ::>> >>> ::>>> So what happens when you type 'python' or 'python2.3' in >>> ::your shell ? >>> ::>>> Normally something like this should appear: >>> ::>>> $ python >>> ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 (Apple >>> ::>>> Computer, build 1495)] on darwin Type "help", >>> ::"copyright", "credits" >>> ::>>> or "license" for more information. >>> ::>>> >>> ::>>>>>> >>> ::>>> >>> ::>>> Perhaps it's a path problem. On the 4Suite site it is >>> ::said that you >>> ::>>> don't have to do the build for installing it, just type >>> ::>>> python setup.py install >>> ::>>> >>> ::>>> >>> ::>>> valley >>> ::>>> >>> ::>>> >>> ::>>> >>> ::>>> ----- Original Message ----- >>> ::>>> From: "Isaac Rivera" <isa...@mi...> >>> ::>>> To: <sep...@li...> >>> ::>>> Sent: Thursday, September 02, 2004 3:17 PM >>> ::>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS >>> latest >>> ::>>> >>> ::>>> >>> ::>>>> On trying to install 4Suite in Panther I get >>> ::>>>> >>> ::>>>> "command 'gcc' failed with exit status 1" >>> ::>>>> >>> ::>>>> I have upgraded XCode tools and the gcc is the new version >>> 3.3. >>> ::>>>> >>> ::>>>> Isaac >>> ::>>>> >>> ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: >>> ::>>>> >>> ::>>>>> I never had this error. But 4Suite should build and install >>> ::>>>>> correctly, so try a little bit around ;-) This error >>> ::perhaps also >>> ::>>>>> could be a SEPY error due to changes that Alessandro >>> ::made - I can >>> ::>>>>> try this out this evening with the latest cvs version. >>> ::>>>>> >>> ::>>>>> valley >>> ::>>>>> >>> ::>>>>> >>> ::>>>>> >>> ::>>>>> >>> ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>> ::>>>>> >>> ::>>>>>> Thanks Valley, >>> ::>>>>>> >>> ::>>>>>> got the latest wxpython, sepy runs splash screen then >>> tooltips >>> ::>>>>>> appear but splash screen stays, the document window >>> ::which appears >>> ::>>>>>> under the tool tips resizes with incorrect screen redraw >>> ::>>>>>> >>> ::>>>>>> Throws an errror at command line --> below >>> ::>>>>>> >>> ::>>>>>> I had thought to check through the list of dependancies you >>> ::>>>>>> mentioned on the Wiki and have found an error building >>> 4suite >>> ::>>>>>> that does not seem to be resolved as of yet, it fails on >>> ::>>>>>> build_ext this appears to be a problem with python2.3 >>> ::>>>>>> >>> ::>>>>>> So I wonder if I I would have to build python from scratch >>> ?? >>> ::>>>>>> >>> ::>>>>>> Ashley >>> ::>>>>>> >>> ::>>>>>> >>> ::>>>>>> >>> ::>>>>>> >>> ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] 20:32:46: >>> ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. >>> ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', >>> ::accel string >>> ::>>>>>> ignored. >>> ::>>>>>> Traceback (most recent call last): >>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>> ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>> ::>>>>>> title=About_title, dialog = self.dialog) >>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ >>> ::>>>>>> self.loadDB() >>> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB >>> ::>>>>>> self.DB["values"] = DB.values() >>> ::>>>>>> AttributeError: _DBWithCursor instance has no >>> ::attribute 'values' >>> ::>>>>>> >>> ::>>>>>> Valentin Treu wrote: >>> ::>>>>>> >>> ::>>>>>>> i also had this error. be sure that you've got the newest >>> ::>>>>>>> wxpython from here: >>> ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ >>> ::>>>>>>> >>> ::>>>>>>> valley >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>>> Is there a curent list of changes I need to make? >>> ::>>>>>>>> >>> ::>>>>>>>> Ashley >>> ::>>>>>>>> >>> ::>>>>>>>> First Error :: >>> ::>>>>>>>> >>> ::>>>>>>>> Traceback (most recent call last): >>> ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>> ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>> ::>>>>>>>> title=About_title, dialog = self.dialog) File >>> ::>>>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ >>> ::>>>>>>>> self.project_history = wx.FileHistory(5, >>> ::wx.ID_FILE11) File >>> ::>>>>>>>> >>> ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>> ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", >>> ::>>>>>>>> line 1072, in __init__ >>> ::>>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) >>> ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 >>> ::>>>>>>>> given) >>> ::>>>>>>>> >>> ::>>>>>>>> >>> ::>>>>>>>> ------------------------------------------------------- >>> ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE >>> ::>>>>>>>> Java Enterprise J2EE developer tools! >>> ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>>>>>>>> _______________________________________________ >>> ::>>>>>>>> sepy-macdev mailing list >>> ::>>>>>>>> sep...@li... >>> ::>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>>>>>>>> >>> ::>>>>>>>> >>> ::>>>>>>>> >>> ::>>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> ------------------------------------------------------- >>> ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE >>> ::>>>>>>> Java Enterprise J2EE developer tools! >>> ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>>>>>>> _______________________________________________ >>> ::>>>>>>> sepy-macdev mailing list >>> ::>>>>>>> sep...@li... >>> ::>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>>> >>> ::>>>>>> >>> ::>>>>>> >>> ::>>>>>> >>> ::>>>>>> ------------------------------------------------------- >>> ::>>>>>> This SF.Net email is sponsored by BEA Weblogic >>> ::Workshop FREE Java >>> ::>>>>>> Enterprise J2EE developer tools! >>> ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>>>>>> _______________________________________________ >>> ::>>>>>> sepy-macdev mailing list >>> ::>>>>>> sep...@li... >>> ::>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>>>>>> >>> ::>>>>>> >>> ::>>>>> >>> ::>>>>> >>> ::>>>>> >>> ::>>>>> ------------------------------------------------------- >>> ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> ::FREE Java >>> ::>>>>> Enterprise J2EE developer tools! >>> ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>>>>> _______________________________________________ >>> ::>>>>> sepy-macdev mailing list >>> ::>>>>> sep...@li... >>> ::>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>>>>> >>> ::>>>> >>> ::>>>> >>> ::>>>> >>> ::>>>> ------------------------------------------------------- >>> ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> ::FREE Java >>> ::>>>> Enterprise J2EE developer tools! >>> ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>>>> _______________________________________________ >>> ::>>>> sepy-macdev mailing list >>> ::>>>> sep...@li... >>> ::>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>>>> >>> ::>>> >>> ::>>> >>> ::>>> >>> ::>>> ------------------------------------------------------- >>> ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>> Java >>> ::>>> Enterprise J2EE developer tools! >>> ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>>> _______________________________________________ >>> ::>>> sepy-macdev mailing list >>> ::>>> sep...@li... >>> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>>> >>> ::>> >>> ::>> >>> ::>> >>> ::>> ------------------------------------------------------- >>> ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>> Java >>> ::>> Enterprise J2EE developer tools! >>> ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::>> _______________________________________________ >>> ::>> sepy-macdev mailing list >>> ::>> sep...@li... >>> ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::>> >>> ::> >>> ::> >>> ::> >>> ::> ------------------------------------------------------- >>> ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java >>> ::> Enterprise J2EE developer tools! >>> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::> _______________________________________________ >>> ::> sepy-macdev mailing list >>> ::> sep...@li... >>> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::> >>> :: >>> :: >>> :: >>> ::------------------------------------------------------- >>> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE >>> ::Java Enterprise J2EE developer tools! >>> ::Get your free copy of BEA WebLogic Workshop 8.1 today. >>> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> ::_______________________________________________ >>> ::sepy-macdev mailing list >>> ::sep...@li... >>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE Java Enterprise J2EE developer tools! >>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> _______________________________________________ >>> sepy-macdev mailing list >>> sep...@li... >>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> sepy-macdev mailing list >> sep...@li... >> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Ashley M. <as...@gv...> - 2004-09-04 23:24:12
|
Are you trying to install wxPython or write a script with it? I've been reading the Python tutorial which is very helpful http://www.python.org/doc/2.3.4/ Ashley Isaac Rivera wrote: > same problem: > > isaacriv$ export > PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ > local/bin/ > isaacriv$ python > Python 2.3.4 (#1, Sep 4 2004, 17:00:17) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> import wx > Traceback (most recent call last): > File "<stdin>", line 1, in ? > ImportError: No module named wx > > > On Sep 4, 2004, at 5:24 PM, Alessandro Crugnola *sephiroth* wrote: > >> For using wxPython, use this syntax: >> >> import wx >> >> Then you have all wxpython modules as: >> >> wx.Frame >> wx.Dialog >> ... >> >> >> >> Alessandro Crugnola - sephiroth >> --------------------------------------------- >> Macromedia Flash Team Volunteer >> http://www.macromedia.com/go/team >> Flash && PHP developer >> ale...@se... >> >> *relax with SEPY http://www.sf.net/projects/sepy >> --------------------------------------------- >> >> >> ::-----Original Message----- >> ::From: sep...@li... >> ::[mailto:sep...@li...] On Behalf Of >> ::Isaac Rivera >> ::Sent: sabato 4 settembre 2004 22.17 >> ::To: sep...@li... >> ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >> :: >> ::Ok--- >> :: >> ::I added ":/usr/local/bin" to my path and deleted Python on "/usr/bin" >> :: >> ::Now Python 2.3.4 launches on the terminal correctly when I >> ::type python during the current shell session. >> :: >> ::However, I does not find wxPython from this location. I just the the >> ::classic: >> :: >> :: >>> import wxPython >> ::Traceback (most recent call last): >> :: File "<stdin>", line 1, in ? >> ::ImportError: No module named wxPython >> :: >> ::2 questions: >> :: >> ::How do I alter PATH to this permanently and not just the >> ::current session. >> ::"export >> ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ >> ::local/bin/" >> :: >> ::and how do I make python see wxPython? >> :: >> :: >> ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: >> :: >> ::> Remove or rename old python binary, make sure /usr/local/bin is is >> ::> your PATH >> ::> >> ::> % echo $PATH >> ::> % export PATH=$PATH:/usr/local/bin >> ::> % echo $PATH >> ::> >> ::> Did you get $suite to compile? >> ::> >> ::> Ashley >> ::> >> ::> old pythoIsaac Rivera wrote: >> ::> >> ::>> Thats exactly what happens. >> ::>> >> ::>> But when I type "/usr/local/bin/python" then this happens: >> ::>> >> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 (Apple >> ::>> Computer, Inc. build 1666)] on darwin Type "help", "copyright", >> ::>> "credits" or "license" for more information. >> ::>> >>> >> ::>> >> ::>> Notice two the headers: >> ::>> >> ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >> ::>> >> ::>> vs. >> ::>> >> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >> ::>> >> ::>> Diferent versions and dates. The second one, the one I >> ::just updated >> ::>> and I invoke by typing "/usr/local/bin/python" is the current >> ::>> version. The other one accessed by just typing "python" is >> ::older, the >> ::>> Panther default and the one we are all using unless we are calling >> ::>> "/usr/local/bin/python". >> ::>> >> ::>> Isaac >> ::>> >> ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: >> ::>> >> ::>>> So what happens when you type 'python' or 'python2.3' in >> ::your shell ? >> ::>>> Normally something like this should appear: >> ::>>> $ python >> ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 (Apple >> ::>>> Computer, build 1495)] on darwin Type "help", >> ::"copyright", "credits" >> ::>>> or "license" for more information. >> ::>>> >> ::>>>>>> >> ::>>> >> ::>>> Perhaps it's a path problem. On the 4Suite site it is >> ::said that you >> ::>>> don't have to do the build for installing it, just type >> ::>>> python setup.py install >> ::>>> >> ::>>> >> ::>>> valley >> ::>>> >> ::>>> >> ::>>> >> ::>>> ----- Original Message ----- >> ::>>> From: "Isaac Rivera" <isa...@mi...> >> ::>>> To: <sep...@li...> >> ::>>> Sent: Thursday, September 02, 2004 3:17 PM >> ::>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >> ::>>> >> ::>>> >> ::>>>> On trying to install 4Suite in Panther I get >> ::>>>> >> ::>>>> "command 'gcc' failed with exit status 1" >> ::>>>> >> ::>>>> I have upgraded XCode tools and the gcc is the new version 3.3. >> ::>>>> >> ::>>>> Isaac >> ::>>>> >> ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: >> ::>>>> >> ::>>>>> I never had this error. But 4Suite should build and install >> ::>>>>> correctly, so try a little bit around ;-) This error >> ::perhaps also >> ::>>>>> could be a SEPY error due to changes that Alessandro >> ::made - I can >> ::>>>>> try this out this evening with the latest cvs version. >> ::>>>>> >> ::>>>>> valley >> ::>>>>> >> ::>>>>> >> ::>>>>> >> ::>>>>> >> ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >> ::>>>>> >> ::>>>>>> Thanks Valley, >> ::>>>>>> >> ::>>>>>> got the latest wxpython, sepy runs splash screen then tooltips >> ::>>>>>> appear but splash screen stays, the document window >> ::which appears >> ::>>>>>> under the tool tips resizes with incorrect screen redraw >> ::>>>>>> >> ::>>>>>> Throws an errror at command line --> below >> ::>>>>>> >> ::>>>>>> I had thought to check through the list of dependancies you >> ::>>>>>> mentioned on the Wiki and have found an error building 4suite >> ::>>>>>> that does not seem to be resolved as of yet, it fails on >> ::>>>>>> build_ext this appears to be a problem with python2.3 >> ::>>>>>> >> ::>>>>>> So I wonder if I I would have to build python from scratch ?? >> ::>>>>>> >> ::>>>>>> Ashley >> ::>>>>>> >> ::>>>>>> >> ::>>>>>> >> ::>>>>>> >> ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] 20:32:46: >> ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. >> ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', >> ::accel string >> ::>>>>>> ignored. >> ::>>>>>> Traceback (most recent call last): >> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >> ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), >> ::>>>>>> title=About_title, dialog = self.dialog) >> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ >> ::>>>>>> self.loadDB() >> ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB >> ::>>>>>> self.DB["values"] = DB.values() >> ::>>>>>> AttributeError: _DBWithCursor instance has no >> ::attribute 'values' >> ::>>>>>> >> ::>>>>>> Valentin Treu wrote: >> ::>>>>>> >> ::>>>>>>> i also had this error. be sure that you've got the newest >> ::>>>>>>> wxpython from here: >> ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ >> ::>>>>>>> >> ::>>>>>>> valley >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>>> Is there a curent list of changes I need to make? >> ::>>>>>>>> >> ::>>>>>>>> Ashley >> ::>>>>>>>> >> ::>>>>>>>> First Error :: >> ::>>>>>>>> >> ::>>>>>>>> Traceback (most recent call last): >> ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >> ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), >> ::>>>>>>>> title=About_title, dialog = self.dialog) File >> ::>>>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ >> ::>>>>>>>> self.project_history = wx.FileHistory(5, >> ::wx.ID_FILE11) File >> ::>>>>>>>> >> ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >> ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", >> ::>>>>>>>> line 1072, in __init__ >> ::>>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) >> ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 >> ::>>>>>>>> given) >> ::>>>>>>>> >> ::>>>>>>>> >> ::>>>>>>>> ------------------------------------------------------- >> ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >> ::>>>>>>>> Java Enterprise J2EE developer tools! >> ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>>>>>>>> _______________________________________________ >> ::>>>>>>>> sepy-macdev mailing list >> ::>>>>>>>> sep...@li... >> ::>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>>>>>>>> >> ::>>>>>>>> >> ::>>>>>>>> >> ::>>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> ------------------------------------------------------- >> ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE >> ::>>>>>>> Java Enterprise J2EE developer tools! >> ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>>>>>>> _______________________________________________ >> ::>>>>>>> sepy-macdev mailing list >> ::>>>>>>> sep...@li... >> ::>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>>> >> ::>>>>>> >> ::>>>>>> >> ::>>>>>> >> ::>>>>>> ------------------------------------------------------- >> ::>>>>>> This SF.Net email is sponsored by BEA Weblogic >> ::Workshop FREE Java >> ::>>>>>> Enterprise J2EE developer tools! >> ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>>>>>> _______________________________________________ >> ::>>>>>> sepy-macdev mailing list >> ::>>>>>> sep...@li... >> ::>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>>>>>> >> ::>>>>>> >> ::>>>>> >> ::>>>>> >> ::>>>>> >> ::>>>>> ------------------------------------------------------- >> ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >> ::FREE Java >> ::>>>>> Enterprise J2EE developer tools! >> ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>>>>> _______________________________________________ >> ::>>>>> sepy-macdev mailing list >> ::>>>>> sep...@li... >> ::>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>>>>> >> ::>>>> >> ::>>>> >> ::>>>> >> ::>>>> ------------------------------------------------------- >> ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >> ::FREE Java >> ::>>>> Enterprise J2EE developer tools! >> ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>>>> _______________________________________________ >> ::>>>> sepy-macdev mailing list >> ::>>>> sep...@li... >> ::>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>>>> >> ::>>> >> ::>>> >> ::>>> >> ::>>> ------------------------------------------------------- >> ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java >> ::>>> Enterprise J2EE developer tools! >> ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>>> _______________________________________________ >> ::>>> sepy-macdev mailing list >> ::>>> sep...@li... >> ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>>> >> ::>> >> ::>> >> ::>> >> ::>> ------------------------------------------------------- >> ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java >> ::>> Enterprise J2EE developer tools! >> ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::>> _______________________________________________ >> ::>> sepy-macdev mailing list >> ::>> sep...@li... >> ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::>> >> ::> >> ::> >> ::> >> ::> ------------------------------------------------------- >> ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java >> ::> Enterprise J2EE developer tools! >> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::> _______________________________________________ >> ::> sepy-macdev mailing list >> ::> sep...@li... >> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::> >> :: >> :: >> :: >> ::------------------------------------------------------- >> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE >> ::Java Enterprise J2EE developer tools! >> ::Get your free copy of BEA WebLogic Workshop 8.1 today. >> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> ::_______________________________________________ >> ::sepy-macdev mailing list >> ::sep...@li... >> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> sepy-macdev mailing list >> sep...@li... >> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Isaac R. <isa...@mi...> - 2004-09-04 22:55:08
|
same problem: isaacriv$ export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ local/bin/ isaacriv$ python Python 2.3.4 (#1, Sep 4 2004, 17:00:17) [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import wx Traceback (most recent call last): File "<stdin>", line 1, in ? ImportError: No module named wx On Sep 4, 2004, at 5:24 PM, Alessandro Crugnola *sephiroth* wrote: > For using wxPython, use this syntax: > > import wx > > Then you have all wxpython modules as: > > wx.Frame > wx.Dialog > ... > > > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of > ::Isaac Rivera > ::Sent: sabato 4 settembre 2004 22.17 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest > :: > ::Ok--- > :: > ::I added ":/usr/local/bin" to my path and deleted Python on "/usr/bin" > :: > ::Now Python 2.3.4 launches on the terminal correctly when I > ::type python during the current shell session. > :: > ::However, I does not find wxPython from this location. I just the the > ::classic: > :: > :: >>> import wxPython > ::Traceback (most recent call last): > :: File "<stdin>", line 1, in ? > ::ImportError: No module named wxPython > :: > ::2 questions: > :: > ::How do I alter PATH to this permanently and not just the > ::current session. > ::"export > ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ > ::local/bin/" > :: > ::and how do I make python see wxPython? > :: > :: > ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: > :: > ::> Remove or rename old python binary, make sure /usr/local/bin is is > ::> your PATH > ::> > ::> % echo $PATH > ::> % export PATH=$PATH:/usr/local/bin > ::> % echo $PATH > ::> > ::> Did you get $suite to compile? > ::> > ::> Ashley > ::> > ::> old pythoIsaac Rivera wrote: > ::> > ::>> Thats exactly what happens. > ::>> > ::>> But when I type "/usr/local/bin/python" then this happens: > ::>> > ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 (Apple > ::>> Computer, Inc. build 1666)] on darwin Type "help", "copyright", > ::>> "credits" or "license" for more information. > ::>> >>> > ::>> > ::>> Notice two the headers: > ::>> > ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) > ::>> > ::>> vs. > ::>> > ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) > ::>> > ::>> Diferent versions and dates. The second one, the one I > ::just updated > ::>> and I invoke by typing "/usr/local/bin/python" is the current > ::>> version. The other one accessed by just typing "python" is > ::older, the > ::>> Panther default and the one we are all using unless we are calling > ::>> "/usr/local/bin/python". > ::>> > ::>> Isaac > ::>> > ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: > ::>> > ::>>> So what happens when you type 'python' or 'python2.3' in > ::your shell ? > ::>>> Normally something like this should appear: > ::>>> $ python > ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 (Apple > ::>>> Computer, build 1495)] on darwin Type "help", > ::"copyright", "credits" > ::>>> or "license" for more information. > ::>>> > ::>>>>>> > ::>>> > ::>>> Perhaps it's a path problem. On the 4Suite site it is > ::said that you > ::>>> don't have to do the build for installing it, just type > ::>>> python setup.py install > ::>>> > ::>>> > ::>>> valley > ::>>> > ::>>> > ::>>> > ::>>> ----- Original Message ----- > ::>>> From: "Isaac Rivera" <isa...@mi...> > ::>>> To: <sep...@li...> > ::>>> Sent: Thursday, September 02, 2004 3:17 PM > ::>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest > ::>>> > ::>>> > ::>>>> On trying to install 4Suite in Panther I get > ::>>>> > ::>>>> "command 'gcc' failed with exit status 1" > ::>>>> > ::>>>> I have upgraded XCode tools and the gcc is the new version 3.3. > ::>>>> > ::>>>> Isaac > ::>>>> > ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: > ::>>>> > ::>>>>> I never had this error. But 4Suite should build and install > ::>>>>> correctly, so try a little bit around ;-) This error > ::perhaps also > ::>>>>> could be a SEPY error due to changes that Alessandro > ::made - I can > ::>>>>> try this out this evening with the latest cvs version. > ::>>>>> > ::>>>>> valley > ::>>>>> > ::>>>>> > ::>>>>> > ::>>>>> > ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: > ::>>>>> > ::>>>>>> Thanks Valley, > ::>>>>>> > ::>>>>>> got the latest wxpython, sepy runs splash screen then tooltips > ::>>>>>> appear but splash screen stays, the document window > ::which appears > ::>>>>>> under the tool tips resizes with incorrect screen redraw > ::>>>>>> > ::>>>>>> Throws an errror at command line --> below > ::>>>>>> > ::>>>>>> I had thought to check through the list of dependancies you > ::>>>>>> mentioned on the Wiki and have found an error building 4suite > ::>>>>>> that does not seem to be resolved as of yet, it fails on > ::>>>>>> build_ext this appears to be a problem with python2.3 > ::>>>>>> > ::>>>>>> So I wonder if I I would have to build python from scratch ?? > ::>>>>>> > ::>>>>>> Ashley > ::>>>>>> > ::>>>>>> > ::>>>>>> > ::>>>>>> > ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] 20:32:46: > ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. > ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', > ::accel string > ::>>>>>> ignored. > ::>>>>>> Traceback (most recent call last): > ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify > ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), > ::>>>>>> title=About_title, dialog = self.dialog) > ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ > ::>>>>>> self.loadDB() > ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB > ::>>>>>> self.DB["values"] = DB.values() > ::>>>>>> AttributeError: _DBWithCursor instance has no > ::attribute 'values' > ::>>>>>> > ::>>>>>> Valentin Treu wrote: > ::>>>>>> > ::>>>>>>> i also had this error. be sure that you've got the newest > ::>>>>>>> wxpython from here: > ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ > ::>>>>>>> > ::>>>>>>> valley > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>>>> Is there a curent list of changes I need to make? > ::>>>>>>>> > ::>>>>>>>> Ashley > ::>>>>>>>> > ::>>>>>>>> First Error :: > ::>>>>>>>> > ::>>>>>>>> Traceback (most recent call last): > ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify > ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), > ::>>>>>>>> title=About_title, dialog = self.dialog) File > ::>>>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ > ::>>>>>>>> self.project_history = wx.FileHistory(5, > ::wx.ID_FILE11) File > ::>>>>>>>> > ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ > ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", > ::>>>>>>>> line 1072, in __init__ > ::>>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) > ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 > ::>>>>>>>> given) > ::>>>>>>>> > ::>>>>>>>> > ::>>>>>>>> ------------------------------------------------------- > ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::>>>>>>>> Java Enterprise J2EE developer tools! > ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>>>>>>>> _______________________________________________ > ::>>>>>>>> sepy-macdev mailing list > ::>>>>>>>> sep...@li... > ::>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>>>>>>>> > ::>>>>>>>> > ::>>>>>>>> > ::>>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> ------------------------------------------------------- > ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::>>>>>>> Java Enterprise J2EE developer tools! > ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>>>>>>> _______________________________________________ > ::>>>>>>> sepy-macdev mailing list > ::>>>>>>> sep...@li... > ::>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>>>>>>> > ::>>>>>>> > ::>>>>>>> > ::>>>>>> > ::>>>>>> > ::>>>>>> > ::>>>>>> ------------------------------------------------------- > ::>>>>>> This SF.Net email is sponsored by BEA Weblogic > ::Workshop FREE Java > ::>>>>>> Enterprise J2EE developer tools! > ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>>>>>> _______________________________________________ > ::>>>>>> sepy-macdev mailing list > ::>>>>>> sep...@li... > ::>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>>>>>> > ::>>>>>> > ::>>>>> > ::>>>>> > ::>>>>> > ::>>>>> ------------------------------------------------------- > ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE Java > ::>>>>> Enterprise J2EE developer tools! > ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>>>>> _______________________________________________ > ::>>>>> sepy-macdev mailing list > ::>>>>> sep...@li... > ::>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>>>>> > ::>>>> > ::>>>> > ::>>>> > ::>>>> ------------------------------------------------------- > ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE Java > ::>>>> Enterprise J2EE developer tools! > ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>>>> _______________________________________________ > ::>>>> sepy-macdev mailing list > ::>>>> sep...@li... > ::>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>>>> > ::>>> > ::>>> > ::>>> > ::>>> ------------------------------------------------------- > ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::>>> Enterprise J2EE developer tools! > ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>>> _______________________________________________ > ::>>> sepy-macdev mailing list > ::>>> sep...@li... > ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>>> > ::>> > ::>> > ::>> > ::>> ------------------------------------------------------- > ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::>> Enterprise J2EE developer tools! > ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::>> _______________________________________________ > ::>> sepy-macdev mailing list > ::>> sep...@li... > ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::>> > ::> > ::> > ::> > ::> ------------------------------------------------------- > ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::> Enterprise J2EE developer tools! > ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> _______________________________________________ > ::> sepy-macdev mailing list > ::> sep...@li... > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Ashley M. <as...@gv...> - 2004-09-04 21:51:57
|
If you do ls -la in /usr/local/bin you will see ... -rw-r--r-- 1 amccoy staff 40 9 Nov 2003 pyshell.py lrwxr-xr-x 1 amccoy staff 9 3 Sep 08:31 python -> python2.3 lrwxr-xr-x 1 amccoy staff 60 3 Sep 08:31 python2.3 -> /Library/Frameworks/Python.framework/Versions/2.3/bin/python lrwxr-xr-x 1 amccoy staff 10 3 Sep 08:31 pythonw -> pythonw2.3 -rwxr-xr-x 1 amccoy staff 115 3 Sep 08:31 pythonw2.3 ... on the left are the permissions on the files in three sets r read w write x execute for Owner, Group and everyone ( do get info in the finder and expand Ownership and Permissions ) the blank at the start is for file it can also be a d for directory or in this case l for link, a link is like a shortcut, unix style type man ln at the command line. Setting a enviroment variable permenently, this is what $PATH is . Using shell bash (check by typing echo $SHELL) In your home directory a file called .bashrc is read on login add export $PATH="$PATH:/dir/to/add:/seperate/entries/with/colan:/no/trailing/slash" (instuctions apply to OSX.3 which uses bash as default shell) Quick look at google hits http://www.ss64.com/osx/ there is lots on Unix :) Ashley Isaac Rivera wrote: > Ok--- > > I added ":/usr/local/bin" to my path and deleted Python on "/usr/bin" > > Now Python 2.3.4 launches on the terminal correctly when I type > python during the current shell session. > > However, I does not find wxPython from this location. I just the the > classic: > > >>> import wxPython > Traceback (most recent call last): > File "<stdin>", line 1, in ? > ImportError: No module named wxPython > > 2 questions: > > How do I alter PATH to this permanently and not just the current > session. > "export > PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ > local/bin/" > > and how do I make python see wxPython? > > > On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: > >> Remove or rename old python binary, make sure /usr/local/bin is is >> your PATH >> >> % echo $PATH >> % export PATH=$PATH:/usr/local/bin >> % echo $PATH >> >> Did you get $suite to compile? >> >> Ashley >> >> old pythoIsaac Rivera wrote: >> >>> Thats exactly what happens. >>> >>> But when I type "/usr/local/bin/python" then this happens: >>> >>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >>> [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin >>> Type "help", "copyright", "credits" or "license" for more information. >>> >>> >>> >>> Notice two the headers: >>> >>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >>> >>> vs. >>> >>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >>> >>> Diferent versions and dates. The second one, the one I just updated >>> and I invoke by typing "/usr/local/bin/python" is the current >>> version. The other one accessed by just typing "python" is older, >>> the Panther default and the one we are all using unless we are >>> calling "/usr/local/bin/python". >>> >>> Isaac >>> >>> On Sep 2, 2004, at 2:08 PM, valley wrote: >>> >>>> So what happens when you type 'python' or 'python2.3' in your shell ? >>>> Normally something like this should appear: >>>> $ python >>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >>>> [GCC 3.3 20030304 (Apple Computer, build 1495)] on darwin >>>> Type "help", "copyright", "credits" or "license" for more >>>> information. >>>> >>>>>>> >>>> >>>> Perhaps it's a path problem. On the 4Suite site it is said that you >>>> don't have to do the build for installing it, just type >>>> python setup.py install >>>> >>>> >>>> valley >>>> >>>> >>>> >>>> ----- Original Message ----- >>>> From: "Isaac Rivera" <isa...@mi...> >>>> To: <sep...@li...> >>>> Sent: Thursday, September 02, 2004 3:17 PM >>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >>>> >>>> >>>>> On trying to install 4Suite in Panther I get >>>>> >>>>> "command 'gcc' failed with exit status 1" >>>>> >>>>> I have upgraded XCode tools and the gcc is the new version 3.3. >>>>> >>>>> Isaac >>>>> >>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: >>>>> >>>>>> I never had this error. But 4Suite should build and install >>>>>> correctly, so try a little bit around ;-) >>>>>> This error perhaps also could be a SEPY error due to changes >>>>>> that Alessandro made - I can try this out this evening with >>>>>> the latest cvs version. >>>>>> >>>>>> valley >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>>>> >>>>>>> Thanks Valley, >>>>>>> >>>>>>> got the latest wxpython, sepy runs splash screen then tooltips >>>>>>> appear >>>>>>> but splash screen stays, the document window which appears >>>>>>> under the >>>>>>> tool tips resizes with incorrect screen redraw >>>>>>> >>>>>>> Throws an errror at command line --> below >>>>>>> >>>>>>> I had thought to check through the list of dependancies you >>>>>>> mentioned >>>>>>> on >>>>>>> the Wiki and have found an error building 4suite that does not >>>>>>> seem to >>>>>>> be resolved as of yet, it fails on build_ext this appears to be a >>>>>>> problem with python2.3 >>>>>>> >>>>>>> So I wonder if I I would have to build python from scratch ?? >>>>>>> >>>>>>> Ashley >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw >>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', accel string >>>>>>> ignored. >>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', accel string >>>>>>> ignored. >>>>>>> Traceback (most recent call last): >>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>>>>> title=About_title, >>>>>>> dialog = self.dialog) >>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ >>>>>>> self.loadDB() >>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB >>>>>>> self.DB["values"] = DB.values() >>>>>>> AttributeError: _DBWithCursor instance has no attribute 'values' >>>>>>> >>>>>>> Valentin Treu wrote: >>>>>>> >>>>>>>> i also had this error. be sure that you've got the >>>>>>>> newest wxpython from here: >>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ >>>>>>>> >>>>>>>> valley >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>>> Is there a curent list of changes I need to make? >>>>>>>>> >>>>>>>>> Ashley >>>>>>>>> >>>>>>>>> First Error :: >>>>>>>>> >>>>>>>>> Traceback (most recent call last): >>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>>>>>>> title=About_title, >>>>>>>>> dialog = self.dialog) >>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ >>>>>>>>> self.project_history = wx.FileHistory(5, wx.ID_FILE11) >>>>>>>>> File >>>>>>>>> "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>>>>>>>> python2.3/site-packages/wxPython/misc2.py", >>>>>>>>> line 1072, in __init__ >>>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) >>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 >>>>>>>>> given) >>>>>>>>> >>>>>>>>> >>>>>>>>> ------------------------------------------------------- >>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>>>>> FREE Java Enterprise J2EE developer tools! >>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>>>>> _______________________________________________ >>>>>>>>> sepy-macdev mailing list >>>>>>>>> sep...@li... >>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> ------------------------------------------------------- >>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>>>> FREE Java Enterprise J2EE developer tools! >>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>>>> _______________________________________________ >>>>>>>> sepy-macdev mailing list >>>>>>>> sep...@li... >>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------- >>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>>> FREE Java Enterprise J2EE developer tools! >>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>>> _______________________________________________ >>>>>>> sepy-macdev mailing list >>>>>>> sep...@li... >>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------- >>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>> FREE Java Enterprise J2EE developer tools! >>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>> _______________________________________________ >>>>>> sepy-macdev mailing list >>>>>> sep...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>> >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------- >>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> FREE Java Enterprise J2EE developer tools! >>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> _______________________________________________ >>>>> sepy-macdev mailing list >>>>> sep...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> >>>> >>>> >>>> >>>> ------------------------------------------------------- >>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> FREE Java Enterprise J2EE developer tools! >>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> _______________________________________________ >>>> sepy-macdev mailing list >>>> sep...@li... >>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE Java Enterprise J2EE developer tools! >>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> _______________________________________________ >>> sepy-macdev mailing list >>> sep...@li... >>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> sepy-macdev mailing list >> sep...@li... >> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-04 21:25:46
|
For using wxPython, use this syntax: import wx Then you have all wxpython modules as: wx.Frame wx.Dialog ... Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of ::Isaac Rivera ::Sent: sabato 4 settembre 2004 22.17 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest :: ::Ok--- :: ::I added ":/usr/local/bin" to my path and deleted Python on "/usr/bin" :: ::Now Python 2.3.4 launches on the terminal correctly when I ::type python during the current shell session. :: ::However, I does not find wxPython from this location. I just the the ::classic: :: :: >>> import wxPython ::Traceback (most recent call last): :: File "<stdin>", line 1, in ? ::ImportError: No module named wxPython :: ::2 questions: :: ::How do I alter PATH to this permanently and not just the ::current session. ::"export ::PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ ::local/bin/" :: ::and how do I make python see wxPython? :: :: ::On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: :: ::> Remove or rename old python binary, make sure /usr/local/bin is is ::> your PATH ::> ::> % echo $PATH ::> % export PATH=$PATH:/usr/local/bin ::> % echo $PATH ::> ::> Did you get $suite to compile? ::> ::> Ashley ::> ::> old pythoIsaac Rivera wrote: ::> ::>> Thats exactly what happens. ::>> ::>> But when I type "/usr/local/bin/python" then this happens: ::>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) [GCC 3.3 20030304 (Apple ::>> Computer, Inc. build 1666)] on darwin Type "help", "copyright", ::>> "credits" or "license" for more information. ::>> >>> ::>> ::>> Notice two the headers: ::>> ::>> Python 2.3 (#1, Sep 13 2003, 19:51:59) ::>> ::>> vs. ::>> ::>> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) ::>> ::>> Diferent versions and dates. The second one, the one I ::just updated ::>> and I invoke by typing "/usr/local/bin/python" is the current ::>> version. The other one accessed by just typing "python" is ::older, the ::>> Panther default and the one we are all using unless we are calling ::>> "/usr/local/bin/python". ::>> ::>> Isaac ::>> ::>> On Sep 2, 2004, at 2:08 PM, valley wrote: ::>> ::>>> So what happens when you type 'python' or 'python2.3' in ::your shell ? ::>>> Normally something like this should appear: ::>>> $ python ::>>> Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 (Apple ::>>> Computer, build 1495)] on darwin Type "help", ::"copyright", "credits" ::>>> or "license" for more information. ::>>> ::>>>>>> ::>>> ::>>> Perhaps it's a path problem. On the 4Suite site it is ::said that you ::>>> don't have to do the build for installing it, just type ::>>> python setup.py install ::>>> ::>>> ::>>> valley ::>>> ::>>> ::>>> ::>>> ----- Original Message ----- ::>>> From: "Isaac Rivera" <isa...@mi...> ::>>> To: <sep...@li...> ::>>> Sent: Thursday, September 02, 2004 3:17 PM ::>>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest ::>>> ::>>> ::>>>> On trying to install 4Suite in Panther I get ::>>>> ::>>>> "command 'gcc' failed with exit status 1" ::>>>> ::>>>> I have upgraded XCode tools and the gcc is the new version 3.3. ::>>>> ::>>>> Isaac ::>>>> ::>>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: ::>>>> ::>>>>> I never had this error. But 4Suite should build and install ::>>>>> correctly, so try a little bit around ;-) This error ::perhaps also ::>>>>> could be a SEPY error due to changes that Alessandro ::made - I can ::>>>>> try this out this evening with the latest cvs version. ::>>>>> ::>>>>> valley ::>>>>> ::>>>>> ::>>>>> ::>>>>> ::>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: ::>>>>> ::>>>>>> Thanks Valley, ::>>>>>> ::>>>>>> got the latest wxpython, sepy runs splash screen then tooltips ::>>>>>> appear but splash screen stays, the document window ::which appears ::>>>>>> under the tool tips resizes with incorrect screen redraw ::>>>>>> ::>>>>>> Throws an errror at command line --> below ::>>>>>> ::>>>>>> I had thought to check through the list of dependancies you ::>>>>>> mentioned on the Wiki and have found an error building 4suite ::>>>>>> that does not seem to be resolved as of yet, it fails on ::>>>>>> build_ext this appears to be a problem with python2.3 ::>>>>>> ::>>>>>> So I wonder if I I would have to build python from scratch ?? ::>>>>>> ::>>>>>> Ashley ::>>>>>> ::>>>>>> ::>>>>>> ::>>>>>> ::>>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw [Debug] 20:32:46: ::>>>>>> Unrecognized accel key 'CAPSLOCK', accel string ignored. ::>>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', ::accel string ::>>>>>> ignored. ::>>>>>> Traceback (most recent call last): ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify ::>>>>>> frame = main_window(parent=None, id=wx.NewId(), ::>>>>>> title=About_title, dialog = self.dialog) ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ ::>>>>>> self.loadDB() ::>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB ::>>>>>> self.DB["values"] = DB.values() ::>>>>>> AttributeError: _DBWithCursor instance has no ::attribute 'values' ::>>>>>> ::>>>>>> Valentin Treu wrote: ::>>>>>> ::>>>>>>> i also had this error. be sure that you've got the newest ::>>>>>>> wxpython from here: ::>>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ ::>>>>>>> ::>>>>>>> valley ::>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: ::>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>>>> Is there a curent list of changes I need to make? ::>>>>>>>> ::>>>>>>>> Ashley ::>>>>>>>> ::>>>>>>>> First Error :: ::>>>>>>>> ::>>>>>>>> Traceback (most recent call last): ::>>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify ::>>>>>>>> frame = main_window(parent=None, id=wx.NewId(), ::>>>>>>>> title=About_title, dialog = self.dialog) File ::>>>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ ::>>>>>>>> self.project_history = wx.FileHistory(5, ::wx.ID_FILE11) File ::>>>>>>>> ::"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ ::>>>>>>>> python2.3/site-packages/wxPython/misc2.py", ::>>>>>>>> line 1072, in __init__ ::>>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) ::>>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 ::>>>>>>>> given) ::>>>>>>>> ::>>>>>>>> ::>>>>>>>> ------------------------------------------------------- ::>>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::>>>>>>>> Java Enterprise J2EE developer tools! ::>>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>>>>>>> _______________________________________________ ::>>>>>>>> sepy-macdev mailing list ::>>>>>>>> sep...@li... ::>>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>>>>>>> ::>>>>>>>> ::>>>>>>>> ::>>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>>> ------------------------------------------------------- ::>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::>>>>>>> Java Enterprise J2EE developer tools! ::>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>>>>>> _______________________________________________ ::>>>>>>> sepy-macdev mailing list ::>>>>>>> sep...@li... ::>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>>>>>> ::>>>>>>> ::>>>>>>> ::>>>>>> ::>>>>>> ::>>>>>> ::>>>>>> ------------------------------------------------------- ::>>>>>> This SF.Net email is sponsored by BEA Weblogic ::Workshop FREE Java ::>>>>>> Enterprise J2EE developer tools! ::>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>>>>> _______________________________________________ ::>>>>>> sepy-macdev mailing list ::>>>>>> sep...@li... ::>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>>>>> ::>>>>>> ::>>>>> ::>>>>> ::>>>>> ::>>>>> ------------------------------------------------------- ::>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::>>>>> Enterprise J2EE developer tools! ::>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>>>> _______________________________________________ ::>>>>> sepy-macdev mailing list ::>>>>> sep...@li... ::>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>>>> ::>>>> ::>>>> ::>>>> ::>>>> ------------------------------------------------------- ::>>>> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::>>>> Enterprise J2EE developer tools! ::>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>>> _______________________________________________ ::>>>> sepy-macdev mailing list ::>>>> sep...@li... ::>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>>> ::>>> ::>>> ::>>> ::>>> ------------------------------------------------------- ::>>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::>>> Enterprise J2EE developer tools! ::>>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>>> _______________________________________________ ::>>> sepy-macdev mailing list ::>>> sep...@li... ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::>> ::>> ::>> ::>> ------------------------------------------------------- ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::>> Enterprise J2EE developer tools! ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::>> _______________________________________________ ::>> sepy-macdev mailing list ::>> sep...@li... ::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Isaac R. <isa...@mi...> - 2004-09-04 21:17:09
|
Ok--- I added ":/usr/local/bin" to my path and deleted Python on "/usr/bin" Now Python 2.3.4 launches on the terminal correctly when I type python during the current shell session. However, I does not find wxPython from this location. I just the the classic: >>> import wxPython Traceback (most recent call last): File "<stdin>", line 1, in ? ImportError: No module named wxPython 2 questions: How do I alter PATH to this permanently and not just the current session. "export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Tools:/usr/local:/usr/ local/bin/" and how do I make python see wxPython? On Sep 2, 2004, at 3:53 PM, Ashley McCoy wrote: > Remove or rename old python binary, make sure /usr/local/bin is is > your PATH > > % echo $PATH > % export PATH=$PATH:/usr/local/bin > % echo $PATH > > Did you get $suite to compile? > > Ashley > > old pythoIsaac Rivera wrote: > >> Thats exactly what happens. >> >> But when I type "/usr/local/bin/python" then this happens: >> >> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >> [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin >> Type "help", "copyright", "credits" or "license" for more information. >> >>> >> >> Notice two the headers: >> >> Python 2.3 (#1, Sep 13 2003, 19:51:59) >> >> vs. >> >> Python 2.3.4 (#1, Sep 2 2004, 09:02:03) >> >> Diferent versions and dates. The second one, the one I just updated >> and I invoke by typing "/usr/local/bin/python" is the current >> version. The other one accessed by just typing "python" is older, the >> Panther default and the one we are all using unless we are calling >> "/usr/local/bin/python". >> >> Isaac >> >> On Sep 2, 2004, at 2:08 PM, valley wrote: >> >>> So what happens when you type 'python' or 'python2.3' in your shell ? >>> Normally something like this should appear: >>> $ python >>> Python 2.3 (#1, Sep 13 2003, 19:51:59) >>> [GCC 3.3 20030304 (Apple Computer, build 1495)] on darwin >>> Type "help", "copyright", "credits" or "license" for more >>> information. >>> >>>>>> >>> >>> Perhaps it's a path problem. On the 4Suite site it is said that you >>> don't have to do the build for installing it, just type >>> python setup.py install >>> >>> >>> valley >>> >>> >>> >>> ----- Original Message ----- >>> From: "Isaac Rivera" <isa...@mi...> >>> To: <sep...@li...> >>> Sent: Thursday, September 02, 2004 3:17 PM >>> Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest >>> >>> >>>> On trying to install 4Suite in Panther I get >>>> >>>> "command 'gcc' failed with exit status 1" >>>> >>>> I have upgraded XCode tools and the gcc is the new version 3.3. >>>> >>>> Isaac >>>> >>>> On Sep 2, 2004, at 7:17 AM, Valentin Treu wrote: >>>> >>>>> I never had this error. But 4Suite should build and install >>>>> correctly, so try a little bit around ;-) >>>>> This error perhaps also could be a SEPY error due to changes >>>>> that Alessandro made - I can try this out this evening with >>>>> the latest cvs version. >>>>> >>>>> valley >>>>> >>>>> >>>>> >>>>> >>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>>> >>>>>> Thanks Valley, >>>>>> >>>>>> got the latest wxpython, sepy runs splash screen then tooltips >>>>>> appear >>>>>> but splash screen stays, the document window which appears under >>>>>> the >>>>>> tool tips resizes with incorrect screen redraw >>>>>> >>>>>> Throws an errror at command line --> below >>>>>> >>>>>> I had thought to check through the list of dependancies you >>>>>> mentioned >>>>>> on >>>>>> the Wiki and have found an error building 4suite that does not >>>>>> seem to >>>>>> be resolved as of yet, it fails on build_ext this appears to be a >>>>>> problem with python2.3 >>>>>> >>>>>> So I wonder if I I would have to build python from scratch ?? >>>>>> >>>>>> Ashley >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> g4-1ghz:~/SciTE amccoy$ pythonw main.pyw >>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', accel string >>>>>> ignored. >>>>>> [Debug] 20:32:46: Unrecognized accel key 'CAPSLOCK', accel string >>>>>> ignored. >>>>>> Traceback (most recent call last): >>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>>>> title=About_title, >>>>>> dialog = self.dialog) >>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 321, in __init__ >>>>>> self.loadDB() >>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 371, in loadDB >>>>>> self.DB["values"] = DB.values() >>>>>> AttributeError: _DBWithCursor instance has no attribute 'values' >>>>>> >>>>>> Valentin Treu wrote: >>>>>> >>>>>>> i also had this error. be sure that you've got the >>>>>>> newest wxpython from here: >>>>>>> http://starship.python.net/crew/robind/wxPython/daily/ >>>>>>> >>>>>>> valley >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> On Thu, 2 Sep 2004, Ashley McCoy wrote: >>>>>>> >>>>>>> >>>>>>> >>>>>>>> Is there a curent list of changes I need to make? >>>>>>>> >>>>>>>> Ashley >>>>>>>> >>>>>>>> First Error :: >>>>>>>> >>>>>>>> Traceback (most recent call last): >>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 140, in Notify >>>>>>>> frame = main_window(parent=None, id=wx.NewId(), >>>>>>>> title=About_title, >>>>>>>> dialog = self.dialog) >>>>>>>> File "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ >>>>>>>> self.project_history = wx.FileHistory(5, wx.ID_FILE11) >>>>>>>> File >>>>>>>> "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>>>>>>> python2.3/site-packages/wxPython/misc2.py", >>>>>>>> line 1072, in __init__ >>>>>>>> self.this = misc2c.new_wxFileHistory(*_args,**_kwargs) >>>>>>>> TypeError: new_wxFileHistory() takes at most 1 argument (2 >>>>>>>> given) >>>>>>>> >>>>>>>> >>>>>>>> ------------------------------------------------------- >>>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>>>> FREE Java Enterprise J2EE developer tools! >>>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>>>> _______________________________________________ >>>>>>>> sepy-macdev mailing list >>>>>>>> sep...@li... >>>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------- >>>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>>> FREE Java Enterprise J2EE developer tools! >>>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>>> _______________________________________________ >>>>>>> sepy-macdev mailing list >>>>>>> sep...@li... >>>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------- >>>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>>> FREE Java Enterprise J2EE developer tools! >>>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>>> _______________________________________________ >>>>>> sepy-macdev mailing list >>>>>> sep...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>>> >>>>>> >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------- >>>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>>> FREE Java Enterprise J2EE developer tools! >>>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>>> _______________________________________________ >>>>> sepy-macdev mailing list >>>>> sep...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>>> >>>> >>>> >>>> >>>> ------------------------------------------------------- >>>> This SF.Net email is sponsored by BEA Weblogic Workshop >>>> FREE Java Enterprise J2EE developer tools! >>>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>>> _______________________________________________ >>>> sepy-macdev mailing list >>>> sep...@li... >>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>>> >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by BEA Weblogic Workshop >>> FREE Java Enterprise J2EE developer tools! >>> Get your free copy of BEA WebLogic Workshop 8.1 today. >>> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >>> _______________________________________________ >>> sepy-macdev mailing list >>> sep...@li... >>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> sepy-macdev mailing list >> sep...@li... >> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-04 17:01:35
|
The only notebook still alive is the one which contains the documents itself! Maybe changing the notebook into a book like for the left panel ? Alessandro Crugnola - sephiroth --------------------------------------------- Macromedia Flash Team Volunteer http://www.macromedia.com/go/team Flash && PHP developer ale...@se... *relax with SEPY http://www.sf.net/projects/sepy --------------------------------------------- ::-----Original Message----- ::From: sep...@li... ::[mailto:sep...@li...] On Behalf Of valley ::Sent: sabato 4 settembre 2004 17.19 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Preferences frozen :: ::No improvement! Still the same behaviour. Actually tooltips ::do not work at all in SEPY at the moment, I just noticed! ::Also trying just one other page than page 1 doesn't work... ::Is there another window popup like Preferences (i.e. that uses ::Notebook) I could test if it works there ? :: ::valley :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Saturday, September 04, 2004 5:59 PM ::Subject: RE: [SE|PY-macdev] Preferences frozen :: :: ::> Yes, very at all... ::> Try to comment also all the "SetToolTip" lines.. Then i dont know ::> really ::where is the problem ^_^ ::> ::> Alessandro Crugnola - sephiroth ::> --------------------------------------------- ::> Macromedia Flash Team Volunteer ::> http://www.macromedia.com/go/team ::> Flash && PHP developer ::> ale...@se... ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> --------------------------------------------- ::> ::> ::> ::-----Original Message----- ::> ::From: sep...@li... ::> ::[mailto:sep...@li...] On ::Behalf Of valley ::> ::Sent: sabato 4 settembre 2004 16.53 ::> ::To: sep...@li... ::> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::> :: ::> ::still everything frozen, except the radio buttons at the ::::bottom of ::> the page ('when files are modified by external ::process), ::there i can ::> change the selection... ::> ::very strange ::> :: ::> ::valley ::> :: ::> :: ::> ::----- Original Message ----- ::> ::From: "Alessandro Crugnola *sephiroth*" ::> ::<sep...@us...> ::> ::To: <sep...@li...> ::> ::Sent: Saturday, September 04, 2004 5:27 PM ::> ::Subject: RE: [SE|PY-macdev] Preferences frozen ::> :: ::> :: ::> ::> The only difference get in my mind is the fact ::proference ::window ::> used ::Notebook, keyboard instead is only a flat panel. ::> ::> Try to allow only the first preference page commenting ::out ::this ::> lines ::> in ::> ::WindowsPrefs.py: ::> ::> ::> ::> self.__do_layout_page1() ::> ::> #self.__do_layout_page2() ::> ::> #self.__do_layout_page3() ::> ::> #self.__do_layout_page4() ::> ::> #self.__do_layout_page5() ::> ::> #self.__do_layout_page6() ::> ::> ::> ::> Alessandro Crugnola - sephiroth ::> ::> --------------------------------------------- ::> ::> Macromedia Flash Team Volunteer ::> ::> http://www.macromedia.com/go/team ::> ::> Flash && PHP developer ::> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY http://www.sf.net/projects/sepy ::> ::> --------------------------------------------- ::> ::> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::From: sep...@li... ::> ::> ::[mailto:sep...@li...] On ::::Behalf Of ::> valley ::> ::Sent: sabato 4 settembre 2004 16.14 ::> ::To: ::> sep...@li... ::> ::Subject: [SE|PY-macdev] ::> Preferences frozen ::> :: ::> ::> :: ::> ::> ::>>Can you take a look at the getAvailLanguageFile ::method of ::> ::> ::common.py file? ::> ::> ::Seems to work fine. The following items are filled ::into ListLang: ::> ::> :: Deutsch-de_DE ::> ::> :: English-en_US ::> ::> :: Espanol-es_ES ::> ::> :: Francais-fr_FR ::> ::> :: Magyar-ma_HU ::> ::> :: Nederlands-nl_NL ::> ::> :: Italiano-it_IT ::> ::> :: ::> ::> ::without generating errors, as on startup (SEPY.py) ::and as on ::> ::> ::opening the Preferences (WindowsPrefs.py). ::> ::> :: ::> ::> ::I guess there is a general problem when ::creating/displaying ::> ::data ::> because nothing really works in this window. But it's ::> ::::funny that for ::> instance the two comboboxes for the encoding ::> ::(default ::newline mode ::> and default encoding) on the ::first page ::> ::seem to have been filled ::> correctly (i see UNIX and UTF-8) but ::> ::as for all elements i cannot ::> see the other content ::because ::the ::> combos don't accept a ::mouse click ::> on it. ::> ::> :: ::> ::> ::Do you know the difference to other window pop-ups (like ::> Keyboard ::> ::Shortcuts) ? ::> ::> ::Because there everything works fine. ::> ::> :: ::> ::> ::valley ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> :: ::> ::> ::------------------------------------------------------- ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Workshop ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> ::_______________________________________________ ::> ::> ::sepy-macdev mailing list ::> ::> ::sep...@li... ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> :: ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ------------------------------------------------------- ::> ::> This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE Java ::> ::> Enterprise J2EE developer tools! ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::> _______________________________________________ ::> ::> sepy-macdev mailing list ::> ::> sep...@li... ::> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> :: ::> :: ::> :: ::> ::------------------------------------------------------- ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop ::FREE ::Java ::> Enterprise J2EE developer tools! ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> ::_______________________________________________ ::> ::sepy-macdev mailing list ::> ::sep...@li... ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::> _______________________________________________ ::> sepy-macdev mailing list ::> sep...@li... ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::> :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-04 16:19:04
|
No improvement! Still the same behaviour. Actually tooltips do not work at all in SEPY at the moment, I just noticed! Also trying just one other page than page 1 doesn't work... Is there another window popup like Preferences (i.e. that uses Notebook) I could test if it works there ? valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Saturday, September 04, 2004 5:59 PM Subject: RE: [SE|PY-macdev] Preferences frozen > Yes, very at all... > Try to comment also all the "SetToolTip" lines.. Then i dont know really where is the problem ^_^ > > Alessandro Crugnola - sephiroth > --------------------------------------------- > Macromedia Flash Team Volunteer > http://www.macromedia.com/go/team > Flash && PHP developer > ale...@se... > > *relax with SEPY http://www.sf.net/projects/sepy > --------------------------------------------- > > > ::-----Original Message----- > ::From: sep...@li... > ::[mailto:sep...@li...] On Behalf Of valley > ::Sent: sabato 4 settembre 2004 16.53 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] Preferences frozen > :: > ::still everything frozen, except the radio buttons at the > ::bottom of the page ('when files are modified by external > ::process), there i can change the selection... > ::very strange > :: > ::valley > :: > :: > ::----- Original Message ----- > ::From: "Alessandro Crugnola *sephiroth*" > ::<sep...@us...> > ::To: <sep...@li...> > ::Sent: Saturday, September 04, 2004 5:27 PM > ::Subject: RE: [SE|PY-macdev] Preferences frozen > :: > :: > ::> The only difference get in my mind is the fact proference > ::window used > ::Notebook, keyboard instead is only a flat panel. > ::> Try to allow only the first preference page commenting out > ::this lines > ::> in > ::WindowsPrefs.py: > ::> > ::> self.__do_layout_page1() > ::> #self.__do_layout_page2() > ::> #self.__do_layout_page3() > ::> #self.__do_layout_page4() > ::> #self.__do_layout_page5() > ::> #self.__do_layout_page6() > ::> > ::> Alessandro Crugnola - sephiroth > ::> --------------------------------------------- > ::> Macromedia Flash Team Volunteer > ::> http://www.macromedia.com/go/team > ::> Flash && PHP developer > ::> ale...@se... > ::> > ::> *relax with SEPY http://www.sf.net/projects/sepy > ::> --------------------------------------------- > ::> > ::> > ::> ::-----Original Message----- > ::> ::From: sep...@li... > ::> ::[mailto:sep...@li...] On > ::Behalf Of valley > ::> ::Sent: sabato 4 settembre 2004 16.14 > ::> ::To: sep...@li... > ::> ::Subject: [SE|PY-macdev] Preferences frozen > ::> :: > ::> :: > ::> ::>>Can you take a look at the getAvailLanguageFile method of > ::> ::common.py file? > ::> ::Seems to work fine. The following items are filled into ListLang: > ::> :: Deutsch-de_DE > ::> :: English-en_US > ::> :: Espanol-es_ES > ::> :: Francais-fr_FR > ::> :: Magyar-ma_HU > ::> :: Nederlands-nl_NL > ::> :: Italiano-it_IT > ::> :: > ::> ::without generating errors, as on startup (SEPY.py) and as on > ::> ::opening the Preferences (WindowsPrefs.py). > ::> :: > ::> ::I guess there is a general problem when > ::creating/displaying ::data > ::> because nothing really works in this window. But it's > ::::funny that for > ::> instance the two comboboxes for the encoding ::(default > ::newline mode > ::> and default encoding) on the first page ::seem to have been filled > ::> correctly (i see UNIX and UTF-8) but ::as for all elements i cannot > ::> see the other content because ::the combos don't accept a > ::mouse click > ::> on it. > ::> :: > ::> ::Do you know the difference to other window pop-ups (like Keyboard > ::> ::Shortcuts) ? > ::> ::Because there everything works fine. > ::> :: > ::> ::valley > ::> :: > ::> :: > ::> :: > ::> :: > ::> :: > ::> ::------------------------------------------------------- > ::> ::This SF.Net email is sponsored by BEA Weblogic Workshop > ::FREE ::Java > ::> Enterprise J2EE developer tools! > ::> ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> ::_______________________________________________ > ::> ::sepy-macdev mailing list > ::> ::sep...@li... > ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> :: > ::> > ::> > ::> > ::> > ::> ------------------------------------------------------- > ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java > ::> Enterprise J2EE developer tools! > ::> Get your free copy of BEA WebLogic Workshop 8.1 today. > ::> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::> _______________________________________________ > ::> sepy-macdev mailing list > ::> sep...@li... > ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ::> > :: > :: > :: > ::------------------------------------------------------- > ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE > ::Java Enterprise J2EE developer tools! > ::Get your free copy of BEA WebLogic Workshop 8.1 today. > ::http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > ::_______________________________________________ > ::sepy-macdev mailing list > ::sep...@li... > ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |