66 lines
No EOL
1.7 KiB
Text
66 lines
No EOL
1.7 KiB
Text
Google RSS Tag Library Examples README
|
|
======================================
|
|
|
|
|
|
Overview
|
|
========
|
|
|
|
This README file describes the Google RSS Tag Library Examples web
|
|
application.
|
|
|
|
This web application contains a collection of examples demonstrating the
|
|
usage of the Google JSP RSS Tag Library. For more information about using
|
|
the custom tag library in your own web applications, please refer to the
|
|
Google RSS Tag Library documentation.
|
|
|
|
The Google RSS Tag Library is an extension to the Google Tag Library, which
|
|
can be found at:
|
|
|
|
<http://google-taglib.sourceforge.net/>
|
|
|
|
See the "LICENSE.txt" file for licensing details.
|
|
|
|
The Google RSS Tag Library uses the Google Web APIs, but is not associated
|
|
with or sponsored by Google, Inc.
|
|
|
|
|
|
Google Web APIs
|
|
===============
|
|
|
|
The Google Web APIs Java library is required in order to use the Examples web
|
|
application. The library's JAR file (googleapi.jar) should be placed into the
|
|
application's WEB-INF/lib directory.
|
|
|
|
http://www.google.com/apis/download.html
|
|
|
|
You must also register with Google (free) in order to obtain a license key.
|
|
The license key is required to access Google's Web Services.
|
|
|
|
https://www.google.com/accounts/NewAccount
|
|
|
|
|
|
Google License Key
|
|
==================
|
|
|
|
The license key can be specified as a context parameter in the web
|
|
application deployment descriptor (web.xml) as follows:
|
|
|
|
<context-param>
|
|
<param-name>google_key</param-name>
|
|
<param-value>000000000000000000000000</param-value>
|
|
</context-param>
|
|
|
|
The license key can also be temporarily specified from the index page of
|
|
the web application.
|
|
|
|
|
|
Examples
|
|
========
|
|
|
|
The following example is included:
|
|
|
|
- Perform a simple Google RSS search
|
|
|
|
|
|
===========================================================================
|
|
$Id$ |