sepy-macdev Mailing List for SE|PY ASEditor (Page 9)
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: valley <va...@ic...> - 2004-09-20 17:02:37
|
Ok, now cvs access works again. The latest version looks great and it seems that almost everything works fine. What I found is that when you select 'Add folder' on the current working project the correct dialog opens but I cannot enter a name nor do the 'Ok' and 'Cancel' button work - it's like frozen... Another thing is that on startup the whole ide window has smallest possible size, so i always have to resize it manually and then i also have to drag the page splitter to the middle since it is positioned on its maximum left side (i.e. the panels' left page is not visible by default). On the other hand I think that SEPY again made a great step forward :-) Regards valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Friday, September 17, 2004 9:07 PM Subject: [SE|PY-macdev] Unicode issues > I'm finding many problems related to unicode working with OSX version. > I'm sorry but i'm totally newbie with mac.. Is there a way to get a unicode version of wxpython? Someone know? > > P.s. The method which valley suggets for the special char works great, i just need to integrate with the rest of the autocompletion > system. Really Thanks! :) > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-17 19:55:57
|
I forgot to mention. Once sepy will work, i hope very near in the future, on mac i would like to make an installer for mac in order to allow people to install directly as package and not to build an compile all the needed libraries.. I have this link: http://www.pythonmac.org/wiki/BundleBuilder And i'm trying to make an installer (begin today), but i dont know for which reason once compiled, the SEPY.app does not start.. If you have time to look into, this is my setup.py file: (run from console % python setup.py build) # setup.py make file import bundlebuilder, os # I set this to make adding subfolders into the package easier packageroot = "/Users/alessandro/Pubilc/SEPY" # Create the AppBuilder myapp = bundlebuilder.AppBuilder(verbosity=1) # Tell it where to find the main script - the one that loads on startup myapp.mainprogram = os.path.join(packageroot, "main.pyw") myapp.standalone = 1 myapp.name = "SEPY" # includePackages forces certain packages to be added to the app bundle myapp.includePackages.append("encodings") myapp.includePackages.append("_xmlplus") # Here you add supporting files and/or folders to your bundle # DATA myapp.resources.append(os.path.join(packageroot, "data")) myapp.resources.append(os.path.join(packageroot, "data", "api.xml")) myapp.resources.append(os.path.join(packageroot, "data", "flash.api")) myapp.resources.append(os.path.join(packageroot, "data", "style.properties")) myapp.resources.append(os.path.join(packageroot, "data", "keybshortcuts.csv")) # BACKUP myapp.resources.append(os.path.join(packageroot, "backup")) # ACTIONPANEL myapp.resources.append(os.path.join(packageroot, "ActionPanel")) myapp.resources.append(os.path.join(packageroot, "ActionPanel", "ActionsPanel.xml")) myapp.resources.append(os.path.join(packageroot, "ActionPanel", "CustomActions")) # ICONS myapp.resources.append(os.path.join(packageroot, "icons")) myapp.resources.append(os.path.join(packageroot, 'icons','about.png')) myapp.resources.append(os.path.join(packageroot, 'icons','alert.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','as.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','bat.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','Entries')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','Entries.Extra')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','Entries.Extra.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','Entries.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','Repository')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','Root')) myapp.resources.append(os.path.join(packageroot, 'icons','CVS','TortoiseCVS.Status')) myapp.resources.append(os.path.join(packageroot, 'icons','doc.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','file.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','fla.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','flp.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','flv.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','help')) myapp.resources.append(os.path.join(packageroot, 'icons','help','browser_ff.png')) myapp.resources.append(os.path.join(packageroot, 'icons','help','browser_home.png')) myapp.resources.append(os.path.join(packageroot, 'icons','help','browser_rw.png')) myapp.resources.append(os.path.join(packageroot, 'icons','help','browser_stop.png')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS','Entries')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS','Entries.Extra')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS','Entries.Extra.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS','Entries.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS','Repository')) myapp.resources.append(os.path.join(packageroot, 'icons','help','CVS','Root')) myapp.resources.append(os.path.join(packageroot, 'icons','image.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','jsapi.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','api.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','chars.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','class_explorer.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','clipboard.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS','Entries')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS','Entries.Extra')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS','Entries.Extra.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS','Entries.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS','Repository')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','CVS','Root')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','members.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_folder.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_getter.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_interface.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_namespace.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_package.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_private.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_property.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','member_public.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','panel_files.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','project.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','snippets.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','snippet_folder.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','todo.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','xml.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','xml_attribute.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','xml_cdata.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','xml_element.png')) myapp.resources.append(os.path.join(packageroot, 'icons','left_panel','xml_text.png')) myapp.resources.append(os.path.join(packageroot, 'icons','lock.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','misc')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','ActionClosed.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','ActionFunction.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS','Entries')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS','Entries.Extra')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS','Entries.Extra.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS','Entries.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS','Repository')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','CVS','Root')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','down.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','empty.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','fla.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','h_ruler.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','minus.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','new.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','plus.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','project.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','refresh.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','text.png')) myapp.resources.append(os.path.join(packageroot, 'icons','misc','up.png')) myapp.resources.append(os.path.join(packageroot, 'icons','mp3.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','paypal.bmp')) myapp.resources.append(os.path.join(packageroot, 'icons','pdf.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','sepy.xpm')) myapp.resources.append(os.path.join(packageroot, 'icons','settings_cvs.png')) myapp.resources.append(os.path.join(packageroot, 'icons','settings_new.png')) myapp.resources.append(os.path.join(packageroot, 'icons','settings_reg.png')) myapp.resources.append(os.path.join(packageroot, 'icons','settings_xml.png')) myapp.resources.append(os.path.join(packageroot, 'icons','splash.png')) myapp.resources.append(os.path.join(packageroot, 'icons','swc.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','swf.ico')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','add_indent.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','autoformat.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','brace.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','close.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','copy.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','cut.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS','Entries')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS','Entries.Extra')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS','Entries.Extra.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS','Entries.Old')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS','Repository')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','CVS','Root')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','find_next.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','flush.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','folding.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','font_list.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','fullscreen.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','hint.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','new.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','open.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','paste.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','preferences.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','rem_indent.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','replace.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','run.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','save.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','search.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','spaces.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','web_open.png')) myapp.resources.append(os.path.join(packageroot, 'icons','toolbar','wrap.png')) myapp.resources.append(os.path.join(packageroot, 'icons','xml.ico')) # LC_MESSAGES myapp.resources.append(os.path.join(packageroot, "LC_MESSAGES")) myapp.resources.append(os.path.join(packageroot, "LC_MESSAGES", "English-en_US.xml")) myapp.resources.append(os.path.join(packageroot, "LC_MESSAGES", "tips_en_US.txt")) # UTILS myapp.resources.append(os.path.join(packageroot, "utils")) # bundlebuilder does not yet have the capability to detect what shared libraries # are needed by your app - so in this case I am adding the wxPython libs manually myapp.libs.append("/usr/local/lib/4Suite") myapp.libs.append("/usr/local/lib/wxPython-2.5.2.9p.20040914") # Here we build the app! myapp.setup() myapp.build() |
From: valley <va...@ic...> - 2004-09-17 19:49:52
|
Probably it would be best to ask Robin directly. I'm sure he knows a way how to do or how other (editor) applications written in Python solve that question about Unicode. I'm curious about the new version of SEPY, with the fixed problems I guess we have a version that is suitable again to work with. Regards valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Friday, September 17, 2004 9:07 PM Subject: [SE|PY-macdev] Unicode issues > I'm finding many problems related to unicode working with OSX version. > I'm sorry but i'm totally newbie with mac.. Is there a way to get a unicode version of wxpython? Someone know? > > P.s. The method which valley suggets for the special char works great, i just need to integrate with the rest of the autocompletion > system. Really 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 > --------------------------------------------- > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 > Project Admins to receive an Apple iPod Mini FREE for your judgement on > who ports your project to Linux PPC the best. Sponsored by IBM. > Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-17 19:07:38
|
I'm finding many problems related to unicode working with OSX version. I'm sorry but i'm totally newbie with mac.. Is there a way to get a unicode version of wxpython? Someone know? P.s. The method which valley suggets for the special char works great, i just need to integrate with the rest of the autocompletion system. Really 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 --------------------------------------------- |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-15 18:36:24
|
Thank you. I will test later this evening.. I found also the problem with the project error (it's in the translate = method string) I'm also fixing all the problems due to the BoxSizers with mac.. It's quite slow the emulation, but for testing is enough :) 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of valley ::Sent: mercoled=EC 15 settembre 2004 18.24 ::To: sep...@li... ::Subject: Re: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ciao Alessandro, ::that's cool that you now also have OS X. ::Could you please test my propositions below and then (if it's=20 ::ok for you) include it within SEPY. :: ::I will try to figure out the 'create a project directly' problem next. :: ::Regards ::valley :: :: :: :: :: ::>3) What still doesn't work now: ::> - writing chars like {,},[,] --> still seems not=20 ::accepting the=20 ::>alt ::presses ::> :: ::I think that I found a solution. In this post=20 ::http://lists.wxwidgets.org/archive/wxPython-users/msg08655.html :: ::Robin says that Scintilla (or the used StyledTextCtrl)=20 ::probably doesn't get notified when e.g. the alt key is=20 ::pressed. So I tried and searched a little bit around and=20 ::found a solution ( (c) by Josu Oyanguren): :: ::- add a new Bind in part 'CMD Key shortcuts' of Editor.py's=20 ::__init__ method: :: self.Bind(wx.EVT_CHAR, self.EvtChar) :: ::- add the method definition :: :: def EvtChar(self, event): :: key =3D event.KeyCode() :: try: :: char =3D chr(key) :: if char in '\|@#=AC[]{}': :: self.InsertText(self.GetCurrentPos(), char) :: self.CmdKeyExecute(stc.STC_CMD_CHARRIGHT) :: except ValueError: :: pass :: :: event.Skip() :: :: ::With these two additions an os x user can also add the=20 ::specified characters via an alt-shortcut. ::Perhaps we may only Bind this event with a mac os since it=20 ::works fine without it on Windows. :: ::Alessandro, could you please check if these additions are ok=20 ::? Or perhaps you've got a better idea for the problem. :: ::Greetz ::valley :: :: :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one=20 ::of 170 Project Admins to receive an Apple iPod Mini FREE for=20 ::your judgement on who ports your project to Linux PPC the=20 ::best. Sponsored by IBM. ::Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php=20 ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by: thawte's Crypto Challenge=20 ::Vl Crack the code and win a Sony DCRHC40 MiniDV Digital=20 ::Handycam Camcorder. More prizes in the weekly Lunch Hour Challenge. ::Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-15 17:23:44
|
Ciao Alessandro, that's cool that you now also have OS X. Could you please test my propositions below and then (if it's ok for you) include it within SEPY. I will try to figure out the 'create a project directly' problem next. Regards valley >3) What still doesn't work now: > - writing chars like {,},[,] --> still seems not accepting the = alt presses > I think that I found a solution. In this post http://lists.wxwidgets.org/archive/wxPython-users/msg08655.html Robin says that Scintilla (or the used StyledTextCtrl) probably doesn't g= et notified when e.g. the alt key is pressed. So I tried and searched a little bit around and found a solution ( (c) by Josu Oyanguren): - add a new Bind in part 'CMD Key shortcuts' of Editor.py's __init__ meth= od: self.Bind(wx.EVT_CHAR, self.EvtChar) - add the method definition def EvtChar(self, event): key =3D event.KeyCode() try: char =3D chr(key) if char in '\|@#=AC[]{}': self.InsertText(self.GetCurrentPos(), char) self.CmdKeyExecute(stc.STC_CMD_CHARRIGHT) except ValueError: pass event.Skip() With these two additions an os x user can also add the specified characte= rs via an alt-shortcut. Perhaps we may only Bind this event with a mac os since it works fine without it on Windows. Alessandro, could you please check if these additions are ok ? Or perhaps you've got a better idea for the problem. Greetz valley ------------------------------------------------------- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Sponsored by IBM. Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-14 23:00:03
|
Finally i was able to install mac osx and get all the packages installed also (only the fact i'm using python2.3 and not 2.3.4) Now i can test many things also on my pc! (very very slow.. But perfect for tests) 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 --------------------------------------------- |
From: valley <va...@ic...> - 2004-09-13 16:28:35
|
yes, take the latter one. valley ----- Original Message ----- From: "Sam Robbins" <sam...@xp...> To: <sep...@li...> Sent: Monday, September 13, 2004 5:12 PM Subject: [SE|PY-macdev] install Q Hey, since the 2.3.4 version or Python is installed in usr/local/bin/ you should use that python during the install of the extensions right? i.e. pyRXP says to run "python setup.py build" but should that be "usr/local/bin/python setup.py build"? Sam Robbins On Sep 3, 2004, at 4:46 PM, <wis...@se...> wrote: > Without 4suite i don't think you can go far way. It s used for parse > with > xpath the localized ml menus. > > 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: gioved=EC 2 settembre 2004 21.25 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest > :: > ::What if you leave 4Suite completely away and ensure that ::PyXML is > installed correctly. Does SEPY start up then ? > :: > ::valley > :: > :: > :: > ::----- Original Message ----- > ::From: "Ashley McCoy" <as...@gv...> > ::To: <sep...@li...> > ::Sent: Thursday, September 02, 2004 9:58 PM > ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest > :: > :: > ::> valley wrote: > ::> > ::> g4-1ghz:~/Desktop/Python/4Suite amccoy$ pythonw setup.py install > ::> > running install running build running build_py running build_ext ::> > ::> > running install runs the build scripts first ::> ::> current version > fails > on build_ext apparently it is a ::problem building ::> the external > module > ::> ::> > ::http://lists.fourthought.com/pipermail/4suite/2003-December/ > 012376.htm > ::> l > ::> > ::> perhaps updating python will help? > ::> > ::> Ashley > ::> > ::> >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 =3D main_window(parent=3DNone, id=3Dwx.NewId(), > ::> >>>>title=3DAbout_title, dialog =3D 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"] =3D 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 =3D main_window(parent=3DNone, id=3Dwx.NewId(), > ::> >>>>>>title=3DAbout_title, dialog =3D self.dialog) File ::> >>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ > ::> >>>>>> self.project_history =3D 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 =3D 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=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_idP47&alloc_id=10808&op=3Dclick > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > ------------------------------------------------------- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Sponsored by IBM. Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Sam R. <sam...@xp...> - 2004-09-13 15:13:08
|
Hey, since the 2.3.4 version or Python is installed in usr/local/bin/ = you =20 should use that python during the install of the extensions right? i.e. =20= pyRXP says to run "python setup.py build" but should that be =20 "usr/local/bin/python setup.py build"? Sam Robbins On Sep 3, 2004, at 4:46 PM, <wis...@se...> wrote: > Without 4suite i don't think you can go far way. It s used for parse =20= > with > xpath the localized ml menus. > > 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: gioved=EC 2 settembre 2004 21.25 > ::To: sep...@li... > ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest > :: > ::What if you leave 4Suite completely away and ensure that ::PyXML is > installed correctly. Does SEPY start up then ? > :: > ::valley > :: > :: > :: > ::----- Original Message ----- > ::From: "Ashley McCoy" <as...@gv...> > ::To: <sep...@li...> > ::Sent: Thursday, September 02, 2004 9:58 PM > ::Subject: Re: [SE|PY-macdev] newbie -- First Error from CVS latest > :: > :: > ::> valley wrote: > ::> > ::> g4-1ghz:~/Desktop/Python/4Suite amccoy$ pythonw setup.py install =20= > ::> > running install running build running build_py running build_ext ::> =20= > ::> > running install runs the build scripts first ::> ::> current version =20= > fails > on build_ext apparently it is a ::problem building ::> the external =20= > module > ::> ::> > ::http://lists.fourthought.com/pipermail/4suite/2003-December/=20 > 012376.htm > ::> l > ::> > ::> perhaps updating python will help? > ::> > ::> Ashley > ::> > ::> >So what happens when you type 'python' or 'python2.3' in ::your =20= > shell ? > ::> >Normally something like this should appear: > ::> >$ python > ::> >Python 2.3 (#1, Sep 13 2003, 19:51:59) [GCC 3.3 20030304 (Apple =20= > ::> >> 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 = =20 > 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 ::> > ::> > ::> > = =20 > ::> >> ::> >>On trying to install 4Suite in Panther I get ::> >> ::> =20 >> >>"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 = =20 >>>> ::> >>>> could be a SEPY error due to changes that Alessandro ::made - I can = =20 >>>> ::> >>>> 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 = =20 > ::> >>>>> appear but splash screen stays, the document window ::which = appears > ::> >>>>under the tool tips resizes with incorrect screen redraw ::> =20= > >>>> > ::> >>>>Throws an errror at command line --> below ::> >>>> ::> >>>>I =20= > had > thought to check through the list of dependancies you ::> =20 > >>>>mentioned on > the Wiki and have found an error building ::4suite that ::> >>>>does =20= > not > seem to be resolved as of yet, it fails on build_ext ::> >>>>this =20 > appears > to be a problem with python2.3 ::> >>>> ::> >>>>So I wonder if I I =20 > 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 =3D main_window(parent=3DNone, id=3Dwx.NewId(), > ::> >>>>title=3DAbout_title, dialog =3D 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"] =3D DB.values() > ::> >>>>AttributeError: _DBWithCursor instance has no attribute =20 > '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 =3D main_window(parent=3DNone, id=3Dwx.NewId(), > ::> >>>>>>title=3DAbout_title, dialog =3D self.dialog) File ::> >>>>>>> "/Users/amccoy/SciTE/SEPY.py", line 183, in __init__ > ::> >>>>>> self.project_history =3D wx.FileHistory(5, > ::wx.ID_FILE11) File > ::> =20 > >>>>>>"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ > ::> >>>>>>python2.3/site-packages/wxPython/misc2.py", > ::> >>>>>>line 1072, in __init__ > ::> >>>>>> self.this =3D misc2c.new_wxFileHistory(*_args,**_kwargs) > ::> >>>>>>TypeError: new_wxFileHistory() takes at most 1 argument (2 =20= > ::> >>>>>>> given) ::> >>>>>> ::> >>>>>> ::> >>>>>>> ------------------------------------------------------- > ::> >>>>>>This SF.Net email is sponsored by BEA Weblogic Workshop FREE = =20 > ::> >>>>>>> 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 =20= > 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 = =20 > ::> >> 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 =20= > ::> > 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_idP47&alloc_id=10808&op=3Dclick > _______________________________________________ > sepy-macdev mailing list > sep...@li... > https://lists.sourceforge.net/lists/listinfo/sepy-macdev > |
From: valley <va...@ic...> - 2004-09-12 13:57:25
|
>3) What still doesn't work now: > - writing chars like {,},[,] --> still seems not accepting the = alt presses > I think that I found a solution. In this post http://lists.wxwidgets.org/archive/wxPython-users/msg08655.html Robin says that Scintilla (or the used StyledTextCtrl) probably doesn't g= et notified when e.g. the alt key is pressed. So I tried and searched a little bit around and found a solution ( (c) by Josu Oyanguren): - add a new Bind in part 'CMD Key shortcuts' of Editor.py's __init__ meth= od: self.Bind(wx.EVT_CHAR, self.EvtChar) - add the method definition def EvtChar(self, event): key =3D event.KeyCode() try: char =3D chr(key) if char in '\|@#=AC[]{}': self.InsertText(self.GetCurrentPos(), char) self.CmdKeyExecute(stc.STC_CMD_CHARRIGHT) except ValueError: pass event.Skip() With these two additions an os x user can also add the specified characte= rs via an alt-shortcut. Perhaps we may only Bind this event with a mac os since it works fine without it on Windows. Alessandro, could you please check if these additions are ok ? Or perhaps you've got a better idea for the problem. Greetz valley |
From: valley <va...@ic...> - 2004-09-08 17:44:18
|
Ok, I'll see what I can do on my own. Have a good time there. See you next week. valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Wednesday, September 08, 2004 6:57 PM Subject: RE: AW: AW: [SE|PY-macdev] Preferences frozen Finally some good news :) Wow, now we need a holiday for the hard work ^_^ Tomorrow I will be in Warsaw, let's continue the debug on Tue, next week.= . And really thanks for the assitence :) Ciao! 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: mercoled=EC 8 settembre 2004 17.06 ::To: sep...@li... ::Subject: Re: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ciao Alessandro, :: ::ok, now everything works again. I can say the following things: :: ::1) SEPY preferences are stored in ~/Library/Preferences in ::the file 'Sephiroth Preferences' . :: After deleting it SEPY started fine again. :: ::2) The Preferences window looks ok now: :: - all is selectable and modifyable :: - tooltips work now also (but NOT in the main SEPY window !!) :: - when applying and there is no language selected on page 1 ::(default) :: you get an error! So you should check if there's a ::selection in this :: combobox :: - i tried changing font and size and it works, even ::after restart :: ::3) What still doesn't work now: :: - writing chars like {,},[,] --> still seems not ::accepting the alt presses :: - create a new project directly --> still bus error ::and crash, and when first choose 'open project' and after that :: ::save the new project file error message that filename ::contains illegal characters :: :: ::But well done so far, seems to get better and better, also on OS X. :: ::valley :: :: :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Wednesday, September 08, 2004 12:28 PM ::Subject: RE: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::Hi Valentin, ::Can you please verify the preference window with my latest ::cvs changes? ::Still freeze? :: ::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 ::Treu, Valentin ::::Sent: mercoled=EC 8 settembre 2004 7.34 ::::To: 'sep...@li...' ::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::: ::::Ok, thanks. Then I have to wait & hope & pray ;-) :::: ::::valley :::: :::: :::: :::: ::::-----Urspr=FCngliche Nachricht----- ::::Von: sep...@li... ::::[mailto:sep...@li...]Im Auftrag ::::von Alessandro Crugnola *sephiroth* ::::Gesendet: Dienstag, 7. September 2004 21:16 ::::An: sep...@li... ::::Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen :::: :::: ::::I posted the question on the wxpython mailing list.. I ::really ::don't know where it could be ^_^ :::: ::::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 ::Treu, Valentin ::::::Sent: marted=EC 7 settembre 2004 12.40 ::::::To: 'sep...@li...' ::::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::::: ::::::Now I really have a problem: I cannot find this file ::::::(searched for possible text inside, change date, etc.) ::and ::it ::seems that it's damaged because I always get an error ::::::'TypeError: Unable to convert string'. ::::::Someone's got an idea ? :::::: ::::::valley :::::: :::::: :::::: :::::: :::::: ::::::-----Urspr=FCngliche Nachricht----- ::::::Von: sep...@li... ::::::[mailto:sep...@li...]Im ::Auftrag ::::von Alessandro Crugnola *sephiroth* ::::::Gesendet: Dienstag, 7. September 2004 09:19 ::::::An: sep...@li... ::::::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :::::: :::::: ::::::the apply method is in the windowsprefs.py file at line ::(+ ::/ -) 1154. ::::::the basepath of the wxConfig object is /Sephiroth/ASE, ::then ::::for every value i have to write there is for example: :::::: ::::::self.parent.reg.WriteInt("preferences/general/autosave", ::auto_save) :::::: ::::::which save an integer in the ::::::/Sephiroth/ASE/preferences/general/autosave ::::::path ::::::or: ::::::self.parent.reg.Write("preferences/general/language",languag) :::::: ::::::when writing a String, for the path ::::::/Sephiroth/ASE/preferences/general/language :::::: ::::::hope this can help find the file!.. :::::: :::::: ::::::Treu, Valentin said: ::::::> Yes, I'll do that on lunch time. ::::::> Yesterday I tried with commenting the Runtime Exception ::::::raising, and ::> then it went through and stopped at ::::another position. ::::::> So I don't think that we have to change sth. in the ::code ::::(now it also ::> doesn't work anymore with older ::SEPY ::versions where it definitely ::> worked). ::::::> I searched for files on my Mac that could have stored ::the ::modified ::> settings and which SEPY cannot read ::correctly ::anymore on ::startup, but ::> didn't succeed. ::::::> Can you tell me where in the code you implemented the ::::save process ::> when pressing on the 'Apply' button in ::Preferences ? ::::::> I just need to know the dir and the filename outside ::the SEPY dir! ::::::> ::::::> valley ::::::> ::::::> ::::::> ::::::> ::::::> -----Urspr=FCngliche Nachricht----- ::::::> Von: sep...@li... ::::::> [mailto:sep...@li...]Im ::::Auftrag von ::> Alessandro Crugnola *sephiroth* ::> Gesendet: ::::Dienstag, 7. September 2004 08:07 ::> An: ::::sep...@li... ::> Betreff: Re: AW: ::::[SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can ::you ::convert that method: ::::::> ::::::> def _show_XMLReader(self, event): ::::::> if event: ::::::> self.notebook_l.Freeze() ::::::> try: ::::::> self.xml_reader_panel =3D ::::::XMLPanel(self.notebook_l, -1, ::::::> langClass =3D self.langPY, parent =3D self) ::::::> except: ::::::> self.notebook_l.Thaw() ::::::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::::> return ::::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::::> self.notebook_l.Thaw() ::::::> try: ::::::> ::::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::::> - 1, 7) ::::::> ::::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::::> - 1) ::::::> except: ::::::> pass ::::::> else: ::::::> ::::::> ::::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::::S/XML_PANEL"," ::::::> LABEL")) ::::::> wx.CallAfter(self.ForceNotebookRefresh) ::::::> ::::::> ::::::> ::::::> ::::::> ::::::> ::::::> into this? ::::::> ::::::> ::::::> ::::::> ::::::> def _show_XMLReader(self, event): ::::::> if event: ::::::> self.notebook_l.Freeze() ::::::> #try: ::::::> self.xml_reader_panel =3D ::XMLPanel(self.notebook_l, -1, ::::::> langClass =3D self.langPY, parent =3D self) ::::::> #except: ::::::> # self.notebook_l.Thaw() ::::::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::::::> # return ::::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::::> self.notebook_l.Thaw() ::::::> try: ::::::> ::::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::::> - 1, 7) ::::::> ::::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::::> - 1) ::::::> except: ::::::> pass ::::::> else: ::::::> ::::::> ::::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::::S/XML_PANEL"," ::::::> LABEL")) ::::::> wx.CallAfter(self.ForceNotebookRefresh) ::::::> ::::::> valley said: ::::::>> this is the error message: ::::::>> ::::::>> Traceback (most recent call last): ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line ::::::142, in Notify ::::::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), ::::::>> title=3DAbout_title, dialog =3D self.dialog) ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line ::::::256, in __init__ ::::::>> self._createLeftPanel() ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in ::::::>> _createLeftPanel ::::::>> self._show_XMLReader(1) ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in ::::::>> _show_XMLReader ::::::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::::>> RuntimeError: exceptions.TypeError Unable to convert ::::string ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so ::you ::also don't know the name of the file, right ? ::::::hmmmmmm i look ::::::>> around again. this we also have to document when found... ::::::>> ::::::>> valley ::::::>> ::::::>> ::::::>> ::::::>> ::::::>> ----- Original Message ----- ::::::>> From: "Alessandro Crugnola *sephiroth*" ::::::<ale...@se...> To: ::::::>> <sep...@li...> ::::::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject: ::::Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> ::This ::from the documentation: ::::::>> However, usually you don't even need to know the ::precise ::nature of ::>> the class 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 with 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=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=3Dc= lick ::::::>>> ::> ::_______________________________________________ ::::::>>> ::> ::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 ::::::>> ::::::>> ::::::>> --- ::::::>> 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". ::::::>> --- ::::::>> ::::::>> ::::::>> ::::::>> ::::::>> ------------------------------------------------------- ::::::>> 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_idP47&alloc_id=10808&op=3Dick ::::::>> _______________________________________________ ::::::>> 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_idP47&alloc_id=10808&op=CCk ::::::>> _______________________________________________ ::::::>> 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". ::::::> --- ::::::> ::::::> ::::::> ::::::> ::::::> ------------------------------------------------------- ::::::> 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_idP47&alloc_id=10808&op=3Dick ::::::> _______________________________________________ ::::::> 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_idP47&alloc_id=10808&op=CCk ::::::> _______________________________________________ ::::::> 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". ::::::--- :::::: :::::: :::::: :::::: ::::::------------------------------------------------------- ::::::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_idP47&alloc_id=10808&op=3Dick ::::::_______________________________________________ ::::::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_idP47&alloc_id=10808&op=CCk ::::::_______________________________________________ ::::::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_idP47&alloc_id=10808&op=3Dick ::::_______________________________________________ ::::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_idP47&alloc_id=10808&op=CCk ::::_______________________________________________ ::::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_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-08 16:58:18
|
Finally some good news :) Wow, now we need a holiday for the hard work ^_^ Tomorrow I will be in Warsaw, let's continue the debug on Tue, next = week.. And really thanks for the assitence :) Ciao! 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of valley ::Sent: mercoled=EC 8 settembre 2004 17.06 ::To: sep...@li... ::Subject: Re: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ciao Alessandro, :: ::ok, now everything works again. I can say the following things: :: ::1) SEPY preferences are stored in ~/Library/Preferences in=20 ::the file 'Sephiroth Preferences' . :: After deleting it SEPY started fine again. :: ::2) The Preferences window looks ok now: :: - all is selectable and modifyable :: - tooltips work now also (but NOT in the main SEPY window !!) :: - when applying and there is no language selected on page 1 ::(default) :: you get an error! So you should check if there's a=20 ::selection in this :: combobox :: - i tried changing font and size and it works, even=20 ::after restart :: ::3) What still doesn't work now: :: - writing chars like {,},[,] --> still seems not=20 ::accepting the alt presses :: - create a new project directly --> still bus error=20 ::and crash, and when first choose 'open project' and after that :: =20 ::save the new project file error message that filename=20 ::contains illegal characters :: :: ::But well done so far, seems to get better and better, also on OS X. :: ::valley :: :: :: :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" ::<sep...@us...> ::To: <sep...@li...> ::Sent: Wednesday, September 08, 2004 12:28 PM ::Subject: RE: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::Hi Valentin, ::Can you please verify the preference window with my latest=20 ::cvs changes? ::Still freeze? :: ::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=20 ::Of ::Treu, Valentin ::::Sent: mercoled=EC 8 settembre 2004 7.34 ::::To: 'sep...@li...' ::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::: ::::Ok, thanks. Then I have to wait & hope & pray ;-) :::: ::::valley :::: :::: :::: :::: ::::-----Urspr=FCngliche Nachricht----- ::::Von: sep...@li... ::::[mailto:sep...@li...]Im Auftrag=20 ::::von Alessandro Crugnola *sephiroth* ::::Gesendet: Dienstag, 7. September 2004 21:16 ::::An: sep...@li... ::::Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen :::: :::: ::::I posted the question on the wxpython mailing list.. I=20 ::really ::don't know where it could be ^_^ :::: ::::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=20 ::Behalf ::Of ::Treu, Valentin ::::::Sent: marted=EC 7 settembre 2004 12.40 ::::::To: 'sep...@li...' ::::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::::: ::::::Now I really have a problem: I cannot find this file=20 ::::::(searched for possible text inside, change date, etc.)=20 ::and ::it ::seems that it's damaged because I always get an error ::::::'TypeError: Unable to convert string'. ::::::Someone's got an idea ? :::::: ::::::valley :::::: :::::: :::::: :::::: :::::: ::::::-----Urspr=FCngliche Nachricht----- ::::::Von: sep...@li... ::::::[mailto:sep...@li...]Im=20 ::Auftrag ::::von Alessandro Crugnola *sephiroth* ::::::Gesendet: Dienstag, 7. September 2004 09:19 ::::::An: sep...@li... ::::::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :::::: :::::: ::::::the apply method is in the windowsprefs.py file at line=20 ::(+ ::/ -) 1154. ::::::the basepath of the wxConfig object is /Sephiroth/ASE,=20 ::then ::::for every value i have to write there is for example: :::::: ::::::self.parent.reg.WriteInt("preferences/general/autosave",=20 ::auto_save) :::::: ::::::which save an integer in the ::::::/Sephiroth/ASE/preferences/general/autosave ::::::path ::::::or: ::::::self.parent.reg.Write("preferences/general/language",languag) :::::: ::::::when writing a String, for the path ::::::/Sephiroth/ASE/preferences/general/language :::::: ::::::hope this can help find the file!.. :::::: :::::: ::::::Treu, Valentin said: ::::::> Yes, I'll do that on lunch time. ::::::> Yesterday I tried with commenting the Runtime Exception=20 ::::::raising, and ::> then it went through and stopped at=20 ::::another position. ::::::> So I don't think that we have to change sth. in the=20 ::code ::::(now it also ::> doesn't work anymore with older=20 ::SEPY ::versions where it definitely ::> worked). ::::::> I searched for files on my Mac that could have stored=20 ::the ::modified ::> settings and which SEPY cannot read=20 ::correctly ::anymore on ::startup, but ::> didn't succeed. ::::::> Can you tell me where in the code you implemented the=20 ::::save process ::> when pressing on the 'Apply' button in=20 ::Preferences ? ::::::> I just need to know the dir and the filename outside=20 ::the SEPY dir! ::::::> ::::::> valley ::::::> ::::::> ::::::> ::::::> ::::::> -----Urspr=FCngliche Nachricht----- ::::::> Von: sep...@li... ::::::> [mailto:sep...@li...]Im ::::Auftrag von ::> Alessandro Crugnola *sephiroth* ::> Gesendet: ::::Dienstag, 7. September 2004 08:07 ::> An: ::::sep...@li... ::> Betreff: Re: AW: ::::[SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can=20 ::you ::convert that method: ::::::> ::::::> def _show_XMLReader(self, event): ::::::> if event: ::::::> self.notebook_l.Freeze() ::::::> try: ::::::> self.xml_reader_panel =3D ::::::XMLPanel(self.notebook_l, -1, ::::::> langClass =3D self.langPY, parent =3D self) ::::::> except: ::::::> self.notebook_l.Thaw() ::::::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::::> return ::::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::::> self.notebook_l.Thaw() ::::::> try: ::::::> ::::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::::> - 1, 7) ::::::> ::::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::::> - 1) ::::::> except: ::::::> pass ::::::> else: ::::::> ::::::> ::::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::::S/XML_PANEL"," ::::::> LABEL")) ::::::> wx.CallAfter(self.ForceNotebookRefresh) ::::::> ::::::> ::::::> ::::::> ::::::> ::::::> ::::::> into this? ::::::> ::::::> ::::::> ::::::> ::::::> def _show_XMLReader(self, event): ::::::> if event: ::::::> self.notebook_l.Freeze() ::::::> #try: ::::::> self.xml_reader_panel =3D=20 ::XMLPanel(self.notebook_l, -1, ::::::> langClass =3D self.langPY, parent =3D self) ::::::> #except: ::::::> # self.notebook_l.Thaw() ::::::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::::::> # return ::::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::::> self.notebook_l.Thaw() ::::::> try: ::::::> ::::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::::> - 1, 7) ::::::> ::::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::::> - 1) ::::::> except: ::::::> pass ::::::> else: ::::::> ::::::> ::::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::::S/XML_PANEL"," ::::::> LABEL")) ::::::> wx.CallAfter(self.ForceNotebookRefresh) ::::::> ::::::> valley said: ::::::>> this is the error message: ::::::>> ::::::>> Traceback (most recent call last): ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line ::::::142, in Notify ::::::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), ::::::>> title=3DAbout_title, dialog =3D self.dialog) ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line ::::::256, in __init__ ::::::>> self._createLeftPanel() ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in ::::::>> _createLeftPanel ::::::>> self._show_XMLReader(1) ::::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in ::::::>> _show_XMLReader ::::::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::::>> RuntimeError: exceptions.TypeError Unable to convert=20 ::::string ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so=20 ::you ::also don't know the name of the file, right ? ::::::hmmmmmm i look ::::::>> around again. this we also have to document when found... ::::::>> ::::::>> valley ::::::>> ::::::>> ::::::>> ::::::>> ::::::>> ----- Original Message ----- ::::::>> From: "Alessandro Crugnola *sephiroth*" ::::::<ale...@se...> To: ::::::>> <sep...@li...> ::::::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject: ::::Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>>=20 ::This ::from the documentation: ::::::>> However, usually you don't even need to know the=20 ::precise ::nature of ::>> the class you're working with but=20 ::you would ::just use the ::wxConfigBase ::>> methods. This=20 ::allows you to ::write the same code regardless ::of whether=20 ::::>> you're ::working with the registry under Win32 or=20 ::text-based config ::::>> files under Unix (or even Windows=20 ::3.1 .INI files if ::you're really ::>> unlucky). To make=20 ::writing the portable ::code even easier, wxWidgets ::>>=20 ::provides a typedef wxConfig ::which is mapped onto the native=20 ::::>> 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=20 ::::::unix like os ::>> ot should be used a text file, but i=20 ::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=20 ::::modified ::Preferences ::>>> settings ? Yesterday I pressed=20 ::::'Apply' after my changes with the ::>>> StaticBoxSizers,=20 ::then ::the reminder (restart necessary) popped up, ::>>> but=20 ::when I ::tried to restart SEPY from then on I always ::got a=20 ::system ::::>>> exception that some settings couldn't have=20 ::been read ::::correctly. Also ::>>> a new cvs 'get' didn't=20 ::work, so it ::seems that there has sth. been ::>>> stored=20 ::outside the ::SEPY/Scite directory. ::::::>>> ::::::>>> Thanks. ::::::>>> valley ::::::>>> ::::::>>> ::::::>>> ::::::>>> -----Ursprungliche Nachricht----- ::::>>> Von:=20 ::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=20 ::::understand.. So i have to create the boxsizer before ::>>>=20 ::::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 &&=20 ::PHP developer ::::>>> ale...@se... ::::>>> ::::>>>=20 ::*relax with SEPY http://www.sf.net/projects/sepy ::>>> ::::--------------------------------------------- ::::::>>> ::::::>>> ::::::>>> ::-----Original Message----- ::::::>>> ::From: sep...@li... ::::::>>> ::[mailto:sep...@li...] On=20 ::::Behalf Of ::>>> valley ::>>> ::Sent: domenica 5 settembre ::::2004 18.33 ::>>> ::To: sep...@li...=20 ::::::>>> ::Subject: Re: [SE|PY-macdev] Preferences frozen ::>>> :: ::::::>>> ::Perhaps this could be the problem: ::::::>>>=20 ::::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 ::>>> ::>=20 ::::http://www.macromedia.com/go/team ::> Flash && PHP=20 ::::::developer ::> ::>>> ale...@se... ::> ::>=20 ::*relax ::with SEPY ::>>> http://www.sf.net/projects/sepy ::> ::>>> ::::--------------------------------------------- ::::::>>> ::> ::::::>>> ::> ::::::>>> ::> ::-----Original Message----- ::::>>> ::> ::From:=20 ::sep...@li... ::::::>>> ::> ::[mailto:sep...@li...] ::::On ::::Behalf ::>>> Of valley ::> ::Sent: domenica 5=20 ::::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=20 ::::::sort of line, ::>>> ::> ::because with the replacement=20 ::line ::it works!!! ::::::>>> ::> ::I've tried this replacement also on other pages=20 ::::and all ::>>> ::::elements ::> were accessible and modifyable. ::::::>>> ::> ::Also the languages are now filled into the=20 ::::combobox ::on page 1. ::::::>>> ::> :: ::::::>>> ::> ::So would it be possible to let these=20 ::::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,=20 ::-1, ::::> ::>>> ::> ::>>>=20 ::::self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::::::>>> ::> ::wx.VERTICAL) ::::::>>> ::> ::> ::::::>>> ::> ::> Into: ::::::>>> ::> ::> sizer_general_options =3D ::::wx.BoxSizer(wx.VERTICAL) ::::> ::::> ::>>> The only ::>=20 ::thing ::that come in my mind is the container ::of ::these=20 ::::>>> elements. ::::::>>> ::> ::> On the other side, there are no differences=20 ::::> ::::> ::>>> Alessandro ::> Crugnola - sephiroth ::> ::>>> ::::::--------------------------------------------- ::::::>>> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::>>>=20 ::::http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::::::developer ::> ::>>> ::> ale...@se... ::> ::>=20 ::::> ::::> *relax with SEPY ::>>>=20 ::http://www.sf.net/projects/sepy ::::> ::> ::>>>=20 ::--------------------------------------------- ::::::>>> ::> ::> ::::::>>> ::> ::> ::::::>>> ::> ::> ::-----Original Message----- ::> ::> ::From: ::::::>>> sep...@li... ::::::>>> ::> ::> ::::::[mailto:sep...@li...] On ::>>>=20 ::::::::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=20 ::work, ::::perhaps you ::>>> ::> ::::know a ::> difference=20 ::(binding ::events, filling in ::data, ...) ::>>> to ::>=20 ::::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=20 ::the ::bottom ::> ::>>> ::- ::> checkbox 'Check filesize ...'=20 ::at the ::bottom ::> :: ::::::>>> ::> ::> ::page 3 (Colors) ::::::>>> ::> ::> ::=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ::::::>>> ::> ::> ::- the three comboboxes at the bottom (line=20 ::::::folding, tabs ::>>> ::> ::> ::placement, edge ::>=20 ::::column) ::also work ::> :: ::::::>>> ::> ::> :: ::::::>>> ::> ::> ::Are theses elements newer than the others=20 ::::(i.e. do you ::>>> ::use ::> ::another ::> strategy in=20 ::::implementing them) ? funny is ::>>> also that ::> ::these=20 ::::::elements ::> are at the bottom of their ::>>> pages, but=20 ::::why ::> ::doesn't then e.g. the ::> checkbox at the ::>>>=20 ::::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=20 ::in ::::>>> WindowsPrefs.py ::> that ::> ::> ::causes some=20 ::::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=20 ::::OSX ::>>> installation ::> disc ::> ^_^ ::> ::> thanks ::>=20 ::::::> ::> ::Alessandro ::>>> Crugnola - ::> sephiroth ::>=20 ::::> ::::>>> --------------------------------------------- ::>=20 ::::> ::::> ::Macromedia ::>>> Flash Team Volunteer ::> ::> ::>=20 ::::::http://www.macromedia.com/go/team ::::::>>> ::> ::> Flash && PHP ::developer ::> ::> ::>=20 ::::::ale...@se... ::>>> ::> ::> ::> ::> *relax with=20 ::::SEPY ::> ::http://www.sf.net/projects/sepy ::>>> ::> ::> ::> ::::--------------------------------------------- ::::::>>> ::> ::> ::> ::::::>>> ::> ::> ::> ::::::>>> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From: ::::::>>> sep...@li... ::::::>>> ::> ::> ::> ::::::::[mailto:sep...@li...] On=20 ::::>>> ::::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5=20 ::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=20 ::AM ::::> ::>>> ::::Subject: RE: ::::::>>> ::> ::> [SE|PY-macdev] Preferences frozen ::> :: ::::::>>> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::> The only notebook still alive is=20 ::::the ::one which ::>>> ::> contains ::> the ::> ::>=20 ::::::documents ::itself! ::::::>>> ::> ::> ::> ::> ::> Maybe changing the notebook into=20 ::a ::::book ::like ::>>> for the ::> ::> ::left ::> panel ? ::::::>>> ::> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::Yes I could try that. Where and=20 ::what ::do ::I have to ::>>> ::> ::change in ::> ::> ::the ::>=20 ::source ::so that it works ::with ::a ::>>> Book ? Or ::> if=20 ::it's a ::> ::bigger ::> ::::change you ::> ::could the ::>>>=20 ::::changes and ::send ::> me the ::> ::modified file(s) ::>=20 ::::as ::>>> attachment. ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> Ok. In the WindowsPrefs.py ake these changes: ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> Line 27: ::::::>>> ::> ::> ::> ::> Change: ::::::>>> ::> ::> ::> ::> self.notebook_pref =3D=20 ::wx.Notebook(self, ::-1, ::>>> ::style=3D0) ::::> ::>>> ::>=20 ::::::> ::> Into: ::::::>>> ::> ::> ::> ::> self.notebook_pref =3D=20 ::wx.Listbook(self, ::-1, ::>>> ::style=3D0) ::::> ::>>> ::>=20 ::::::> ::> 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) ::::> ::>>> ::> ::>=20 ::::> ::::> ::> ::Btw: With the latest cvs source I get the=20 ::::>>> ::::following ::> ::> error message: ::::::>>> ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO :::::: import ::> ::::::>>> ::TODOWindow ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: >ImportError: No module named ::::::WindowsTODO ::> ::> ::::::>>> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::Maybe there's something missing=20 ::with ::the new ::>>> ::feature... ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> Ops, sorry.. ::::::>>> ::> ::> ::> ::> I forgot to add that file in the CVS=20 ::::::commit.. I will ::>>> do ::> ::> ::> immediately ::> ::>=20 ::::::> ::Btw2: Have you ::heard of the ::>>> ::> following ::>=20 ::::::> Sourceforge project: ::::::>>> ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::>=20 ::::::> ::With ::>>> ::::that you ::> can ::> emulate for=20 ::::instance OS X ::Panther on a ::> ::>>> ::::Windows ::> ::>=20 ::::machine, ::> and it seems to work ::quite well, as ::>>> a=20 ::::::> ::colleague ::> ::told me. So ::> ::> you could ::also=20 ::::try your ::>>> code ::changes on ::> ::> ::a mac ::machine=20 ::::and ::> ::::with that ::> ::>>> having a better=20 ::::::overview ::::> over the ::> ::::two os :-) ::> ::>>> ::>=20 ::::> Wow, i ::will ::download it now! ::::::>>> ::> ::> ::> ::> I hope to be able to install it=20 ::without ::::crashing my ::>>> ::> ::::system ::> ^_^ ::> ::>=20 ::::> ::> ::Alessandro Crugnola - ::>>> ::sephiroth ::> ::> ::>=20 ::::> ::>>> ::::--------------------------------------------- ::::::>>> ::> ::> ::> ::> Macromedia Flash Team Volunteer ::>=20 ::::> ::::> ::> ::>>> http://www.macromedia.com/go/team ::> ::>=20 ::Flash ::&& PHP ::::::developer ::>>> ::> ::> ::> ::>=20 ::::ale...@se... ::> ::> ::> ::> ::*relax with ::>>>=20 ::::::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::>=20 ::::::> ::>>> --------------------------------------------- ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::::::::From: ::> ::::::>>> sep...@li... ::::::>>> ::> ::> ::> ::> ::::::>>> ::::[mailto:sep...@li...]=20 ::On ::::> ::> ::>>> ::::Behalf Of ::> valley ::> ::Sent:=20 ::domenica 5 ::settembre ::::::2004 9.26 ::::::>>> ::> ::> ::> ::To: ::::::>>> ::> ::> ::> sep...@li... ::> ::::::::Subject: Re: ::> ::::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::valley ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::> ::::::>>> ::::------------------------------------------------------- ::::::>>> ::> ::> ::> ::> ::This SF.Net email is sponsored by=20 ::BEA ::::Weblogic ::> ::>>> ::Workshop ::> ::FREE ::> ::Java=20 ::::> ::Enterprise J2EE ::developer ::>>> tools! ::::::>>> ::> ::> ::> ::> ::Get your free copy of BEA WebLogic=20 ::::Workshop 8.1 ::>>> today. ::> ::> ::> ::> ::>>>=20 ::::::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::::>>> ::> ::> ::> ::> ::::::_______________________________________________ ::::::>>> ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::>=20 ::::> ::::> ::>>> ::sep...@li... ::::::>>> ::> ::> ::> ::> ::::::>>> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> ::> ::::::>>> ------------------------------------------------------- ::::::>>> ::> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::::Weblogic ::>>> ::::Workshop ::> ::FREE ::> Java ::> ::>=20 ::::Enterprise J2EE ::developer ::>>> tools! ::::::>>> ::> ::> ::> ::> Get your free copy of BEA WebLogic=20 ::::::Workshop 8.1 today. ::::::>>> ::> ::> ::> ::> ::::::>>> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::::>>> ::> ::> ::> ::> ::::::_______________________________________________ ::> ::>>>=20 ::::::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::> ::>>>=20 ::::sep...@li... ::> ::> ::> ::> ::>>>=20 ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::> ::> ::> ::> ::::::>>> ::> ::> ::> :: ::::::>>> ::> ::> ::> :: ::::::>>> ::> ::> ::> :: ::::::>>> ::> ::> ::> ::::::>>> ::------------------------------------------------------- ::::::>>> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::::Weblogic ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::::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 ::> ::> ::>=20 ::::::>>> ::sep...@li... ::::::>>> ::> ::> ::> ::::::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::> ::> ::> ::::::>>> ::> ::> ::> ::::::>>> ::> ::> ::> ::::::>>> ::> ::> ::> ::::::>>> ::> ::> ::> ::::::------------------------------------------------------- ::::::>>> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::::Weblogic ::>>> ::Workshop ::FREE ::> Java ::> ::>=20 ::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 ::> ::> ::>=20 ::::>>> ::sep...@li... ::> ::> ::> ::>>>=20 ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::> ::> ::> ::::::>>> ::> ::> :: ::::::>>> ::> ::> :: ::::::>>> ::> ::> :: ::::::>>> ::> ::> ::::::------------------------------------------------------- ::::::>>> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::::Weblogic ::::Workshop ::>>> ::FREE ::> ::Java ::>=20 ::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=20 ::::> ::::>>> ::> ::_______________________________________________ ::::::>>> ::> ::> ::sepy-macdev mailing list ::>>> ::> ::>=20 ::::::sep...@li... ::::::>>> ::> ::> ::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::>>> ::::------------------------------------------------------- ::::::::> ::> This ::::::>>> SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::::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=20 ::::> ::::>>> ::> _______________________________________________ ::::::>>> ::> ::> sepy-macdev mailing list ::::>>> ::> ::>=20 ::sep...@li... ::> ::> ::>>>=20 ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::::> ::> ::> ::::::>>> :: ::::::>>> ::> :: ::::::>>> ::> :: ::::::>>> ::> ::------------------------------------------------------- ::::::>>> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::::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=20 ::::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... ::> ::>>>=20 ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::> ::::::>>> :: ::::::>>> :: ::::::>>> :: ::::::>>> ::------------------------------------------------------- ::::::>>> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::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=20 ::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... ::::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>>> ::::::>>> ::::::>>> ------------------------------------------------------- ::::::>>> This SF.Net email is sponsored by BEA Weblogic=20 ::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... ::::>>>=20 ::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". ::::::>> --- ::::::>> ::::::>> ::::::>> ::::::>> ::::::>> ------------------------------------------------------- ::::::>> This SF.Net email is sponsored by BEA Weblogic=20 ::Workshop ::FREE Java ::>> Enterprise J2EE developer tools! ::::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::::>> _______________________________________________ ::::::>> sepy-macdev mailing list ::::::>> sep...@li... ::::>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::>> ::::::>> ::::::>> ::::::>> ------------------------------------------------------- ::::::>> This SF.Net email is sponsored by BEA Weblogic=20 ::Workshop ::FREE Java ::>> Enterprise J2EE developer tools! ::::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::::>> _______________________________________________ ::::::>> sepy-macdev mailing list ::::::>> sep...@li... ::::>>=20 ::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". ::::::> --- ::::::> ::::::> ::::::> ::::::> ::::::> ------------------------------------------------------- ::::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::FREE Java ::> Enterprise J2EE developer tools! ::::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::::> _______________________________________________ ::::::> sepy-macdev mailing list ::::::> sep...@li... ::::::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::> ::::::> ::::::> ------------------------------------------------------- ::::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::FREE Java ::> Enterprise J2EE developer tools! ::::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::::> _______________________________________________ ::::::> 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". ::::::--- :::::: :::::: :::::: :::::: ::::::------------------------------------------------------- ::::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::FREE ::Java Enterprise J2EE developer tools! ::::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::::_______________________________________________ ::::::sepy-macdev mailing list ::::::sep...@li... ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::: :::::: ::::::------------------------------------------------------- ::::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::FREE ::Java Enterprise J2EE developer tools! ::::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::::_______________________________________________ ::::::sepy-macdev mailing list ::::::sep...@li... ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::_______________________________________________ ::::sepy-macdev mailing list ::::sep...@li... ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::_______________________________________________ ::::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: valley <va...@ic...> - 2004-09-08 16:05:47
|
Ciao Alessandro, ok, now everything works again. I can say the following things: 1) SEPY preferences are stored in ~/Library/Preferences in the file 'Sephiroth Preferences' . After deleting it SEPY started fine again. 2) The Preferences window looks ok now: - all is selectable and modifyable - tooltips work now also (but NOT in the main SEPY window !!) - when applying and there is no language selected on page 1 (default) you get an error! So you should check if there's a selection i= n this combobox - i tried changing font and size and it works, even after restart 3) What still doesn't work now: - writing chars like {,},[,] --> still seems not accepting the a= lt presses - create a new project directly --> still bus error and crash, an= d when first choose 'open project' and after that save the new project file error message that filename contains illegal characters But well done so far, seems to get better and better, also on OS X. valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <sep...@us...> To: <sep...@li...> Sent: Wednesday, September 08, 2004 12:28 PM Subject: RE: AW: AW: [SE|PY-macdev] Preferences frozen Hi Valentin, Can you please verify the preference window with my latest cvs changes? Still freeze? 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 ::Treu, Valentin ::Sent: mercoled=EC 8 settembre 2004 7.34 ::To: 'sep...@li...' ::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ok, thanks. Then I have to wait & hope & pray ;-) :: ::valley :: :: :: :: ::-----Urspr=FCngliche Nachricht----- ::Von: sep...@li... ::[mailto:sep...@li...]Im Auftrag ::von Alessandro Crugnola *sephiroth* ::Gesendet: Dienstag, 7. September 2004 21:16 ::An: sep...@li... ::Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::I posted the question on the wxpython mailing list.. I really ::don't know where it could be ^_^ :: ::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 ::Treu, Valentin ::::Sent: marted=EC 7 settembre 2004 12.40 ::::To: 'sep...@li...' ::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::: ::::Now I really have a problem: I cannot find this file ::::(searched for possible text inside, change date, etc.) and ::it ::seems that it's damaged because I always get an error ::::'TypeError: Unable to convert string'. ::::Someone's got an idea ? :::: ::::valley :::: :::: :::: :::: :::: ::::-----Urspr=FCngliche Nachricht----- ::::Von: sep...@li... ::::[mailto:sep...@li...]Im Auftrag ::::von Alessandro Crugnola *sephiroth* ::::Gesendet: Dienstag, 7. September 2004 09:19 ::::An: sep...@li... ::::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :::: :::: ::::the apply method is in the windowsprefs.py file at line (+ ::/ -) 1154. ::::the basepath of the wxConfig object is /Sephiroth/ASE, then ::::for every value i have to write there is for example: :::: ::::self.parent.reg.WriteInt("preferences/general/autosave", auto_save) :::: ::::which save an integer in the ::::/Sephiroth/ASE/preferences/general/autosave ::::path ::::or: ::::self.parent.reg.Write("preferences/general/language",languag) :::: ::::when writing a String, for the path ::::/Sephiroth/ASE/preferences/general/language :::: ::::hope this can help find the file!.. :::: :::: ::::Treu, Valentin said: ::::> Yes, I'll do that on lunch time. ::::> Yesterday I tried with commenting the Runtime Exception ::::raising, and ::> then it went through and stopped at ::another position. ::::> So I don't think that we have to change sth. in the code ::::(now it also ::> doesn't work anymore with older SEPY ::versions where it definitely ::> worked). ::::> I searched for files on my Mac that could have stored the ::modified ::> settings and which SEPY cannot read correctly ::anymore on ::startup, but ::> didn't succeed. ::::> Can you tell me where in the code you implemented the ::save process ::> when pressing on the 'Apply' button in Preferences ? ::::> I just need to know the dir and the filename outside the SEPY dir! ::::> ::::> valley ::::> ::::> ::::> ::::> ::::> -----Urspr=FCngliche Nachricht----- ::::> Von: sep...@li... ::::> [mailto:sep...@li...]Im ::Auftrag von ::> Alessandro Crugnola *sephiroth* ::> Gesendet: ::Dienstag, 7. September 2004 08:07 ::> An: ::sep...@li... ::> Betreff: Re: AW: ::[SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can you ::convert that method: ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> try: ::::> self.xml_reader_panel =3D ::::XMLPanel(self.notebook_l, -1, ::::> langClass =3D self.langPY, parent =3D self) ::::> except: ::::> self.notebook_l.Thaw() ::::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> ::::> ::::> ::::> ::::> ::::> into this? ::::> ::::> ::::> ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> #try: ::::> self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, ::::> langClass =3D self.langPY, parent =3D self) ::::> #except: ::::> # self.notebook_l.Thaw() ::::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> # return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> valley said: ::::>> this is the error message: ::::>> ::::>> Traceback (most recent call last): ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line ::::142, in Notify ::::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), ::::>> title=3DAbout_title, dialog =3D self.dialog) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line ::::256, in __init__ ::::>> self._createLeftPanel() ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in ::::>> _createLeftPanel ::::>> self._show_XMLReader(1) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in ::::>> _show_XMLReader ::::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::>> RuntimeError: exceptions.TypeError Unable to convert ::string ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so you ::also don't know the name of the file, right ? ::::hmmmmmm i look ::::>> around again. this we also have to document when found... ::::>> ::::>> valley ::::>> ::::>> ::::>> ::::>> ::::>> ----- Original Message ----- ::::>> From: "Alessandro Crugnola *sephiroth*" ::::<ale...@se...> To: ::::>> <sep...@li...> ::::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject: ::Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> This ::from the documentation: ::::>> However, usually you don't even need to know the precise ::nature of ::>> the class 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 with 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=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=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 ::::>> ::::>> ::::>> --- ::::>> 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". ::::>> --- ::::>> ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> 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_idP47&alloc_id=10808&op=3Dick ::::>> _______________________________________________ ::::>> 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_idP47&alloc_id=10808&op=CCk ::::>> _______________________________________________ ::::>> 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". ::::> --- ::::> ::::> ::::> ::::> ::::> ------------------------------------------------------- ::::> 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_idP47&alloc_id=10808&op=3Dick ::::> _______________________________________________ ::::> 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_idP47&alloc_id=10808&op=CCk ::::> _______________________________________________ ::::> 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". ::::--- :::: :::: :::: :::: ::::------------------------------------------------------- ::::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_idP47&alloc_id=10808&op=3Dick ::::_______________________________________________ ::::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_idP47&alloc_id=10808&op=CCk ::::_______________________________________________ ::::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_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Treu, V. <Val...@in...> - 2004-09-08 10:54:58
|
Ciao Alessandro, thanks for your notification. I will test both (plist & frozen Preferences) this evening. This also means that you haven't found yet a OS X Panther Version to install for PearPC ;-) I have seen some plist files on my searches but none of them had to do = with SEPY directly, perhaps it's a general file where all applications' = preferences are stored... I'll see and tell you. valley -----Urspr=FCngliche Nachricht----- Von: sep...@li... [mailto:sep...@li...]Im Auftrag von Alessandro Crugnola *sephiroth* Gesendet: Mittwoch, 8. September 2004 12:28 An: sep...@li... Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen Hi Valentin, Can you please verify the preference window with my latest cvs changes? Still freeze? 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of=20 ::Treu, Valentin ::Sent: mercoled=EC 8 settembre 2004 7.34 ::To: 'sep...@li...' ::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ok, thanks. Then I have to wait & hope & pray ;-) :: ::valley :: :: :: :: ::-----Urspr=FCngliche Nachricht----- ::Von: sep...@li... ::[mailto:sep...@li...]Im Auftrag=20 ::von Alessandro Crugnola *sephiroth* ::Gesendet: Dienstag, 7. September 2004 21:16 ::An: sep...@li... ::Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::I posted the question on the wxpython mailing list.. I really=20 ::don't know where it could be ^_^ :: ::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 ::--------------------------------------------- ::=20 :: ::::-----Original Message----- ::::From: sep...@li... ::::[mailto:sep...@li...] On Behalf=20 ::Of ::Treu, Valentin ::::Sent: marted=EC 7 settembre 2004 12.40 ::::To: 'sep...@li...' ::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::: ::::Now I really have a problem: I cannot find this file=20 ::::(searched for possible text inside, change date, etc.) and=20 ::it ::seems that it's damaged because I always get an error ::::'TypeError: Unable to convert string'. ::::Someone's got an idea ? :::: ::::valley :::: :::: :::: :::: :::: ::::-----Urspr=FCngliche Nachricht----- ::::Von: sep...@li... ::::[mailto:sep...@li...]Im Auftrag=20 ::::von Alessandro Crugnola *sephiroth* ::::Gesendet: Dienstag, 7. September 2004 09:19 ::::An: sep...@li... ::::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :::: :::: ::::the apply method is in the windowsprefs.py file at line (+=20 ::/ -) 1154. ::::the basepath of the wxConfig object is /Sephiroth/ASE, then=20 ::::for every value i have to write there is for example: :::: ::::self.parent.reg.WriteInt("preferences/general/autosave", auto_save) :::: ::::which save an integer in the ::::/Sephiroth/ASE/preferences/general/autosave ::::path ::::or: ::::self.parent.reg.Write("preferences/general/language",languag) :::: ::::when writing a String, for the path ::::/Sephiroth/ASE/preferences/general/language :::: ::::hope this can help find the file!.. :::: :::: ::::Treu, Valentin said: ::::> Yes, I'll do that on lunch time. ::::> Yesterday I tried with commenting the Runtime Exception=20 ::::raising, and ::> then it went through and stopped at=20 ::another position. ::::> So I don't think that we have to change sth. in the code=20 ::::(now it also ::> doesn't work anymore with older SEPY=20 ::versions where it definitely ::> worked). ::::> I searched for files on my Mac that could have stored the=20 ::modified ::> settings and which SEPY cannot read correctly=20 ::anymore on ::startup, but ::> didn't succeed. ::::> Can you tell me where in the code you implemented the=20 ::save process ::> when pressing on the 'Apply' button in Preferences ? ::::> I just need to know the dir and the filename outside the SEPY = dir! ::::> ::::> valley ::::> ::::> ::::> ::::> ::::> -----Urspr=FCngliche Nachricht----- ::::> Von: sep...@li... ::::> [mailto:sep...@li...]Im=20 ::Auftrag von ::> Alessandro Crugnola *sephiroth* ::> Gesendet:=20 ::Dienstag, 7. September 2004 08:07 ::> An:=20 ::sep...@li... ::> Betreff: Re: AW:=20 ::[SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can you=20 ::convert that method: ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> try: ::::> self.xml_reader_panel =3D=20 ::::XMLPanel(self.notebook_l, -1, ::::> langClass =3D self.langPY, parent =3D self) ::::> except: ::::> self.notebook_l.Thaw() ::::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> ::::> ::::> ::::> ::::> ::::> into this? ::::> ::::> ::::> ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> #try: ::::> self.xml_reader_panel =3D XMLPanel(self.notebook_l, = -1,=20 ::::> langClass =3D self.langPY, parent =3D self) ::::> #except: ::::> # self.notebook_l.Thaw() ::::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> # return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> valley said: ::::>> this is the error message: ::::>> ::::>> Traceback (most recent call last): ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::::142, in Notify ::::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(),=20 ::::>> title=3DAbout_title, dialog =3D self.dialog) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::::256, in __init__ ::::>> self._createLeftPanel() ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in=20 ::::>> _createLeftPanel ::::>> self._show_XMLReader(1) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in=20 ::::>> _show_XMLReader ::::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::>> RuntimeError: exceptions.TypeError Unable to convert=20 ::string ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so you=20 ::also don't know the name of the file, right ?=20 ::::hmmmmmm i look ::::>> around again. this we also have to document when found... ::::>> ::::>> valley ::::>> ::::>> ::::>> ::::>> ::::>> ----- Original Message ----- ::::>> From: "Alessandro Crugnola *sephiroth*"=20 ::::<ale...@se...> To: ::::>> <sep...@li...> ::::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject:=20 ::Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> This=20 ::from the documentation: ::::>> However, usually you don't even need to know the precise=20 ::nature of ::>> the class you're working with but you would=20 ::just use the ::wxConfigBase ::>> methods. This allows you to=20 ::write the same code regardless ::of whether ::>> you're=20 ::working with the registry under Win32 or text-based config=20 ::::>> files under Unix (or even Windows 3.1 .INI files if=20 ::you're really ::>> unlucky). To make writing the portable=20 ::code even easier, wxWidgets ::>> provides a typedef wxConfig=20 ::which is mapped onto the native ::>> wxConfigBase=20 ::implementation on the given platform: i.e.=20 ::::wxRegConfig ::::>> under Win32 (optionally ::::>> wxIniConfig) and wxFileConfig otherwise. ::::>> ::::>> So, unde windows i use the Registry, anc under mac and=20 ::::unix like os ::>> ot should be used a text file, but i dont=20 ::know where it is ::stored..=20 ::::>> can you write the exception you got? ::::>> ::::>> thanks ::::>> ::::>> ::::>> Treu, Valentin said: ::::>>> Ok, fine. ::::>>> Another question: Where (directory) do you save=20 ::modified ::Preferences ::>>> settings ? Yesterday I pressed=20 ::'Apply' after my changes with the ::>>> StaticBoxSizers, then=20 ::the reminder (restart necessary) popped up, ::>>> but when I=20 ::tried to restart SEPY from then on I always ::got a system=20 ::::>>> exception that some settings couldn't have been read=20 ::::correctly. Also ::>>> a new cvs 'get' didn't work, so it=20 ::seems that there has sth. been ::>>> stored outside the=20 ::SEPY/Scite directory. ::::>>> ::::>>> Thanks. ::::>>> valley ::::>>> ::::>>> ::::>>> ::::>>> -----Ursprungliche Nachricht----- ::::>>> Von: sep...@li... ::::>>> [mailto:sep...@li...]Im=20 ::Auftrag von ::>>> Alessandro Crugnola *sephiroth* ::>>>=20 ::Gesendet: Sonntag, 5. September 2004 21:06 ::>>> An:=20 ::sep...@li... ::>>> Betreff: RE:=20 ::[SE|PY-macdev] Preferences frozen ::>>> ::>>> ::>>> Ah.. I=20 ::understand.. So i have to create the boxsizer before ::>>>=20 ::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 ::>>>=20 ::--------------------------------------------- ::::>>> ::::>>> ::::>>> ::-----Original Message----- ::::>>> ::From: sep...@li... ::::>>> ::[mailto:sep...@li...] On=20 ::Behalf Of ::>>> valley ::>>> ::Sent: domenica 5 settembre=20 ::2004 18.33 ::>>> ::To: sep...@li...=20 ::::>>> ::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 ::>>>=20 ::::Subject: RE: [SE|PY-macdev] Preferences frozen ::>>> :: ::::>>> :: ::::>>> ::> Damn, what an incredible thing! ::::>>> ::> Let me ask in the wxPython mailing list first..=20 ::Maybe is a my ::>>> fault ::> ^_^ ::> ::> Alessandro Crugnola=20 ::- sephiroth ::> ::>>> --------------------------------------------- ::::>>> ::> Macromedia Flash Team Volunteer ::>>> ::>=20 ::http://www.macromedia.com/go/team ::> Flash && PHP=20 ::::developer ::> ::>>> ale...@se... ::> ::> *relax=20 ::with SEPY ::>>> http://www.sf.net/projects/sepy ::> ::>>>=20 ::--------------------------------------------- ::::>>> ::> ::::>>> ::> ::::>>> ::> ::-----Original Message----- ::::>>> ::> ::From: sep...@li... ::::>>> ::> ::[mailto:sep...@li...]=20 ::On ::::Behalf ::>>> Of valley ::> ::Sent: domenica 5=20 ::settembre 2004 15.40 ::> ::To:=20 ::::>>> sep...@li... ::> ::Subject: Re:=20 ::::[SE|PY-macdev] ::::>>> Preferences frozen ::> :: ::::>>> ::> ::That's what I also just tried. And it's in this=20 ::::sort of line, ::>>> ::> ::because with the replacement line=20 ::it works!!! ::::>>> ::> ::I've tried this replacement also on other pages=20 ::and all ::>>> ::::elements ::> were accessible and modifyable. ::::>>> ::> ::Also the languages are now filled into the=20 ::combobox ::on page 1. ::::>>> ::> :: ::::>>> ::> ::So would it be possible to let these=20 ::StaticBoxSizers away ::>>> ::and ::just ::> use BoxSizer ? ::::>>> ::> :: ::::>>> ::> ::valley ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> ::----- Original Message ----- ::>>> ::> ::From:=20 ::"Alessandro Crugnola *sephiroth*" ::::>>> ::> ::<sep...@us...> ::::>>> ::> ::To: <sep...@li...> ::::>>> ::> ::Sent: Sunday, September 05, 2004 4:23 PM ::>=20 ::::Subject: RE:=20 ::::>>> [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,=20 ::::> ::>>> ::> ::>>>=20 ::self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::::>>> ::> ::wx.VERTICAL) ::::>>> ::> ::> ::::>>> ::> ::> Into: ::::>>> ::> ::> sizer_general_options =3D=20 ::wx.BoxSizer(wx.VERTICAL) ::::> ::::> ::>>> The only ::> thing=20 ::that come in my mind is the container ::of ::these ::>>> elements. ::::>>> ::> ::> On the other side, there are no differences ::>=20 ::::> ::>>> Alessandro ::> Crugnola - sephiroth ::> ::>>>=20 ::::--------------------------------------------- ::::>>> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::>>>=20 ::http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::::developer ::> ::>>> ::> ale...@se... ::> ::> ::>=20 ::::> *relax with SEPY ::>>> http://www.sf.net/projects/sepy=20 ::::> ::> ::>>> --------------------------------------------- ::::>>> ::> ::> ::::>>> ::> ::> ::::>>> ::> ::> ::-----Original Message----- ::> ::> ::From:=20 ::::>>> sep...@li... ::::>>> ::> ::>=20 ::::[mailto:sep...@li...] On ::>>>=20 ::::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::::2004 14.17 ::::>>> ::> ::To: ::> sep...@li... ::> ::::::Subject: Re:=20 ::::>>> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::...and I tell you all the elements that work,=20 ::::perhaps you ::>>> ::> ::::know a ::> difference (binding=20 ::events, filling in ::data, ...) ::>>> to ::> ::all ::the=20 ::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=20 ::bottom ::> ::>>> ::- ::> checkbox 'Check filesize ...' at the=20 ::bottom ::> :: ::::>>> ::> ::> ::page 3 (Colors) ::::>>> ::> ::> ::=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ::::>>> ::> ::> ::- the three comboboxes at the bottom (line=20 ::::folding, tabs ::>>> ::> ::> ::placement, edge ::> ::column)=20 ::also work ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> ::Are theses elements newer than the others=20 ::(i.e. do you ::>>> ::use ::> ::another ::> strategy in=20 ::implementing them) ? funny is ::>>> also that ::> ::these=20 ::::elements ::> are at the bottom of their ::>>> pages, but=20 ::why ::> ::doesn't then e.g. the ::> checkbox at the ::>>>=20 ::bottom of page ::>>> ::4 work..... ::::>>> ::> ::> :: ::::>>> ::> ::> ::valley ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::::"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=20 ::::>>> WindowsPrefs.py ::> that ::> ::> ::causes some=20 ::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=20 ::OSX ::>>> installation ::> disc ::> ^_^ ::> ::> thanks ::>=20 ::::> ::> ::Alessandro ::>>> Crugnola - ::> sephiroth ::> ::>=20 ::::>>> --------------------------------------------- ::> ::>=20 ::::> ::Macromedia ::>>> Flash Team Volunteer ::> ::> ::>=20 ::::http://www.macromedia.com/go/team ::::>>> ::> ::> Flash && PHP ::developer ::> ::> ::>=20 ::::ale...@se... ::>>> ::> ::> ::> ::> *relax with=20 ::SEPY ::> ::http://www.sf.net/projects/sepy ::>>> ::> ::> ::>=20 ::--------------------------------------------- ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From:=20 ::::>>> sep...@li... ::::>>> ::> ::> ::> ::::::[mailto:sep...@li...] On ::>>>=20 ::::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::::>>> ::2004 13.38 ::>>> ::> ::> ::To: ::::>>> ::> ::> sep...@li... ::> ::Subject: Re: ::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::valley ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::::>>> "Alessandro ::> Crugnola *sephiroth*" ::::>>> ::> ::> ::> ::<sep...@us...> ::::>>> ::> ::> ::> ::To: <sep...@li...> ::::>>> ::> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM=20 ::::> ::>>> ::::Subject: RE: ::::>>> ::> ::> [SE|PY-macdev] Preferences frozen ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::> The only notebook still alive is=20 ::the ::one which ::>>> ::> contains ::> the ::> ::>=20 ::::documents ::itself! ::::>>> ::> ::> ::> ::> ::> Maybe changing the notebook into a=20 ::::book ::like ::>>> for the ::> ::> ::left ::> panel ? ::::>>> ::> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::Yes I could try that. Where and what=20 ::do ::I have to ::>>> ::> ::change in ::> ::> ::the ::> source=20 ::so that it works ::with ::a ::>>> Book ? Or ::> if it's a ::>=20 ::bigger ::> ::::change you ::> ::could the ::>>> ::changes and=20 ::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,=20 ::-1, ::>>> ::style=3D0) ::::> ::>>> ::> ::::> ::> Into: ::::>>> ::> ::> ::> ::> self.notebook_pref =3D wx.Listbook(self,=20 ::-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,=20 ::1, ::wx.EXPAND, ::>>> ::> ::>>> ::0) ::::> ::>>> ::> ::> ::>=20 ::::> ::> ::Btw: With the latest cvs source I get the ::>>>=20 ::::following ::> ::> error message: ::::>>> ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO =20 :::: import ::> ::::>>> ::TODOWindow ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: >ImportError: No module named=20 ::::WindowsTODO ::> ::> ::::>>> ::> ::> :: ::::>>> ::> ::> ::> ::> ::Maybe there's something missing with=20 ::the new ::>>> ::feature... ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> Ops, sorry.. ::::>>> ::> ::> ::> ::> I forgot to add that file in the CVS=20 ::::commit.. I will ::>>> do ::> ::> ::> immediately ::> ::>=20 ::::> ::Btw2: Have you ::heard of the ::>>> ::> following ::>=20 ::::> Sourceforge project: ::::>>> ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::>=20 ::::> ::With ::>>> ::::that you ::> can ::> emulate for=20 ::instance OS X ::Panther on a ::> ::>>> ::::Windows ::> ::>=20 ::machine, ::> and it seems to work ::quite well, as ::>>> a=20 ::::> ::colleague ::> ::told me. So ::> ::> you could ::also=20 ::try your ::>>> code ::changes on ::> ::> ::a mac ::machine=20 ::and ::> ::::with that ::> ::>>> having a better ::::overview=20 ::::> over the ::> ::::two os :-) ::> ::>>> ::> ::> Wow, i=20 ::will ::download it now! ::::>>> ::> ::> ::> ::> I hope to be able to install it without=20 ::::crashing my ::>>> ::> ::::system ::> ^_^ ::> ::> ::> ::>=20 ::Alessandro Crugnola - ::>>> ::sephiroth ::> ::> ::> ::> ::>>>=20 ::--------------------------------------------- ::::>>> ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::>=20 ::::> ::> ::>>> http://www.macromedia.com/go/team ::> ::> Flash=20 ::&& PHP ::::::developer ::>>> ::> ::> ::> ::>=20 ::ale...@se... ::> ::> ::> ::> ::*relax with ::>>>=20 ::::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::>=20 ::::> ::>>> --------------------------------------------- ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::::::From: ::> ::::>>> sep...@li... ::::>>> ::> ::> ::> ::> ::::>>> ::::[mailto:sep...@li...] On=20 ::::> ::> ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5=20 ::settembre ::::2004 9.26 ::::>>> ::> ::> ::> ::To: ::::>>> ::> ::> ::> sep...@li... ::> ::::::Subject: Re: ::> ::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::valley ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::::------------------------------------------------------- ::::>>> ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::::Weblogic ::> ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::Enterprise J2EE ::developer ::>>> tools! ::::>>> ::> ::> ::> ::> ::Get your free copy of BEA WebLogic=20 ::Workshop 8.1 ::>>> today. ::> ::> ::> ::> ::>>>=20 ::::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> ::>=20 ::::_______________________________________________ ::::>>> ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::>=20 ::::> ::>>> ::sep...@li... ::::>>> ::> ::> ::> ::> ::::>>> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ------------------------------------------------------- ::::>>> ::> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::::Workshop ::> ::FREE ::> Java ::> ::>=20 ::Enterprise J2EE ::developer ::>>> tools! ::::>>> ::> ::> ::> ::> Get your free copy of BEA WebLogic=20 ::::Workshop 8.1 today. ::::>>> ::> ::> ::> ::> ::::>>> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> ::> ::::_______________________________________________ ::> ::>>>=20 ::::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::> ::>>>=20 ::sep...@li... ::> ::> ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::::>>> ::------------------------------------------------------- ::::>>> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::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 ::> ::> ::>=20 ::::>>> ::sep...@li... ::::>>> ::> ::> ::> ::::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::------------------------------------------------------- ::::>>> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::Workshop ::FREE ::> Java ::> ::> Enterprise=20 ::J2EE ::developer tools! ::::>>> ::> ::> ::> Get your free copy of BEA WebLogic Workshop ::::8.1 today.=20 ::::>>> ::> ::> ::> ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> _______________________________________________ ::::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::>>>=20 ::sep...@li... ::> ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::>=20 ::::------------------------------------------------------- ::::>>> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::::Workshop ::>>> ::FREE ::> ::Java ::> Enterprise=20 ::J2EE developer tools! ::::>>> ::> ::> ::Get your free copy of BEA WebLogic Workshop=20 ::8.1 ::today. ::> ::>>> ::>=20 ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::::>>> ::> ::_______________________________________________ ::::>>> ::> ::> ::sepy-macdev mailing list ::>>> ::> ::>=20 ::::sep...@li... ::::>>> ::> ::> ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::>>>=20 ::------------------------------------------------------- ::::::> ::> This ::::>>> SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::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 ::>=20 ::::>>> ::> _______________________________________________ ::::>>> ::> ::> sepy-macdev mailing list ::::>>> ::> ::> sep...@li... ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::> ::> ::> ::::>>> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> ::------------------------------------------------------- ::::>>> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::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=20 ::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... ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::::>>> :: ::::>>> :: ::::>>> :: ::::>>> ::------------------------------------------------------- ::::>>> ::This SF.Net email is sponsored by BEA Weblogic=20 ::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=20 ::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=20 ::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". ::::>> --- ::::>> ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::>> Enterprise J2EE developer tools! ::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::>> _______________________________________________ ::::>> sepy-macdev mailing list ::::>> sep...@li... ::::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::>> Enterprise J2EE developer tools! ::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::>> _______________________________________________ ::::>> 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". ::::> --- ::::> ::::> ::::> ::::> ::::> ------------------------------------------------------- ::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::> Enterprise J2EE developer tools! ::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::> _______________________________________________ ::::> sepy-macdev mailing list ::::> sep...@li... ::::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::> ::::> ::::> ------------------------------------------------------- ::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::> Enterprise J2EE developer tools! ::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::> _______________________________________________ ::::> 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". ::::--- :::: :::: :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::_______________________________________________ ::::sepy-macdev mailing list ::::sep...@li... ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::_______________________________________________ ::::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-08 10:28:35
|
Hi Valentin, Can you please verify the preference window with my latest cvs changes? Still freeze? 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of=20 ::Treu, Valentin ::Sent: mercoled=EC 8 settembre 2004 7.34 ::To: 'sep...@li...' ::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ok, thanks. Then I have to wait & hope & pray ;-) :: ::valley :: :: :: :: ::-----Urspr=FCngliche Nachricht----- ::Von: sep...@li... ::[mailto:sep...@li...]Im Auftrag=20 ::von Alessandro Crugnola *sephiroth* ::Gesendet: Dienstag, 7. September 2004 21:16 ::An: sep...@li... ::Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::I posted the question on the wxpython mailing list.. I really=20 ::don't know where it could be ^_^ :: ::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 ::--------------------------------------------- ::=20 :: ::::-----Original Message----- ::::From: sep...@li... ::::[mailto:sep...@li...] On Behalf=20 ::Of ::Treu, Valentin ::::Sent: marted=EC 7 settembre 2004 12.40 ::::To: 'sep...@li...' ::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::: ::::Now I really have a problem: I cannot find this file=20 ::::(searched for possible text inside, change date, etc.) and=20 ::it ::seems that it's damaged because I always get an error ::::'TypeError: Unable to convert string'. ::::Someone's got an idea ? :::: ::::valley :::: :::: :::: :::: :::: ::::-----Urspr=FCngliche Nachricht----- ::::Von: sep...@li... ::::[mailto:sep...@li...]Im Auftrag=20 ::::von Alessandro Crugnola *sephiroth* ::::Gesendet: Dienstag, 7. September 2004 09:19 ::::An: sep...@li... ::::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :::: :::: ::::the apply method is in the windowsprefs.py file at line (+=20 ::/ -) 1154. ::::the basepath of the wxConfig object is /Sephiroth/ASE, then=20 ::::for every value i have to write there is for example: :::: ::::self.parent.reg.WriteInt("preferences/general/autosave", auto_save) :::: ::::which save an integer in the ::::/Sephiroth/ASE/preferences/general/autosave ::::path ::::or: ::::self.parent.reg.Write("preferences/general/language",languag) :::: ::::when writing a String, for the path ::::/Sephiroth/ASE/preferences/general/language :::: ::::hope this can help find the file!.. :::: :::: ::::Treu, Valentin said: ::::> Yes, I'll do that on lunch time. ::::> Yesterday I tried with commenting the Runtime Exception=20 ::::raising, and ::> then it went through and stopped at=20 ::another position. ::::> So I don't think that we have to change sth. in the code=20 ::::(now it also ::> doesn't work anymore with older SEPY=20 ::versions where it definitely ::> worked). ::::> I searched for files on my Mac that could have stored the=20 ::modified ::> settings and which SEPY cannot read correctly=20 ::anymore on ::startup, but ::> didn't succeed. ::::> Can you tell me where in the code you implemented the=20 ::save process ::> when pressing on the 'Apply' button in Preferences ? ::::> I just need to know the dir and the filename outside the SEPY dir! ::::> ::::> valley ::::> ::::> ::::> ::::> ::::> -----Urspr=FCngliche Nachricht----- ::::> Von: sep...@li... ::::> [mailto:sep...@li...]Im=20 ::Auftrag von ::> Alessandro Crugnola *sephiroth* ::> Gesendet:=20 ::Dienstag, 7. September 2004 08:07 ::> An:=20 ::sep...@li... ::> Betreff: Re: AW:=20 ::[SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can you=20 ::convert that method: ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> try: ::::> self.xml_reader_panel =3D=20 ::::XMLPanel(self.notebook_l, -1, ::::> langClass =3D self.langPY, parent =3D self) ::::> except: ::::> self.notebook_l.Thaw() ::::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> ::::> ::::> ::::> ::::> ::::> into this? ::::> ::::> ::::> ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> #try: ::::> self.xml_reader_panel =3D XMLPanel(self.notebook_l, = -1,=20 ::::> langClass =3D self.langPY, parent =3D self) ::::> #except: ::::> # self.notebook_l.Thaw() ::::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> # return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> valley said: ::::>> this is the error message: ::::>> ::::>> Traceback (most recent call last): ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::::142, in Notify ::::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(),=20 ::::>> title=3DAbout_title, dialog =3D self.dialog) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::::256, in __init__ ::::>> self._createLeftPanel() ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in=20 ::::>> _createLeftPanel ::::>> self._show_XMLReader(1) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in=20 ::::>> _show_XMLReader ::::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::>> RuntimeError: exceptions.TypeError Unable to convert=20 ::string ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so you=20 ::also don't know the name of the file, right ?=20 ::::hmmmmmm i look ::::>> around again. this we also have to document when found... ::::>> ::::>> valley ::::>> ::::>> ::::>> ::::>> ::::>> ----- Original Message ----- ::::>> From: "Alessandro Crugnola *sephiroth*"=20 ::::<ale...@se...> To: ::::>> <sep...@li...> ::::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject:=20 ::Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> This=20 ::from the documentation: ::::>> However, usually you don't even need to know the precise=20 ::nature of ::>> the class you're working with but you would=20 ::just use the ::wxConfigBase ::>> methods. This allows you to=20 ::write the same code regardless ::of whether ::>> you're=20 ::working with the registry under Win32 or text-based config=20 ::::>> files under Unix (or even Windows 3.1 .INI files if=20 ::you're really ::>> unlucky). To make writing the portable=20 ::code even easier, wxWidgets ::>> provides a typedef wxConfig=20 ::which is mapped onto the native ::>> wxConfigBase=20 ::implementation on the given platform: i.e.=20 ::::wxRegConfig ::::>> under Win32 (optionally ::::>> wxIniConfig) and wxFileConfig otherwise. ::::>> ::::>> So, unde windows i use the Registry, anc under mac and=20 ::::unix like os ::>> ot should be used a text file, but i dont=20 ::know where it is ::stored..=20 ::::>> can you write the exception you got? ::::>> ::::>> thanks ::::>> ::::>> ::::>> Treu, Valentin said: ::::>>> Ok, fine. ::::>>> Another question: Where (directory) do you save=20 ::modified ::Preferences ::>>> settings ? Yesterday I pressed=20 ::'Apply' after my changes with the ::>>> StaticBoxSizers, then=20 ::the reminder (restart necessary) popped up, ::>>> but when I=20 ::tried to restart SEPY from then on I always ::got a system=20 ::::>>> exception that some settings couldn't have been read=20 ::::correctly. Also ::>>> a new cvs 'get' didn't work, so it=20 ::seems that there has sth. been ::>>> stored outside the=20 ::SEPY/Scite directory. ::::>>> ::::>>> Thanks. ::::>>> valley ::::>>> ::::>>> ::::>>> ::::>>> -----Ursprungliche Nachricht----- ::::>>> Von: sep...@li... ::::>>> [mailto:sep...@li...]Im=20 ::Auftrag von ::>>> Alessandro Crugnola *sephiroth* ::>>>=20 ::Gesendet: Sonntag, 5. September 2004 21:06 ::>>> An:=20 ::sep...@li... ::>>> Betreff: RE:=20 ::[SE|PY-macdev] Preferences frozen ::>>> ::>>> ::>>> Ah.. I=20 ::understand.. So i have to create the boxsizer before ::>>>=20 ::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 ::>>>=20 ::--------------------------------------------- ::::>>> ::::>>> ::::>>> ::-----Original Message----- ::::>>> ::From: sep...@li... ::::>>> ::[mailto:sep...@li...] On=20 ::Behalf Of ::>>> valley ::>>> ::Sent: domenica 5 settembre=20 ::2004 18.33 ::>>> ::To: sep...@li...=20 ::::>>> ::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 ::>>>=20 ::::Subject: RE: [SE|PY-macdev] Preferences frozen ::>>> :: ::::>>> :: ::::>>> ::> Damn, what an incredible thing! ::::>>> ::> Let me ask in the wxPython mailing list first..=20 ::Maybe is a my ::>>> fault ::> ^_^ ::> ::> Alessandro Crugnola=20 ::- sephiroth ::> ::>>> --------------------------------------------- ::::>>> ::> Macromedia Flash Team Volunteer ::>>> ::>=20 ::http://www.macromedia.com/go/team ::> Flash && PHP=20 ::::developer ::> ::>>> ale...@se... ::> ::> *relax=20 ::with SEPY ::>>> http://www.sf.net/projects/sepy ::> ::>>>=20 ::--------------------------------------------- ::::>>> ::> ::::>>> ::> ::::>>> ::> ::-----Original Message----- ::::>>> ::> ::From: sep...@li... ::::>>> ::> ::[mailto:sep...@li...]=20 ::On ::::Behalf ::>>> Of valley ::> ::Sent: domenica 5=20 ::settembre 2004 15.40 ::> ::To:=20 ::::>>> sep...@li... ::> ::Subject: Re:=20 ::::[SE|PY-macdev] ::::>>> Preferences frozen ::> :: ::::>>> ::> ::That's what I also just tried. And it's in this=20 ::::sort of line, ::>>> ::> ::because with the replacement line=20 ::it works!!! ::::>>> ::> ::I've tried this replacement also on other pages=20 ::and all ::>>> ::::elements ::> were accessible and modifyable. ::::>>> ::> ::Also the languages are now filled into the=20 ::combobox ::on page 1. ::::>>> ::> :: ::::>>> ::> ::So would it be possible to let these=20 ::StaticBoxSizers away ::>>> ::and ::just ::> use BoxSizer ? ::::>>> ::> :: ::::>>> ::> ::valley ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> ::----- Original Message ----- ::>>> ::> ::From:=20 ::"Alessandro Crugnola *sephiroth*" ::::>>> ::> ::<sep...@us...> ::::>>> ::> ::To: <sep...@li...> ::::>>> ::> ::Sent: Sunday, September 05, 2004 4:23 PM ::>=20 ::::Subject: RE:=20 ::::>>> [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,=20 ::::> ::>>> ::> ::>>>=20 ::self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::::>>> ::> ::wx.VERTICAL) ::::>>> ::> ::> ::::>>> ::> ::> Into: ::::>>> ::> ::> sizer_general_options =3D=20 ::wx.BoxSizer(wx.VERTICAL) ::::> ::::> ::>>> The only ::> thing=20 ::that come in my mind is the container ::of ::these ::>>> elements. ::::>>> ::> ::> On the other side, there are no differences ::>=20 ::::> ::>>> Alessandro ::> Crugnola - sephiroth ::> ::>>>=20 ::::--------------------------------------------- ::::>>> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::>>>=20 ::http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::::developer ::> ::>>> ::> ale...@se... ::> ::> ::>=20 ::::> *relax with SEPY ::>>> http://www.sf.net/projects/sepy=20 ::::> ::> ::>>> --------------------------------------------- ::::>>> ::> ::> ::::>>> ::> ::> ::::>>> ::> ::> ::-----Original Message----- ::> ::> ::From:=20 ::::>>> sep...@li... ::::>>> ::> ::>=20 ::::[mailto:sep...@li...] On ::>>>=20 ::::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::::2004 14.17 ::::>>> ::> ::To: ::> sep...@li... ::> ::::::Subject: Re:=20 ::::>>> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::...and I tell you all the elements that work,=20 ::::perhaps you ::>>> ::> ::::know a ::> difference (binding=20 ::events, filling in ::data, ...) ::>>> to ::> ::all ::the=20 ::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=20 ::bottom ::> ::>>> ::- ::> checkbox 'Check filesize ...' at the=20 ::bottom ::> :: ::::>>> ::> ::> ::page 3 (Colors) ::::>>> ::> ::> ::=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ::::>>> ::> ::> ::- the three comboboxes at the bottom (line=20 ::::folding, tabs ::>>> ::> ::> ::placement, edge ::> ::column)=20 ::also work ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> ::Are theses elements newer than the others=20 ::(i.e. do you ::>>> ::use ::> ::another ::> strategy in=20 ::implementing them) ? funny is ::>>> also that ::> ::these=20 ::::elements ::> are at the bottom of their ::>>> pages, but=20 ::why ::> ::doesn't then e.g. the ::> checkbox at the ::>>>=20 ::bottom of page ::>>> ::4 work..... ::::>>> ::> ::> :: ::::>>> ::> ::> ::valley ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::::"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=20 ::::>>> WindowsPrefs.py ::> that ::> ::> ::causes some=20 ::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=20 ::OSX ::>>> installation ::> disc ::> ^_^ ::> ::> thanks ::>=20 ::::> ::> ::Alessandro ::>>> Crugnola - ::> sephiroth ::> ::>=20 ::::>>> --------------------------------------------- ::> ::>=20 ::::> ::Macromedia ::>>> Flash Team Volunteer ::> ::> ::>=20 ::::http://www.macromedia.com/go/team ::::>>> ::> ::> Flash && PHP ::developer ::> ::> ::>=20 ::::ale...@se... ::>>> ::> ::> ::> ::> *relax with=20 ::SEPY ::> ::http://www.sf.net/projects/sepy ::>>> ::> ::> ::>=20 ::--------------------------------------------- ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From:=20 ::::>>> sep...@li... ::::>>> ::> ::> ::> ::::::[mailto:sep...@li...] On ::>>>=20 ::::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::::>>> ::2004 13.38 ::>>> ::> ::> ::To: ::::>>> ::> ::> sep...@li... ::> ::Subject: Re: ::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::valley ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::::>>> "Alessandro ::> Crugnola *sephiroth*" ::::>>> ::> ::> ::> ::<sep...@us...> ::::>>> ::> ::> ::> ::To: <sep...@li...> ::::>>> ::> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM=20 ::::> ::>>> ::::Subject: RE: ::::>>> ::> ::> [SE|PY-macdev] Preferences frozen ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::> The only notebook still alive is=20 ::the ::one which ::>>> ::> contains ::> the ::> ::>=20 ::::documents ::itself! ::::>>> ::> ::> ::> ::> ::> Maybe changing the notebook into a=20 ::::book ::like ::>>> for the ::> ::> ::left ::> panel ? ::::>>> ::> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::Yes I could try that. Where and what=20 ::do ::I have to ::>>> ::> ::change in ::> ::> ::the ::> source=20 ::so that it works ::with ::a ::>>> Book ? Or ::> if it's a ::>=20 ::bigger ::> ::::change you ::> ::could the ::>>> ::changes and=20 ::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,=20 ::-1, ::>>> ::style=3D0) ::::> ::>>> ::> ::::> ::> Into: ::::>>> ::> ::> ::> ::> self.notebook_pref =3D wx.Listbook(self,=20 ::-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,=20 ::1, ::wx.EXPAND, ::>>> ::> ::>>> ::0) ::::> ::>>> ::> ::> ::>=20 ::::> ::> ::Btw: With the latest cvs source I get the ::>>>=20 ::::following ::> ::> error message: ::::>>> ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO =20 :::: import ::> ::::>>> ::TODOWindow ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: >ImportError: No module named=20 ::::WindowsTODO ::> ::> ::::>>> ::> ::> :: ::::>>> ::> ::> ::> ::> ::Maybe there's something missing with=20 ::the new ::>>> ::feature... ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> Ops, sorry.. ::::>>> ::> ::> ::> ::> I forgot to add that file in the CVS=20 ::::commit.. I will ::>>> do ::> ::> ::> immediately ::> ::>=20 ::::> ::Btw2: Have you ::heard of the ::>>> ::> following ::>=20 ::::> Sourceforge project: ::::>>> ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::>=20 ::::> ::With ::>>> ::::that you ::> can ::> emulate for=20 ::instance OS X ::Panther on a ::> ::>>> ::::Windows ::> ::>=20 ::machine, ::> and it seems to work ::quite well, as ::>>> a=20 ::::> ::colleague ::> ::told me. So ::> ::> you could ::also=20 ::try your ::>>> code ::changes on ::> ::> ::a mac ::machine=20 ::and ::> ::::with that ::> ::>>> having a better ::::overview=20 ::::> over the ::> ::::two os :-) ::> ::>>> ::> ::> Wow, i=20 ::will ::download it now! ::::>>> ::> ::> ::> ::> I hope to be able to install it without=20 ::::crashing my ::>>> ::> ::::system ::> ^_^ ::> ::> ::> ::>=20 ::Alessandro Crugnola - ::>>> ::sephiroth ::> ::> ::> ::> ::>>>=20 ::--------------------------------------------- ::::>>> ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::>=20 ::::> ::> ::>>> http://www.macromedia.com/go/team ::> ::> Flash=20 ::&& PHP ::::::developer ::>>> ::> ::> ::> ::>=20 ::ale...@se... ::> ::> ::> ::> ::*relax with ::>>>=20 ::::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::>=20 ::::> ::>>> --------------------------------------------- ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::::::From: ::> ::::>>> sep...@li... ::::>>> ::> ::> ::> ::> ::::>>> ::::[mailto:sep...@li...] On=20 ::::> ::> ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5=20 ::settembre ::::2004 9.26 ::::>>> ::> ::> ::> ::To: ::::>>> ::> ::> ::> sep...@li... ::> ::::::Subject: Re: ::> ::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::valley ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::::------------------------------------------------------- ::::>>> ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::::Weblogic ::> ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::Enterprise J2EE ::developer ::>>> tools! ::::>>> ::> ::> ::> ::> ::Get your free copy of BEA WebLogic=20 ::Workshop 8.1 ::>>> today. ::> ::> ::> ::> ::>>>=20 ::::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> ::>=20 ::::_______________________________________________ ::::>>> ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::>=20 ::::> ::>>> ::sep...@li... ::::>>> ::> ::> ::> ::> ::::>>> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ------------------------------------------------------- ::::>>> ::> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::::Workshop ::> ::FREE ::> Java ::> ::>=20 ::Enterprise J2EE ::developer ::>>> tools! ::::>>> ::> ::> ::> ::> Get your free copy of BEA WebLogic=20 ::::Workshop 8.1 today. ::::>>> ::> ::> ::> ::> ::::>>> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> ::> ::::_______________________________________________ ::> ::>>>=20 ::::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::> ::>>>=20 ::sep...@li... ::> ::> ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::::>>> ::------------------------------------------------------- ::::>>> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::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 ::> ::> ::>=20 ::::>>> ::sep...@li... ::::>>> ::> ::> ::> ::::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::------------------------------------------------------- ::::>>> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::Workshop ::FREE ::> Java ::> ::> Enterprise=20 ::J2EE ::developer tools! ::::>>> ::> ::> ::> Get your free copy of BEA WebLogic Workshop ::::8.1 today.=20 ::::>>> ::> ::> ::> ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> _______________________________________________ ::::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::>>>=20 ::sep...@li... ::> ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::>=20 ::::------------------------------------------------------- ::::>>> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::::Workshop ::>>> ::FREE ::> ::Java ::> Enterprise=20 ::J2EE developer tools! ::::>>> ::> ::> ::Get your free copy of BEA WebLogic Workshop=20 ::8.1 ::today. ::> ::>>> ::>=20 ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::::>>> ::> ::_______________________________________________ ::::>>> ::> ::> ::sepy-macdev mailing list ::>>> ::> ::>=20 ::::sep...@li... ::::>>> ::> ::> ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::>>>=20 ::------------------------------------------------------- ::::::> ::> This ::::>>> SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::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 ::>=20 ::::>>> ::> _______________________________________________ ::::>>> ::> ::> sepy-macdev mailing list ::::>>> ::> ::> sep...@li... ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::> ::> ::> ::::>>> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> ::------------------------------------------------------- ::::>>> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::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=20 ::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... ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::::>>> :: ::::>>> :: ::::>>> :: ::::>>> ::------------------------------------------------------- ::::>>> ::This SF.Net email is sponsored by BEA Weblogic=20 ::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=20 ::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=20 ::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". ::::>> --- ::::>> ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::>> Enterprise J2EE developer tools! ::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::>> _______________________________________________ ::::>> sepy-macdev mailing list ::::>> sep...@li... ::::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::>> Enterprise J2EE developer tools! ::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::>> _______________________________________________ ::::>> 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". ::::> --- ::::> ::::> ::::> ::::> ::::> ------------------------------------------------------- ::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::> Enterprise J2EE developer tools! ::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::> _______________________________________________ ::::> sepy-macdev mailing list ::::> sep...@li... ::::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::> ::::> ::::> ------------------------------------------------------- ::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::> Enterprise J2EE developer tools! ::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::> _______________________________________________ ::::> 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". ::::--- :::: :::: :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::_______________________________________________ ::::sepy-macdev mailing list ::::sep...@li... ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::_______________________________________________ ::::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :: |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-08 09:24:30
|
Hi, This is what robin answered: :: It doesn't use wx.FileConfig anymore on wxMac, but the native plist = file format and the files are put in ~/Library/Preferences. 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of=20 ::Treu, Valentin ::Sent: mercoled=EC 8 settembre 2004 7.34 ::To: 'sep...@li...' ::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Ok, thanks. Then I have to wait & hope & pray ;-) :: ::valley :: :: :: :: ::-----Urspr=FCngliche Nachricht----- ::Von: sep...@li... ::[mailto:sep...@li...]Im Auftrag=20 ::von Alessandro Crugnola *sephiroth* ::Gesendet: Dienstag, 7. September 2004 21:16 ::An: sep...@li... ::Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::I posted the question on the wxpython mailing list.. I really=20 ::don't know where it could be ^_^ :: ::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 ::--------------------------------------------- ::=20 :: ::::-----Original Message----- ::::From: sep...@li... ::::[mailto:sep...@li...] On Behalf=20 ::Of ::Treu, Valentin ::::Sent: marted=EC 7 settembre 2004 12.40 ::::To: 'sep...@li...' ::::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :::: ::::Now I really have a problem: I cannot find this file=20 ::::(searched for possible text inside, change date, etc.) and=20 ::it ::seems that it's damaged because I always get an error ::::'TypeError: Unable to convert string'. ::::Someone's got an idea ? :::: ::::valley :::: :::: :::: :::: :::: ::::-----Urspr=FCngliche Nachricht----- ::::Von: sep...@li... ::::[mailto:sep...@li...]Im Auftrag=20 ::::von Alessandro Crugnola *sephiroth* ::::Gesendet: Dienstag, 7. September 2004 09:19 ::::An: sep...@li... ::::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :::: :::: ::::the apply method is in the windowsprefs.py file at line (+=20 ::/ -) 1154. ::::the basepath of the wxConfig object is /Sephiroth/ASE, then=20 ::::for every value i have to write there is for example: :::: ::::self.parent.reg.WriteInt("preferences/general/autosave", auto_save) :::: ::::which save an integer in the ::::/Sephiroth/ASE/preferences/general/autosave ::::path ::::or: ::::self.parent.reg.Write("preferences/general/language",languag) :::: ::::when writing a String, for the path ::::/Sephiroth/ASE/preferences/general/language :::: ::::hope this can help find the file!.. :::: :::: ::::Treu, Valentin said: ::::> Yes, I'll do that on lunch time. ::::> Yesterday I tried with commenting the Runtime Exception=20 ::::raising, and ::> then it went through and stopped at=20 ::another position. ::::> So I don't think that we have to change sth. in the code=20 ::::(now it also ::> doesn't work anymore with older SEPY=20 ::versions where it definitely ::> worked). ::::> I searched for files on my Mac that could have stored the=20 ::modified ::> settings and which SEPY cannot read correctly=20 ::anymore on ::startup, but ::> didn't succeed. ::::> Can you tell me where in the code you implemented the=20 ::save process ::> when pressing on the 'Apply' button in Preferences ? ::::> I just need to know the dir and the filename outside the SEPY dir! ::::> ::::> valley ::::> ::::> ::::> ::::> ::::> -----Urspr=FCngliche Nachricht----- ::::> Von: sep...@li... ::::> [mailto:sep...@li...]Im=20 ::Auftrag von ::> Alessandro Crugnola *sephiroth* ::> Gesendet:=20 ::Dienstag, 7. September 2004 08:07 ::> An:=20 ::sep...@li... ::> Betreff: Re: AW:=20 ::[SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can you=20 ::convert that method: ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> try: ::::> self.xml_reader_panel =3D=20 ::::XMLPanel(self.notebook_l, -1, ::::> langClass =3D self.langPY, parent =3D self) ::::> except: ::::> self.notebook_l.Thaw() ::::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> ::::> ::::> ::::> ::::> ::::> into this? ::::> ::::> ::::> ::::> ::::> def _show_XMLReader(self, event): ::::> if event: ::::> self.notebook_l.Freeze() ::::> #try: ::::> self.xml_reader_panel =3D XMLPanel(self.notebook_l, = -1,=20 ::::> langClass =3D self.langPY, parent =3D self) ::::> #except: ::::> # self.notebook_l.Thaw() ::::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::::> # return ::::> self.notebook_l.AddPage(self.xml_reader_panel, ::::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::::> self.notebook_l.Thaw() ::::> try: ::::> ::::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::::> - 1, 7) ::::> ::::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::::> - 1) ::::> except: ::::> pass ::::> else: ::::> ::::> ::::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::::S/XML_PANEL"," ::::> LABEL")) ::::> wx.CallAfter(self.ForceNotebookRefresh) ::::> ::::> valley said: ::::>> this is the error message: ::::>> ::::>> Traceback (most recent call last): ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::::142, in Notify ::::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(),=20 ::::>> title=3DAbout_title, dialog =3D self.dialog) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::::256, in __init__ ::::>> self._createLeftPanel() ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in=20 ::::>> _createLeftPanel ::::>> self._show_XMLReader(1) ::::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in=20 ::::>> _show_XMLReader ::::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::::>> RuntimeError: exceptions.TypeError Unable to convert=20 ::string ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so you=20 ::also don't know the name of the file, right ?=20 ::::hmmmmmm i look ::::>> around again. this we also have to document when found... ::::>> ::::>> valley ::::>> ::::>> ::::>> ::::>> ::::>> ----- Original Message ----- ::::>> From: "Alessandro Crugnola *sephiroth*"=20 ::::<ale...@se...> To: ::::>> <sep...@li...> ::::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject:=20 ::Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> This=20 ::from the documentation: ::::>> However, usually you don't even need to know the precise=20 ::nature of ::>> the class you're working with but you would=20 ::just use the ::wxConfigBase ::>> methods. This allows you to=20 ::write the same code regardless ::of whether ::>> you're=20 ::working with the registry under Win32 or text-based config=20 ::::>> files under Unix (or even Windows 3.1 .INI files if=20 ::you're really ::>> unlucky). To make writing the portable=20 ::code even easier, wxWidgets ::>> provides a typedef wxConfig=20 ::which is mapped onto the native ::>> wxConfigBase=20 ::implementation on the given platform: i.e.=20 ::::wxRegConfig ::::>> under Win32 (optionally ::::>> wxIniConfig) and wxFileConfig otherwise. ::::>> ::::>> So, unde windows i use the Registry, anc under mac and=20 ::::unix like os ::>> ot should be used a text file, but i dont=20 ::know where it is ::stored..=20 ::::>> can you write the exception you got? ::::>> ::::>> thanks ::::>> ::::>> ::::>> Treu, Valentin said: ::::>>> Ok, fine. ::::>>> Another question: Where (directory) do you save=20 ::modified ::Preferences ::>>> settings ? Yesterday I pressed=20 ::'Apply' after my changes with the ::>>> StaticBoxSizers, then=20 ::the reminder (restart necessary) popped up, ::>>> but when I=20 ::tried to restart SEPY from then on I always ::got a system=20 ::::>>> exception that some settings couldn't have been read=20 ::::correctly. Also ::>>> a new cvs 'get' didn't work, so it=20 ::seems that there has sth. been ::>>> stored outside the=20 ::SEPY/Scite directory. ::::>>> ::::>>> Thanks. ::::>>> valley ::::>>> ::::>>> ::::>>> ::::>>> -----Ursprungliche Nachricht----- ::::>>> Von: sep...@li... ::::>>> [mailto:sep...@li...]Im=20 ::Auftrag von ::>>> Alessandro Crugnola *sephiroth* ::>>>=20 ::Gesendet: Sonntag, 5. September 2004 21:06 ::>>> An:=20 ::sep...@li... ::>>> Betreff: RE:=20 ::[SE|PY-macdev] Preferences frozen ::>>> ::>>> ::>>> Ah.. I=20 ::understand.. So i have to create the boxsizer before ::>>>=20 ::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 ::>>>=20 ::--------------------------------------------- ::::>>> ::::>>> ::::>>> ::-----Original Message----- ::::>>> ::From: sep...@li... ::::>>> ::[mailto:sep...@li...] On=20 ::Behalf Of ::>>> valley ::>>> ::Sent: domenica 5 settembre=20 ::2004 18.33 ::>>> ::To: sep...@li...=20 ::::>>> ::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 ::>>>=20 ::::Subject: RE: [SE|PY-macdev] Preferences frozen ::>>> :: ::::>>> :: ::::>>> ::> Damn, what an incredible thing! ::::>>> ::> Let me ask in the wxPython mailing list first..=20 ::Maybe is a my ::>>> fault ::> ^_^ ::> ::> Alessandro Crugnola=20 ::- sephiroth ::> ::>>> --------------------------------------------- ::::>>> ::> Macromedia Flash Team Volunteer ::>>> ::>=20 ::http://www.macromedia.com/go/team ::> Flash && PHP=20 ::::developer ::> ::>>> ale...@se... ::> ::> *relax=20 ::with SEPY ::>>> http://www.sf.net/projects/sepy ::> ::>>>=20 ::--------------------------------------------- ::::>>> ::> ::::>>> ::> ::::>>> ::> ::-----Original Message----- ::::>>> ::> ::From: sep...@li... ::::>>> ::> ::[mailto:sep...@li...]=20 ::On ::::Behalf ::>>> Of valley ::> ::Sent: domenica 5=20 ::settembre 2004 15.40 ::> ::To:=20 ::::>>> sep...@li... ::> ::Subject: Re:=20 ::::[SE|PY-macdev] ::::>>> Preferences frozen ::> :: ::::>>> ::> ::That's what I also just tried. And it's in this=20 ::::sort of line, ::>>> ::> ::because with the replacement line=20 ::it works!!! ::::>>> ::> ::I've tried this replacement also on other pages=20 ::and all ::>>> ::::elements ::> were accessible and modifyable. ::::>>> ::> ::Also the languages are now filled into the=20 ::combobox ::on page 1. ::::>>> ::> :: ::::>>> ::> ::So would it be possible to let these=20 ::StaticBoxSizers away ::>>> ::and ::just ::> use BoxSizer ? ::::>>> ::> :: ::::>>> ::> ::valley ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> ::----- Original Message ----- ::>>> ::> ::From:=20 ::"Alessandro Crugnola *sephiroth*" ::::>>> ::> ::<sep...@us...> ::::>>> ::> ::To: <sep...@li...> ::::>>> ::> ::Sent: Sunday, September 05, 2004 4:23 PM ::>=20 ::::Subject: RE:=20 ::::>>> [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,=20 ::::> ::>>> ::> ::>>>=20 ::self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::::>>> ::> ::wx.VERTICAL) ::::>>> ::> ::> ::::>>> ::> ::> Into: ::::>>> ::> ::> sizer_general_options =3D=20 ::wx.BoxSizer(wx.VERTICAL) ::::> ::::> ::>>> The only ::> thing=20 ::that come in my mind is the container ::of ::these ::>>> elements. ::::>>> ::> ::> On the other side, there are no differences ::>=20 ::::> ::>>> Alessandro ::> Crugnola - sephiroth ::> ::>>>=20 ::::--------------------------------------------- ::::>>> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::>>>=20 ::http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::::developer ::> ::>>> ::> ale...@se... ::> ::> ::>=20 ::::> *relax with SEPY ::>>> http://www.sf.net/projects/sepy=20 ::::> ::> ::>>> --------------------------------------------- ::::>>> ::> ::> ::::>>> ::> ::> ::::>>> ::> ::> ::-----Original Message----- ::> ::> ::From:=20 ::::>>> sep...@li... ::::>>> ::> ::>=20 ::::[mailto:sep...@li...] On ::>>>=20 ::::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::::2004 14.17 ::::>>> ::> ::To: ::> sep...@li... ::> ::::::Subject: Re:=20 ::::>>> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::...and I tell you all the elements that work,=20 ::::perhaps you ::>>> ::> ::::know a ::> difference (binding=20 ::events, filling in ::data, ...) ::>>> to ::> ::all ::the=20 ::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=20 ::bottom ::> ::>>> ::- ::> checkbox 'Check filesize ...' at the=20 ::bottom ::> :: ::::>>> ::> ::> ::page 3 (Colors) ::::>>> ::> ::> ::=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ::::>>> ::> ::> ::- the three comboboxes at the bottom (line=20 ::::folding, tabs ::>>> ::> ::> ::placement, edge ::> ::column)=20 ::also work ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> ::Are theses elements newer than the others=20 ::(i.e. do you ::>>> ::use ::> ::another ::> strategy in=20 ::implementing them) ? funny is ::>>> also that ::> ::these=20 ::::elements ::> are at the bottom of their ::>>> pages, but=20 ::why ::> ::doesn't then e.g. the ::> checkbox at the ::>>>=20 ::bottom of page ::>>> ::4 work..... ::::>>> ::> ::> :: ::::>>> ::> ::> ::valley ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::::"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=20 ::::>>> WindowsPrefs.py ::> that ::> ::> ::causes some=20 ::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=20 ::OSX ::>>> installation ::> disc ::> ^_^ ::> ::> thanks ::>=20 ::::> ::> ::Alessandro ::>>> Crugnola - ::> sephiroth ::> ::>=20 ::::>>> --------------------------------------------- ::> ::>=20 ::::> ::Macromedia ::>>> Flash Team Volunteer ::> ::> ::>=20 ::::http://www.macromedia.com/go/team ::::>>> ::> ::> Flash && PHP ::developer ::> ::> ::>=20 ::::ale...@se... ::>>> ::> ::> ::> ::> *relax with=20 ::SEPY ::> ::http://www.sf.net/projects/sepy ::>>> ::> ::> ::>=20 ::--------------------------------------------- ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From:=20 ::::>>> sep...@li... ::::>>> ::> ::> ::> ::::::[mailto:sep...@li...] On ::>>>=20 ::::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::::>>> ::2004 13.38 ::>>> ::> ::> ::To: ::::>>> ::> ::> sep...@li... ::> ::Subject: Re: ::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::valley ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::::>>> "Alessandro ::> Crugnola *sephiroth*" ::::>>> ::> ::> ::> ::<sep...@us...> ::::>>> ::> ::> ::> ::To: <sep...@li...> ::::>>> ::> ::> ::> ::Sent: Sunday, September 05, 2004 10:44 AM=20 ::::> ::>>> ::::Subject: RE: ::::>>> ::> ::> [SE|PY-macdev] Preferences frozen ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::> The only notebook still alive is=20 ::the ::one which ::>>> ::> contains ::> the ::> ::>=20 ::::documents ::itself! ::::>>> ::> ::> ::> ::> ::> Maybe changing the notebook into a=20 ::::book ::like ::>>> for the ::> ::> ::left ::> panel ? ::::>>> ::> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::Yes I could try that. Where and what=20 ::do ::I have to ::>>> ::> ::change in ::> ::> ::the ::> source=20 ::so that it works ::with ::a ::>>> Book ? Or ::> if it's a ::>=20 ::bigger ::> ::::change you ::> ::could the ::>>> ::changes and=20 ::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,=20 ::-1, ::>>> ::style=3D0) ::::> ::>>> ::> ::::> ::> Into: ::::>>> ::> ::> ::> ::> self.notebook_pref =3D wx.Listbook(self,=20 ::-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,=20 ::1, ::wx.EXPAND, ::>>> ::> ::>>> ::0) ::::> ::>>> ::> ::> ::>=20 ::::> ::> ::Btw: With the latest cvs source I get the ::>>>=20 ::::following ::> ::> error message: ::::>>> ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO =20 :::: import ::> ::::>>> ::TODOWindow ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: >ImportError: No module named=20 ::::WindowsTODO ::> ::> ::::>>> ::> ::> :: ::::>>> ::> ::> ::> ::> ::Maybe there's something missing with=20 ::the new ::>>> ::feature... ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> Ops, sorry.. ::::>>> ::> ::> ::> ::> I forgot to add that file in the CVS=20 ::::commit.. I will ::>>> do ::> ::> ::> immediately ::> ::>=20 ::::> ::Btw2: Have you ::heard of the ::>>> ::> following ::>=20 ::::> Sourceforge project: ::::>>> ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::>=20 ::::> ::With ::>>> ::::that you ::> can ::> emulate for=20 ::instance OS X ::Panther on a ::> ::>>> ::::Windows ::> ::>=20 ::machine, ::> and it seems to work ::quite well, as ::>>> a=20 ::::> ::colleague ::> ::told me. So ::> ::> you could ::also=20 ::try your ::>>> code ::changes on ::> ::> ::a mac ::machine=20 ::and ::> ::::with that ::> ::>>> having a better ::::overview=20 ::::> over the ::> ::::two os :-) ::> ::>>> ::> ::> Wow, i=20 ::will ::download it now! ::::>>> ::> ::> ::> ::> I hope to be able to install it without=20 ::::crashing my ::>>> ::> ::::system ::> ^_^ ::> ::> ::> ::>=20 ::Alessandro Crugnola - ::>>> ::sephiroth ::> ::> ::> ::> ::>>>=20 ::--------------------------------------------- ::::>>> ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::>=20 ::::> ::> ::>>> http://www.macromedia.com/go/team ::> ::> Flash=20 ::&& PHP ::::::developer ::>>> ::> ::> ::> ::>=20 ::ale...@se... ::> ::> ::> ::> ::*relax with ::>>>=20 ::::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::>=20 ::::> ::>>> --------------------------------------------- ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::::::From: ::> ::::>>> sep...@li... ::::>>> ::> ::> ::> ::> ::::>>> ::::[mailto:sep...@li...] On=20 ::::> ::> ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5=20 ::settembre ::::2004 9.26 ::::>>> ::> ::> ::> ::To: ::::>>> ::> ::> ::> sep...@li... ::> ::::::Subject: Re: ::> ::::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::valley ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> :: ::::>>> ::> ::> ::> ::> ::::>>> ::::------------------------------------------------------- ::::>>> ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::::Weblogic ::> ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::Enterprise J2EE ::developer ::>>> tools! ::::>>> ::> ::> ::> ::> ::Get your free copy of BEA WebLogic=20 ::Workshop 8.1 ::>>> today. ::> ::> ::> ::> ::>>>=20 ::::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> ::>=20 ::::_______________________________________________ ::::>>> ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::>=20 ::::> ::>>> ::sep...@li... ::::>>> ::> ::> ::> ::> ::::>>> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> ::> ::::>>> ------------------------------------------------------- ::::>>> ::> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::::Workshop ::> ::FREE ::> Java ::> ::>=20 ::Enterprise J2EE ::developer ::>>> tools! ::::>>> ::> ::> ::> ::> Get your free copy of BEA WebLogic=20 ::::Workshop 8.1 today. ::::>>> ::> ::> ::> ::> ::::>>> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> ::> ::::_______________________________________________ ::> ::>>>=20 ::::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::> ::>>>=20 ::sep...@li... ::> ::> ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> :: ::::>>> ::> ::> ::> ::::>>> ::------------------------------------------------------- ::::>>> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::Workshop ::> ::FREE ::> ::Java ::>=20 ::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 ::> ::> ::>=20 ::::>>> ::sep...@li... ::::>>> ::> ::> ::> ::::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::>>> ::> ::> ::> ::::------------------------------------------------------- ::::>>> ::> ::> ::> This SF.Net email is sponsored by BEA=20 ::Weblogic ::>>> ::Workshop ::FREE ::> Java ::> ::> Enterprise=20 ::J2EE ::developer tools! ::::>>> ::> ::> ::> Get your free copy of BEA WebLogic Workshop ::::8.1 today.=20 ::::>>> ::> ::> ::> ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::::>>> ::> ::> ::> _______________________________________________ ::::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::>>>=20 ::sep...@li... ::> ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::> :: ::::>>> ::> ::>=20 ::::------------------------------------------------------- ::::>>> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::::Workshop ::>>> ::FREE ::> ::Java ::> Enterprise=20 ::J2EE developer tools! ::::>>> ::> ::> ::Get your free copy of BEA WebLogic Workshop=20 ::8.1 ::today. ::> ::>>> ::>=20 ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::::>>> ::> ::_______________________________________________ ::::>>> ::> ::> ::sepy-macdev mailing list ::>>> ::> ::>=20 ::::sep...@li... ::::>>> ::> ::> ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::>>>=20 ::------------------------------------------------------- ::::::> ::> This ::::>>> SF.Net email is sponsored by BEA Weblogic Workshop=20 ::::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 ::>=20 ::::>>> ::> _______________________________________________ ::::>>> ::> ::> sepy-macdev mailing list ::::>>> ::> ::> sep...@li... ::> ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::::> ::> ::> ::::>>> :: ::::>>> ::> :: ::::>>> ::> :: ::::>>> ::> ::------------------------------------------------------- ::::>>> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::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=20 ::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... ::> ::>>>=20 ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>>> ::> ::::>>> :: ::::>>> :: ::::>>> :: ::::>>> ::------------------------------------------------------- ::::>>> ::This SF.Net email is sponsored by BEA Weblogic=20 ::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=20 ::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=20 ::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". ::::>> --- ::::>> ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::>> Enterprise J2EE developer tools! ::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::>> _______________________________________________ ::::>> sepy-macdev mailing list ::::>> sep...@li... ::::>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::>> ::::>> ::::>> ::::>> ------------------------------------------------------- ::::>> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::>> Enterprise J2EE developer tools! ::::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::>> _______________________________________________ ::::>> 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". ::::> --- ::::> ::::> ::::> ::::> ::::> ------------------------------------------------------- ::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::> Enterprise J2EE developer tools! ::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::> _______________________________________________ ::::> sepy-macdev mailing list ::::> sep...@li... ::::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::::> ::::> ::::> ------------------------------------------------------- ::::> This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE Java ::> Enterprise J2EE developer tools! ::::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::> _______________________________________________ ::::> 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". ::::--- :::: :::: :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::::_______________________________________________ ::::sepy-macdev mailing list ::::sep...@li... ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: ::::------------------------------------------------------- ::::This SF.Net email is sponsored by BEA Weblogic Workshop=20 ::FREE ::Java Enterprise J2EE developer tools! ::::Get your free copy of BEA WebLogic Workshop 8.1 today. ::::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::::_______________________________________________ ::::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :: |
From: Treu, V. <Val...@in...> - 2004-09-08 06:32:56
|
Ok, thanks. Then I have to wait & hope & pray ;-) valley -----Urspr=FCngliche Nachricht----- Von: sep...@li... [mailto:sep...@li...]Im Auftrag von Alessandro Crugnola *sephiroth* Gesendet: Dienstag, 7. September 2004 21:16 An: sep...@li... Betreff: RE: AW: AW: [SE|PY-macdev] Preferences frozen I posted the question on the wxpython mailing list.. I really don't = know where it could be ^_^ 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of=20 ::Treu, Valentin ::Sent: marted=EC 7 settembre 2004 12.40 ::To: 'sep...@li...' ::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Now I really have a problem: I cannot find this file=20 ::(searched for possible text inside, change date, etc.) and it=20 ::seems that it's damaged because I always get an error=20 ::'TypeError: Unable to convert string'. ::Someone's got an idea ? :: ::valley :: :: :: :: :: ::-----Urspr=FCngliche Nachricht----- ::Von: sep...@li... ::[mailto:sep...@li...]Im Auftrag=20 ::von Alessandro Crugnola *sephiroth* ::Gesendet: Dienstag, 7. September 2004 09:19 ::An: sep...@li... ::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::the apply method is in the windowsprefs.py file at line (+ / -) 1154. ::the basepath of the wxConfig object is /Sephiroth/ASE, then=20 ::for every value i have to write there is for example: :: ::self.parent.reg.WriteInt("preferences/general/autosave", auto_save) :: ::which save an integer in the=20 ::/Sephiroth/ASE/preferences/general/autosave ::path ::or: ::self.parent.reg.Write("preferences/general/language",languag) :: ::when writing a String, for the path ::/Sephiroth/ASE/preferences/general/language :: ::hope this can help find the file!.. :: :: ::Treu, Valentin said: ::> Yes, I'll do that on lunch time. ::> Yesterday I tried with commenting the Runtime Exception=20 ::raising, and=20 ::> then it went through and stopped at another position. ::> So I don't think that we have to change sth. in the code=20 ::(now it also=20 ::> doesn't work anymore with older SEPY versions where it definitely=20 ::> worked). ::> I searched for files on my Mac that could have stored the modified=20 ::> settings and which SEPY cannot read correctly anymore on=20 ::startup, but=20 ::> didn't succeed. ::> Can you tell me where in the code you implemented the save process=20 ::> when pressing on the 'Apply' button in Preferences ? ::> I just need to know the dir and the filename outside the SEPY dir! ::> ::> valley ::> ::> ::> ::> ::> -----Urspr=FCngliche Nachricht----- ::> Von: sep...@li... ::> [mailto:sep...@li...]Im Auftrag von=20 ::> Alessandro Crugnola *sephiroth* ::> Gesendet: Dienstag, 7. September 2004 08:07 ::> An: sep...@li... ::> Betreff: Re: AW: [SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can you convert that method: ::> ::> def _show_XMLReader(self, event): ::> if event: ::> self.notebook_l.Freeze() ::> try: ::> self.xml_reader_panel =3D=20 ::XMLPanel(self.notebook_l, -1,=20 ::> langClass =3D self.langPY, parent =3D self) ::> except: ::> self.notebook_l.Thaw() ::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::> return ::> self.notebook_l.AddPage(self.xml_reader_panel, ::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::> self.notebook_l.Thaw() ::> try: ::> ::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::> - 1, 7) ::> ::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::> - 1) ::> except: ::> pass ::> else: ::> ::> ::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::S/XML_PANEL"," ::> LABEL")) ::> wx.CallAfter(self.ForceNotebookRefresh) ::> ::> ::> ::> ::> ::> ::> into this? ::> ::> ::> ::> ::> def _show_XMLReader(self, event): ::> if event: ::> self.notebook_l.Freeze() ::> #try: ::> self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, = ::> langClass =3D self.langPY, parent =3D self) ::> #except: ::> # self.notebook_l.Thaw() ::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::> # return ::> self.notebook_l.AddPage(self.xml_reader_panel, ::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::> self.notebook_l.Thaw() ::> try: ::> ::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::> - 1, 7) ::> ::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::> - 1) ::> except: ::> pass ::> else: ::> ::> ::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::S/XML_PANEL"," ::> LABEL")) ::> wx.CallAfter(self.ForceNotebookRefresh) ::> ::> valley said: ::>> this is the error message: ::>> ::>> Traceback (most recent call last): ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::142, in Notify ::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(),=20 ::>> title=3DAbout_title, dialog =3D self.dialog) ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::256, in __init__ ::>> self._createLeftPanel() ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in=20 ::>> _createLeftPanel ::>> self._show_XMLReader(1) ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in=20 ::>> _show_XMLReader ::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::>> RuntimeError: exceptions.TypeError Unable to convert string=20 ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so you also don't know the name of the file, right ?=20 ::hmmmmmm i look=20 ::>> around again. this we also have to document when found... ::>> ::>> valley ::>> ::>> ::>> ::>> ::>> ----- Original Message ----- ::>> From: "Alessandro Crugnola *sephiroth*"=20 ::<ale...@se...> To: ::>> <sep...@li...> ::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject: Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> This from the documentation: ::>> However, usually you don't even need to know the precise nature of = ::>> the class you're working with but you would just use the=20 ::wxConfigBase=20 ::>> methods. This allows you to write the same code regardless=20 ::of whether=20 ::>> you're working with the registry under Win32 or text-based config=20 ::>> files under Unix (or even Windows 3.1 .INI files if you're really=20 ::>> unlucky). To make writing the portable code even easier, wxWidgets = ::>> provides a typedef wxConfig which is mapped onto the native=20 ::>> wxConfigBase implementation on the given platform: i.e.=20 ::wxRegConfig=20 ::>> under Win32 (optionally ::>> wxIniConfig) and wxFileConfig otherwise. ::>> ::>> So, unde windows i use the Registry, anc under mac and=20 ::unix like os=20 ::>> ot should be used a text file, but i dont know where it is=20 ::stored..=20 ::>> can you write the exception you got? ::>> ::>> thanks ::>> ::>> ::>> Treu, Valentin said: ::>>> Ok, fine. ::>>> Another question: Where (directory) do you save modified=20 ::Preferences=20 ::>>> settings ? Yesterday I pressed 'Apply' after my changes with the=20 ::>>> StaticBoxSizers, then the reminder (restart necessary) popped up, = ::>>> but when I tried to restart SEPY from then on I always=20 ::got a system=20 ::>>> exception that some settings couldn't have been read=20 ::correctly. Also=20 ::>>> 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=20 ::>>> 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=20 ::>>> 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=20 ::>>> 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 ::>=20 ::>>> --------------------------------------------- ::>>> ::> Macromedia Flash Team Volunteer ::>>> ::> http://www.macromedia.com/go/team ::> Flash && PHP=20 ::developer ::>=20 ::>>> ale...@se... ::> ::> *relax with SEPY=20 ::>>> http://www.sf.net/projects/sepy ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::>>> ::> ::>>> ::> ::-----Original Message----- ::>>> ::> ::From: sep...@li... ::>>> ::> ::[mailto:sep...@li...] On=20 ::::Behalf=20 ::>>> Of valley ::> ::Sent: domenica 5 settembre 2004 15.40 ::> ::To:=20 ::>>> sep...@li... ::> ::Subject: Re:=20 ::[SE|PY-macdev]=20 ::>>> Preferences frozen ::> :: ::>>> ::> ::That's what I also just tried. And it's in this=20 ::sort of line,=20 ::>>> ::> ::because with the replacement line it works!!! ::>>> ::> ::I've tried this replacement also on other pages and all=20 ::>>> ::::elements ::> were accessible and modifyable. ::>>> ::> ::Also the languages are now filled into the combobox=20 ::on page 1. ::>>> ::> :: ::>>> ::> ::So would it be possible to let these StaticBoxSizers away=20 ::>>> ::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 ::>>> ::>=20 ::::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, ::>=20 ::>>> ::>=20 ::>>> = self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::>>> ::> ::wx.VERTICAL) ::>>> ::> ::> ::>>> ::> ::> Into: ::>>> ::> ::> sizer_general_options =3D wx.BoxSizer(wx.VERTICAL)=20 ::::> ::::>=20 ::>>> The only ::> thing that come in my mind is the container=20 ::of ::these=20 ::>>> elements. ::>>> ::> ::> On the other side, there are no differences ::> ::>=20 ::>>> Alessandro ::> Crugnola - sephiroth ::> ::>>> ::--------------------------------------------- ::>>> ::> ::> Macromedia Flash Team Volunteer ::> ::>=20 ::>>> http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::developer ::>=20 ::>>> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY=20 ::>>> http://www.sf.net/projects/sepy ::> ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::> ::>>> ::> ::> ::>>> ::> ::> ::-----Original Message----- ::> ::> ::From:=20 ::>>> sep...@li... ::>>> ::> ::> ::[mailto:sep...@li...] On=20 ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::2004 14.17=20 ::>>> ::> ::To: ::> sep...@li... ::>=20 ::::Subject: Re:=20 ::>>> [SE|PY-macdev] ::> Preferences frozen ::> :: ::>>> ::> ::> ::...and I tell you all the elements that work,=20 ::perhaps you=20 ::>>> ::> ::::know a ::> difference (binding events, filling in=20 ::data, ...)=20 ::>>> 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=20 ::folding, tabs=20 ::>>> ::> ::> ::placement, edge ::> ::column) also work ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::Are theses elements newer than the others (i.e. do you=20 ::>>> ::use ::> ::another ::> strategy in implementing them) ? funny is = ::>>> also that ::> ::these ::elements ::> are at the bottom of their=20 ::>>> pages, but why ::> ::doesn't then e.g. the ::> checkbox at the=20 ::>>> bottom of page ::>>> ::4 work..... ::>>> ::> ::> :: ::>>> ::> ::> ::valley ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::"Alessandro=20 ::>>> Crugnola *sephiroth*" ::>>> ::> ::> ::<sep...@us...> ::>>> ::> ::> ::To: <sep...@li...> ::>>> ::> ::> ::Sent: Sunday, September 05, 2004 2:50 PM ::>=20 ::::Subject: RE: ::>>> ::> [SE|PY-macdev] Preferences frozen ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::> ::Hmmmmmmm, still no change. ::>>> ::> ::> ::> ::I'll look now if there's an exception in=20 ::>>> WindowsPrefs.py ::> that ::> ::> ::causes some processes=20 ::to abort a=20 ::>>> little bit ::too early... ::>>> ::> ::> ::> ::>>> ::> ::> ::> Would be very helpful.. ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::How is it going with PearPC ? ::>>> ::> ::> ::> Downloaded.. Now i have to look for a MAC OSX=20 ::>>> installation ::> disc ::> ^_^ ::> ::> thanks ::> ::> ::>=20 ::Alessandro=20 ::>>> Crugnola - ::> sephiroth ::> ::>=20 ::>>> --------------------------------------------- ::> ::> ::>=20 ::Macromedia=20 ::>>> Flash Team Volunteer ::> ::> ::>=20 ::http://www.macromedia.com/go/team=20 ::>>> ::> ::> Flash && PHP ::developer ::> ::> ::>=20 ::ale...@se...=20 ::>>> ::> ::> ::> ::> *relax with SEPY ::>=20 ::http://www.sf.net/projects/sepy=20 ::>>> ::> ::> ::> --------------------------------------------- ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From:=20 ::>>> sep...@li... ::>>> ::> ::> ::>=20 ::::[mailto:sep...@li...] On =20 ::>>> ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::>>> ::2004 13.38 ::>>> ::> ::> ::To: ::>>> ::> ::> sep...@li... ::> ::Subject: Re: ::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> ::valley ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::>>> "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=20 ::one which =20 ::>>> ::> contains ::> the ::> ::> ::documents ::itself! ::>>> ::> ::> ::> ::> ::> Maybe changing the notebook into a=20 ::book ::like=20 ::>>> for the ::> ::> ::left ::> panel ? ::>>> ::> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::Yes I could try that. Where and what do=20 ::I have to=20 ::>>> ::> ::change in ::> ::> ::the ::> source so that it works=20 ::with ::a=20 ::>>> Book ? Or ::> if it's a ::> bigger ::> ::::change you ::>=20 ::could the=20 ::>>> ::changes and send ::> me the ::> ::modified file(s) ::> ::as=20 ::>>> 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,=20 ::wx.EXPAND,=20 ::>>> ::> ::>>> ::0) ::::> ::>>> ::> ::> ::> ::> ::> ::Btw: With the latest cvs source I get the=20 ::>>> ::following ::> ::> error message: ::>>> ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO =20 :: import ::> ::>>> ::TODOWindow ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: >ImportError: No module named=20 ::WindowsTODO ::> ::> ::>>> ::> ::> :: ::>>> ::> ::> ::> ::> ::Maybe there's something missing with the new=20 ::>>> ::feature... ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> Ops, sorry.. ::>>> ::> ::> ::> ::> I forgot to add that file in the CVS=20 ::commit.. I will=20 ::>>> do ::> ::> ::> immediately ::> ::> ::> ::Btw2: Have you=20 ::heard of the =20 ::>>> ::> following ::> ::> Sourceforge project: ::>>> ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With=20 ::>>> ::::that you ::> can ::> emulate for instance OS X=20 ::Panther on a ::>=20 ::>>> ::::Windows ::> ::> machine, ::> and it seems to work=20 ::quite well, as=20 ::>>> a ::> ::colleague ::> ::told me. So ::> ::> you could=20 ::also try your=20 ::>>> code ::changes on ::> ::> ::a mac ::machine and ::>=20 ::::with that ::>=20 ::>>> having a better ::::overview ::> over the ::> ::::two os :-) ::> = ::>>> ::> ::> Wow, i will ::download it now! ::>>> ::> ::> ::> ::> I hope to be able to install it without=20 ::crashing my=20 ::>>> ::> ::::system ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola -=20 ::>>> ::sephiroth ::> ::> ::> ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> ::>=20 ::>>> http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::::::developer=20 ::>>> ::> ::> ::> ::> ale...@se... ::> ::> ::> ::>=20 ::*relax with=20 ::>>> ::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::> ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::>=20 ::::From: ::>=20 ::>>> sep...@li... ::>>> ::> ::> ::> ::> ::>>> ::::[mailto:sep...@li...] On ::> ::>=20 ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::2004 9.26=20 ::>>> ::> ::> ::> ::To: ::>>> ::> ::> ::> sep...@li... ::>=20 ::::Subject: Re: ::>=20 ::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::valley ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::::------------------------------------------------------- ::>>> ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::>=20 ::>>> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE ::developer=20 ::>>> tools! ::>>> ::> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1 = ::>>> today. ::> ::> ::> ::>=20 ::>>> ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>>> ::> ::> ::> ::> ::_______________________________________________ = ::>>> ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::>=20 ::>>> ::sep...@li... ::>>> ::> ::> ::> ::> ::>>> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::>=20 ::>>> ------------------------------------------------------- ::>>> ::> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic=20 ::>>> ::::Workshop ::> ::FREE ::> Java ::> ::> Enterprise J2EE=20 ::developer=20 ::>>> tools! ::>>> ::> ::> ::> ::> Get your free copy of BEA WebLogic=20 ::Workshop 8.1 today. ::>>> ::> ::> ::> ::>=20 ::>>> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>>> ::> ::> ::> ::>=20 ::_______________________________________________ ::>=20 ::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::>=20 ::>>> sep...@li... ::> ::> ::> ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> :: ::>>> ::> ::> ::>=20 ::>>> ::------------------------------------------------------- ::>>> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::>>> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE=20 ::developer tools! ::>>> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop=20 ::8.1 today. ::>>> ::> ::> ::>=20 ::>>> ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>>> ::> ::> ::> ::_______________________________________________ ::>>> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::>=20 ::>>> ::sep...@li... ::>>> ::> ::> ::>=20 ::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::>=20 ::-------------------------------------------------------=20 ::>>> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic=20 ::>>> ::Workshop ::FREE ::> Java ::> ::> Enterprise J2EE=20 ::developer tools! ::>>> ::> ::> ::> Get your free copy of BEA WebLogic Workshop=20 ::8.1 today.=20 ::>>> ::> ::> ::>=20 ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick=20 ::>>> ::> ::> ::> _______________________________________________ ::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::>=20 ::>>> sep...@li... ::> ::> ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::------------------------------------------------------- = ::>>> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::Workshop=20 ::>>> ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::>>> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1=20 ::today. ::>=20 ::>>> ::> = ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::>>> ::> ::_______________________________________________ ::>>> ::> ::> ::sepy-macdev mailing list ::>>> ::> ::> ::sep...@li... ::>>> ::> ::>=20 ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev=20 ::>>> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::>=20 ::>>> -------------------------------------------------------=20 ::::> ::> This=20 ::>>> SF.Net email is sponsored by BEA Weblogic Workshop ::FREE=20 ::Java ::>=20 ::>>> ::> Enterprise J2EE developer tools! ::>>> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::> ::>=20 ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::>>> ::> _______________________________________________ ::>>> ::> ::> sepy-macdev mailing list ::>>> ::> ::> sep...@li... ::> ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev=20 ::::> ::> ::>=20 ::>>> :: ::>>> ::> :: ::>>> ::> :: ::>>> ::> ::------------------------------------------------------- ::>>> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::Workshop ::FREE=20 ::>>> ::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=20 ::>>> 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... ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::>>> :: ::>>> :: ::>>> :: ::>>> ::------------------------------------------------------- ::>>> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE=20 ::>>> ::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". ::>> --- ::>> ::>> ::>> ::>> ::>> ------------------------------------------------------- ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java=20 ::>> Enterprise J2EE developer tools! ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::>> _______________________________________________ ::>> 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=20 ::>> Enterprise J2EE developer tools! ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::>> _______________________________________________ ::>> 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". ::> --- ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java=20 ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::> _______________________________________________ ::> 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=20 ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::> _______________________________________________ ::> 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". ::--- :: :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <sep...@us...> - 2004-09-07 19:16:18
|
I posted the question on the wxpython mailing list.. I really don't know = where it could be ^_^ 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 --------------------------------------------- =20 ::-----Original Message----- ::From: sep...@li...=20 ::[mailto:sep...@li...] On Behalf Of=20 ::Treu, Valentin ::Sent: marted=EC 7 settembre 2004 12.40 ::To: 'sep...@li...' ::Subject: AW: AW: AW: [SE|PY-macdev] Preferences frozen :: ::Now I really have a problem: I cannot find this file=20 ::(searched for possible text inside, change date, etc.) and it=20 ::seems that it's damaged because I always get an error=20 ::'TypeError: Unable to convert string'. ::Someone's got an idea ? :: ::valley :: :: :: :: :: ::-----Urspr=FCngliche Nachricht----- ::Von: sep...@li... ::[mailto:sep...@li...]Im Auftrag=20 ::von Alessandro Crugnola *sephiroth* ::Gesendet: Dienstag, 7. September 2004 09:19 ::An: sep...@li... ::Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen :: :: ::the apply method is in the windowsprefs.py file at line (+ / -) 1154. ::the basepath of the wxConfig object is /Sephiroth/ASE, then=20 ::for every value i have to write there is for example: :: ::self.parent.reg.WriteInt("preferences/general/autosave", auto_save) :: ::which save an integer in the=20 ::/Sephiroth/ASE/preferences/general/autosave ::path ::or: ::self.parent.reg.Write("preferences/general/language",languag) :: ::when writing a String, for the path ::/Sephiroth/ASE/preferences/general/language :: ::hope this can help find the file!.. :: :: ::Treu, Valentin said: ::> Yes, I'll do that on lunch time. ::> Yesterday I tried with commenting the Runtime Exception=20 ::raising, and=20 ::> then it went through and stopped at another position. ::> So I don't think that we have to change sth. in the code=20 ::(now it also=20 ::> doesn't work anymore with older SEPY versions where it definitely=20 ::> worked). ::> I searched for files on my Mac that could have stored the modified=20 ::> settings and which SEPY cannot read correctly anymore on=20 ::startup, but=20 ::> didn't succeed. ::> Can you tell me where in the code you implemented the save process=20 ::> when pressing on the 'Apply' button in Preferences ? ::> I just need to know the dir and the filename outside the SEPY dir! ::> ::> valley ::> ::> ::> ::> ::> -----Urspr=FCngliche Nachricht----- ::> Von: sep...@li... ::> [mailto:sep...@li...]Im Auftrag von=20 ::> Alessandro Crugnola *sephiroth* ::> Gesendet: Dienstag, 7. September 2004 08:07 ::> An: sep...@li... ::> Betreff: Re: AW: [SE|PY-macdev] Preferences frozen ::> ::> ::> mmhh.. can you convert that method: ::> ::> def _show_XMLReader(self, event): ::> if event: ::> self.notebook_l.Freeze() ::> try: ::> self.xml_reader_panel =3D=20 ::XMLPanel(self.notebook_l, -1,=20 ::> langClass =3D self.langPY, parent =3D self) ::> except: ::> self.notebook_l.Thaw() ::> raise RuntimeError("%s %s %s" % sys.exc_info()) ::> return ::> self.notebook_l.AddPage(self.xml_reader_panel, ::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::> self.notebook_l.Thaw() ::> try: ::> ::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::> - 1, 7) ::> ::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::> - 1) ::> except: ::> pass ::> else: ::> ::> ::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::S/XML_PANEL"," ::> LABEL")) ::> wx.CallAfter(self.ForceNotebookRefresh) ::> ::> ::> ::> ::> ::> ::> into this? ::> ::> ::> ::> ::> def _show_XMLReader(self, event): ::> if event: ::> self.notebook_l.Freeze() ::> #try: ::> self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1,=20 ::> langClass =3D self.langPY, parent =3D self) ::> #except: ::> # self.notebook_l.Thaw() ::> # raise RuntimeError("%s %s %s" % sys.exc_info()) ::> # return ::> self.notebook_l.AddPage(self.xml_reader_panel, ::> self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) ::> self.notebook_l.Thaw() ::> try: ::> ::self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() ::> - 1, 7) ::> ::self.notebook_l.SetSelection(self.notebook_l.GetPageCount() ::> - 1) ::> except: ::> pass ::> else: ::> ::> ::self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANEL ::S/XML_PANEL"," ::> LABEL")) ::> wx.CallAfter(self.ForceNotebookRefresh) ::> ::> valley said: ::>> this is the error message: ::>> ::>> Traceback (most recent call last): ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::142, in Notify ::>> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(),=20 ::>> title=3DAbout_title, dialog =3D self.dialog) ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line=20 ::256, in __init__ ::>> self._createLeftPanel() ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in=20 ::>> _createLeftPanel ::>> self._show_XMLReader(1) ::>> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in=20 ::>> _show_XMLReader ::>> raise RuntimeError("%s %s %s" % sys.exc_info()) ::>> RuntimeError: exceptions.TypeError Unable to convert string=20 ::>> <traceback object at 0x7cdb5f8>} ::>> ::>> so you also don't know the name of the file, right ?=20 ::hmmmmmm i look=20 ::>> around again. this we also have to document when found... ::>> ::>> valley ::>> ::>> ::>> ::>> ::>> ----- Original Message ----- ::>> From: "Alessandro Crugnola *sephiroth*"=20 ::<ale...@se...> To: ::>> <sep...@li...> ::>> Sent: Monday, September 06, 2004 5:38 PM ::>> Subject: Re: AW: [SE|PY-macdev] Preferences frozen ::>> ::>> ::>> This from the documentation: ::>> However, usually you don't even need to know the precise nature of=20 ::>> the class you're working with but you would just use the=20 ::wxConfigBase=20 ::>> methods. This allows you to write the same code regardless=20 ::of whether=20 ::>> you're working with the registry under Win32 or text-based config=20 ::>> files under Unix (or even Windows 3.1 .INI files if you're really=20 ::>> unlucky). To make writing the portable code even easier, wxWidgets=20 ::>> provides a typedef wxConfig which is mapped onto the native=20 ::>> wxConfigBase implementation on the given platform: i.e.=20 ::wxRegConfig=20 ::>> under Win32 (optionally ::>> wxIniConfig) and wxFileConfig otherwise. ::>> ::>> So, unde windows i use the Registry, anc under mac and=20 ::unix like os=20 ::>> ot should be used a text file, but i dont know where it is=20 ::stored..=20 ::>> can you write the exception you got? ::>> ::>> thanks ::>> ::>> ::>> Treu, Valentin said: ::>>> Ok, fine. ::>>> Another question: Where (directory) do you save modified=20 ::Preferences=20 ::>>> settings ? Yesterday I pressed 'Apply' after my changes with the=20 ::>>> StaticBoxSizers, then the reminder (restart necessary) popped up,=20 ::>>> but when I tried to restart SEPY from then on I always=20 ::got a system=20 ::>>> exception that some settings couldn't have been read=20 ::correctly. Also=20 ::>>> a new cvs 'get' didn't work, so it seems that there has sth. been=20 ::>>> stored outside the SEPY/Scite directory. ::>>> ::>>> Thanks. ::>>> valley ::>>> ::>>> ::>>> ::>>> -----Ursprungliche Nachricht----- ::>>> Von: sep...@li... ::>>> [mailto:sep...@li...]Im Auftrag von=20 ::>>> 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=20 ::>>> 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=20 ::>>> 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=20 ::>>> fault ::> ^_^ ::> ::> Alessandro Crugnola - sephiroth ::>=20 ::>>> --------------------------------------------- ::>>> ::> Macromedia Flash Team Volunteer ::>>> ::> http://www.macromedia.com/go/team ::> Flash && PHP=20 ::developer ::>=20 ::>>> ale...@se... ::> ::> *relax with SEPY=20 ::>>> http://www.sf.net/projects/sepy ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::>>> ::> ::>>> ::> ::-----Original Message----- ::>>> ::> ::From: sep...@li... ::>>> ::> ::[mailto:sep...@li...] On=20 ::::Behalf=20 ::>>> Of valley ::> ::Sent: domenica 5 settembre 2004 15.40 ::> ::To:=20 ::>>> sep...@li... ::> ::Subject: Re:=20 ::[SE|PY-macdev]=20 ::>>> Preferences frozen ::> :: ::>>> ::> ::That's what I also just tried. And it's in this=20 ::sort of line,=20 ::>>> ::> ::because with the replacement line it works!!! ::>>> ::> ::I've tried this replacement also on other pages and all=20 ::>>> ::::elements ::> were accessible and modifyable. ::>>> ::> ::Also the languages are now filled into the combobox=20 ::on page 1. ::>>> ::> :: ::>>> ::> ::So would it be possible to let these StaticBoxSizers away=20 ::>>> ::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:=20 ::>>> [SE|PY-macdev] Preferences frozen ::> :: ::>>> ::> :: ::>>> ::> ::> Mmhhh. ::>>> ::> ::> Try this in the windowsprefs.py file. ::>>> ::> ::> Line 660, change: ::>>> ::> ::> ::>>> ::> ::> sizer_general_options =3D ::>>> ::>=20 ::::wx.StaticBoxSizer(wx.StaticBox(self.notebook_panel_1, -1, ::>=20 ::>>> ::>=20 ::>>> self.lang.get("/LANGUAGE/SEPY/PANELS/PREF_PANEL/SIZERS/GENERAL")), ::>>> ::> ::wx.VERTICAL) ::>>> ::> ::> ::>>> ::> ::> Into: ::>>> ::> ::> sizer_general_options =3D wx.BoxSizer(wx.VERTICAL)=20 ::::> ::::>=20 ::>>> The only ::> thing that come in my mind is the container=20 ::of ::these=20 ::>>> elements. ::>>> ::> ::> On the other side, there are no differences ::> ::>=20 ::>>> Alessandro ::> Crugnola - sephiroth ::> ::>>> ::--------------------------------------------- ::>>> ::> ::> Macromedia Flash Team Volunteer ::> ::>=20 ::>>> http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::developer ::>=20 ::>>> ::> ale...@se... ::> ::> ::> ::> *relax with SEPY=20 ::>>> http://www.sf.net/projects/sepy ::> ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::> ::>>> ::> ::> ::>>> ::> ::> ::-----Original Message----- ::> ::> ::From:=20 ::>>> sep...@li... ::>>> ::> ::> ::[mailto:sep...@li...] On=20 ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::2004 14.17=20 ::>>> ::> ::To: ::> sep...@li... ::>=20 ::::Subject: Re:=20 ::>>> [SE|PY-macdev] ::> Preferences frozen ::> :: ::>>> ::> ::> ::...and I tell you all the elements that work,=20 ::perhaps you=20 ::>>> ::> ::::know a ::> difference (binding events, filling in=20 ::data, ...)=20 ::>>> 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 ::>=20 ::>>> ::- ::> 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=20 ::folding, tabs=20 ::>>> ::> ::> ::placement, edge ::> ::column) also work ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::Are theses elements newer than the others (i.e. do you=20 ::>>> ::use ::> ::another ::> strategy in implementing them) ? funny is=20 ::>>> also that ::> ::these ::elements ::> are at the bottom of their=20 ::>>> pages, but why ::> ::doesn't then e.g. the ::> checkbox at the=20 ::>>> bottom of page ::>>> ::4 work..... ::>>> ::> ::> :: ::>>> ::> ::> ::valley ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::"Alessandro=20 ::>>> Crugnola *sephiroth*" ::>>> ::> ::> ::<sep...@us...> ::>>> ::> ::> ::To: <sep...@li...> ::>>> ::> ::> ::Sent: Sunday, September 05, 2004 2:50 PM ::>=20 ::::Subject: RE: ::>>> ::> [SE|PY-macdev] Preferences frozen ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::> ::Hmmmmmmm, still no change. ::>>> ::> ::> ::> ::I'll look now if there's an exception in=20 ::>>> WindowsPrefs.py ::> that ::> ::> ::causes some processes=20 ::to abort a=20 ::>>> little bit ::too early... ::>>> ::> ::> ::> ::>>> ::> ::> ::> Would be very helpful.. ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::How is it going with PearPC ? ::>>> ::> ::> ::> Downloaded.. Now i have to look for a MAC OSX=20 ::>>> installation ::> disc ::> ^_^ ::> ::> thanks ::> ::> ::>=20 ::Alessandro=20 ::>>> Crugnola - ::> sephiroth ::> ::>=20 ::>>> --------------------------------------------- ::> ::> ::>=20 ::Macromedia=20 ::>>> Flash Team Volunteer ::> ::> ::>=20 ::http://www.macromedia.com/go/team=20 ::>>> ::> ::> Flash && PHP ::developer ::> ::> ::>=20 ::ale...@se...=20 ::>>> ::> ::> ::> ::> *relax with SEPY ::>=20 ::http://www.sf.net/projects/sepy=20 ::>>> ::> ::> ::> --------------------------------------------- ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::-----Original Message----- ::> ::> ::> ::From:=20 ::>>> sep...@li... ::>>> ::> ::> ::>=20 ::::[mailto:sep...@li...] On =20 ::>>> ::> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre ::>>> ::2004 13.38 ::>>> ::> ::> ::To: ::>>> ::> ::> sep...@li... ::> ::Subject: Re: ::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> ::valley ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> ::----- Original Message ----- ::> ::> ::From:=20 ::>>> "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=20 ::one which =20 ::>>> ::> contains ::> the ::> ::> ::documents ::itself! ::>>> ::> ::> ::> ::> ::> Maybe changing the notebook into a=20 ::book ::like=20 ::>>> for the ::> ::> ::left ::> panel ? ::>>> ::> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::Yes I could try that. Where and what do=20 ::I have to=20 ::>>> ::> ::change in ::> ::> ::the ::> source so that it works=20 ::with ::a=20 ::>>> Book ? Or ::> if it's a ::> bigger ::> ::::change you ::>=20 ::could the=20 ::>>> ::changes and send ::> me the ::> ::modified file(s) ::> ::as=20 ::>>> 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,=20 ::wx.EXPAND,=20 ::>>> ::> ::>>> ::0) ::::> ::>>> ::> ::> ::> ::> ::> ::Btw: With the latest cvs source I get the=20 ::>>> ::following ::> ::> error message: ::>>> ::> ::> ::> ::> :: >SEPY.py line 33 from WindowsTODO =20 :: import ::> ::>>> ::TODOWindow ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: >ImportError: No module named=20 ::WindowsTODO ::> ::> ::>>> ::> ::> :: ::>>> ::> ::> ::> ::> ::Maybe there's something missing with the new=20 ::>>> ::feature... ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> Ops, sorry.. ::>>> ::> ::> ::> ::> I forgot to add that file in the CVS=20 ::commit.. I will=20 ::>>> do ::> ::> ::> immediately ::> ::> ::> ::Btw2: Have you=20 ::heard of the =20 ::>>> ::> following ::> ::> Sourceforge project: ::>>> ::> ::> ::> ::> ::http://pearpc.sourceforge.net/ ::> ::> ::With=20 ::>>> ::::that you ::> can ::> emulate for instance OS X=20 ::Panther on a ::>=20 ::>>> ::::Windows ::> ::> machine, ::> and it seems to work=20 ::quite well, as=20 ::>>> a ::> ::colleague ::> ::told me. So ::> ::> you could=20 ::also try your=20 ::>>> code ::changes on ::> ::> ::a mac ::machine and ::>=20 ::::with that ::>=20 ::>>> having a better ::::overview ::> over the ::> ::::two os :-) ::>=20 ::>>> ::> ::> Wow, i will ::download it now! ::>>> ::> ::> ::> ::> I hope to be able to install it without=20 ::crashing my=20 ::>>> ::> ::::system ::> ^_^ ::> ::> ::> ::> Alessandro Crugnola -=20 ::>>> ::sephiroth ::> ::> ::> ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::> ::> ::> Macromedia Flash Team Volunteer ::> ::> ::> ::>=20 ::>>> http://www.macromedia.com/go/team ::> ::> Flash && PHP=20 ::::::developer=20 ::>>> ::> ::> ::> ::> ale...@se... ::> ::> ::> ::>=20 ::*relax with=20 ::>>> ::SEPY ::> ::> http://www.sf.net/projects/sepy ::> ::> ::> ::>=20 ::>>> --------------------------------------------- ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::-----Original Message----- ::> ::> ::>=20 ::::From: ::>=20 ::>>> sep...@li... ::>>> ::> ::> ::> ::> ::>>> ::::[mailto:sep...@li...] On ::> ::>=20 ::>>> ::::Behalf Of ::> valley ::> ::Sent: domenica 5 settembre=20 ::2004 9.26=20 ::>>> ::> ::> ::> ::To: ::>>> ::> ::> ::> sep...@li... ::>=20 ::::Subject: Re: ::>=20 ::>>> ::> [SE|PY-macdev] ::> Preferences frozen ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::valley ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> :: ::>>> ::> ::> ::> ::> ::>>> ::::------------------------------------------------------- ::>>> ::> ::> ::> ::> ::This SF.Net email is sponsored by BEA=20 ::Weblogic ::>=20 ::>>> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE ::developer=20 ::>>> tools! ::>>> ::> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1=20 ::>>> today. ::> ::> ::> ::>=20 ::>>> ::::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>>> ::> ::> ::> ::> ::_______________________________________________=20 ::>>> ::> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::> ::>=20 ::>>> ::sep...@li... ::>>> ::> ::> ::> ::> ::>>> ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> ::>=20 ::>>> ------------------------------------------------------- ::>>> ::> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic=20 ::>>> ::::Workshop ::> ::FREE ::> Java ::> ::> Enterprise J2EE=20 ::developer=20 ::>>> tools! ::>>> ::> ::> ::> ::> Get your free copy of BEA WebLogic=20 ::Workshop 8.1 today. ::>>> ::> ::> ::> ::>=20 ::>>> http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>>> ::> ::> ::> ::>=20 ::_______________________________________________ ::>=20 ::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::> ::>=20 ::>>> sep...@li... ::> ::> ::> ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::> ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> :: ::>>> ::> ::> ::> :: ::>>> ::> ::> ::>=20 ::>>> ::------------------------------------------------------- ::>>> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::>>> ::Workshop ::> ::FREE ::> ::Java ::> Enterprise J2EE=20 ::developer tools! ::>>> ::> ::> ::> ::Get your free copy of BEA WebLogic Workshop=20 ::8.1 today. ::>>> ::> ::> ::>=20 ::>>> ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>>> ::> ::> ::> ::_______________________________________________ ::>>> ::> ::> ::> ::sepy-macdev mailing list ::> ::> ::>=20 ::>>> ::sep...@li... ::>>> ::> ::> ::>=20 ::>>> ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::> ::>>> ::> ::> ::>=20 ::-------------------------------------------------------=20 ::>>> ::> ::> ::> This SF.Net email is sponsored by BEA Weblogic=20 ::>>> ::Workshop ::FREE ::> Java ::> ::> Enterprise J2EE=20 ::developer tools! ::>>> ::> ::> ::> Get your free copy of BEA WebLogic Workshop=20 ::8.1 today.=20 ::>>> ::> ::> ::>=20 ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick=20 ::>>> ::> ::> ::> _______________________________________________ ::>>> ::> ::> ::> sepy-macdev mailing list ::> ::> ::>=20 ::>>> sep...@li... ::> ::> ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::> ::> ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> :: ::>>> ::> ::> ::-------------------------------------------------------=20 ::>>> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::::Workshop=20 ::>>> ::FREE ::> ::Java ::> Enterprise J2EE developer tools! ::>>> ::> ::> ::Get your free copy of BEA WebLogic Workshop 8.1=20 ::today. ::>=20 ::>>> ::> = ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::>>> ::> ::_______________________________________________ ::>>> ::> ::> ::sepy-macdev mailing list ::>>> ::> ::> ::sep...@li... ::>>> ::> ::>=20 ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev=20 ::>>> ::> ::> ::> ::> ::> ::> ::> ::> ::> ::>=20 ::>>> -------------------------------------------------------=20 ::::> ::> This=20 ::>>> SF.Net email is sponsored by BEA Weblogic Workshop ::FREE=20 ::Java ::>=20 ::>>> ::> Enterprise J2EE developer tools! ::>>> ::> ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>>> ::> ::>=20 ::http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick ::>=20 ::>>> ::> _______________________________________________ ::>>> ::> ::> sepy-macdev mailing list ::>>> ::> ::> sep...@li... ::> ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev=20 ::::> ::> ::>=20 ::>>> :: ::>>> ::> :: ::>>> ::> :: ::>>> ::> ::------------------------------------------------------- ::>>> ::> ::This SF.Net email is sponsored by BEA Weblogic=20 ::Workshop ::FREE=20 ::>>> ::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=20 ::>>> 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... ::>=20 ::>>> https://lists.sourceforge.net/lists/listinfo/sepy-macdev ::>>> ::> ::>>> :: ::>>> :: ::>>> :: ::>>> ::------------------------------------------------------- ::>>> ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE=20 ::>>> ::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=20 ::>>> 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=20 ::>>> 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". ::>> --- ::>> ::>> ::>> ::>> ::>> ------------------------------------------------------- ::>> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java=20 ::>> Enterprise J2EE developer tools! ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::>> _______________________________________________ ::>> 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=20 ::>> Enterprise J2EE developer tools! ::>> Get your free copy of BEA WebLogic Workshop 8.1 today. ::>> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::>> _______________________________________________ ::>> 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". ::> --- ::> ::> ::> ::> ::> ------------------------------------------------------- ::> This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java=20 ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::> _______________________________________________ ::> 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=20 ::> Enterprise J2EE developer tools! ::> Get your free copy of BEA WebLogic Workshop 8.1 today. ::> http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::> _______________________________________________ ::> 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". ::--- :: :: :: :: ::------------------------------------------------------- ::This SF.Net email is sponsored by BEA Weblogic Workshop FREE=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=3Dick ::_______________________________________________ ::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=20 ::Java Enterprise J2EE developer tools! ::Get your free copy of BEA WebLogic Workshop 8.1 today. ::http://ads.osdn.com/?ad_idP47&alloc_id=10808&op=CCk ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <ale...@se...> - 2004-09-07 12:17:58
|
Treu, Valentin said: > Now I really have a problem: I cannot find this file (searched > for possible text inside, change date, etc.) and it seems that it's > damaged because I always get an error 'TypeError: Unable to > convert string'. > Someone's got an idea ? > I really don't know where it is stored.. we have to ask in the wxpython ml. i will put my question there |
From: Treu, V. <Val...@in...> - 2004-09-07 11:39:02
|
Now I really have a problem: I cannot find this file (searched for possible text inside, change date, etc.) and it seems that it's=20 damaged because I always get an error 'TypeError: Unable to convert string'. Someone's got an idea ? valley -----Urspr=FCngliche Nachricht----- Von: sep...@li... [mailto:sep...@li...]Im Auftrag von Alessandro Crugnola *sephiroth* Gesendet: Dienstag, 7. September 2004 09:19 An: sep...@li... Betreff: Re: AW: AW: [SE|PY-macdev] Preferences frozen the apply method is in the windowsprefs.py file at line (+ / -) 1154. the basepath of the wxConfig object is /Sephiroth/ASE, then for every value i have to write there is for example: self.parent.reg.WriteInt("preferences/general/autosave", auto_save) which save an integer in the = /Sephiroth/ASE/preferences/general/autosave path or: self.parent.reg.Write("preferences/general/language",languag) when writing a String, for the path /Sephiroth/ASE/preferences/general/language hope this can help find the file!.. Treu, Valentin said: > Yes, I'll do that on lunch time. > Yesterday I tried with commenting the Runtime Exception raising, > and then it went through and stopped at another position. > So I don't think that we have to change sth. in the code (now > it also doesn't work anymore with older SEPY versions where it = definitely > worked). > I searched for files on my Mac that could have stored the modified > settings and which SEPY cannot read correctly anymore on startup, > but didn't succeed. > Can you tell me where in the code you implemented the save process = when > pressing on the 'Apply' button in Preferences ? > I just need to know the dir and the filename outside the SEPY dir! > > valley > > > > > -----Urspr=FCngliche Nachricht----- > Von: sep...@li... > [mailto:sep...@li...]Im Auftrag von > Alessandro Crugnola *sephiroth* > Gesendet: Dienstag, 7. September 2004 08:07 > An: sep...@li... > Betreff: Re: AW: [SE|PY-macdev] Preferences frozen > > > mmhh.. can you convert that method: > > def _show_XMLReader(self, event): > if event: > self.notebook_l.Freeze() > try: > self.xml_reader_panel =3D XMLPanel(self.notebook_l, = -1, > langClass =3D self.langPY, parent =3D self) > except: > self.notebook_l.Thaw() > raise RuntimeError("%s %s %s" % sys.exc_info()) > return > self.notebook_l.AddPage(self.xml_reader_panel, > self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) > self.notebook_l.Thaw() > try: > self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() > - 1, 7) > self.notebook_l.SetSelection(self.notebook_l.GetPageCount() > - 1) > except: > pass > else: > > self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANE= L"," > LABEL")) > wx.CallAfter(self.ForceNotebookRefresh) > > > > > > > into this? > > > > > def _show_XMLReader(self, event): > if event: > self.notebook_l.Freeze() > #try: > self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, > langClass > =3D self.langPY, parent =3D self) > #except: > # self.notebook_l.Thaw() > # raise RuntimeError("%s %s %s" % sys.exc_info()) > # return > self.notebook_l.AddPage(self.xml_reader_panel, > self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) > self.notebook_l.Thaw() > try: > self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() > - 1, 7) > self.notebook_l.SetSelection(self.notebook_l.GetPageCount() > - 1) > except: > pass > else: > > self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANE= L"," > LABEL")) > wx.CallAfter(self.ForceNotebookRefresh) > > valley said: >> this is the error message: >> >> Traceback (most recent call last): >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 142, in = Notify >> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), = title=3DAbout_title, >> dialog =3D self.dialog) >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 256, in = __init__ >> self._createLeftPanel() >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in >> _createLeftPanel >> self._show_XMLReader(1) >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in >> _show_XMLReader >> raise RuntimeError("%s %s %s" % sys.exc_info()) >> RuntimeError: exceptions.TypeError Unable to convert string = <traceback >> object at 0x7cdb5f8>} >> >> so you also don't know the name of the file, right ? hmmmmmm >> i look around again. this we also have to document when found... >> >> valley >> >> >> >> >> ----- Original Message ----- >> From: "Alessandro Crugnola *sephiroth*" <ale...@se...> = To: >> <sep...@li...> >> Sent: Monday, September 06, 2004 5:38 PM >> Subject: Re: AW: [SE|PY-macdev] Preferences frozen >> >> >> This from the documentation: >> However, usually you don't even need to know the precise nature of = the >> class 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 with 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=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 >>> >>> >>> ------------------------------------------------------- >>> 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". >> --- >> >> >> >> >> ------------------------------------------------------- >> 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_idP47&alloc_id=10808&op=3Dick >> _______________________________________________ >> 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_idP47&alloc_id=10808&op=CCk >> _______________________________________________ >> 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". > --- > > > > > ------------------------------------------------------- > 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_idP47&alloc_id=10808&op=3Dick > _______________________________________________ > 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_idP47&alloc_id=10808&op=CCk > _______________________________________________ > 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". --- ------------------------------------------------------- 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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <ale...@se...> - 2004-09-07 07:18:59
|
the apply method is in the windowsprefs.py file at line (+ / -) 1154. the basepath of the wxConfig object is /Sephiroth/ASE, then for every value i have to write there is for example: self.parent.reg.WriteInt("preferences/general/autosave", auto_save) which save an integer in the /Sephiroth/ASE/preferences/general/autosave = path or: self.parent.reg.Write("preferences/general/language",languag) when writing a String, for the path /Sephiroth/ASE/preferences/general/la= nguage hope this can help find the file!.. Treu, Valentin said: > Yes, I'll do that on lunch time. > Yesterday I tried with commenting the Runtime Exception raising, > and then it went through and stopped at another position. > So I don't think that we have to change sth. in the code (now > it also doesn't work anymore with older SEPY versions where it definite= ly > worked). > I searched for files on my Mac that could have stored the modified > settings and which SEPY cannot read correctly anymore on startup, > but didn't succeed. > Can you tell me where in the code you implemented the save process when > pressing on the 'Apply' button in Preferences ? > I just need to know the dir and the filename outside the SEPY dir! > > valley > > > > > -----Urspr=FCngliche Nachricht----- > Von: sep...@li... > [mailto:sep...@li...]Im Auftrag von > Alessandro Crugnola *sephiroth* > Gesendet: Dienstag, 7. September 2004 08:07 > An: sep...@li... > Betreff: Re: AW: [SE|PY-macdev] Preferences frozen > > > mmhh.. can you convert that method: > > def _show_XMLReader(self, event): > if event: > self.notebook_l.Freeze() > try: > self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, > langClass =3D self.langPY, parent =3D self) > except: > self.notebook_l.Thaw() > raise RuntimeError("%s %s %s" % sys.exc_info()) > return > self.notebook_l.AddPage(self.xml_reader_panel, > self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) > self.notebook_l.Thaw() > try: > self.notebook_l.SetPageImage(self.notebook_l.GetPageCou= nt() > - 1, 7) > self.notebook_l.SetSelection(self.notebook_l.GetPageCou= nt() > - 1) > except: > pass > else: > > self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PAN= EL"," > LABEL")) > wx.CallAfter(self.ForceNotebookRefresh) > > > > > > > into this? > > > > > def _show_XMLReader(self, event): > if event: > self.notebook_l.Freeze() > #try: > self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, > langClass > =3D self.langPY, parent =3D self) > #except: > # self.notebook_l.Thaw() > # raise RuntimeError("%s %s %s" % sys.exc_info()) > # return > self.notebook_l.AddPage(self.xml_reader_panel, > self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) > self.notebook_l.Thaw() > try: > self.notebook_l.SetPageImage(self.notebook_l.GetPageCou= nt() > - 1, 7) > self.notebook_l.SetSelection(self.notebook_l.GetPageCou= nt() > - 1) > except: > pass > else: > > self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PAN= EL"," > LABEL")) > wx.CallAfter(self.ForceNotebookRefresh) > > valley said: >> this is the error message: >> >> Traceback (most recent call last): >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 142, in Notify >> frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), title=3DAbou= t_title, >> dialog =3D self.dialog) >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 256, in __init= __ >> self._createLeftPanel() >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in >> _createLeftPanel >> self._show_XMLReader(1) >> File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in >> _show_XMLReader >> raise RuntimeError("%s %s %s" % sys.exc_info()) >> RuntimeError: exceptions.TypeError Unable to convert string <traceback >> object at 0x7cdb5f8>} >> >> so you also don't know the name of the file, right ? hmmmmmm >> i look around again. this we also have to document when found... >> >> valley >> >> >> >> >> ----- Original Message ----- >> From: "Alessandro Crugnola *sephiroth*" <ale...@se...> To: >> <sep...@li...> >> Sent: Monday, September 06, 2004 5:38 PM >> Subject: Re: AW: [SE|PY-macdev] Preferences frozen >> >> >> This from the documentation: >> However, usually you don't even need to know the precise nature of the >> class 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 with the registry under Win32 or text-based config file= s >> 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 typed= ef >> wxConfig which is mapped onto the native wxConfigBase implementation o= n >> 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 y= ou >> 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 valle= y >>> ::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 fau= lt >>> ::> ^_^ >>> ::> >>> ::> 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 ::> ::> Alessandr= o >>> ::> 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 ::us= e >>> ::> ::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.p= y >>> ::> 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 installatio= n >>> ::> 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: "Alessandr= o >>> ::> 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 ::> ::colleagu= e >>> ::> ::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 ::SEP= Y >>> ::> >>> ::> 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= =3Dclick >>> ::> ::> ::> ::> _______________________________________________ ::> := :> >>> ::> ::> sepy-macdev mailing list >>> ::> ::> ::> ::> sep...@li... ::> ::> ::> >>> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >>> ::> ::> ::> ::> >>> ::> ::> ::> :: >>> ::> ::> ::> :: >>> ::> ::> ::> :: >>> ::> ::> ::> ::------------------------------------------------------- >>> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Worksh= op >>> ::> ::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=3D= click >>> ::> ::> ::> ::_______________________________________________ >>> ::> ::> ::> ::sepy-macdev mailing list >>> ::> ::> ::> ::sep...@li... >>> ::> ::> ::> ::https://lists.sourceforge.net/lists/listinfo/sepy-macde= v >>> ::> ::> ::> >>> ::> ::> ::> >>> ::> ::> ::> >>> ::> ::> ::> >>> ::> ::> ::> ------------------------------------------------------- := :> >>> ::> ::> 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". >> --- >> >> >> >> >> ------------------------------------------------------- >> 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_idP47&alloc_id=10808&op=3Dick >> _______________________________________________ >> 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_idP47&alloc_id=10808&op=CCk >> _______________________________________________ >> 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". > --- > > > > > ------------------------------------------------------- > 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_idP47&alloc_id=10808&op=3Dick > _______________________________________________ > 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_idP47&alloc_id=10808&op=CCk > _______________________________________________ > 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-07 06:58:13
|
Yes, I'll do that on lunch time. Yesterday I tried with commenting the Runtime Exception raising, and then it went through and stopped at another position. So I don't think that we have to change sth. in the code (now it also doesn't work anymore with older SEPY versions where it = definitely worked). I searched for files on my Mac that could have stored the modified settings and which SEPY cannot read correctly anymore on startup, but didn't succeed. Can you tell me where in the code you implemented the save process when pressing on the 'Apply' button in Preferences ? I just need to know the dir and the filename outside the SEPY dir! valley -----Urspr=FCngliche Nachricht----- Von: sep...@li... [mailto:sep...@li...]Im Auftrag von Alessandro Crugnola *sephiroth* Gesendet: Dienstag, 7. September 2004 08:07 An: sep...@li... Betreff: Re: AW: [SE|PY-macdev] Preferences frozen mmhh.. can you convert that method: def _show_XMLReader(self, event): if event: self.notebook_l.Freeze() try: self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, langClass =3D self.langPY, parent =3D self) except: self.notebook_l.Thaw() raise RuntimeError("%s %s %s" % sys.exc_info()) return self.notebook_l.AddPage(self.xml_reader_panel, self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) self.notebook_l.Thaw() try: = self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() - 1, 7) = self.notebook_l.SetSelection(self.notebook_l.GetPageCount() - 1) except: pass else: =20 self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANE= L"," LABEL")) wx.CallAfter(self.ForceNotebookRefresh) into this? def _show_XMLReader(self, event): if event: self.notebook_l.Freeze() #try: self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, = langClass =3D self.langPY, parent =3D self) #except: # self.notebook_l.Thaw() # raise RuntimeError("%s %s %s" % sys.exc_info()) # return self.notebook_l.AddPage(self.xml_reader_panel, self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) self.notebook_l.Thaw() try: = self.notebook_l.SetPageImage(self.notebook_l.GetPageCount() - 1, 7) = self.notebook_l.SetSelection(self.notebook_l.GetPageCount() - 1) except: pass else: =20 self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANE= L"," LABEL")) wx.CallAfter(self.ForceNotebookRefresh) valley said: > this is the error message: > > Traceback (most recent call last): > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 142, in = Notify > frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), = title=3DAbout_title, > dialog =3D self.dialog) > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 256, in = __init__ > self._createLeftPanel() > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in > _createLeftPanel > self._show_XMLReader(1) > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in > _show_XMLReader > raise RuntimeError("%s %s %s" % sys.exc_info()) > RuntimeError: exceptions.TypeError Unable to convert string = <traceback > object at 0x7cdb5f8>} > > so you also don't know the name of the file, right ? hmmmmmm > i look around again. this we also have to document when found... > > valley > > > > > ----- Original Message ----- > From: "Alessandro Crugnola *sephiroth*" <ale...@se...> > To: <sep...@li...> > Sent: Monday, September 06, 2004 5:38 PM > Subject: Re: AW: [SE|PY-macdev] Preferences frozen > > > This from the documentation: > However, usually you don't even need to know the precise nature of = the > class 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 with 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=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 >> >> >> ------------------------------------------------------- >> 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". > --- > > > > > ------------------------------------------------------- > 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_idP47&alloc_id=10808&op=3Dick > _______________________________________________ > 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_idP47&alloc_id=10808&op=CCk > _______________________________________________ > 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". --- ------------------------------------------------------- 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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |
From: Alessandro C. *sephiroth* <ale...@se...> - 2004-09-07 06:06:52
|
mmhh.. can you convert that method: def _show_XMLReader(self, event): if event: self.notebook_l.Freeze() try: self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, langClass =3D self.langPY, parent =3D self) except: self.notebook_l.Thaw() raise RuntimeError("%s %s %s" % sys.exc_info()) return self.notebook_l.AddPage(self.xml_reader_panel, self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) self.notebook_l.Thaw() try: self.notebook_l.SetPageImage(self.notebook_l.GetPageCount= () - 1, 7) self.notebook_l.SetSelection(self.notebook_l.GetPageCount= () - 1) except: pass else: self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANE= LS/XML_PANEL","LABEL")) wx.CallAfter(self.ForceNotebookRefresh) into this? def _show_XMLReader(self, event): if event: self.notebook_l.Freeze() #try: self.xml_reader_panel =3D XMLPanel(self.notebook_l, -1, langC= lass =3D self.langPY, parent =3D self) #except: # self.notebook_l.Thaw() # raise RuntimeError("%s %s %s" % sys.exc_info()) # return self.notebook_l.AddPage(self.xml_reader_panel, self.langPY.get("/LANGUAGE/SEPY/PANELS/XML_PANEL","LABEL")) self.notebook_l.Thaw() try: self.notebook_l.SetPageImage(self.notebook_l.GetPageCount= () - 1, 7) self.notebook_l.SetSelection(self.notebook_l.GetPageCount= () - 1) except: pass else: self.__hideFromLeftPanel(self.langPY.get("/LANGUAGE/SEPY/PANE= LS/XML_PANEL","LABEL")) wx.CallAfter(self.ForceNotebookRefresh) valley said: > this is the error message: > > Traceback (most recent call last): > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 142, in Notify > frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), title=3DAbout= _title, > dialog =3D self.dialog) > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 256, in __init_= _ > self._createLeftPanel() > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in > _createLeftPanel > self._show_XMLReader(1) > File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in > _show_XMLReader > raise RuntimeError("%s %s %s" % sys.exc_info()) > RuntimeError: exceptions.TypeError Unable to convert string <traceback > object at 0x7cdb5f8>} > > so you also don't know the name of the file, right ? hmmmmmm > i look around again. this we also have to document when found... > > valley > > > > > ----- Original Message ----- > From: "Alessandro Crugnola *sephiroth*" <ale...@se...> > To: <sep...@li...> > Sent: Monday, September 06, 2004 5:38 PM > Subject: Re: AW: [SE|PY-macdev] Preferences frozen > > > This from the documentation: > However, usually you don't even need to know the precise nature of the > class you're working with but you would just use the wxConfigBase metho= ds. > This allows you to write the same code regardless of whether you're > working with 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 wxIniConfi= g) > 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 faul= t >> ::> ^_^ >> ::> >> ::> 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 d= o >> ::> ::> ::> 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.2= 6 >> ::> ::> ::> ::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 toda= y. >> ::> ::> ::> ::> >> ::::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=3D= click >> ::> ::> ::> ::> _______________________________________________ >> ::> ::> ::> ::> sepy-macdev mailing list >> ::> ::> ::> ::> sep...@li... ::> ::> ::> >> ::> https://lists.sourceforge.net/lists/listinfo/sepy-macdev >> ::> ::> ::> ::> >> ::> ::> ::> :: >> ::> ::> ::> :: >> ::> ::> ::> :: >> ::> ::> ::> ::------------------------------------------------------- >> ::> ::> ::> ::This SF.Net email is sponsored by BEA Weblogic ::Worksho= p >> ::> ::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=3Dclic= k ::> >> ::> ::> ::_______________________________________________ >> ::> ::> ::> ::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". > --- > > > > > ------------------------------------------------------- > 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_idP47&alloc_id=10808&op=3Dick > _______________________________________________ > 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_idP47&alloc_id=10808&op=CCk > _______________________________________________ > 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: Ashley M. <as...@gv...> - 2004-09-06 21:12:53
|
Hi Isaac, I've been trying any angle at the moment OS X.3.5 Pythonw Upgraded with MacPython (from Jacks website) I am new to Python, so the learning curve on the set up options is pretty steep, I've been following up on the MacPython users lists and reading up the documentation, as time allows. You could always mv or cp Python to /usr/bin but I think you will find it points to the binary in Library/Frameworks via a sym link. Maybe trying on a clean install would work ... I could have a chance to follow that up ... Ashley Isaac Rivera wrote: > 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 >> > > > > ------------------------------------------------------- > 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-06 16:40:24
|
this is the error message: Traceback (most recent call last): File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 142, in Notify frame =3D main_window(parent=3DNone, id=3Dwx.NewId(), title=3DAbout_t= itle, dialog =3D self.dialog) File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 256, in __init__ self._createLeftPanel() File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 506, in _createLeftPanel self._show_XMLReader(1) File "/Users/valley/Desktop/SEPY/SciTE/SEPY.py", line 601, in _show_XMLReader raise RuntimeError("%s %s %s" % sys.exc_info()) RuntimeError: exceptions.TypeError Unable to convert string <traceback object at 0x7cdb5f8>} so you also don't know the name of the file, right ? hmmmmmm i look around again. this we also have to document when found... valley ----- Original Message ----- From: "Alessandro Crugnola *sephiroth*" <ale...@se...> To: <sep...@li...> Sent: Monday, September 06, 2004 5:38 PM Subject: Re: AW: [SE|PY-macdev] Preferences frozen 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". --- ------------------------------------------------------- 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_idP47&alloc_id=10808&op=3Dick _______________________________________________ sepy-macdev mailing list sep...@li... https://lists.sourceforge.net/lists/listinfo/sepy-macdev |