Tagged Questions
2
votes
1answer
57 views
Save the state of page. Cookie or session?
I have a little web app (which only has 1 page) that allows user to input and select some options. The input texts and selections will be displayed in another div in the form of table. You may want to ...
-1
votes
0answers
28 views
How to save a web session with python? [closed]
I have a web application that allows user to select and key in some strings. The selection and the strings will be displayed in another div using javascript. The web application is hosted using ...
1
vote
2answers
80 views
Which one is better to create a web application? web2py or cherrypy [closed]
I am using Raspberry Pi to function as a mini web server. At first, i came across web2py and started to learn it. It was tough for a beginner like me. Later, a friend in a forum introduced CherryPy to ...
1
vote
1answer
96 views
CherryPy Real-Time Web Application
I've inherited a web application that is running a CherryPy web server. I need to implement a user interface that will automatically update with data from the server. Right now the solution is to use ...
0
votes
1answer
94 views
Other separators I want use (not & and =) when I submitting a form
I have the server programmed in Cherrypy and I use also Mako Template.
And I have the variable dict (variable Mako that contain information's work) for working with the user( this I have to use Mako ...
0
votes
1answer
77 views
Render cherrypy's template with id/hash
How would I render a page and go to a specific id?
Right now I have a following function with this code:
@cherrypy.expose
@require
def page():
tmpl = lookup.get_template('page.html')
return ...
5
votes
4answers
1k views
Adding HTTP Basic Authentication Header to Backbone.js Sync Function Prevents Model from Being Updated on Save()
I'm working on a web application that is powered by a restful API written with Python's CherryPy framework. I started out writing the user interface with a combination of jQuery and server side ...
0
votes
0answers
137 views
Log in page using cherrypy and Javascript
I am trying to create Log in page using python Cherrypy and JavaScript...I cant link the two.
Expected output =
if username=='Bob' ans Password=='123' then display 'Welcome BOB' else then display ...
1
vote
1answer
374 views
How to pass value of javascript to Mako template
I'm planning on server's cherrypy with programming of python and mako.
Now i have one problem because i know to pass value of Mako template to Javascript with
<script type="text/javascript">
...
0
votes
1answer
67 views
CherryPy kill process if not pinged in time
Is there a way to have CherryPy (running on :8080, it's only function being a listener for SIGUSR1) kill a process if it hasn't been pinged in a certain number of seconds?
Certainly the Python code ...
-1
votes
3answers
210 views
Can a javascript file be dynamic (different for each client when he loads) ? How?
Each client on the site has his own composition of HTML elements. Some may have 3 elements while others may have 123. There is little if any similarity between the elements. And each element ...
0
votes
1answer
133 views
passing db url as ajax parameter
I have a controller written in python cherrypy that should check if a db url is valid by attepting to make a connection. I'm having problems however passing the parameter to the method. My ajax call ...
0
votes
1answer
269 views
Fastest way to get data from server up to Javascript
So the program I'm working on give the user possibility to view different Javascript implemented graphical representation (using WebGL, JIT etc.) of various data. The server side is written in python, ...
2
votes
1answer
644 views
How to call function in my python code on click button - from javascript onClick call Python
I'm trying to implement ajax on CherryPy site and I have problem. How to call function in my python code (function name: ajax_data is @cherrypy.expose and returns some json which I can easily ...
0
votes
1answer
609 views
how to access python object in javascript function?
that means now i am working on python with cherryypy and genshi framework with help of this i send python variable to html file using genshi but i want to access variable that variable in javascript ...
3
votes
5answers
805 views
Ajax calls to subdomain
I have one server located at example.com running apache, serving my static html files.
I also have a json service located at api.example.com running python with cherrypy.
The user requests ...
2
votes
2answers
606 views
Passing data from the cherrypy server-side to javascript client-side
Big picture question. I've got a cherrypy server running with all the shopping cart methods for my e-commerce site written in python. I'm working with jquery on the front end.
POSTing to my python ...
0
votes
1answer
827 views
XML/SWF charts example not working with cherryPy
I am trying to use use the XML/SWF Charts library with cherrypy. I want to generate html reports with nice looking charts.
I am trying to expose one of the default examples of XML/SWF charts with ...