Tagged Questions
pyjamas is a port of Google Web Toolkit to Python, featuring a Python debugging environment and desktop deployment option, and compilation to Javascript for web/device deployment.
6
votes
1answer
575 views
Pyjamas framework significance
I am learning Pyjamas framework of python to generate the frontend which is basically a javascript code generated by Pyjamas. Though, being a new concept and a GWT equivalent in python I am interested ...
5
votes
2answers
1k views
About pyjamas maturity vs GWT maturity (with short dead lines) for a web application
I love both, python and Java and I have this first 'serious' web application project that I would like to carry out.
I find it hard to choose between pyjamas + django and GWT + Hibernate.
In fact, ...
4
votes
3answers
1k views
HTML5 Offline storage web framework
I am looking for a web app framework which can automatically generate an HTML5 offline storage based app, so while the users become disconnected they still can view the data which normally is stored ...
4
votes
1answer
748 views
Pyjamas & JavaScript: Too much recursion
I'm doing a Pyjamas example and get this error:
TodoApp InternalError: too much recursion
Here is the significant portion of TodoApp.py from the linked tutorial (please ignore indentation from the ...
3
votes
1answer
101 views
Pyjamas + Django => CSRF confusion, 403 errors
I've got Pyjamas and Django running via Apache2 with mod_wsgi on Windows 7. I do not believe I'm getting issues from the setups of these things, though: the only thing that is not working is trying to ...
3
votes
1answer
195 views
Debugging pyjamas python code
I am using pyjamas to develop a web page. I write python code which is translated to javascript by pyjamas. This way debugging programming error is caught only when testing the web page. It would be ...
3
votes
2answers
464 views
What are the advantages/disadvantages of using Jython/IronPython/Pyjamas?
EDIT
Okay, rookie here so please bear with me. What I'm trying to ask is the following:
Is it plausible for a Python-syntax fan to use one of these options while other team members "plain vanilla" ...
3
votes
2answers
1k views
Some basic questions about Django, Pyjamas and Clean URLs
I am farily new to the topic, but I am trying to combine both Django and Pyjamas. What would be the smart way to combine the two? I am not asking about communication, but rather about the logical ...
2
votes
1answer
73 views
Python to JavaScript for iPhone
Have a webapplication with backend developed on python ( running on Django) and front end on HTML5 & javascript. Python generated data is passed on to JavaScript/HTML using JSON.
Now, I would ...
2
votes
2answers
202 views
Which simple python based WSGI compatible jsonrpc library to use in server side for 'pyjamas'?
Recently, I came across pyjamas framework. It encourages radically different web application development approach by seperating the whole 'view' component of 'MVC' into some html + javascript ...
2
votes
4answers
258 views
rich web client vs thin web client
I have one design decision to make.
In my web(ajax) application we need to decide where should we put user interface logic ?
Should It be completely loaded via javascript ( pure single page ) . ...
2
votes
2answers
310 views
Integrating Pyjamas with Pinax+Django?
I'm going to start looking into this tomorrow when I begin my project, but could anyone point me in the right direction? (Maybe some integration code and/or a sample Pyjamas interface which uses Pinax ...
1
vote
2answers
77 views
Can I find out the result of javascript in Python?
I'm now making a web crawler.
getting a link from HTML is easy part but acquiring a link from the result of javascript is not easy for me.
Can I get the result of javascript so as to know where a ...
1
vote
1answer
426 views
pyjamas vs pyqt OR GWT
I am not a web application pro but need to start working on a project so I need to know if pyjamas ( or shall I say the javascript generated o/p of pyjamas ) is as good as pyqt in terms of 2d graphics ...
1
vote
1answer
121 views
How to get the margin between menu items in pyjamas or gwt?
I have implemented a MenuBar using pyjamas as:
from pyjamas.ui.RootPanel import RootPanel
from pyjamas.ui.Composite import Composite
from pyjamas.ui.MenuBar import MenuBar
class Menubar(Composite):
...
1
vote
1answer
133 views
pyjd/hulahop/pyxpcom: how to fire onchange event from python/C++
I'm using pyjd/hulahop/pyxpcom to load a HTML document with an input field, this input field is bound with "onchange=...." to some JS function doing some AJAX call.
The html looks like this:
...
...
1
vote
1answer
370 views
Easy secure JSON-RPC in python
What's the simplest way to set up a JSON-RPC server in python and make it secure? I'm very interested Pyjamas for python/javascript - but the documentation doesn't explain how to implement security ...
1
vote
1answer
154 views
How to call Unix command through pyjamas
I am trying to create web based system using pyjamas and hangs on one functionality.
The functionality is, to click a button and it should run some python programs in back-end. I have to display the ...
1
vote
2answers
550 views
GWT/Pyjamas canvas pixel manipulation
I want to do some pixel level image manipulation for the HTML5 canvas through GWT or pyjamas. I know one way to do this in JavaScript is to use the contexts' createImageData() function to create an ...
0
votes
0answers
61 views
Serve one-off Pyjamas Generated page at root using Cherrypy
I desire to serve up a Pyjamas generated welcome page using Cherrypy at my website root (http://www.my_site.com/). As the request requires serveral files (welcome.html, bootstrap.js, ...
0
votes
1answer
88 views
function definition in eval
I try to define a function with a variable name.
Names are retrieved from a database. For every name I want to define a button and have separate handling:
title=['BNL','CE']
for i in ...
0
votes
0answers
102 views
python pyjamas install on debian
i have installed pyjamas on debian
http://pyjs.org/getting_started.html
however my program does not find the module, what could be the problem, i have installed pyjamas correctly using apt-get
...
0
votes
1answer
164 views
Pyjamas and Django static files setup
I am somewhat new to both web development and new to the Django and Pyjamas frameworks. So I appreciate any patience offered to me as I learn.
I am setting up Django and Pyajamas to work together, ...
0
votes
1answer
799 views
Pyjamas + Django: project without any external libraries
I would like to create small project using django and pyjamas. I tried googling for some solution on how to merge those two, but I found only projects using some external libraries using json ...
0
votes
1answer
434 views
Pyjamas import statements
I'm starting to use Pyjamas and I'm running into some annoyances. I have to import a lot of stuff to make a script work well. For example, to make a button I need to first
from pyjamas.ui.Button ...
-2
votes
2answers
63 views
How to do Pyjamas like Python in Java?
Is there any way to have kind of "Jyjamas"(Java thing!!) where python has something callled: http://wiki.python.org/moin/Pyjamas
Follow up: (native way)
...