Tagged Questions
0
votes
1answer
14 views
OPTIONS Request instead of PUT in XMLHTTPRequest
I trying to do the html+javascript part of a web service in REST. With this code as example:
<!DOCTYPE html>
<html lang="en"
<script type="text/javascript">
function testPut( url ){
...
0
votes
0answers
23 views
Return data from submitted form targeted to iframe
I have a web.py application with which i have implemented a form that uploads a file to my server via post with the target set as an iframe in my page. This works a charm but I want to be able to send ...
1
vote
2answers
150 views
How to specify the previous page for browser back button
I am creating a web application.
I have a landing page which the user sees after logging in.
From the landing page they can click a link to go to detail page.
The detail page loads data for the ...
0
votes
1answer
51 views
web.py templator passed jsons not being parsed correctly in javascript
I am using web.py and templetor and passing a variable full of jsons to javascript embedded in the templetor file. These jsons are to be consumed by D3.
Python Code
for row in rs:
...
2
votes
3answers
342 views
EpicEditor text showing as instead of space
Not sure if this is an actual problem per se but I'm using Epic Editor to input and save markdown in my GAE application (webpy with mako as the templating engine).
I've got a hidden input element in ...
0
votes
2answers
212 views
Rendering a page after jQuery POST
I have a problem with web.py. Basically the user clicks a button, which makes a POST request to the server. The POST request returns "render.edit()", which is short hand for rendering the "edit" ...
0
votes
1answer
645 views
Recieving variable from webpy POST via jQuery.ajax
In my webpy app I have a function:
def POST (self):
signal = web.input()['signal']
if signal == 'next':
errMessage = self.cinstall.testConnection()
print ...
3
votes
1answer
331 views
Google analytics illegal cookie breaks Python backend
In my feed that is published to feedburner I have Russian characters in campaign name in tracking settings Feed: ${feedUri} ${feedName}. The problem is that it results as incorrect __utmz cookie set ...
0
votes
2answers
492 views
web.py and JavaScript problems
I have been trying to make a page which combines web.py and JavaScript, and with the following code:
$code:
def getContents(fname):
a = req.get(fname)
return a.content
...
0
votes
1answer
1k views
Javascript rendering in tornado webserver
In following code snippet I'm trying to add JavaScript Files from Tornado server in HTML file in <HEAD> tag.
DEBUG_SCRIPTS = ''' <script src="src/main.js" ...
6
votes
2answers
2k views
jQuery/AJAX call with a timer
How can i implement the below code with jQuery/AJAX timer,(I have created 2 URL classes by using web.py.Here 1st URL will return a random number between 1 and 250.I have created an AJAX call in the ...
0
votes
1answer
603 views
including script doesn't work in web.py
everyone.I wanna include javascript in the html(webpy templates),but it doesn't work.the javascript code in the html works very well...
following is the main python file(main.py):
urls = ...
