RE: [SE|PY-macdev] Continuing OS X compiling
Brought to you by:
sephiroth_tmm
From: Alessandro C. *sephiroth* <wis...@se...> - 2004-08-26 09:16:48
|
I forward to you a reply which robin dunn (wxpython developer) sent to = me about this: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Alessandro Crugnola *sephiroth* wrote: > Is there some kind of issue with the notebook tabs under non windows=20 > platform? (I do not have a mac to test with) but others tell me that=20 > with mac the tabs of a notebook panel does not work fine because then = > they do not fit in the panel no tab scroller appear (i see that under = > windows there is a little tab scroller instead), Correct. The native tab control does not support it. Apparently the UI = designers at Apple feel that there should never be more than about half a dozen tabs on any layout, and that if more pages are = needed then there is something wrong with the UI. The wx.Listbook is an alternative, or creating a generic tab control. > and because > the fact i cannot use multiline tabs with non windows platform, it's a = > big problem. Again, only the Windows native tab control supports multiple layers of = tabs. You can't sqeeze milk from a stone. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D I will check for an alternative 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 25 agosto 2004 19.55 ::To: sep...@li... ::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :: ::Ok, I've looked around a bit and found the following link: ::http://aspn.activestate.com/ASPN/Mail/Message/wxPython-users/1983925 :: ::It seems that auto-scrolling of these tabs doesn't work even=20 ::if the width of the split panel is small enough to do so.=20 ::Wouldn't it be possible to put self.notebook_l into a=20 ::wx.ScrolledWindow as mentioned in the example ? ::I haven't found where self.notebook_l is attached to a=20 ::wx.Panel, but if you tell me I can try it out. :: ::valley :: :: :: ::----- Original Message ----- ::From: "Alessandro Crugnola *sephiroth*" <wis...@se...> ::To: <sep...@li...> ::Sent: Wednesday, August 25, 2004 12:15 PM ::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :: :: ::I create the left notebook in SEPY.py: :: :: def _createLeftPanel(self): :: if wx.Platform =3D=3D '__WXMSW__': :: n_style =3D=20 ::wx.CLIP_CHILDREN|wx.DOUBLE_BORDER|wx.NB_MULTILINE :: else: :: n_style =3D wx.CLIP_CHILDREN|wx.DOUBLE_BORDER :: self.notebook_l =3D wx.Notebook(self.window_1, -1,=20 ::style=3Dn_style) :: ::As you can see i allow MULTILINE tabs only for Windows=20 ::platform, in fact the multiline tabs are allowed only under=20 ::Windows platform. ::But i thought that under the others platform a sort of tab=20 ::scroller should appear when tabs cannot fit. (it happens under windows ::too) :: :: ::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: marted=EC 24 agosto 2004 23.17 ::::To: sep...@li... ::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::: ::::...and I found an example wxNotebook.py, where all tabs are=20 ::::also on the same horizontal line. When I resize the window=20 ::::(getting it smaller) they do not organize by using the=20 ::::vertical dimension so that the user doesn't see all of them=20 ::::anymore. but i guess that you use a certain logic that they=20 ::::behave like regrouping and with that using the vertical dimension. ::::can you tell me in which file these tabs are created and=20 ::::placed over the left split pane ? ::::for me it seems that in the os x version the initial=20 ::::horizontal tabs line doesn't care about what's the ::::(changed) width of the left pane when resizing the ide window... :::: ::::valley :::: :::: :::: :::: ::::----- Original Message ----- ::::From: "Alessandro Crugnola *sephiroth*" <wis...@se...> ::::To: <sep...@li...> ::::Sent: Tuesday, August 24, 2004 10:52 PM ::::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :::: :::: ::::I'm interested in :::: ::::1. in the PyShell editor there is a similar method which=20 ::::binds the UPDATE_INTERFACE. ::::Can you try with OSX too? :::: ::::2. in the wxpython demos there are also example of notebook. ::::Can you test with osx and tell me if you get problems with=20 ::::the UI of tabs? :::: ::::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 valley ::::::Sent: marted=EC 24 agosto 2004 21.49 ::::::To: sep...@li... ::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::: ::::::On my Windows wxPython installation I found a PyShell.py=20 ::::file ::under D:\Python 2.3.4\Lib\idlelib and this file is=20 ::on ::OS X ::under /Library/Python/2.3/wx/lib Why are you=20 ::::interested in ::this Shell ? And if you give me the names=20 ::of ::some demo files ::I'll see if I also have got them on=20 ::the OS ::X version of wxPython. :::::: ::::::valley :::::: :::::: :::::: ::::::----- Original Message ----- ::::::From: "Alessandro Crugnola *sephiroth*" <wis...@se...> ::::::To: <sep...@li...> ::::::Sent: Tuesday, August 24, 2004 10:27 PM ::::::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :::::: :::::: ::::::Ok, but with the wxpython distro dont you have any of the=20 ::::::demo examples which come with thte win installation too? :::::: ::::::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 valley ::::::::Sent: marted=EC 24 agosto 2004 21.12 ::::::::To: sep...@li... ::::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::::: ::::::::No I don't have it. On Windows I just install SEPY from=20 ::::the ::exe file. ::::::::You don't mean that this shell could be important on OS=20 ::::X, do you ? :::::::: ::::::::Next steps with the Mac version are (in my opinion): :::::::: - solve the problem with the endless=20 ::OnUpdateInterface ::event call :::::::: - correct grouping of the panels (also in vertical direction) :::::::: - reactivate the commented line :::::::: File "/usr/local/src/SciTE/Editor.py", line 276, ::::in __init__ :::::::: self.SetCodePage(stc.STC_CP_UTF8) :::::::: :::::::: with another code page - if that's possible at the=20 ::moment... :::::::: the font now used to code is very small ;-) :::::::: :::::::: ::::::::hope we can get on from here. ::::::::cheers ::::::::valley :::::::: :::::::: :::::::: :::::::: ::::::::----- Original Message ----- ::::::::From: "Alessandro Crugnola *sephiroth*"=20 ::<wis...@se...> ::::::::To: <sep...@li...> ::::::::Sent: Tuesday, August 24, 2004 7:44 PM ::::::::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :::::::: :::::::: ::::::::In the wxpython installation do you have the PyShell editor? ::::::::I have it under c:/python23/Scripts/pyshell :::::::: :::::::: ::::::::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 valley ::::::::::Sent: sabato 21 agosto 2004 9.11 ::::::::::To: sep...@li... ::::::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::::::: ::::::::::Another thing that doesn't work properly with OS X is=20 ::::the ::::::grouping of the panels (like Todo, Files, XML Parser, ::::::...) ::::above the left split pane... ::::::::::In the Windows version the panels are divided and=20 ::::grouped ::::::vertically considering the width of the left=20 ::split pane. ::::::::::With OS X this width is never used and therefore all=20 ::::::panels ::::are on the same horizontal line with the=20 ::effect ::::that some ::of ::the panels lie above the right=20 ::split pane ::::where they are ::not ::accessible by the user=20 ::until you ::::manually drag the ::border of ::the split pane=20 ::to the right. :::::::::: ::::::::::valley :::::::::: :::::::::: :::::::::: :::::::::: ::::::::::----- Original Message ----- ::::::::::From: "valley" <va...@ic...> ::::::::::To: <sep...@li...> ::::::::::Sent: Saturday, August 21, 2004 12:25 AM ::::::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::::::: :::::::::: ::::::::::No, when I do so, then the next recursion error=20 ::appears ::::on ::line 1536: :::::::::: self.super_parent.mainmenu.Enable(ID_UNDO, self.CanUndo()) :::::::::: ::::::::::I think I found the problem: Go to line 598 in=20 ::::Editor.py, ::::::where the autocompletion is defined. There=20 ::::you bind the ::::event ::for the UpdateUI with 'OnUpdateInterface'. ::::::::::When I just comment this line ::::::'self.Bind(EVT_STC_UPDATEUI, ::::self.OnUpdateInterface)' ::::::::::then there is no recursion error anymore... ::::::::::It seems that something with this binding is called=20 ::::::::endlessly ::until the recursion error occurs. ::::::::::So perhaps you have to change something with this line 598 ;-) :::::::::: ::::::::::valley :::::::::: :::::::::: :::::::::: :::::::::: :::::::::: ::::::::::----- Original Message ----- ::::::::::From: "Alessandro Crugnola *sephiroth*" ::::<wis...@se...> ::::::::::To: <sep...@li...> ::::::::::Sent: Friday, August 20, 2004 9:50 PM ::::::::::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :::::::::: :::::::::: ::::::::::Do you mean that commenting both the line with=20 ::::::::GetCurrentPos ::the exception does not raise? :::::::::: ::::::::::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 valley ::::::::::::Sent: venerd=EC 20 agosto 2004 20.30 ::::::::::::To: sep...@li... ::::::::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::::::::: ::::::::::::Actually commenting these 2 lines don't have a=20 ::better effect. ::::::::::::I think that the recursion error takes place in the=20 ::::::::::following ::line when calling 'self.GetCurrentPos()',=20 ::::::::either ::for the ::caretPos, or - when I replace this=20 ::::line ::::with 'caretPos =3D 0' ::::::::::::the recursion error happens in the next line=20 ::::::::::::'self.current_pos =3D self.GetCurrentPos()' ::::::::::::So we should look at what happens (wrong) in this function. :::::::::::: ::::::::::::valley :::::::::::: :::::::::::: :::::::::::: ::::::::::::----- Original Message ----- ::::::::::::From: "Alessandro Crugnola *sephiroth*" ::::::<wis...@se...> ::::::::::::To: <sep...@li...> ::::::::::::Sent: Friday, August 20, 2004 7:49 PM ::::::::::::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :::::::::::: :::::::::::: ::::::::::::They are all necessary for SEPY in order to work.. ::::::::::::But at least we found where the error starts propagating... :::::::::::: :::::::::::::: File "/Users/valley/Desktop/SEPY/SciTE/Editor.py", ::::::::line ::::1529, in OnUpdateInterface :::::::::::: ::::::::::::So, try to comment the first 2 lines of that method=20 ::::in this way: :::::::::::: :::::::::::: def OnUpdateInterface(self, event): :::::::::::: #if self.AutoCompActive() or self.CallTipActive(): :::::::::::: # return :::::::::::: caretPos =3D self.GetCurrentPos() :::::::::::: self.current_pos =3D self.GetCurrentPos() :::::::::::: :::::::::::: ::::::::::::Alessandro Crugnola - sephiroth ::::::::::::--------------------------------------------- ::::::::::::Macromedia Flash Team Volunteer=20 ::::::::::::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...]=20 ::On ::::::::Behalf Of valley ::::::::::::::Sent: venerd=EC 20 agosto 2004 18.19 ::::::::::::::To: sep...@li... ::::::::::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::::::::::: ::::::::::::::Wow, with all "Bind" event lines commented no=20 ::::::recursion ::::::error ::occurs anymore and editing of=20 ::::::documents also ::works ::::fine, ::including saving. ::::::::::::::Can we just leave away all these event lines or=20 ::are ::::::they ::::::necessary for some action inside SEPY ? :::::::::::::: ::::::::::::::valley :::::::::::::: :::::::::::::: :::::::::::::: :::::::::::::: ::::::::::::::----- Original Message ----- ::::::::::::::From: "valley" <va...@ic...> ::::::::::::::To: <sep...@li...> ::::::::::::::Sent: Friday, August 20, 2004 7:04 PM ::::::::::::::Subject: Re: [SE|PY-macdev] Continuing OS X compiling :::::::::::::: :::::::::::::: ::::::::::::::Ok, I didn't comment the "Bind" event lines yet,=20 ::::but ::::with ::::the ::newest cvs version I now get another=20 ::::error, ::::just ::before ::the ::Untitled Document opens: :::::::::::::: ::::::::::::::Traceback (most recent call last): :::::::::::::: File "/Users/valley/Desktop/SEPY/SciTE/Editor.py", ::::::::line ::::::1529, in OnUpdateInterface :::::::::::::: if self.AutoCompActive() or self.CallTipActive(): ::::::::::::::RuntimeError: maximum recursion depth exceeded :::::::::::::: ::::::::::::::And this error also appears after I entered a=20 ::::::character ::::in ::::the Untitled Doc (and had to wait=20 ::::about 20 secs). :::::::::::::: ::::::::::::::Now I try to comment these "Bind" lines... :::::::::::::: ::::::::::::::valley :::::::::::::: :::::::::::::: :::::::::::::: :::::::::::::: ::::::::::::::----- Original Message ----- ::::::::::::::From: "Alessandro Crugnola *sephiroth*" ::::::::<wis...@se...> ::::::::::::::To: <sep...@li...> ::::::::::::::Sent: Thursday, August 19, 2004 6:01 PM ::::::::::::::Subject: RE: [SE|PY-macdev] Continuing OS X compiling :::::::::::::: :::::::::::::: ::::::::::::::Hi again! ::::::::::::::Holidays was great... After 5 days of sea beach=20 ::and ::::::girls ::::is ::so difficult to find out what i was=20 ::::thinking ::::with SEPY ::::^_^ Anyway. ::::::::::::::The recursion come before creating a document or after? ::::::::::::::Try this thing. ::::::::::::::Open the Editor.py file and comment out ALL lines=20 ::::::with ::a ::::::"Bind" event. Then tell me if the=20 ::recursion ::::occurs again. ::::::::::::::P.S. I just updated the cvs version with some fixes :::::::::::::: ::::::::::::::Alessandro Crugnola - sephiroth ::::::::::::::--------------------------------------------- ::::::::::::::Macromedia Flash Team Volunteer=20 ::::::::::::::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 ::Valentin Treu ::::::::::::::::Sent: gioved=EC 19 agosto 2004 13.13 ::::::::::::::::To: sep...@li... ::::::::::::::::Subject: [SE|PY-macdev] Continuing OS X compiling :::::::::::::::: ::::::::::::::::Hi Alessandro, :::::::::::::::: ::::::::::::::::hope your holidays were fine ? ::::::::::::::::With SEPY on OS X it seems we are still stuck=20 ::at ::::the ::::::point ::::where this recursion error occurs,=20 ::so ::::SEPY ::comes ::up ::but ::then ::just loops and loops... ::::::::::::::::Can we go on from here ? I hope you have some=20 ::::ideas ::::for ::::the ::::next steps to test ;-) :::::::::::::::: ::::::::::::::::Thanks & regards ::::::::::::::::valley :::::::::::::::: :::::::::::::::: :::::::::::::::: :::::::::::::::: :::::::::::::::: ::::::::::::::::------------------------------------------------------- ::::::::::::::::SF.Net email is sponsored by=20 ::Shop4tech.com-Lowest ::::::price ::::on ::::Blank Media 100pk=20 ::Sonic DVD-R 4x for only ::::::::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50%=20 ::off ::::::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::::::::_______________________________________________ ::::::::::::::::sepy-macdev mailing list ::::::::::::::::sep...@li... ::::::::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::::::::: :::::::::::::: :::::::::::::: :::::::::::::: :::::::::::::: ::::::::::::::------------------------------------------------------- ::::::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::::::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only ::::::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::::::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::::::_______________________________________________ ::::::::::::::sepy-macdev mailing list ::::::::::::::sep...@li... ::::::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::::::: :::::::::::::: :::::::::::::: ::::::::::::::------------------------------------------------------- ::::::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::::::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only ::::::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::::::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::::::_______________________________________________ ::::::::::::::sepy-macdev mailing list ::::::::::::::sep...@li... ::::::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::::::: :::::::::::::: :::::::::::::: ::::::::::::::------------------------------------------------------- ::::::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::::::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only ::::::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::::::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::::::_______________________________________________ ::::::::::::::sepy-macdev mailing list ::::::::::::::sep...@li... ::::::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::::: :::::::::::: :::::::::::: :::::::::::: ::::::::::::------------------------------------------------------- ::::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only ::::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::::_______________________________________________ ::::::::::::sepy-macdev mailing list ::::::::::::sep...@li... ::::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::::: :::::::::::: :::::::::::: ::::::::::::------------------------------------------------------- ::::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only ::::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::::_______________________________________________ ::::::::::::sepy-macdev mailing list ::::::::::::sep...@li... ::::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::: :::::::::: :::::::::: :::::::::: ::::::::::------------------------------------------------------- ::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only=20 ::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::_______________________________________________ ::::::::::sepy-macdev mailing list ::::::::::sep...@li... ::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::: :::::::::: :::::::::: ::::::::::------------------------------------------------------- ::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only=20 ::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::_______________________________________________ ::::::::::sepy-macdev mailing list ::::::::::sep...@li... ::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::: :::::::::: :::::::::: ::::::::::------------------------------------------------------- ::::::::::SF.Net email is sponsored by Shop4tech.com-Lowest=20 ::price ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only=20 ::$29 -100pk ::::Sonic ::::DVD+R for only $33 Save 50% off=20 ::Retail on Ink & ::::Toner - ::Free ::Shipping and Free Gift. ::::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::::_______________________________________________ ::::::::::sepy-macdev mailing list ::::::::::sep...@li... ::::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::::: :::::::: :::::::: :::::::: :::::::: ::::::::------------------------------------------------------- ::::::::SF.Net email is sponsored by Shop4tech.com-Lowest price=20 ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk=20 ::::Sonic ::::DVD+R for only $33 Save 50% off Retail on Ink &=20 ::::Toner - ::Free ::Shipping and Free Gift. ::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::_______________________________________________ ::::::::sepy-macdev mailing list ::::::::sep...@li... ::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::::: :::::::: :::::::: ::::::::------------------------------------------------------- ::::::::SF.Net email is sponsored by Shop4tech.com-Lowest price=20 ::::on ::::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk=20 ::::Sonic ::::DVD+R for only $33 Save 50% off Retail on Ink &=20 ::::Toner - ::Free ::Shipping and Free Gift. ::::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::::_______________________________________________ ::::::::sepy-macdev mailing list ::::::::sep...@li... ::::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::: :::::: :::::: :::::: ::::::------------------------------------------------------- ::::::SF.Net email is sponsored by Shop4tech.com-Lowest price=20 ::on ::::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk=20 ::Sonic ::::DVD+R for only $33 Save 50% off Retail on Ink &=20 ::Toner - ::Free ::Shipping and Free Gift. ::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::_______________________________________________ ::::::sepy-macdev mailing list ::::::sep...@li... ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::::: :::::: :::::: ::::::------------------------------------------------------- ::::::SF.Net email is sponsored by Shop4tech.com-Lowest price=20 ::on ::::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk=20 ::Sonic ::::DVD+R for only $33 Save 50% off Retail on Ink &=20 ::Toner - ::Free ::Shipping and Free Gift. ::::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::::_______________________________________________ ::::::sepy-macdev mailing list ::::::sep...@li... ::::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: :::: :::: ::::------------------------------------------------------- ::::SF.Net email is sponsored by Shop4tech.com-Lowest price on=20 ::::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic=20 ::::DVD+R for only $33 Save 50% off Retail on Ink & Toner -=20 ::Free ::Shipping and Free Gift. ::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::_______________________________________________ ::::sepy-macdev mailing list ::::sep...@li... ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :::: :::: :::: ::::------------------------------------------------------- ::::SF.Net email is sponsored by Shop4tech.com-Lowest price on=20 ::::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic=20 ::::DVD+R for only $33 Save 50% off Retail on Ink & Toner -=20 ::Free ::Shipping and Free Gift. ::::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::::_______________________________________________ ::::sepy-macdev mailing list ::::sep...@li... ::::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :: :: :: :: ::------------------------------------------------------- ::SF.Net email is sponsored by Shop4tech.com-Lowest price on=20 ::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic=20 ::DVD+R for only $33 Save 50% off Retail on Ink & Toner - Free=20 ::Shipping and Free Gift. ::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev :: :: :: ::------------------------------------------------------- ::SF.Net email is sponsored by Shop4tech.com-Lowest price on=20 ::Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic=20 ::DVD+R for only $33 Save 50% off Retail on Ink & Toner - Free=20 ::Shipping and Free Gift. ::http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ::_______________________________________________ ::sepy-macdev mailing list ::sep...@li... ::https://lists.sourceforge.net/lists/listinfo/sepy-macdev |