You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2008/06/28 21:18:57 UTC

svn commit: r672574 [3/16] - in /roller/planet/core/trunk: ./ lib/ lib/buildtime/ lib/jakarta-taglibs-standard-1.1.2/ lib/jakarta-taglibs-standard-1.1.2/lib/ lib/jakarta-taglibs-standard-1.1.2/tld/ lib/openjpa-0.9.7/ lib/rome-0.9/ lib/spring-1.2/ lib/s...

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/fn.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/fn.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/fn.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/fn.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,207 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
+  version="2.0">
+    
+  <description>JSTL 1.1 functions library</description>
+  <display-name>JSTL functions</display-name>
+  <tlib-version>1.1</tlib-version>
+  <short-name>fn</short-name>
+  <uri>http://java.sun.com/jsp/jstl/functions</uri>
+
+  <function>
+    <description>
+      Tests if an input string contains the specified substring.
+    </description>
+    <name>contains</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>boolean contains(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      &lt;c:if test="${fn:contains(name, searchString)}">
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Tests if an input string contains the specified substring in a case insensitive way.
+    </description>
+    <name>containsIgnoreCase</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>boolean containsIgnoreCase(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      &lt;c:if test="${fn:containsIgnoreCase(name, searchString)}">
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Tests if an input string ends with the specified suffix.
+    </description>
+    <name>endsWith</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>boolean endsWith(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      &lt;c:if test="${fn:endsWith(filename, ".txt")}">
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Escapes characters that could be interpreted as XML markup.
+    </description>
+    <name>escapeXml</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String escapeXml(java.lang.String)</function-signature>
+    <example>
+      ${fn:escapeXml(param:info)}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Returns the index withing a string of the first occurrence of a specified substring.
+    </description>
+    <name>indexOf</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>int indexOf(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      ${fn:indexOf(name, "-")}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Joins all elements of an array into a string.
+    </description>
+    <name>join</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String join(java.lang.String[], java.lang.String)</function-signature>
+    <example>
+      ${fn:join(array, ";")}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Returns the number of items in a collection, or the number of characters in a string.
+    </description>
+    <name>length</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>int length(java.lang.Object)</function-signature>
+    <example>
+      You have ${fn:length(shoppingCart.products)} in your shopping cart.
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Returns a string resulting from replacing in an input string all occurrences
+      of a "before" string into an "after" substring.
+    </description>
+    <name>replace</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String replace(java.lang.String, java.lang.String, java.lang.String)</function-signature>
+    <example>
+      ${fn:replace(text, "-", "&#149;")}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Splits a string into an array of substrings.
+    </description>
+    <name>split</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String[] split(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      ${fn:split(customerNames, ";")}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Tests if an input string starts with the specified prefix.
+    </description>
+    <name>startsWith</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>boolean startsWith(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      &lt;c:if test="${fn:startsWith(product.id, "100-")}">
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Returns a subset of a string.
+    </description>
+    <name>substring</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String substring(java.lang.String, int, int)</function-signature>
+    <example>
+      P.O. Box: ${fn:substring(zip, 6, -1)}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Returns a subset of a string following a specific substring.
+    </description>
+    <name>substringAfter</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String substringAfter(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      P.O. Box: ${fn:substringAfter(zip, "-")}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Returns a subset of a string before a specific substring.
+    </description>
+    <name>substringBefore</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String substringBefore(java.lang.String, java.lang.String)</function-signature>
+    <example>
+      Zip (without P.O. Box): ${fn:substringBefore(zip, "-")}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Converts all of the characters of a string to lower case.
+    </description>
+    <name>toLowerCase</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String toLowerCase(java.lang.String)</function-signature>
+    <example>
+      Product name: ${fn.toLowerCase(product.name)}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Converts all of the characters of a string to upper case.
+    </description>
+    <name>toUpperCase</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String toUpperCase(java.lang.String)</function-signature>
+    <example>
+      Product name: ${fn.UpperCase(product.name)}
+    </example>
+  </function>
+
+  <function>
+    <description>
+      Removes white spaces from both ends of a string.
+    </description>
+    <name>trim</name>
+    <function-class>org.apache.taglibs.standard.functions.Functions</function-class>
+    <function-signature>java.lang.String trim(java.lang.String)</function-signature>
+    <example>
+      Name: ${fn.trim(name)}
+    </example>  
+  </function>
+
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/permittedTaglibs.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/permittedTaglibs.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/permittedTaglibs.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/permittedTaglibs.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
+    version="2.0">
+  <description>
+    Restricts JSP pages to the JSTL tag libraries
+  </description>    
+  <display-name>permittedTaglibs</display-name>
+  <tlib-version>1.1</tlib-version>
+  <short-name>permittedTaglibs</short-name>
+  <uri>http://jakarta.apache.org/taglibs/standard/permittedTaglibs</uri>
+
+  <validator>
+    <validator-class>
+	javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV
+    </validator-class>        
+    <init-param>
+      <description>
+        Whitespace-separated list of taglib URIs to permit.  This example
+	TLD for the Standard Taglib allows only JSTL 'el' taglibs to be
+	imported.
+      </description>        
+      <param-name>permittedTaglibs</param-name>
+      <param-value>
+	http://java.sun.com/jsp/jstl/core
+	http://java.sun.com/jsp/jstl/fmt
+	http://java.sun.com/jsp/jstl/sql
+	http://java.sun.com/jsp/jstl/xml
+      </param-value>
+    </init-param>
+  </validator>
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/scriptfree.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/scriptfree.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/scriptfree.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/scriptfree.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
+    version="2.0">
+  <description>
+    Validates JSP pages to prohibit use of scripting elements.
+  </description>
+  <tlib-version>1.1</tlib-version>
+  <short-name>scriptfree</short-name>
+  <uri>http://jakarta.apache.org/taglibs/standard/scriptfree</uri>
+
+  <validator>
+    <description>
+      Validates prohibitions against scripting elements.
+    </description>
+    <validator-class>
+    javax.servlet.jsp.jstl.tlv.ScriptFreeTLV
+    </validator-class>
+    <init-param>
+      <description>
+        Controls whether or not declarations are considered valid.
+      </description>
+      <param-name>allowDeclarations</param-name>
+      <param-value>false</param-value>
+    </init-param>
+    <init-param>
+      <description>
+        Controls whether or not scriptlets are considered valid.
+      </description>
+      <param-name>allowScriptlets</param-name>
+      <param-value>false</param-value>
+    </init-param>
+    <init-param>
+      <description>
+        Controls whether or not top-level expressions are considered valid.
+      </description>
+      <param-name>allowExpressions</param-name>
+      <param-value>false</param-value>
+    </init-param>
+    <init-param>
+      <description>
+        Controls whether or not expressions used to supply request-time
+        attribute values are considered valid.
+      </description>
+      <param-name>allowRTExpressions</param-name>
+      <param-value>false</param-value>
+    </init-param>
+  </validator>
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0-rt.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0-rt.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0-rt.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0-rt.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,188 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE taglib
+  PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
+  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
+<taglib>
+  <tlib-version>1.0</tlib-version>
+  <jsp-version>1.2</jsp-version>
+  <short-name>sql_rt</short-name>
+  <uri>http://java.sun.com/jstl/sql_rt</uri>
+  <display-name>JSTL sql RT</display-name>
+  <description>JSTL 1.0 sql library</description>
+
+  <validator>
+    <validator-class>
+        org.apache.taglibs.standard.tlv.JstlSqlTLV
+    </validator-class>
+    <description>
+        Provides core validation features for JSTL tags.
+    </description>
+  </validator>
+
+  <tag>
+    <name>transaction</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.TransactionTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Provides nested database action elements with a shared Connection,
+        set up to execute all statements as one transaction.
+    </description>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>isolation</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>query</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.QueryTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Executes the SQL query defined in its body or through the
+        sql attribute.
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>sql</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>startRow</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>maxRows</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>update</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.UpdateTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Executes the SQL update defined in its body or through the
+        sql attribute.
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>sql</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>param</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.ParamTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Sets a parameter in an SQL statement to the specified value.
+    </description>
+    <attribute>
+        <name>value</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>dateParam</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.DateParamTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+        Sets a parameter in an SQL statement to the specified java.util.Date value.
+    </description>
+    <attribute>
+        <name>value</name>
+        <required>true</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>type</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>setDataSource</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+        Creates a simple DataSource suitable only for prototyping.
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>driver</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>url</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>user</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>password</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql-1_0.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,213 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE taglib
+  PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
+  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
+<taglib>
+  <tlib-version>1.0</tlib-version>
+  <jsp-version>1.2</jsp-version>
+  <short-name>sql</short-name>
+  <uri>http://java.sun.com/jstl/sql</uri>
+  <display-name>JSTL sql</display-name>
+  <description>JSTL 1.0 sql library</description>
+
+  <validator>
+    <validator-class>
+	org.apache.taglibs.standard.tlv.JstlSqlTLV
+    </validator-class>
+    <init-param>
+        <param-name>expressionAttributes</param-name>
+        <param-value>
+        transaction:dataSource
+        transaction:isolation
+        query:sql
+        query:dataSource
+        query:startRow
+        query:maxRows
+        update:sql
+        update:dataSource
+        param:value
+        dateParam:value
+        dateParam:type
+        setDataSource:dataSource
+        setDataSource:driver
+        setDataSource:url
+        setDataSource:user
+        setDataSource:password
+        </param-value>
+        <description>
+            Whitespace-separated list of colon-separated token pairs
+            describing tag:attribute combinations that accept expressions.
+            The validator uses this information to determine which
+            attributes need their syntax validated.
+        </description>
+     </init-param>
+  </validator>
+
+  <tag>
+    <name>transaction</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.sql.TransactionTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Provides nested database action elements with a shared Connection,
+        set up to execute all statements as one transaction.
+    </description>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>isolation</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>query</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.sql.QueryTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Executes the SQL query defined in its body or through the
+        sql attribute.
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>sql</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>startRow</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>maxRows</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>update</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.sql.UpdateTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Executes the SQL update defined in its body or through the
+        sql attribute.
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>sql</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>param</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.sql.ParamTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Sets a parameter in an SQL statement to the specified value.
+    </description>
+    <attribute>
+        <name>value</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>dateParam</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.sql.DateParamTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+        Sets a parameter in an SQL statement to the specified java.util.Date val
+ue.
+    </description>
+    <attribute>
+        <name>value</name>
+        <required>true</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>type</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>setDataSource</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+        Creates a simple DataSource suitable only for prototyping.
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>driver</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>url</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>user</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>password</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/sql.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,289 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
+    version="2.0">
+    
+  <description>JSTL 1.1 sql library</description>
+  <display-name>JSTL sql</display-name>
+  <tlib-version>1.1</tlib-version>
+  <short-name>sql</short-name>
+  <uri>http://java.sun.com/jsp/jstl/sql</uri>
+
+  <validator>
+    <description>
+        Provides core validation features for JSTL tags.
+    </description>
+    <validator-class>
+        org.apache.taglibs.standard.tlv.JstlSqlTLV
+    </validator-class>
+  </validator>
+
+  <tag>
+    <description>
+        Provides nested database action elements with a shared Connection,
+        set up to execute all statements as one transaction.
+    </description>
+    <name>transaction</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.TransactionTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+DataSource associated with the database to access. A
+String value represents a relative path to a JNDI
+resource or the parameters for the JDBC
+DriverManager facility.
+        </description>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Transaction isolation level. If not specified, it is the
+isolation level the DataSource has been configured
+with.
+        </description>
+        <name>isolation</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        Executes the SQL query defined in its body or through the
+        sql attribute.
+    </description>
+    <name>query</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.QueryTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Name of the exported scoped variable for the
+query result. The type of the scoped variable is
+javax.servlet.jsp.jstl.sql.
+Result (see Chapter 16 "Java APIs").
+        </description>
+        <name>var</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope of var.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+SQL query statement.
+        </description>
+        <name>sql</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Data source associated with the database to
+query. A String value represents a relative path
+to a JNDI resource or the parameters for the
+DriverManager class.
+        </description>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+The returned Result object includes the rows
+starting at the specified index. The first row of
+the original query result set is at index 0. If not
+specified, rows are included starting from the
+first row at index 0.
+        </description>
+        <name>startRow</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+The maximum number of rows to be included in
+the query result. If not specified, or set to -1, no
+limit on the maximum number of rows is
+enforced.
+        </description>
+        <name>maxRows</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        Executes the SQL update defined in its body or through the
+        sql attribute.
+    </description>
+    <name>update</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.UpdateTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Name of the exported scoped variable for the result
+of the database update. The type of the scoped
+variable is java.lang.Integer.
+        </description>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope of var.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+SQL update statement.
+        </description>
+        <name>sql</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Data source associated with the database to update.
+A String value represents a relative path to a JNDI
+resource or the parameters for the JDBC
+DriverManager class.
+        </description>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        Sets a parameter in an SQL statement to the specified value.
+    </description>
+    <name>param</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.ParamTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Parameter value.
+        </description>
+        <name>value</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        Sets a parameter in an SQL statement to the specified java.util.Date value.
+    </description>
+    <name>dateParam</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.DateParamTag</tag-class>
+    <body-content>empty</body-content>
+    <attribute>
+        <description>
+Parameter value for DATE, TIME, or
+TIMESTAMP column in a database table.
+        </description>
+        <name>value</name>
+        <required>true</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+One of "date", "time" or "timestamp".
+        </description>
+        <name>type</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        Creates a simple DataSource suitable only for prototyping.
+    </description>
+    <name>setDataSource</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag</tag-class>
+    <body-content>empty</body-content>
+    <attribute>
+        <description>
+Name of the exported scoped variable
+for the data source specified. Type can
+be String or DataSource.
+        </description>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+If var is specified, scope of the
+exported variable. Otherwise, scope of
+the data source configuration variable.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Data source. If specified as a string, it
+can either be a relative path to a JNDI
+resource, or a JDBC parameters string
+as defined in Section 10.1.1.
+        </description>
+        <name>dataSource</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+JDBC parameter: driver class name.
+        </description>
+        <name>driver</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+JDBC parameter: URL associated with
+the database.
+        </description>
+        <name>url</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+JDBC parameter: database user on
+whose behalf the connection to the
+database is being made.
+        </description>
+        <name>user</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+JDBC parameter: user password
+        </description>
+        <name>password</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0-rt.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0-rt.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0-rt.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0-rt.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,256 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE taglib
+  PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
+  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
+<taglib>
+  <tlib-version>1.0</tlib-version>
+  <jsp-version>1.2</jsp-version>
+  <short-name>x_rt</short-name>
+  <uri>http://java.sun.com/jstl/xml_rt</uri>
+  <display-name>JSTL XML RT</display-name>
+  <description>JSTL 1.0 XML library</description>
+
+  <validator>
+    <validator-class>
+	org.apache.taglibs.standard.tlv.JstlXmlTLV
+    </validator-class>
+    <description>
+        Provides validation features for JSTL XML tags.
+    </description>
+  </validator>
+
+  <tag>
+    <name>choose</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Simple conditional tag that establishes a context for
+        mutually exclusive conditional operations, marked by
+        &lt;when&gt; and &lt;otherwise&gt;
+    </description>
+  </tag>
+
+  <tag>
+    <name>out</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.ExprTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+	Like &lt;%= ... &gt;, but for XPath expressions.
+    </description>
+    <attribute>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>escapeXml</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>if</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.IfTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        XML conditional tag, which evalutes its body if the
+        supplied XPath expression evalutes to 'true' as a boolean
+    </description>
+    <attribute>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>forEach</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.ForEachTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+	XML iteration tag.
+    </description>
+    <attribute>
+	<name>var</name>
+	<required>false</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>select</name>
+	<required>true</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>otherwise</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.core.OtherwiseTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+	Subtag of &lt;choose&gt; that follows &lt;when&gt; tags
+	and runs only if all of the prior conditions evaluated to
+	'false'
+    </description>
+  </tag>
+
+  <tag>
+    <name>param</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.ParamTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Adds a parameter to a containing 'transform' tag's Transformer
+    </description>
+    <attribute>
+        <name>name</name>
+        <required>true</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>value</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>parse</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.ParseTag</tag-class>
+    <tei-class>org.apache.taglibs.standard.tei.XmlParseTEI</tei-class>
+    <body-content>JSP</body-content>
+    <description>
+	Parses XML content from 'source' attribute or 'body'
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>varDom</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scopeDom</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>xml</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>systemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>filter</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>set</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.SetTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+	Saves the result of an XPath expression evaluation in a 'scope'
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>select</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>transform</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.TransformTag</tag-class>
+    <tei-class>org.apache.taglibs.standard.tei.XmlTransformTEI</tei-class>
+    <body-content>JSP</body-content>
+    <description>
+	Conducts a transformation given a source XML document
+	and an XSLT stylesheet
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>result</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>xml</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>xmlSystemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>xslt</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>xsltSystemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>when</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.WhenTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Subtag of &lt;choose&gt; that includes its body if its
+        expression evalutes to 'true'
+    </description>
+    <attribute>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x-1_0.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,273 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE taglib
+  PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
+  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
+<taglib>
+  <tlib-version>1.0</tlib-version>
+  <jsp-version>1.2</jsp-version>
+  <short-name>x</short-name>
+  <uri>http://java.sun.com/jstl/xml</uri>
+  <display-name>JSTL XML</display-name>
+  <description>JSTL 1.0 XML library</description>
+
+  <validator>
+    <validator-class>
+	org.apache.taglibs.standard.tlv.JstlXmlTLV
+    </validator-class>
+    <init-param>
+	<param-name>expressionAttributes</param-name>
+	<param-value>
+	    out:escapeXml
+	    parse:xml
+	    parse:systemId
+	    parse:filter
+	    transform:xml
+	    transform:xmlSystemId
+	    transform:xslt
+	    transform:xsltSystemId
+	    transform:result
+	</param-value>
+	<description>
+	    Whitespace-separated list of colon-separated token pairs
+	    describing tag:attribute combinations that accept expressions.
+	    The validator uses this information to determine which
+	    attributes need their syntax validated.
+	</description>
+     </init-param>
+  </validator>
+
+  <tag>
+    <name>choose</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Simple conditional tag that establishes a context for
+        mutually exclusive conditional operations, marked by
+        &lt;when&gt; and &lt;otherwise&gt;
+    </description>
+  </tag>
+
+  <tag>
+    <name>out</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.xml.ExprTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+	Like &lt;%= ... &gt;, but for XPath expressions.
+    </description>
+    <attribute>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>escapeXml</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>if</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.IfTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+      XML conditional tag, which evalutes its body if the
+      supplied XPath expression evalutes to 'true' as a boolean
+    </description>
+    <attribute>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>forEach</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.ForEachTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+	XML iteration tag.
+    </description>
+    <attribute>
+	<name>var</name>
+	<required>false</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>select</name>
+	<required>true</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>otherwise</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.core.OtherwiseTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+	Subtag of &lt;choose&gt; that follows &lt;when&gt; tags
+	and runs only if all of the prior conditions evaluated to
+	'false'
+    </description>
+  </tag>
+
+  <tag>
+    <name>param</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.xml.ParamTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Adds a parameter to a containing 'transform' tag's Transformer
+    </description>
+    <attribute>
+        <name>name</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>value</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>parse</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.xml.ParseTag</tag-class>
+    <tei-class>org.apache.taglibs.standard.tei.XmlParseTEI</tei-class>
+    <body-content>JSP</body-content>
+    <description>
+	Parses XML content from 'source' attribute or 'body'
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>varDom</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scopeDom</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>xml</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>systemId</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>filter</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>set</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.SetTag</tag-class>
+    <body-content>empty</body-content>
+    <description>
+	Saves the result of an XPath expression evaluation in a 'scope'
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>select</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>transform</name>
+    <tag-class>org.apache.taglibs.standard.tag.el.xml.TransformTag</tag-class>
+    <tei-class>org.apache.taglibs.standard.tei.XmlTransformTEI</tei-class>
+    <body-content>JSP</body-content>
+    <description>
+	Conducts a transformation given a source XML document
+	and an XSLT stylesheet
+    </description>
+    <attribute>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>result</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>xml</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <name>xmlSystemId</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>xslt</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+	<name>xsltSystemId</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <name>when</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.WhenTag</tag-class>
+    <body-content>JSP</body-content>
+    <description>
+        Subtag of &lt;choose&gt; that includes its body if its
+        expression evalutes to 'true'
+    </description>
+    <attribute>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+</taglib>

Added: roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x.tld
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x.tld?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x.tld (added)
+++ roller/planet/core/trunk/lib/jakarta-taglibs-standard-1.1.2/tld/x.tld Sat Jun 28 12:18:17 2008
@@ -0,0 +1,448 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
+    version="2.0">
+    
+  <description>JSTL 1.1 XML library</description>
+  <display-name>JSTL XML</display-name>
+  <tlib-version>1.1</tlib-version>
+  <short-name>x</short-name>
+  <uri>http://java.sun.com/jsp/jstl/xml</uri>
+
+  <validator>
+    <description>
+        Provides validation features for JSTL XML tags.
+    </description>
+    <validator-class>
+	org.apache.taglibs.standard.tlv.JstlXmlTLV
+    </validator-class>
+  </validator>
+
+  <tag>
+    <description>
+        Simple conditional tag that establishes a context for
+        mutually exclusive conditional operations, marked by
+        &lt;when&gt; and &lt;otherwise&gt;
+    </description>
+    <name>choose</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>
+    <body-content>JSP</body-content>
+  </tag>
+
+  <tag>
+    <description>
+	Like &lt;%= ... &gt;, but for XPath expressions.
+    </description>
+    <name>out</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.ExprTag</tag-class>
+    <body-content>empty</body-content>
+    <attribute>
+        <description>
+XPath expression to be evaluated.
+        </description>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Determines whether characters &lt;,&gt;,&amp;,'," in the
+resulting string should be converted to their
+corresponding character entity codes. Default
+value is true.
+        </description>
+        <name>escapeXml</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        XML conditional tag, which evalutes its body if the
+        supplied XPath expression evalutes to 'true' as a boolean
+    </description>
+    <name>if</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.IfTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+The test condition that tells whether or not the
+body content should be processed.
+        </description>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Name of the exported scoped variable for the
+resulting value of the test condition. The type
+of the scoped variable is Boolean.
+        </description>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope for var.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+	XML iteration tag.
+    </description>
+    <name>forEach</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.ForEachTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Name of the exported scoped variable for the
+current item of the iteration. This scoped variable
+has nested visibility. Its type depends on the
+result of the XPath expression in the select
+attribute.
+        </description>
+	<name>var</name>
+	<required>false</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+XPath expression to be evaluated.
+        </description>
+	<name>select</name>
+	<required>true</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Iteration begins at the item located at the
+specified index. First item of the collection has
+index 0.
+        </description>
+	<name>begin</name>
+	<required>false</required>
+	<rtexprvalue>true</rtexprvalue>
+	<type>int</type>
+    </attribute>
+    <attribute>
+        <description>
+Iteration ends at the item located at the specified
+index (inclusive).
+        </description>
+	<name>end</name>
+	<required>false</required>
+	<rtexprvalue>true</rtexprvalue>
+	<type>int</type>
+    </attribute>
+    <attribute>
+        <description>
+Iteration will only process every step items of
+the collection, starting with the first one.
+        </description>
+	<name>step</name>
+	<required>false</required>
+	<rtexprvalue>true</rtexprvalue>
+	<type>int</type>
+    </attribute>
+    <attribute>
+        <description>
+Name of the exported scoped variable for the
+status of the iteration. Object exported is of type
+javax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nested visibility.
+        </description>
+	<name>varStatus</name>
+	<required>false</required>
+	<rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+	Subtag of &lt;choose&gt; that follows &lt;when&gt; tags
+	and runs only if all of the prior conditions evaluated to
+	'false'
+    </description>
+    <name>otherwise</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.core.OtherwiseTag</tag-class>
+    <body-content>JSP</body-content>
+  </tag>
+
+  <tag>
+    <description>
+        Adds a parameter to a containing 'transform' tag's Transformer
+    </description>
+    <name>param</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.ParamTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Name of the transformation parameter.
+        </description>
+        <name>name</name>
+        <required>true</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Value of the parameter.
+        </description>
+        <name>value</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+	Parses XML content from 'source' attribute or 'body'
+    </description>
+    <name>parse</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.ParseTag</tag-class>
+    <tei-class>org.apache.taglibs.standard.tei.XmlParseTEI</tei-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Name of the exported scoped variable for
+the parsed XML document. The type of the
+scoped variable is implementation
+dependent.
+        </description>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Name of the exported scoped variable for
+the parsed XML document. The type of the
+scoped variable is
+org.w3c.dom.Document.
+        </description>
+        <name>varDom</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope for var.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope for varDom.
+        </description>
+        <name>scopeDom</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Deprecated. Use attribute 'doc' instead.
+        </description>
+        <name>xml</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Source XML document to be parsed.
+        </description>
+        <name>doc</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+The system identifier (URI) for parsing the
+XML document.
+        </description>
+        <name>systemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Filter to be applied to the source
+document.
+        </description>
+        <name>filter</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+	Saves the result of an XPath expression evaluation in a 'scope'
+    </description>
+    <name>set</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.SetTag</tag-class>
+    <body-content>empty</body-content>
+    <attribute>
+        <description>
+Name of the exported scoped variable to hold
+the value specified in the action. The type of the
+scoped variable is whatever type the select
+expression evaluates to.
+        </description>
+        <name>var</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+XPath expression to be evaluated.
+        </description>
+	<name>select</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope for var.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+	Conducts a transformation given a source XML document
+	and an XSLT stylesheet
+    </description>
+    <name>transform</name>
+    <tag-class>org.apache.taglibs.standard.tag.rt.xml.TransformTag</tag-class>
+    <tei-class>org.apache.taglibs.standard.tei.XmlTransformTEI</tei-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+Name of the exported
+scoped variable for the
+transformed XML
+document. The type of the
+scoped variable is
+org.w3c.dom.Document.
+        </description>
+        <name>var</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Scope for var.
+        </description>
+        <name>scope</name>
+        <required>false</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Result
+Object that captures or
+processes the transformation
+result.
+        </description>
+        <name>result</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Deprecated. Use attribute
+'doc' instead.
+        </description>
+        <name>xml</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Source XML document to be
+transformed. (If exported by
+&lt;x:set&gt;, it must correspond
+to a well-formed XML
+document, not a partial
+document.)
+        </description>
+        <name>doc</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+Deprecated. Use attribute
+'docSystemId' instead.
+        </description>
+        <name>xmlSystemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+The system identifier (URI)
+for parsing the XML
+document.
+        </description>
+        <name>docSystemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+javax.xml.transform.Source
+Transformation stylesheet as
+a String, Reader, or
+Source object.
+        </description>
+	<name>xslt</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+    <attribute>
+        <description>
+The system identifier (URI)
+for parsing the XSLT
+stylesheet.
+        </description>
+	<name>xsltSystemId</name>
+        <required>false</required>
+        <rtexprvalue>true</rtexprvalue>
+    </attribute>
+  </tag>
+
+  <tag>
+    <description>
+        Subtag of &lt;choose&gt; that includes its body if its
+        expression evalutes to 'true'
+    </description>
+    <name>when</name>
+    <tag-class>org.apache.taglibs.standard.tag.common.xml.WhenTag</tag-class>
+    <body-content>JSP</body-content>
+    <attribute>
+        <description>
+The test condition that tells whether or
+not the body content should be
+processed
+        </description>
+        <name>select</name>
+        <required>true</required>
+        <rtexprvalue>false</rtexprvalue>
+    </attribute>
+  </tag>
+
+</taglib>

Added: roller/planet/core/trunk/lib/log4j-1.2.11.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/log4j-1.2.11.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/log4j-1.2.11.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-j2ee-connector_1.5_spec-1.0.1.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-j2ee-connector_1.5_spec-1.0.1.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-j2ee-connector_1.5_spec-1.0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-jpa_3.0_spec-1.0.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-jpa_3.0_spec-1.0.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-jpa_3.0_spec-1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-jta_1.0.1B_spec-1.0.1.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-jta_1.0.1B_spec-1.0.1.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/openjpa-0.9.7/geronimo-jta_1.0.1B_spec-1.0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/openjpa-0.9.7/openjpa-0.9.7-incubating.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/openjpa-0.9.7/openjpa-0.9.7-incubating.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/openjpa-0.9.7/openjpa-0.9.7-incubating.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/openjpa-0.9.7/serp-1.11.0.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/openjpa-0.9.7/serp-1.11.0.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/openjpa-0.9.7/serp-1.11.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/rome-0.9/jdom.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/rome-0.9/jdom.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/rome-0.9/jdom.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/rome-0.9/rome-0.9.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/rome-0.9/rome-0.9.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/rome-0.9/rome-0.9.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/rome-0.9/rome-fetcher-0.9.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/rome-0.9/rome-fetcher-0.9.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/rome-0.9/rome-fetcher-0.9.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/spring-1.2/acegi-security-1.0.3.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/spring-1.2/acegi-security-1.0.3.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/spring-1.2/acegi-security-1.0.3.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/spring-1.2/ehcache-1.1.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/spring-1.2/ehcache-1.1.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/spring-1.2/ehcache-1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/spring-1.2/spring.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/spring-1.2/spring.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/spring-1.2/spring.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/antlr-2.7.2.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/antlr-2.7.2.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/antlr-2.7.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-beanutils-1.6.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-beanutils-1.6.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-beanutils-1.6.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-chain-1.1.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-chain-1.1.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-chain-1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-fileupload-1.2.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-fileupload-1.2.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-fileupload-1.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-io-1.3.1.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-io-1.3.1.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-io-1.3.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-validator-1.3.0.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-validator-1.3.0.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/commons-validator-1.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/freemarker-2.3.8.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/freemarker-2.3.8.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/freemarker-2.3.8.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/ognl-2.6.11.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/ognl-2.6.11.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/ognl-2.6.11.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/oro-2.0.8.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/oro-2.0.8.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/oro-2.0.8.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-core-2.0.11.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-core-2.0.11.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-core-2.0.11.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-spring-plugin-2.0.11.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-spring-plugin-2.0.11.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-spring-plugin-2.0.11.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-tiles-plugin-2.0.11.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-tiles-plugin-2.0.11.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/struts2-tiles-plugin-2.0.11.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-api-2.0.4.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-api-2.0.4.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-api-2.0.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-core-2.0.4.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-core-2.0.4.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-core-2.0.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-jsp-2.0.4.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-jsp-2.0.4.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/tiles-jsp-2.0.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/xwork-2.0.4.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/struts-2.0.11.1/lib/xwork-2.0.4.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/struts-2.0.11.1/lib/xwork-2.0.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/lib/velocity-1.5.jar
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/lib/velocity-1.5.jar?rev=672574&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/planet/core/trunk/lib/velocity-1.5.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/planet/core/trunk/setup/scripts/planet-custom.properties
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/setup/scripts/planet-custom.properties?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/setup/scripts/planet-custom.properties (added)
+++ roller/planet/core/trunk/setup/scripts/planet-custom.properties Sat Jun 28 12:18:17 2008
@@ -0,0 +1,17 @@
+
+# configure database
+database.configurationType=jdbc
+database.jdbc.driverClass=com.mysql.jdbc.Driver
+
+# these things must be set appropriately for the environment
+#database.jdbc.connectionURL=jdbc:mysql://mydb.sun.com:3306/planet?useUnicode=true&amp;characterEncoding=utf-8
+#database.jdbc.username=planet_user
+#database.jdbc.password=planet_pw
+
+# JPA settings
+openjpa.DataCache=false
+openjpa.QueryCache=false
+openjpa.jdbc.DBDictionary=SupportsSubselect=true
+
+# Planet cache must exist and must be writable by Roller process
+cache.dir=/app/planets/planet_data/feed_cache

Added: roller/planet/core/trunk/setup/scripts/purgesubs.sh
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/setup/scripts/purgesubs.sh?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/setup/scripts/purgesubs.sh (added)
+++ roller/planet/core/trunk/setup/scripts/purgesubs.sh Sat Jun 28 12:18:17 2008
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+# -- ENSURE THESE ARE CORRECT ---
+
+JAVA_HOME=/app/planets/webserver7/jdk
+export JAVA_HOME
+
+# Directory of Roller context
+WEBAPP_DIR=/app/planets/webserver7/https-planets/web-app/planets/_default
+export WEBAPP_DIR
+
+# Directory of additional jars
+JARS_DIR=/app/planets/webserver7/lib
+export JARS_DIR
+
+# --- SHOULD NOT NEED TO EDIT BELOW THIS LINE ---
+
+# Hack: setting catalina.base=. allows us to save log in ./logs
+
+PLANET_JARS=""
+for jar in `ls $WEBAPP_DIR/WEB-INF/lib`; do
+  PLANET_JARS="${PLANET_JARS}:${WEBAPP_DIR}/WEB-INF/lib/${jar}"
+done
+
+for jar in `ls $JARS_DIR`; do
+  PLANET_JARS="${PLANET_JARS}:${JARS_DIR}/${jar}"
+done
+
+${JAVA_HOME}/bin/java \
+    -Dcatalina.base=. \
+    -cp ".:${WEBAPP_DIR}/WEB-INF/classes:${PLANET_JARS}" \
+    org.apache.roller.planet.tasks.PurgeUnusedSubscriptionsTask

Propchange: roller/planet/core/trunk/setup/scripts/purgesubs.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: roller/planet/core/trunk/setup/scripts/refreshplanet.sh
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/setup/scripts/refreshplanet.sh?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/setup/scripts/refreshplanet.sh (added)
+++ roller/planet/core/trunk/setup/scripts/refreshplanet.sh Sat Jun 28 12:18:17 2008
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+# -- ENSURE THESE ARE CORRECT ---
+
+JAVA_HOME=/app/planets/webserver7/jdk
+export JAVA_HOME
+
+# Directory of Roller context
+WEBAPP_DIR=/app/planets/webserver7/https-planets/web-app/planets/_default
+export WEBAPP_DIR
+
+# Directory of additional jars
+JARS_DIR=/app/planets/webserver7/lib
+export JARS_DIR
+
+# --- SHOULD NOT NEED TO EDIT BELOW THIS LINE ---
+
+# Hack: setting catalina.base=. allows us to save log in ./logs
+
+PLANET_JARS=""
+for jar in `ls $WEBAPP_DIR/WEB-INF/lib`; do
+  PLANET_JARS="${PLANET_JARS}:${WEBAPP_DIR}/WEB-INF/lib/${jar}"
+done
+
+for jar in `ls $JARS_DIR`; do
+  PLANET_JARS="${PLANET_JARS}:${JARS_DIR}/${jar}"
+done
+
+${JAVA_HOME}/bin/java \
+    -Dcatalina.base=. \
+    -cp ".:${WEBAPP_DIR}/WEB-INF/classes:${PLANET_JARS}" \
+    org.apache.roller.planet.tasks.RefreshPlanetTask

Propchange: roller/planet/core/trunk/setup/scripts/refreshplanet.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: roller/planet/core/trunk/setup/sql/0.4.0-create.sql
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/setup/sql/0.4.0-create.sql?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/setup/sql/0.4.0-create.sql (added)
+++ roller/planet/core/trunk/setup/sql/0.4.0-create.sql Sat Jun 28 12:18:17 2008
@@ -0,0 +1,109 @@
+
+
+-- Run this script to create the Roller Planet tables in your database.
+
+-- *****************************************************
+-- Create the tables and indices
+
+create table rag_properties (
+    name     varchar(255) not null primary key,
+    value    text
+);
+
+
+create table rag_user (
+    id              varchar(48) not null primary key,
+    username        varchar(255) not null,
+    passphrase      varchar(255) not null,
+    fullname        varchar(255) not null,
+    emailaddress    varchar(255) not null,
+    activationcode  varchar(48),
+    datecreated     datetime not null,
+    isenabled       tinyint(1) default 1 not null
+);
+alter table rag_user add constraint ru_username_uq unique ( username(40) );
+
+create table rag_userrole (
+    id               varchar(48) not null primary key,
+    rolename         varchar(255) not null,
+    username         varchar(255) not null,
+    user_id           varchar(48) not null
+);
+create index ur_userid_idx on rag_userrole( user_id );
+create index ur_username_idx on rag_userrole( username(40) );
+
+-- User permissions within a planet
+-- permission_mask: bitmask 000 limited, 001 author, 011 admin
+-- pending: pending user acceptance of invitation to join planet
+create table rag_user_permissions (
+    id              varchar(48) not null primary key,
+    planet_id      varchar(48) not null,
+    user_id         varchar(48) not null,
+    permission_mask integer not null, 
+    pending         tinyint(1) default 1 not null
+);
+
+
+create table rag_planet (
+    id              varchar(48) not null primary key,
+    handle          varchar(32) not null,
+    title           varchar(255) not null,
+    description     varchar(255)
+);
+alter table rag_planet add constraint ragp_handle_uq unique ( handle );
+
+
+create table rag_group (
+    id               varchar(48) not null primary key,
+    planet_id        varchar(48) not null,
+    handle           varchar(32) not null,
+    title            varchar(255) not null,
+    description      varchar(255),
+    max_page_entries integer default 30,
+    max_feed_entries integer default 30,
+    cat_restriction  text,
+    group_page       varchar(255)
+);
+alter table rag_group add constraint ragg_handle_uq unique ( planet_id, handle );
+
+
+create table rag_subscription (
+    id               varchar(48) not null primary key,
+    title            varchar(255) not null,
+    feed_url         varchar(255) not null,
+    site_url         varchar(255),
+    author           varchar(255),
+    last_updated     datetime,
+    inbound_links    integer default -1,
+    inbound_blogs    integer default -1
+);
+alter table rag_subscription add constraint rags_feed_url_uq unique ( feed_url(100) );
+
+
+create table rag_group_subscription (
+    group_id         varchar(48) not null,
+    subscription_id  varchar(48) not null
+);
+create index raggs_gid_idx on rag_group_subscription(group_id); 
+create index raggs_sid_idx on rag_group_subscription(subscription_id); 
+
+
+create table rag_entry (
+    id               varchar(48) not null primary key,
+    subscription_id  varchar(48) not null,
+    handle           varchar(255),
+    title            varchar(255),
+    guid             varchar(255),
+    permalink        text not null,
+    author           varchar(255),
+    content          text,
+    categories       text,
+    published        datetime not null,
+    updated          datetime    
+);
+create index rage_sid_idx on rag_entry(subscription_id); 
+
+
+-- *****************************************************
+-- Now add the foreign key relationships
+

Added: roller/planet/core/trunk/setup/sql/0.4.4-to-0.4.5.sql
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/setup/sql/0.4.4-to-0.4.5.sql?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/setup/sql/0.4.4-to-0.4.5.sql (added)
+++ roller/planet/core/trunk/setup/sql/0.4.4-to-0.4.5.sql Sat Jun 28 12:18:17 2008
@@ -0,0 +1,6 @@
+
+-- add a column for tracking subscription error counts
+alter table rag_subscription add column error_count int(2) NOT NULL default 0;
+
+-- add a column for tracking subscription error messages
+alter table rag_subscription add column error_message varchar(128) default NULL;

Added: roller/planet/core/trunk/setup/sql/droptables.sql
URL: http://svn.apache.org/viewvc/roller/planet/core/trunk/setup/sql/droptables.sql?rev=672574&view=auto
==============================================================================
--- roller/planet/core/trunk/setup/sql/droptables.sql (added)
+++ roller/planet/core/trunk/setup/sql/droptables.sql Sat Jun 28 12:18:17 2008
@@ -0,0 +1,25 @@
+-- Licensed to the Apache Software Foundation (ASF) under one or more
+--  contributor license agreements.  The ASF licenses this file to You
+-- 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.  For additional information regarding
+-- copyright in this work, please see the NOTICE file in the top level
+-- directory of this distribution.
+
+drop table rag_entry;
+drop table rag_group_subscription;
+drop table rag_subscription;
+drop table rag_group;
+drop table rag_planet;
+drop table rag_user_permissions;
+drop table rag_userrole;
+drop table rag_user;
+drop table rag_properties;