i want to save all user's (who visite my site) map ,
but i think google can hosting those kml file , yes ??
http://code.google.com/intl/zh-CN/apis/maps/documentation/mapsdata/developers_guide_javascript.html
thanks
Say I have this piece of code:
var marker = new google.maps.Marker({
position: location,
title: 'Búfals',
map: map
});
This creates a marker as expected but if I hover the mouse over it I don’t see 'Búfals'
as I would expect (instead I see the html code).
This doesn't make any difference:
var marker = new google.maps.Marker({
position: location,
title: unescape('Búfals'),
map: map
});
Any ideas?
Thanks.
How can I integrate services like Google or Microsoft and use information from the user like Google Calendar information. For example, how would I sync the Microsoft Outlook notes with an app on Android?
So I'm trying to use the django 1.1 template engine with the google app engine web app framework, from here. This is on Ubuntu Jaunty, I've made sure that the PYTHONPATH contains the location of Django-1.1.1 yet I'm getting this 'ImportError: No module named django' error when it tries to execute the use_library() line below. Again, could somebody help me? I'm stumped.
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_library
use_library('django', '1.1')
I have a format of pages that I want to perform an A/B comparison on using google website optimizer.
the URLs look as follows - the first page I want to compare...
<mywebsite.com>/request1/([a-zA-Z0-9\-]*)_([0-9]+).htm
vs
<mywebsite.com>/request2/([a-zA-Z0-9\-]*)_([0-9]+).htm
the goal page is
<mywebsite.com>/request-sent.htm
How can I set this up in google website optimizer? If it's not possible, are there alternative solutions available for doing such comparison reports online?
Is there any good (eazy to understend, small - not lotof code lines) sample of working with google openid? (php) -
What I need is to see how to get users name from google openId ;
a good way of how to integrate openid into my current users DB (tooday in DB I have table user with name and pass)?
and how to get any Idea about if useris currently loged in from this computer with openId?
I am trying to execute simple system command via my servlet on google app engine. I'm not trying anything dangerous, just looking for simple stuff grep, sed, wget, find, etc.
Using java's Runtime class i keep getting access denied exceptions.
Do i have to get permission from google of some kind or are shell commands banned period?
Creating a default authication manager with SVNKit requires access to the file system.
SVNURL svnurl = SVNURL.parseURIEncoded(url);
SVNRepository repository = SVNRepositoryFactory.create(svnurl);
// Authentication
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager(name, password);
repository.setAuthenticationManager(authManager);
In Google App Engine, you can't create/write files. How do I authenticate myself in Google App Engine?
I can use this verb in the Python Windows SDK. But not in production. Why? What am I doing wrong?
The error message includes (only seen via firebug or fiddler)
Malformed request
or something like that
My code looks like:
from google.appengine.ext import db
from google.appengine.ext import webapp
class Handler(webapp.RequestHandler):
def delete(self):
key = self.request.get('key')
item = db.get(key)
item.delete()
self.response.out.write(key)
I have seen how to add google calendar, but when I run it, it create's a new calendar, even though the selector I am using, refer's to an existing calendar.
$calendar.fullCalendar({
events: $.fullCalendar.gcalFeed($feed_url.val())
});
I have other functions, that use renderEvents, but I am not sure how to use that with google calendars...
Any thoughts or suggestions?
Thank You.
I am not a Google App Engine user. However, I understand you're billed for CPU time and other resources. What are the consequences if you happen to create an infinite loop? Will Google ever terminate it, or will you have to do it yourself manually somehow?
I'm a hobbyist developer worried about a small error that might end up costing hundreds.
I have a hobby opne source Java project hosted at google code (linkset).
May I use a prefix "com.google.code.linkset" as a package name for this project?
P.S.
I dont own "org.linkset" domain :( but i like the name :)
Hi,
I am trying to Migrate mail on 'Google Apps Mail'.
When i give Admin credentials it get migrated successfully.
But when i use Domain user credential it shows error " Execution of request failed: ".
I want to migrate mails to user not to Admin User.Then why there is need of Admin credentials ?
I am using GoogleAPI Ver 2.
Thanx
I have a php array that has a bunch of data that I need but specifically I need just the name and longitude and latitude from each item in the array so that I can display points on a google map. The google map array needs to look like this in the end
var points = [
['test name', 37.331689, -122.030731, 4]
['test name 2', 37.331689, -122.030731, 4]
];
What is the best way to put my php data into a js array?
I created entity in google App Engine datastore.I know how to create entity and remove data from table.My constraints is how to delete entity from google App engine Datastore?
Thanks in advance
I have a website tracked using Google Analytics. It is a Django-based website, so all the URLs are "friendly" URLs (e.g., /my/friendly/url/) and don't have associated files like index.html, etc. Should the "default page" option in Google Analytics be left blank or set to /?
If you don't care about minifying your code, is there a way to get started using the Google Closure library without having to set up a subversion client and use the compiler? The Notepad sample program on Google's website refers to
<script src="closure-library/base.js" > </script >
Can you simply download closure-library/base.js somewhere and start playing with the UI examples? The Closure Lite quick-start version doesn't appear to include goog.ui
Some app is hitting my site excessively from GAE. Here is the browser string in the logs:
AppEngine-Google; (+http://code.google.com/appengine; appid: ware)
Can that app be identified ? "appid" would seem to indicate this but it doesn't seem to be the case.
Hello all,
I am simply wondering how to write a Web Service (XML - SOAP) for Google App Engine? I am really new with Python and I have been looking for example for a while, but no chance.
Does anybody could point me out any article or simply could give me an example of a Web Service in Python with Google App Engine?
Thanks!
The Google I/O app was made by Google to help attendees to the conference track which sessions they want to watch and see the entire schedule. I was wondering if it was available as open source since it has some good UI design and usability patterns.
I have a site that I'm optimizing using Google Website Optimizer where the goal is to have someone click on a link to download some software. But the google optimizer code that's provided will get triggered on any page where the link is on. Is there any way to have it execute only when someone actually clicks the download button? Thanks so much!
I'm part of a startup that builds a product that might be acquired by Google. We can choose to build the product using many different types of technology. Which technologies are most Google friendly?
I would love to have a list of use / don't use pairs. Like this:
Use html5 Don't use silverlight
Use Linux Don't use Windows
etc.
DUPE: http://stackoverflow.com/questions/2512874/can-google-host-my-kml-file-all-my-site
i want to hosting on google,
and show it on my site ,
can we ??
thanks
I run Mac OS X 10.6.8 and Flash 11 in Google Chrome 15.
The process part looks like this:
username 93458 11.4 14.0 2469136 588600 ?? S 2:02AM 5:37.25 /Applications/Google Chrome.app/Contents/Versions/15.0.874.121/Google Chrome Helper EH.app/Contents/MacOS/Google Chrome Helper EH --type=plugin --plugin-path=/Applications/Google Chrome.app/Contents/Versions/15.0.874.121/Google Chrome Framework.framework/Internet Plug-Ins/Flash Player Plugin for Chrome.plugin --lang=en-US --channel=42748.0x2b3200f0.835069097 --enable-crash-reporter=46CB5F28860932569647D54223EACE3E
In some flash games it seems memory use grows from 100mb to 300mb and randomly (at no particular memory limit, there's still 1-2 gb free) it churns the CPU at 90% oscillating between a kernel_task process and the plugin.
Has anyone experienced this and is there some setting that fixes this? I've uninstalled Flash from the system otherwise (Chrome bundles it) so I only use chrome for Flash games, and as a plus the other browsers are quite solid without Flash.