Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Google Gadgets: New Features and Updates!
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  16 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Dann (Google Employee)  
View profile  
(2 users)  More options Jan 17 2007, 8:40 pm
From: "Dann (Google Employee)" <d...@google.com>
Date: Thu, 18 Jan 2007 01:40:45 -0000
Local: Wed, Jan 17 2007 8:40 pm
Subject: Google Gadgets: New Features and Updates!
Hey everyone,

We've recently released some new features and updates to the
documentation.  Please take a moment and check out what's new:

+ New userpref data type: Lists
+ New feature: Analytics
+ Enhanced gadget scratchpad
+ Enable auto-resizing for syndicated gadgets
+ Correction: _IG_FetchContent() and type="url"

=======================================

++ New userpref data type: Lists

Chances are you've already seen the popular weather gadget
(http://www.google.com/ig/directory?url=http://www.google.com/ig/modul...)
and noticed the way you can save a list of zip codes in the edit
window.  Using the new "list" data type, you can now do the same in
your gadget!

This new data type allows you to capture an array of values dynamically
supplied by the user at run-time.  We've added two new methods under
_IG_Prefs to support reading and writing to these userprefs.  To read,
call prefs.getArray() to retrieve your list as an array.  To write
values back to your list, use the prefs.setArray() method.

We've added a new section in our documentation describing how it's
used.  To learn more, visit
http://www.google.com/apis/gadgets/fundamentals.html#list.

---------------

++ New feature: Analytics

For everyone wishing to track gadgets using Google Analytics, we've
finally released a simple method to do this.  You must have a Google
Analytics account before using feature.  If don't have one, it's free,
and you can sign up at http://www.google.com/analytics/sign_up.html.

To use this feature, simply add <Require feature="analytics"/> in your
gadget XML to import the analytics library.  Then call _IG_Analytics()
any time you wish to record a hit in your account.  You can also use
this method to track JavaScript events such as clicks, mouseovers, etc.

Here's a few links to help you get started:
http://www.google.com/apis/gadgets/tools.html#Analytics
http://www.google.com/apis/gadgets/reference.html#Ref_Analytics

See how the developer gadget is using it:
http://www.google.com/ig/modules/developer.xml

---------------

++ Enhanced gadget scratch pad

We've really enhanced the functionality of the gadget scratch pad to
support many new features.  Now you can load any external gadgets by
URL into the scratch pad and preview them as syndicated gadgets
on-the-fly.  In addition, we provided a short static list of popular
gadget links to quickly demonstrate it's use.  Visit
http://www.google.com/apis/gadgets/gs.html#Scratchpad to see the new
version.

The scratch pad is nothing more than a syndicated gadget, which means
you can also add the scratchpad to your personalized homepage as well.
Here's the new scratch pad gadget in the directory:
http://www.google.com/ig/directory?url=scratchpad.xml

---------------

++ Enable auto-resizing for syndicated gadgets

For publishers that are syndicating gadgets onto their websites, you
can now set the gadget to automatically fit the width of the parent
container.  When generating the HTML snippet from the creator page
(http://gmodules.com/ig/creator?synd=open&url=http://calebegg.com/coun...),
there is a width parameter, "w=".  Simply set this to "w=auto" to force
the gadget's width to fill the containing space.

Here's an excerpt from the documentation,
http://www.google.com/apis/gadgets/publish.html#PageCreator:
"Height (h) and width (w) parameters. The value of these parameters is
typically the number of pixels. However, you can set the gadget width
to fill the containing space by using w=auto. This is useful for
flexible layouts where you don't know the number of pixels beforehand."

---------------

++ Correction: _IG_FetchContent() and type="url"

If you're writing a type="url" gadget while importing our JavaScript
libraries in your content script, please note that _IG_FetchContent(),
_IG_FetchXmlContent(), and _IG_FetchFeedAsJSON() cannot be used in this
case only.  We've added this as an additional restriction to type="url"
gadgets in our documentation.  You can see the various notes at these
locations:

- http://www.google.com/apis/gadgets/fundamentals.html#Content_Type
(third row under table)
- http://www.google.com/apis/gadgets/remote-content.html#Introduction
(after first three bullets)

If your gadget requires fetching remote content from third-party sites,
we highly recommend type="html" as the alternative.

=======================================

Happy coding!

Dann


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
iblu  
View profile  
 More options Jan 21 2007, 2:26 pm
From: "iblu" <syyedwa...@gmail.com>
Date: Sun, 21 Jan 2007 19:26:49 -0000
Local: Sun, Jan 21 2007 2:26 pm
Subject: Re: Google Gadgets: New Features and Updates!
Sir
i am beginner, i need more complete examples. i donot understand that
xml file is used for data tages(w3school)(i have taken tutorial), how
it is perfoming action?

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
game.programmer@gmail.com  
View profile  
 More options Jan 22 2007, 8:27 pm
From: "game.program...@gmail.com" <game.program...@gmail.com>
Date: Tue, 23 Jan 2007 01:27:48 -0000
Local: Mon, Jan 22 2007 8:27 pm
Subject: Re: Google Gadgets: New Features and Updates!
Hehe... way to make something I made fairly obsolete with the
auto-resize feature on feeds ;).

Good work though!


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
adszhu  
View profile  
 More options Jan 24 2007, 4:46 am
From: "adszhu" <ads...@gmail.com>
Date: Wed, 24 Jan 2007 09:46:12 -0000
Local: Wed, Jan 24 2007 4:46 am
Subject: Re: Google Gadgets: New Features and Updates!
Hi Dann,

thanks, great info. Do You know anything about the already existing
Google Gadgets for Website using Google Analitycs? They seem to fail
working, and a couple of days ago they are not even available.

Ádám

Dann (Google Employee) írta:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wisgary  
View profile  
 More options Jan 24 2007, 9:27 pm
From: "Wisgary" <wisg...@gmail.com>
Date: Thu, 25 Jan 2007 02:27:49 -0000
Local: Wed, Jan 24 2007 9:27 pm
Subject: Re: Google Gadgets: New Features and Updates!
Is there a way to keep my gadget statistics separate from my main site?
Just the one gadget I added to my analytics owned my graphs, turning
them from nice seismograph looking things to pretty much a 90 degree
angle, my site is not nearly as popular as my gadgets, and the sudden
blast upwards shows it. Is there a way to separate the content, or is
it simply possible to create a dummy site? Thanks to anyone who helps,
I'm pretty new to Analytics.

On Jan 17, 9:40 pm, "Dann (Google Employee)" <d...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dann (Google Employee)  
View profile  
 More options Jan 24 2007, 9:36 pm
From: "Dann (Google Employee)" <d...@google.com>
Date: Thu, 25 Jan 2007 02:36:14 -0000
Local: Wed, Jan 24 2007 9:36 pm
Subject: Re: Google Gadgets: New Features and Updates!
Hey Wisgary,

There's different ways to do this, but the simplest resolution is to
create a new website profile within your Analytics account.  During
creation, make sure you create a profile for a new domain.  This
ensures that your profile is assigned a new unique UA account number,
e.g. UA-xxxxxx-x.  Simply update this number within your gadget and all
data should be sent to this new profile from now on, separating it from
your existing account.

Hope this helps!

Dann

On Jan 24, 6:27 pm, "Wisgary" <wisg...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wisgary  
View profile  
 More options Jan 24 2007, 11:21 pm
From: "Wisgary" <wisg...@gmail.com>
Date: Thu, 25 Jan 2007 04:21:19 -0000
Local: Wed, Jan 24 2007 11:21 pm
Subject: Re: Google Gadgets: New Features and Updates!
Allright, just did that, waiting now to see if data starts flowing in.
Thanks for the help and the quick reply. Also, good job on adding
lists! I needed lists for one of my gadgets so I made some really ugly
ghetto lists using enums
(http://flashplayer.googlecode.com/svn/trunk/flashPlayer.xml), but now
I can finally put those to sleep and use proper lists. Thanks again for
the help.

On Jan 24, 10:36 pm, "Dann (Google Employee)" <d...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bonstio  
View profile  
 More options Jan 25 2007, 5:23 am
From: "Bonstio" <bons...@gmail.com>
Date: Thu, 25 Jan 2007 10:23:38 -0000
Local: Thurs, Jan 25 2007 5:23 am
Subject: Re: Google Gadgets: New Features and Updates!
Oooh. Looks like a new edit icon has been added in place of the
previous text. Nice

Jan 25, 4:21 am, "Wisgary" <wisg...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
abowman@gmail.com  
View profile  
 More options Jan 26 2007, 10:44 pm
From: "abow...@gmail.com" <abow...@gmail.com>
Date: Sat, 27 Jan 2007 03:44:34 -0000
Local: Fri, Jan 26 2007 10:44 pm
Subject: Re: Google Gadgets: New Features and Updates!
I like the new send to a friend feature.

It would really be cool if there was an option to send the preferences
that have been set for the gadget.

Then when the friend installs it, they would be able to see how their
friend set up the gadget.

On Jan 25, 5:23 am, "Bonstio" <bons...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bernie  
View profile  
 More options Jan 29 2007, 1:10 pm
From: "Bernie" <bernie.thomp...@gmail.com>
Date: Mon, 29 Jan 2007 18:10:57 -0000
Local: Mon, Jan 29 2007 1:10 pm
Subject: Re: Google Gadgets: New Features and Updates!
Feedsparks is a new gadget using the new Lists datatype, and it's
having trouble with the standard google form page for generating a
script (or adding to pages.google.com).  Here's an explanation: http://
leancode.com/2007/01/28/configuring-google-gadgets-for-your-page/  is
this a known problem?

Thanks!
Bernie

On Jan 17, 5:40 pm, "Dann (Google Employee)" <d...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dann (Google Employee)  
View profile  
 More options Jan 29 2007, 8:48 pm
From: "Dann (Google Employee)" <d...@google.com>
Date: Tue, 30 Jan 2007 01:48:22 -0000
Local: Mon, Jan 29 2007 8:48 pm
Subject: Re: Google Gadgets: New Features and Updates!
Hey Bernie,

Thanks for your post.  This is a known issue with the creator page and
we're working on a fix.  By the way, nice gadget and blog post!

Thanks,

Dann

On Jan 29, 10:10 am, "Bernie" <bernie.thomp...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jerome  
View profile  
 More options Feb 11 2007, 5:49 pm
From: "Jerome" <jerome.mou...@gmail.com>
Date: Sun, 11 Feb 2007 22:49:51 -0000
Local: Sun, Feb 11 2007 5:49 pm
Subject: Re: Google Gadgets: New Features and Updates!
Hi Dann,

On Jan 17, 7:40 pm, "Dann (Google Employee)" <d...@google.com> wrote:

> We've recently released some new features and updates to the
> documentation.  Please take a moment and check out what's new:

> + New userpref data type: Lists

This new userpref type is a great addition, thanks! For some gadgets,
a list userpref type with a way to predefine the values to choose
frome would be ever more useful.

Jerome


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Agus  
View profile  
 More options Feb 12 2007, 11:45 pm
From: "Agus" <agusti.sanc...@gmail.com>
Date: Tue, 13 Feb 2007 04:45:06 -0000
Local: Mon, Feb 12 2007 11:45 pm
Subject: Re: Google Gadgets: New Features and Updates!

What we really need is access to a public unique identifier for the
user account, so that we might be able to save user preferences on
central database and offer a more personalized experience to the user.

We already have the .lang and .country parameters but we badly need
a .uid parameter.

Jerome ha escrit:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dann (Google Employee)  
View profile  
 More options Feb 14 2007, 9:26 pm
From: "Dann (Google Employee)" <d...@google.com>
Date: Thu, 15 Feb 2007 02:26:50 -0000
Local: Wed, Feb 14 2007 9:26 pm
Subject: Re: Google Gadgets: New Features and Updates!
Hey Jerome,

There's an easy way to set default values for a list userpref.  Simply
delimit each list value with a pipeline character '|'.

Here's an example:
<UserPref name="cities" datatype="list" default_value="Mountain View|
San Francisco|Berkeley|New York"/>

The documentation shows further details:
http://www.google.com/apis/gadgets/fundamentals.html#list

Hope this helps!

Dann

On Feb 11, 2:49 pm, "Jerome" <jerome.mou...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jerome  
View profile  
 More options Feb 15 2007, 11:41 pm
From: "Jerome" <jerome.mou...@gmail.com>
Date: Fri, 16 Feb 2007 04:41:49 -0000
Local: Thurs, Feb 15 2007 11:41 pm
Subject: Re: Google Gadgets: New Features and Updates!
Hi Dann,

Thanks for the reply. What you discribed here is how to pre-define the
default value.

I was asking for was a way to use the list as a multi select enum. In
other words, rather than offering the user a text box to enter values
for the list, the wished for "list-enum" would allow the user to
select, for instance, from a list of cities and add the one they'd
like to the list.

With the current API, we either have to use check boxes
(datatype="bool"), but this looks bad if you have 100s of items to
select from (and you go over the 2k limit on user prefs real quick),
or this must be handled in the gadget itself, not in the user prefs
(not consistent to have some gadget settings in the user prefs area
and some other in the gadget body).

Thanks,

Jerome

On Feb 14, 8:26 pm, "Dann (Google Employee)" <d...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
VizionQuest  
View profile  
 More options Feb 16 2007, 6:31 pm
From: "VizionQuest" <VizionQu...@gmail.com>
Date: Fri, 16 Feb 2007 23:31:57 -0000
Local: Fri, Feb 16 2007 6:31 pm
Subject: Re: Google Gadgets: New Features and Updates!
I would like to use convert my Google Custom Search Engines into a
Google Gadget.  Can the Gadget Scratchpad help me do that?  Or is
there an easier way to do this?  Thanks for your time and help, it is
greatly appreciated.

On Jan 17, 7:40 pm, "Dann (Google Employee)" <d...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google