Re: [web2py] Re: Not open source yet... but

2012-06-12 Thread Lucian Davies
okay so i figured it was because i was putting in the wrong urls. so used looked at the matching server and the robot to see how they communicated and i found it... when i entered the WS:// url it reflects that a web-socket connection has been established but still no data comes on the screen. i

Re: [web2py] Re: Not open source yet... but

2012-06-12 Thread Lucian Davies
okay i need help.. do you have any idea of what i am missing that would stop the trading page not only to respond to my clicks but also not update with orders already done by the trade robot.. i have a feeling that its something i have to modify apache to do but i dont know where to start... so

Re: [web2py] Re: Not open source yet... but

2012-06-11 Thread Nomad
i was intrested in checking this out but there appears to be no source available at the posted url. Is there somewhere i can get a look at this ? I'm currently working on a websockets project using web2py as a front end and this would be a good teaching tool

Re: [web2py] Re: Not open source yet... but

2012-06-10 Thread tonton
thanks i managed to figure it out with a bit of thinking... thank you for getting back to me and for providing the source code for this. its going to be a long bumpy road but when all is done i hope to walk away from this with deeper knowledge of web sockets... right now i have problems with

Re: [web2py] Re: Not open source yet... but

2012-06-09 Thread tonton
hie im looking at the source code... i think i have most of the infrastructure in place... but to start log2db.py i run into the following error.. Traceback (most recent call last): File /home/www-data/web2py/gluon/restricted.py, line 205, in restricted exec ccode in environment

Re: [web2py] Re: Not open source yet... but

2012-06-09 Thread Massimo Di Pierro
This (T('Index'),URL('index').xml()==URL().xml(),URL('index'),[]), should be (T('Index'),URL('index')==URL(),URL('index'),[]), On Saturday, 9 June 2012 15:57:02 UTC-5, tonton wrote: hie im looking at the source code... i think i have most of the infrastructure in place... but to start

Re: [web2py] Re: Not open source yet... but

2011-01-06 Thread Lorin Rivers
Thanks, Massimo! Looking forward to checking out the processing stuff! On Dec 30, 2010, at 18:32 , mdipierro wrote: Source: http://code.google.com/p/emte-trading/ -- Lorin Rivers Mosasaur: Killer Technical Marketing http://www.mosasaur.com mailto:lriv...@mosasaur.com 512/203.3198 (m)

[web2py] Re: Not open source yet... but

2011-01-04 Thread mikech
I cross posted a thread onto the Tornado Group since I thought this application might be of interest to the readers there. Here is the link: https://groups.google.com/d/topic/python-tornado/MmaQBUx4tyg/discussion. I hope that the discussion here promotes some interest in that group as well.

Re: [web2py] Re: Not open source yet... but

2010-12-30 Thread Manu
It is awesome, like it . Just looking at the video i have learn a lot of new tools( websocket, processing.js, html5 canvas ) . Even if i understood that web2py was the main tool here , would it be possible to have the websocket part of rocket so that we can play with this kind of tool too ( i am

[web2py] Re: Not open source yet... but

2010-12-30 Thread mdipierro
From my previous post: - begin -- LISTENERS = [] class NewMsgHandler(tornado.web.RequestHandler): def get(self): self.write('htmlbodyHello/body/html') def post(self): data = self.request.arguments['data'][0] [element.write_message(data) for element in

[web2py] Re: Not open source yet... but

2010-12-30 Thread mdipierro
Give it a try: http://web2py.com/trading Mind that this is running on a 400MHz VPS that also runs web2py.com (high traffic) and another 20 web sites of mine. Sorry, still not ready to release the code because I am ashamed, but I will. Massimo On Dec 30, 5:04 pm, mdipierro

[web2py] Re: Not open source yet... but

2010-12-30 Thread mdipierro
Source: http://code.google.com/p/emte-trading/ On Dec 30, 6:07 pm, mdipierro mdipie...@cs.depaul.edu wrote: Give it a try:    http://web2py.com/trading Mind that this is running on a 400MHz VPS that also runs web2py.com (high traffic) and another 20 web sites of mine. Sorry, still not

[web2py] Re: Not open source yet... but

2010-12-29 Thread mikech
Very Impressive! On Dec 27, 10:55 pm, mdipierro mdipie...@cs.depaul.edu wrote: http://vimeo.com/18232653

[web2py] Re: Not open source yet... but

2010-12-29 Thread mdipierro
version 0.2: http://www.vimeo.com/18282084 On Dec 28, 12:55 am, mdipierro mdipie...@cs.depaul.edu wrote: http://vimeo.com/18232653

[web2py] Re: Not open source yet... but

2010-12-28 Thread weheh
Very cool. Also enjoyed your Lagrange talk. On Dec 28, 1:55 am, mdipierro mdipie...@cs.depaul.edu wrote: http://vimeo.com/18232653

[web2py] Re: Not open source yet... but

2010-12-28 Thread qqsaqq
+1 that impressively shows what is possible with html5. I hope, 'they' get the websocket protocol fixed soonhttp://en.wikipedia.org/wiki/WebSockets#Browsers_supporting_WebSocket

[web2py] Re: Not open source yet... but

2010-12-28 Thread Martin.Mulone
Look really good.

[web2py] Re: Not open source yet... but

2010-12-28 Thread LightDot
Very nice! I hope we'll be able to take a peak at the source code in the future.

[web2py] Re: Not open source yet... but

2010-12-28 Thread David Marko
Why tornado as webserver? Any observations you can share? David

[web2py] Re: Not open source yet... but

2010-12-28 Thread mdipierro
I needed something that could do http get, http post and comet via html5 websockets. I looked at the other options gevent, twisted, etc, I either had installation problems, or performance issues, or it was hard to figure it out how to it. With tornado this was trivial: - begin --

Re: [web2py] Re: Not open source yet... but

2010-12-28 Thread Albert Abril
I think Orbited has the feature of emulate websocket. http://orbited.org/wiki/WebSocket On Tue, Dec 28, 2010 at 7:04 PM, mdipierro mdipie...@cs.depaul.edu wrote: I needed something that could do http get, http post and comet via html5 websockets. I looked at the other options gevent,

Re: [web2py] Re: Not open source yet... but

2010-12-28 Thread Bruno Rocha
I Guess that Cyclone with RESTMQ is a good option for that. (I read about it) https://github.com/gleicon/restmq http://www.restmq.com/ 2010/12/28 mdipierro mdipie...@cs.depaul.edu I needed something that could do http get, http post and comet via html5 websockets. I looked at the other

[web2py] Re: Not open source yet... but

2010-12-28 Thread mdipierro
I was talking serverside code. Client-side my app only works with Chrome but I am looking into these: https://github.com/gimite/web-socket-js http://socket.io/ The second looks really nice. On Dec 28, 12:13 pm, Albert Abril albert.ab...@gmail.com wrote: I think Orbited has the feature of