You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2005/09/09 09:26:32 UTC

svn commit: r279724 - in /webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS: conf/ webapp/ webapp/images/ webapp/include/

Author: chinthaka
Date: Fri Sep  9 00:26:10 2005
New Revision: 279724

URL: http://svn.apache.org/viewcvs?rev=279724&view=rev
Log:
Comitting RSS stuff for Indika

Added:
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/conf/
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/conf/web.xml
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/FeedGenerator.jsp
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/axis.jpg   (with props)
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/feedgenerator.JPG   (with props)
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/include/
    webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/include/header_generator.inc

Added: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/conf/web.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/conf/web.xml?rev=279724&view=auto
==============================================================================
--- webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/conf/web.xml (added)
+++ webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/conf/web.xml Fri Sep  9 00:26:10 2005
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!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>
+
+    <servlet>
+        <servlet-name>RSSServlet</servlet-name>
+        <display-name>RSS FEED FOR AXIS</display-name>
+        <description>Rss feed of web services deployed on axis engine</description>
+        <servlet-class>org.apache.axis2.feed.feedGenerator.http.RSSServlet</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ATOMServlet</servlet-name>
+        <display-name>ATOM FEED FOR AXIS</display-name>
+        <description>ATOM feed of web services deployed on axis engine</description>
+        <servlet-class>org.apache.axis2.feed.feedGenerator.http.ATOMServlet</servlet-class>
+    </servlet>
+
+    <servlet-mapping>
+        <servlet-name>RSSServlet</servlet-name>
+        <url-pattern>/feed/RSS</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ATOMServlet</servlet-name>
+        <url-pattern>/feed/ATOM</url-pattern>
+    </servlet-mapping>
+
+</web-app>

Added: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/FeedGenerator.jsp
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/FeedGenerator.jsp?rev=279724&view=auto
==============================================================================
--- webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/FeedGenerator.jsp (added)
+++ webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/FeedGenerator.jsp Fri Sep  9 00:26:10 2005
@@ -0,0 +1,46 @@
+<%@ page contentType="text/html;charset=UTF-8" language="java" %>
+
+<%--
+    /*
+ * Copyright 2002,2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+--%>
+
+<html>
+
+<head>
+<title>Axis 2 Feed Generator- Home</title>
+<link href="css/axis-style.css" rel="stylesheet" type="text/css">
+</head>
+<body>  <jsp:include page="include/header_generator.inc"></jsp:include>
+        <br/>
+        Welcome to the AXIS 2 Web Service Feed Generator
+        <br/>
+        <ul>
+        <li><a href="http://127.0.0.1:8080/axis2/feed/RSS">RSS</a>
+        <br/>
+        show Web Service Feed as RSS Feed
+        </li>
+        <li><a href="http://127.0.0.1:8080/axis2/feed/ATOM">ATOM</a>
+        <br/>
+        show Web Service Feed as ATOM Feed
+        </li>
+ 	<li><a href="http://127.0.0.1:8080/axis2/aggregator.jsp">Aggregator</a>
+        <br/>
+         Go to Feed Aggregator
+        </li>
+        </ul>
+        </body>
+</html>
\ No newline at end of file

Added: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/axis.jpg
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/axis.jpg?rev=279724&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/axis.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/feedgenerator.JPG
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/feedgenerator.JPG?rev=279724&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/images/feedgenerator.JPG
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/include/header_generator.inc
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/include/header_generator.inc?rev=279724&view=auto
==============================================================================
--- webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/include/header_generator.inc (added)
+++ webservices/axis2/trunk/archive/java/scratch/Google_SoC/RSS/webapp/include/header_generator.inc Fri Sep  9 00:26:10 2005
@@ -0,0 +1,6 @@
+<table width="100%">
+  <tr>
+    <td align="left"><img src="images/feedgenerator.JPG"/ width="100% height="50%"><h1>Axis 2 Feed Generator</h1></td>
+    <td align="right"><img src="images/axis.jpg"/></td>
+    </tr>
+</table>