Is there an interim releases archive on the net ?
···
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl
Is there an interim releases archive on the net ?
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl
This came up yesterday, in fact you asked,
and here's the response: (I'll copy you)
You can still get it at:
http://alldunn.com/wxPython/dist--
Riaan >>> a='a=%s;a%%`a`';a%`a`
___________________________________________________
Emile van Sebille
emile@fenx.com
-------------------
----- Original Message -----
From: Przemys³aw G. Gawroñski <gawron@obop.com.pl>
To: wxPython-users <wxpython-users@wxwindows.org>
Sent: Tuesday, May 23, 2000 4:46 AM
Subject: [wxPython] Interim releases archive
Is there an interim releases archive on the net ?
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl_______________________________________________
wxPython-users mailing list wxPython-users@wxwindows.org
http://wxwindows.org/mailman/listinfo/wxpython-users
Emile van Sebille wrote:
This came up yesterday, in fact you asked,
and here's the response: (I'll copy you)
Yesterday I asked about wxPython 2.1.11 for windows and that can be
would (as you said) at:
http://alldunn.com/wxPython/dist
But there are no interim releases there and thats why I asked for them
today.
Thanks any way
Przemek
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl
Oh, gotcha. There are current interim releases at
http://alldunn.com/wxPython/interim/
Are you looking instead for an old one?
Emile van Sebille
emile@fenx.com
-------------------
----- Original Message -----
From: Przemys³aw G. Gawroñski <gawron@obop.com.pl>
To: <wxpython-users@wxwindows.org>
Sent: Tuesday, May 23, 2000 5:26 AM
Subject: Re: [wxPython] Interim releases archive
Emile van Sebille wrote:
> This came up yesterday, in fact you asked,
> and here's the response: (I'll copy you)Yesterday I asked about wxPython 2.1.11 for windows and that can be
would (as you said) at:http://alldunn.com/wxPython/dist
But there are no interim releases there and thats why I asked for them
today.Thanks any way
Przemek
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl_______________________________________________
wxPython-users mailing list wxPython-users@wxwindows.org
http://wxwindows.org/mailman/listinfo/wxpython-users
Oh, gotcha. There are current interim releases at
http://alldunn.com/wxPython/interim/
Are you looking instead for an old one?
Sorry, maybe I wasn't exact. But yes I'm looking for an interim release
between 2.1.11 and 2.1.13
The problem is that I'm trying to get a app running with Gordons
Installator. I tried all versions of 2.1.15 with the first one it works fine
on my computer, but when I try to run it from network (on my computer) or on
a different comp it fails with finding wxPython.wx. With the next interim
releases Gordons installations scripts fail even to run (without
playing with the cfg scripts).
Some time ago when I was only plaing around with G.I. I got it working on
other comps also. But that was with some interim release after 2.1.11. Thats
why I'll despreatlly looking for it.
Przemek
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl
I'm tring with the simplest code posible (that is probably a template for all
wxPython apps):
from wxPython.wx import *
class wxTestFrame(wxFrame):
def __init__(self, prnt):
wxFrame.__init__(self, prnt, -1, title = 'test',
style = wxDEFAULT_FRAME_STYLE)
class TestApp(wxApp):
def OnInit(self):
frame = wxTestFrame( NULL )
frame.Show( true )
return true
def Main():
app = TestApp(0)
app.MainLoop()
if __name__ == '__main__':
Main
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl
It's a bit convoluted, but you could try anonymous CVS on the CVS archive
(http://www.phy.hw.ac.uk/~karsten/wxWindows/) and get a release by tag. I
haven't had a go because our router won't allow it
Robert
-----Original Message-----
From: wxpython-users-admin@wxwindows.org
[mailto:wxpython-users-admin@wxwindows.org]On Behalf Of
Przemysław G. Gawroński
Sent: 23 May 2000 14:21
To: wxpython-users@wxwindows.org
Subject: Re: [wxPython] Interim releases archive> Oh, gotcha. There are current interim releases at
>
> http://alldunn.com/wxPython/interim/
>
> Are you looking instead for an old one?Sorry, maybe I wasn't exact. But yes I'm looking for an interim release
between 2.1.11 and 2.1.13The problem is that I'm trying to get a app running with Gordons
Installator. I tried all versions of 2.1.15 with the first one it
works fine
on my computer, but when I try to run it from network (on my
computer) or on
a different comp it fails with finding wxPython.wx. With the next interim
releases Gordons installations scripts fail even to run (without
playing with the cfg scripts).
Some time ago when I was only plaing around with G.I. I got it working on
other comps also. But that was with some interim release after
2.1.11. Thats
why I'll despreatlly looking for it.Przemek
--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl_______________________________________________
wxPython-users mailing list wxPython-users@wxwindows.org
http://wxwindows.org/mailman/listinfo/wxpython-users
What is the version of the Installer do you use?
Arpad
----- Original Message -----
From: Przemysław G. Gawroński <gawron@obop.com.pl>
To: <wxpython-users@wxwindows.org>
Sent: Tuesday, May 23, 2000 3:39 PM
Subject: Re: [wxPython] Interim releases archive
I'm tring with the simplest code posible (that is probably a template for
all
wxPython apps):
from wxPython.wx import *
class wxTestFrame(wxFrame):
def __init__(self, prnt):
wxFrame.__init__(self, prnt, -1, title = 'test',
style = wxDEFAULT_FRAME_STYLE)class TestApp(wxApp):
def OnInit(self):
frame = wxTestFrame( NULL )
frame.Show( true )
return truedef Main():
app = TestApp(0)
app.MainLoop()if __name__ == '__main__':
Main--
Przemyslaw G. Gawronski
UIN:8358522
mailto:gawronskip@usa.net
mailto:gawron@obop.com.pl_______________________________________________
wxPython-users mailing list wxPython-users@wxwindows.org
http://wxwindows.org/mailman/listinfo/wxpython-users