[seam-commits] Seam SVN: r9083 - in trunk/src/rss: META-INF and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Sep 22 01:18:22 EDT 2008
Author: nickarls
Date: 2008-09-22 01:18:22 -0400 (Mon, 22 Sep 2008)
New Revision: 9083
Added:
trunk/src/rss/META-INF/
trunk/src/rss/META-INF/faces-config.xml
trunk/src/rss/META-INF/seam-rss.taglib.xml
Log:
Missing META-INF folder for rss
Added: trunk/src/rss/META-INF/faces-config.xml
===================================================================
--- trunk/src/rss/META-INF/faces-config.xml (rev 0)
+++ trunk/src/rss/META-INF/faces-config.xml 2008-09-22 05:18:22 UTC (rev 9083)
@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+<faces-config version="1.2"
+ xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
+
+ <component>
+ <component-type>org.jboss.seam.rss.ui.UIFeed</component-type>
+ <component-class>org.jboss.seam.rss.ui.UIFeed</component-class>
+ </component>
+ <component>
+ <component-type>org.jboss.seam.rss.ui.UIEntry</component-type>
+ <component-class>org.jboss.seam.rss.ui.UIEntry</component-class>
+ </component>
+
+</faces-config>
Added: trunk/src/rss/META-INF/seam-rss.taglib.xml
===================================================================
--- trunk/src/rss/META-INF/seam-rss.taglib.xml (rev 0)
+++ trunk/src/rss/META-INF/seam-rss.taglib.xml 2008-09-22 05:18:22 UTC (rev 9083)
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!DOCTYPE facelet-taglib PUBLIC
+ "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN"
+ "facelet-taglib_1_0.dtd">
+
+<facelet-taglib>
+ <namespace>http://jboss.com/products/seam/rss</namespace>
+
+ <tag>
+ <tag-name>feed</tag-name>
+ <component>
+ <component-type>org.jboss.seam.rss.ui.UIFeed</component-type>
+ </component>
+ </tag>
+
+ <tag>
+ <tag-name>entry</tag-name>
+ <component>
+ <component-type>org.jboss.seam.rss.ui.UIEntry</component-type>
+ </component>
+ </tag>
+
+</facelet-taglib>
+
More information about the seam-commits
mailing list