From: <plu...@us...> - 2003-11-04 21:47:09
|
Update of /cvsroot/portlet-opensrc/portlet-opensrc/jsr168/webcontent/googlesearch/WEB-INF In directory sc8-pr-cvs1:/tmp/cvs-serv28242/jsr168/webcontent/googlesearch/WEB-INF Added Files: portlet.xml web.xml Log Message: new samples for google search and rss --- NEW FILE: portlet.xml --- <?xml version="1.0" encoding="UTF-8"?> <portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"> <portlet> <portlet-name>GooglePortlet</portlet-name> <portlet-class>com.plumtree.portlet.portlets.GooglePortlet</portlet-class> <expiration-cache>0</expiration-cache> <supports> <mime-type>text/html</mime-type> <portlet-mode>edit</portlet-mode> <portlet-mode>help</portlet-mode> <portlet-mode>config</portlet-mode> </supports> <supported-locale>en-US</supported-locale> <init-param> <name>key</name> <value></value> </init-param> <portlet-info> <title>Google Portlet</title> <short-title>Googler</short-title> <keywords>Google, Search</keywords> </portlet-info> </portlet> </portlet-app> --- NEW FILE: web.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>GooglePortletSample</display-name> </web-app> |