Re: "running" code on client side with cherrypy?

2006-08-10 Thread Mr BigSmoke
quot; users that can checkout our applications releases... I'll try some other solution... thanks very much! cheers Fabio jay graves wrote: > Mr BigSmoke wrote: > > Hi All, > > I'm developing a website to handle some code/application version > > control on a intranet. I&#x

"running" code on client side with cherrypy?

2006-08-10 Thread Mr BigSmoke
Hi All, I'm developing a website to handle some code/application version control on a intranet. I'm using cherrypy and pysvn. Everything runs quite good but i want the user to be able to checkout some projects from the server. The user(on the client side) selects a folder in his machine (i.e.: C:\P

Re: War chest for writing web apps in Python?

2006-07-28 Thread Mr BigSmoke
For IDEs i recommend Wing IDE (its really good but comercial.. :( ), pydev for eclipse and also SPE. For GUI designer... it depends of wich kind of app u'll develop. For web apps try cherrypy.. it's wonderfull and simple... U can also try zope and plone (the they are less simple) cheers Fa

Re: Py2exe for packaging installers?

2006-07-28 Thread Mr BigSmoke
> > However, it's not platform independant -- it'll be for windows only. > Yeah, u'll have to use py2exe similars for mac (should be py2app, if i remember right). py2exe is a Python distutils extension which converts python scripts into executable windows programs cheers Fabio -- http://ma

using wxPython events inside a loop

2006-05-17 Thread Mr BigSmoke
I'm writting an applicatio that that does something like this: class batchSpy(wx.Frame): def __init__(self, parent): wx.Frame.__init__( self, None, -1, "Batch Spy", pos = (0,0), size = mySize) do layo

including directories with py2exe

2006-02-26 Thread Mr BigSmoke
Hi All how do i include directories into my project when using py2exe? I have a module that has it's images directory and when it's searches it (into ../dist/library.zip/.../mymodule/) it generates an error because the directory wasn't imported... tnx Fabio -- http://mail.python.org/mailman/list

Using CHACO and UNICODE

2006-02-21 Thread Mr BigSmoke
I'm using chaco in an application that draw some grafs and plot. I really NEED to write unicode strings as a title (PlotTitle) and labels(PlotLabels) i my axis. The problem is that chat (and it's traits) only allow ascii strings... In the old version of chaco i created a new myPlotLabel class, deri

Re: Data Crunching and Charting....

2006-01-29 Thread Mr BigSmoke
Great!! I kept looking enthought site everyday for 2/3 months about one year ago... but it always had old chaco versions, no news... Then i posted questions about it here at comp.lang.python and some people said the project had been abbandoned... Great to know that it's not true!! TNX VERY MUCH!!

Re: Data Crunching and Charting....

2006-01-28 Thread Mr BigSmoke
Hi Tom. I had more or less the same problem about 1 year and a half ago... Since then i've tried either Matplotlib and chaco. I've started using matplotlib but for some features reason i've decided to use only chaco. Chaco is really cool but has some neg. points: - documentation is not really deta

Re: calling python from C#...

2006-01-22 Thread Mr BigSmoke
I use python for .NET in some applications... I've always used it for using c# code from python (but i had some problems using it with py2exe and win2000). I'll try using it the other way (c# calling python). I also thought about trying ironpython, but it's too young for my work projects... The CO

calling python from C#...

2006-01-22 Thread Mr BigSmoke
Hi everybody, I need write an application in c#, but i wnat to use some functions that i have already written in python. Is there an "easy" way to call my python code from c#? I must use COM or there are other ways? And, if COM is the only way, where can i find some tutorials or examples? I've neve

Re: Problems with WX and program loop...

2006-01-12 Thread Mr BigSmoke
Great! Tnx!! -- http://mail.python.org/mailman/listinfo/python-list

Problems with WX and program loop...

2006-01-11 Thread Mr BigSmoke
Hi everybody... I have an app that has to controll some ascii files every 10/30 seconds... I was planning to have an GUI using wxpython. The problems is that i wasn't able to manage my application loop and the wxApp loop, so my interface is always freezing... My app do something like this: - create