I've looked around but have been unable to find any classes or sample code (in php) for the google safe browsing api.
Would you happen to know where I might find it?
G-Man
I am new to Android development and looking for beginner to intermediate level books on Google and Android development.
Can you recommend any such books?
http://code.google.com/intl/en/appengine/docs/python/tools/uploadingdata.html
the api is :
Downloading Data from App Engine
To start a data download, run appcfg.py download_data with the appropriate arguments:
appcfg.py download_data --config_file=album_loader.py --filename=album_data_archive.csv --kind=Album <app-directory>
i want to download data from my gae app zjm1126.appspot.com
so i write this in the commond:
appcfg.py download_data --config_file=GreetingLoad.py --filename=GreetingLoad.csv
but, i don't know how to write the 'app-directory'
so , how to write the 'app-directory'..
thanks
Afternoon,
Bit of a tricky question this one, I have a website and need to translate the pages into french, I am using google translate API to do the translation. What I am doing is loading in the HTML templates into a string using PHP and then need to translate the text copy on the pages and then save as for example:
fr_master_header.html
de_master_header.html
The problem I have is identifying the text copy on the page ignoring the HTML, replacing the copy in the extact place and then saving the file with the HTML tags and trasnlated text copy.
Cheers in advanced.
I have an Android phone/tablet apk which is currently in Play store and has these settings in its manifest file:
package="com.company.xyz"
android:versionCode="0803010008"
android:versionName="01.00.08" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-library
android:name="com.adobe.flashplayer"
android:required="true" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:xlargeScreens="true" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="true" />
I had uploaded another apk for GoogleTV which has the same package name com.company.xyz as the previous apk and has the following settings in its manifest file:
package="com.company.xyz"
android:versionCode="1203010001"
android:versionName="01.00.01" >
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="12" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="com.google.android.tv"
android:required="true" />
<supports-screens
android:largeScreens="true"/>
<uses-configuration android:reqFiveWayNav="true" />
The Google TV apk never showed up on Play Store on GTV boxes, so I updated its manifest with the settings below and with everything else remaining the same
package="com.company.xyz"
android:versionCode="1203010002"
android:versionName="01.00.02" >
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:smallScreens="false"
android:xlargeScreens="false" />
At this point, I am unable to save the app because of the Play Store error "Error: New APK version is lower than previous APK version" even though the GoogleTV apk has a higher version code than the Phone/Tablet version. Does anyone have a solution for this?
Thanks!
I want to retrieve the text that the user has typed into the currently visible address bar, using Javascript. This is for google chrome only.
Is this possible? I know you can get the document URL via window.location.href, but I am unable to locate any javascript pertaining to current code inside the address bar/omnibar.
Thank you for the help!
Does Google have an API for registering hooks/callbacks for whenever a document is updated? That way, I could run a process on one of my servers every time a doc was updated.
If they don't have that, what the recommended way to accomplish that? Cron? Anything else?
I would like to make a application that accepts the entry from keyboard modify it and send it to the active window (may be application like word, excel,notepad windows screens ) etc.
It the feature is just like google's transliteration application for windows .
I would like to do it in c# .
I think this involves hooking in the keyboard and sending keys (like sendkey in vb) to the current window.
Does Google Reader have an API and if so, how can I get the count of the number of unread posts for a specific user knowing their username and password?
Hi,
I am unable to display images in pages created using Google App Engine(Python).
My app.yaml file has :
- url: /images
static_dir: images
And the python file has:
self.response.out.write("""<img src = '/images/title.gif' />""")
The image still does not display in the page.
Thanks
I heard that some people where having problems accessing their sites which get their jQuery from Google since their corporate firewall didn't like sites getting code from other sites, i.e. cross-site scripting?
Has anyone run into problem such as this?
We have been adding domains to our app without any issues for past couple months, following these instructions https://developers.google.com/appengine/articles/domains
Since yesterday we have not been able to, when clicking Activate this service we get this error message
"An error occurred while trying to install this application. Please try again later."
We have tried this also with older domains and with different apps and getting the same error, so the problem seems to be more widespread, not isolated to particular domains / apps.
Does anyone know how to solve?
Thanks
Ron
I am so fed up with this Google products I am Ready to give someone my UN and PS and pay them to do it. I keep getting a error message when i upload my data feed. I get the error saying Text, I followed the instructions , they said to do it in excel and save as a text then upload the data feed
thank you
microcomputerctr.com
I have this code setup to track image downloads throught Google Analytics.
<a href="/media/37768/CC20100117m001_thumb_2000.jpg"
onclick="pageTracker._trackEvent('Image', 'Download', 'file.jpg');"
class="hi-res track">
Hi-Res</a>
But the events don't ever show up in the GA reports.
I thought maybe the the browser was following the link before the javascript was being run but setting href="#" doesn't work either.
Any ideas?
Hello Could find the google hosted version of javscripts
timeago.js - timeago: a jQuery plugin, version: 0.8.2
jquery.popup-min.js - ColorBox v1.3.6 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
Does anyone know of an example where the Google Maps 2 API is used to create a map with both a sidebar
http://econym.org.uk/gmap/example_map4c.htm
and tabbed info windows
http://econym.org.uk/gmap/example_map10a.htm
?
I've been search for quite a while with no success. My project isn't using Django, is there a simple way to serialize App Engine models (google.appengine.ext.db.Model) into JSON or do I need to write my own serializer? My model class is fairly simple. For instance:
class Photo(db.Model):
filename = db.StringProperty()
title = db.StringProperty()
description = db.StringProperty(multiline=True)
date_taken = db.DateTimeProperty()
date_uploaded = db.DateTimeProperty(auto_now_add=True)
album = db.ReferenceProperty(Album, collection_name='photo')
Thanks in advance.
i am writing a web proxy in java on google App engine.I figured out that the urls can be fected using the url Fetch servce but i have no idea about how to manage cookies and the streams as in youtube .Ne suggestions ?
Hi
i had created table with primarykey{groupname} in google app engine datastore as follows,
//---------------coding-----------//
@Entity
@Table(name="Groups", schema="PUBLIC")
public class Creategroup {
@Id
private String groupname;
@Basic
private String groupid;
.
.
.
}
My doubt is I wnat to set groupname and groupid both as primary key is it possible.how ?
Guide me
thanks in advance
I am working on an app that uses the GPS on my g1. I'm wondering if it is possible that when I am using the app I can have it update my Google Latitude location every x number of minutes. Any thoughts on how this may be accomplished?
I'm trying to display a Google Map inside a drupal page. The map will only have the business location marker on it, with no need for a user to submitted their own markers.
So far I've loaded the Gmap, Location, and CCK modules. I've attempted to enable a location field for Page content types, which allows me to input an address, but this doesn't display the actual map.
I'm sure I'm missing something simple here. Any help?