1
vote
1answer
34 views

Google App Engine properties of write

I was looking at the code from this site, for a basic google app engine calculator. I am just as inexperienced with GAE as I am with HTML, so when I saw the code bellow I was a little confused. Mostly ...
0
votes
1answer
67 views

Unable to get Python to POST on html

I've been trying to get my python code to post. I have tried using the Postman Plugin to test the post method and I would get a 405 method error. I am planning to have the user post the information ...
0
votes
1answer
26 views

webapp2 changes html tags in pure text

I want to make my GAE application webapp2 compatible. This code worked great with webapp: insert = '<p><font color="red"><b>some text</b></font></p>' ...
1
vote
0answers
32 views

How to change the width of custom pages in GAE's Admin Console?

I have added a custom page to my GAE app. Everything works fine except that the Admin Console limits the size of the custom page content to 73 em. This is done by the CSS class g-doc-1024. ...
2
votes
1answer
58 views

Python Dynamically Generate HTML Page on GAE

On GAE, I need to make some REST calls to a PiCloud server, then create an output page based on PiCloud return values. However, it will take several minutes for PiCloud to process the model. Thus I am ...
1
vote
4answers
112 views

post method not working

I want to submit form data using post using ajax because in form post after submit it is redirected to a new page. <form id="myContactForm"> <p> <label ...
1
vote
1answer
132 views

Form POST method on html page

I am trying to use Form post method or ajax post method in a html page on google app engine but nothing seems to happen. class Email(webapp2.RequestHandler): def post(self): ''' ...
0
votes
1answer
88 views

Cant get page to be displayed in Google App Engine

following are my app.yaml and main.py files , i'm trying to run a small project using google app engine but i'm failing application: app version: 1 runtime: python api_version: 1 handlers: - url: ...
0
votes
0answers
116 views

Best way to store this data in data store google app engine

I am trying to make a phone app for my university's notice board. This is the notice board. And each notice is served as an HTML page. The URL structure of the notices are simple, with "docid" ...
0
votes
1answer
66 views

JSP - Process a form with a Bean Method with more than one parameter

I have this form and want to process it: <form id="myForm" class="form-horizontal" action="/user" method="post"> ...
0
votes
1answer
159 views

Google AppEngine Blobstore Video Streaming in Html Template

i managed to get the code from the following link to work. https://developers.google.com/appengine/docs/python/blobstore/overview#Complete_Sample_App When I upload a video I managed to get the video ...
0
votes
1answer
87 views

Re-accessing python variables AFTER initial html get() call

I am making a data-plotting tool using google app engine and google docs/gdata and have run into a python/js/html communication issue. I want a very simple layout for the webpage -- just a series of ...
2
votes
3answers
71 views

Displaying Python values in HTML

How do I display the value of a python variable (in this case it is the key of my Entity class) in html? from google.appengine.ext import db class Entity(db.Expando): pass e = Entity() ...
0
votes
1answer
50 views

My html to webapp2 search form doesn't work

my search term comes through to my handler as an empty string. Here's the components: html form: <form class="navbar-search" action="/search"> <input type="text" ...
0
votes
1answer
31 views

Google App Engine Java search form

I would like to create a form accompanied by a submit button that is redirected to a page in the format http://example.com/?search=Word+OtherWord (maybe through a GET request). How would I set up a ...
0
votes
3answers
99 views

google app store datastore data in static file

So here is what I want to do. I want to have a static HTML and javascript file in Google App Engine (by the way, I can write it in either Java or Python). So I want the user to visit my index.html ...
1
vote
0answers
43 views

Form submissions: How to submit a list of dynamic multipart data

I've got an HTML form that has some static fields and some fields that are dynamically added with javascript. It looks sort of like this StaticField1: [textfield] StaticField2: [textfield] ...
1
vote
2answers
60 views

Search engine - App Engine

I have a newly created web application hosted in AppEngine (only HTML) The question is, how can I make this page appear on Google Search Engine? Is this like the regular method (robot.txt, etc.) ? ...
1
vote
1answer
81 views

Array.toString(boolean) values

In java servlet, boolean[] arrBool = new boolean[6]; I am showing resp.getWriter.println(Arrays.toString(arrBool)). So output is like [false, true, true, false, false, true]. I am generating ...
0
votes
0answers
95 views

Html 301 redirect in google appengine

I am hosting a websiete on google appengine with python. I have seperate pages, in directories, and I need to know how to redirect from eg.:"www.example.com/page". whtn I dont add another "/" after ...
1
vote
2answers
168 views

UnicodeDecodeError in Google App Engine

In my project (using Python, Html & Jinja2) I have a home_page with movie pictures that each picture leads to a specific page with the movie data. When I try to present the page with the movie ...
0
votes
1answer
211 views

BadKeyError: Invalid string key in Google App Engine

In my project (using Python, Html & Jinja2) I have a home_page with movie pictures that each picture leads to a specific page with the movie data. When I try to present the page with the movie ...
0
votes
1answer
96 views

Image as db.Blob() not showing from the DataStore

in my Google AppEngine project I'm trying to save details on a Movie, including an image, and then show the image on my main page but the image is just not showing. I'm using Python and Jinja2. Does ...
0
votes
1answer
48 views

Google App Engine Search: snippeted HTML field in search results

I can return a snippeted TextField field in the search results of the (experimental) Google App Engine Search API. But how can I return a snippeted HtmlField field? I tried this, but the HTML tags are ...
0
votes
1answer
143 views

Is there a way to pass variables into Jinja2 parents?

I'm trying to pass some variables from the child page to the template. This is my python code: if self.request.url.find("&try") == 1: isTrying = False else: isTrying = ...
0
votes
2answers
75 views

Google Appengine, Google Apps and Login

I'm having some difficulty linking Google Apps & Google Appengine together to display a website on a naked domain. Here's where I am: I've deployed my very simple website at ...
2
votes
1answer
46 views

does GAE support django admin form

I have been leaning Django so I could use the Django admin form in my GAE application. I have just read that GAE doesn't support the django models so i am thinking that it also does not support the ...
-7
votes
2answers
175 views

Tutorial for google app engine [closed]

Since i am a newbie to google app engine. Please suggest some good tutorial for google app engine in python frame work.
0
votes
1answer
39 views

Simple HTML <div> is not padding the width of it's contents

I have what is probably a very simple question, but I'm fairly new to HTML developement (I know I'm about 20 years late on this), and I'm having a issue. I have the following code: <div ...
0
votes
0answers
44 views

err of showing txt by gae,google app engine,python

This is my code of uploading txt and show txt. txt of english is ok, but txt of chinese or others is err. UnicodeDecodeError: 'ascii' codec can't decode byte 0xe9 in position 7: ordinal not in ...
1
vote
1answer
77 views

App Engine: map form data to url

How do I encode form data to the url when using the Google App Engine? The code below produces a form where you enter some text. The text is then displayed on another page "/sign" Instead of ...
-1
votes
3answers
75 views

how to show txt on web, by gae,google app engine,python

i want to upload txt file and show this txt. i had the code of uploading txt to gae, but how to show it??? i want to upload txt file and show this txt. i had the code of uploading txt to gae, but ...
0
votes
1answer
68 views

property %s is not a multline error [duplicate]

Possible Duplicate: error Property %s is not multi-line hate to use up everyone's valuable time but i can't get past this error, I have removed all %s variables and set all strings to ...
0
votes
1answer
28 views

Is There any way of Getting Form Information in App Engine in the GET Function

My question is rather simple... In a def post(self) function for instance, I can use self.request.get to pull form information. Is there any way I could accomplish the same thing within the 'def ...
0
votes
2answers
141 views

how to split python file into python and html file

I am trying to make a python file into a python and html files. The code i have is basically from the python guestbook example but i want to have a html file serve the uses browser. the code i have ...
0
votes
1answer
39 views

Cutomized URL in Google app engine

I am working in Google app engine , i have created on website in which several tabs are like home about us.. When i click on Home tab the url is like http://localhost:8080/#home How can i make it ...
3
votes
2answers
238 views

Google App Engine Redirect to User Login on Button Click

I have a python script in google app engine that just gives a simple welcome message to the user. If the user is logged into google then there is a personalized welcome message with the code if ...
1
vote
1answer
68 views

App Engine Python Authentication Custom Redirect

handlers: - url: /secure_api/.* script: _go_app login: required auth_fail_action: unauthorized This code only brings me to a page saying "Login required to view page." Is there a way to ...
3
votes
1answer
257 views

How to parse HTML template in GO, Google App Engine

I'm trying to make a page in GO with Google App Engine which can show the content of an array with HTML parsing. package hello import ( "fmt" "html/template" "net/http" ) func ...
0
votes
1answer
31 views

How to have a simple mailing service in a web page

How can i get an enquiry info filled in my website to be mailed to my mail id. How can i do the mailing configuration. I am loading my html files in google appspot. Is there any module or feature in ...
0
votes
2answers
589 views

displaying a list of entities in jsp file by using java

I am trying to display list of entities in a .jsp file, but I this error: Unable to compile class for JSP: An error occurred at line: 28 in the jsp file: /guestbook.jsp Can only iterate over an ...
0
votes
2answers
337 views

How to Take Checkboxes in Python

I am trying to use checkboxes in my HTML, return these checkboxes to my python backend, and then increment three counters if the box is clicked. Right now my HTML is as follows and works fine: ...
2
votes
1answer
248 views

Golang GAE - HTML Template not inserting links properly into web page

I am using Google Go on Google App Engine. I am saving a string description in a structure into a datastore, like so: type Foo struct{ Bar string } That description includes html tags, for ...
0
votes
0answers
78 views

Google Chart Won't Show Up When Adsense Is On The Page

So I've got a test site that uses Google's Chart API. I wanted to put an Adsense banner on this site. When I add the Adsense code the chart won't display, but the ad does. Take the Adsense code out ...
0
votes
2answers
129 views

How to pass a URL parameter in with HTML/Javascript

I have a section on a webapp where the user can search a map for a set of locations and it all works properly but I want the text of the location to show up in the URL so that the user can copy it and ...
1
vote
2answers
266 views

Jinja2 template html form - update select

I have written an app that adds a list of events to a Google Calendar. I'm using Jinja2 as my templating framework. I have got a select box in the template that let's the users select which one of ...
2
votes
3answers
142 views

HTML output problems

I am writing a website with python and jinja2 in google app engine. My html page is showing this on the page: Status: 200 Content-Type: text/html; charset=utf-8 Cache-Control: no-cache ...
0
votes
2answers
178 views

how to change the shortcut icon in google app engine

The current shortcut icon that appears on top of my page at www.bad-coder.appspot.com is the default aeroplane engine favicon ico. while I did change the favicon ico to my custom one but it is not ...
0
votes
2answers
72 views

How do you run example code snippets with html output from gae?

The following code comes from here. How am I supposed to see the results? Can I use the GAE interactive console somehow, or do I need to create a whole app with an app.yaml etc and run it in the gae ...
1
vote
2answers
108 views

Simple GET-POST reply

Can't figure this out, should be an easy one for someone. Just getting a 500 server error reply and expecting it to show 'success'. import webapp2 page = """ <!DOCTYPE html> <html> ...

1 2 3 4