From: <la...@us...> - 2003-11-04 19:22:35
|
Update of /cvsroot/portlet-opensrc/portlet-opensrc/jsr168/upload/WEB-INF In directory sc8-pr-cvs1:/tmp/cvs-serv31860/jsr168/webcontent/upload/WEB-INF Added Files: portlet.xml web.xml Log Message: Upload Portlet --- NEW FILE: portlet.xml --- <?xml version="1.0" encoding="UTF-8"?> <portlet-app version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/portlet" xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"> <portlet> <description>File Upload</description> <portlet-name>fileUploadPortlet</portlet-name> <portlet-class>portlet.FileUploadPortlet</portlet-class> <portlet-info> <title>Upload a File</title> </portlet-info> <supports> <mime-type>text/html</mime-type> <portlet-mode>view</portlet-mode> </supports> </portlet> </portlet-app> --- NEW FILE: web.xml --- <?xml version="1.0" ?> <!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> </web-app> |