Author: jboynes Date: Wed Feb 11 04:37:27 2015 New Revision: 7986 Log: Stage files for taglibs 1.2.3 release vote
Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/ dev/tomcat/taglibs/taglibs-standard-1.2.3/NOTICE dev/tomcat/taglibs/taglibs-standard-1.2.3/README_bin.txt dev/tomcat/taglibs/taglibs-standard-1.2.3/README_src.txt dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip (with props) dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.asc dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.md5 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.sha1 Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/NOTICE ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/NOTICE (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/NOTICE Wed Feb 11 04:37:27 2015 @@ -0,0 +1,5 @@ +Apache Standard Taglib +Copyright 2001-2015 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/README_bin.txt ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/README_bin.txt (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/README_bin.txt Wed Feb 11 04:37:27 2015 @@ -0,0 +1,111 @@ +--------------------------------------------------------------------------- +Apache Standard Tag Library 1.2.3 -- BINARY DISTRIBUTION +--------------------------------------------------------------------------- +Thanks for downloading this release of the Standard tag library, +an implementation of the JavaServer Pages(tm)(JSP) +Standard Tag Library (JSTL). + +This code is licensed to you by the Apache Software Foundation and its +contributors under the terms of the Apache License V2.0; +please see the included NOTICE and LICENSE files for details. + +JSTL is an effort of the Java Community Process (JCP) and +comes out of the JSR-052 expert group. For more information on JSTL, +please go to http://jcp.org/en/jsr/detail?id=52 . + +--------------------------------------------------------------------------- +LIBRARY DEPENDENCIES + +This version of the Standard Tag Library has the following runtime +dependencies: + + 1. Dependencies provided by a JSP 2.1 container: + - Java 1.5 or later + - Servlet 2.5 or later + - JSP 2.1 or later + + 2. Additional dependencies + - The XML tag library requires Apache Xalan 2.7.1 or later + +--- +Apache Xalan 2.7.1 + +To address performance issues with XSLT processing, this version relies on +implementation specific functionality from Apache Xalan. The following +libraries should be included in the classpath for your application: + - xalan-2.7.1.jar + - serializer-2.7.1.jar + +--------------------------------------------------------------------------- +ADD DEPENDENCIES TO A WEB APPLICATION + +To use this distribution with your own web applications, add the following JAR +files to the '/WEB-INF/lib' directory of your application: + - taglibs-standard-spec-1.2.3.jar + - taglibs-standard-impl-1.2.3.jar + - taglibs-standard-jstlel-1.2.3.jar + - xalan-2.7.1.jar + - serializer-2.7.1.jar + +If you do not use JSTL 1.0 tags then the "taglibs-standard-jstlel" JAR may be +omitted. If you do not use the XML library, then the Apache Xalan dependencies +may also be omitted. + +If you build you application with Maven, add the following dependencies to +your pom.xml file: + + <dependency> + <groupId>org.apache.taglibs</groupId> + <artifactId>taglibs-standard-spec</artifactId> + <version>1.2.3</version> + </dependency> + <dependency> + <groupId>org.apache.taglibs</groupId> + <artifactId>taglibs-standard-impl</artifactId> + <version>1.2.3</version> + </dependency> + +--------------------------------------------------------------------------- +USING JSTL TAGS FROM A JSP + +The JSTL tag library can be imported into your pages with the following directives: + + CORE LIBRARY + <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + + XML LIBRARY + <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %> + + FMT LIBRARY + <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> + + SQL LIBRARY + <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %> + + FUNCTIONS LIBRARY + <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + +--------------------------------------------------------------------------- +COMPATIBILITY + +The 1.2 version of the Standard Taglib has been tested using Tomcat 7.0.57 +and should work in any compliant JSP 2.1 (or later) container. + +In version 1.2.3 and later, the XML libraries enable FEATURE_SECURE_PROCESSING +when parsing and transforming. A new system property + org.apache.taglibs.standard.xml.accessExternalEntity +can be used to further restrict the protocols over which external entities can +be resolved. When a SecurityManager is enabled this will, by default, allow +access to no protocols. + +--------------------------------------------------------------------------- +COMMENTS AND QUESTIONS + +Please join the taglibs-u...@tomcat.apache.org mailing list if you have +general usage questions about Apache Taglibs. + +Comments about the JSTL specification itself should be sent to +jsr-52-comme...@jcp.org. + +Enjoy! + Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/README_src.txt ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/README_src.txt (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/README_src.txt Wed Feb 11 04:37:27 2015 @@ -0,0 +1,59 @@ +--------------------------------------------------------------------------- +Apache Standard Tag Library 1.2.3 -- SOURCE DISTRIBUTION +--------------------------------------------------------------------------- +Thanks for downloading the source code for the Apache Software Foundation's +implementation of the JavaServer Pages(tm)(JSP) Standard Tag Library (JSTL) +specification. This code is licensed to you by the Apache Software +Foundation and its contributors under the terms of the Apache License V2.0; +please see the included NOTICE and LICENSE files for details. + +--------------------------------------------------------------------------- +BUILD ENVIRONMENT SETUP + +For the 1.2 release, the project migrated to the Apache Maven build system. +Download and install version 3.0 or higher from http://maven.apache.org + +The build requires a Java Development Kit Version 5 or higher. + +--------------------------------------------------------------------------- +BUILDING + +From the 'standard' directory, the entire project can be built with the +normal Maven goals: + + $ mvn install <-- builds all targets and installs in local repository + $ mvn clean <-- removes all build artifacts + +A typical build will use the 'install' goal that compiles all classes, runs +all the unit tests, creates the target bundles, and installs them in the +local Maven repository. + +All library dependencies will be downloaded from the central Maven +repositories. You should be online when building. + +Information about the project can be found in the 'pom.xml' project +descriptor. + +For information about performing a release at Apache, please refer to +"Publishing Maven Artifacts" at http://www.apache.org/dev/publishing-maven-artifacts.html +To rebuild the released artifacts locally from this source distribution +or from a SVN tag, run: + $ mvn -Papache-release install + +--------------------------------------------------------------------------- +PROJECT MODULES + +There are three primary sub-modules: + + spec <-- contains Apache's implementation of the API classes + impl <-- contains the implementation of tags from the 1.1 + namespace http://java.sun.com/jsp/jstl/* + jstlel <-- contains the implementation of tags from the 1.0 + namespace http://java.sun.com/jstl/* and uses the + original JSTL 1.0 version of EL + +In addition, the following modules provide supporting functionality + build-tools <-- build support such as checkstyle rules + compat <-- contains the implementation of tags from the 1.0 + namespace but uses the JSP container's implementation + of EL (which will be 2.1 or later). Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.asc Wed Feb 11 04:37:27 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU2tf7AAoJEKVK0I6noCM8daYH/0A2N606JrfoLgSd+qP4Mf1H +RDmWFlIBi9A70xQJcyLmdwGgNYErg1cBC+cb8+zMB+Yvrkkm4I2KSkaqFdZQYcr/ +v4HhGTVUyqbYBWc4sET4kZHRYnAyhJC8AUwdMy13VRTqVK208yS3SZ4Wl2P/7Lrf +1mVpQUyDyJX0+78Rt8R+lTxhXntWj+AcZrf4WSTagfocJigByZ8bO9t4iM6z9uJV +I/isWfG7ODoPApmQPJSR9cSS21E+8KJ3oZ/W6KPNjJCv5fF/uW07BzOxwGkIUFMs +3cnlPWB6Xsy44jCFzM/7qLViEBD+K8pzErdkJ8mogg8l2IR2U4KZNS3GTAvXGAQ= +=I6mW +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.md5 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +7ea5c1b33eabce83e31235412b7db2cd \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-1.2.3-source-release.zip.sha1 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +675959105d43f3a0c6b6ed3a8d9514d65d3f52f5 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.asc Wed Feb 11 04:37:27 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU2tgYAAoJEKVK0I6noCM8UhkH/iFrft0zgLIVq+vDGIKrSLxC +LdZu9uvtNXIJplV6kYU097rLKf1eFPJut/j6F+IsOFQP+jwyogoZIWBWraPuQZVA +gV8+RsumYqIzgxVJgMMS6zSn4AzghdcESkFKZc53G9BRCOsrmgjz00/kfAz6X3iC +UC5Rjq9bDsikIbxvBMDF4/Af1RzheX2hWRW8LOVfn4pW12klREae13+dxTmNFPCr +nOoKCAzr8K3nA7ukubXuu891l53Ltttd4WcLrZm0kcE50PLP538WdVi4lFgOksny +7Ky+ugvFNFO3W0sfJzgnC81wuBYumz32W3t5TROB89XbblSLvV5W2Maka0h9vRA= +=kSiD +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.md5 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +b4fb08ab01ad6fa51754a9b75e9e9463 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-compat-1.2.3.jar.sha1 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +67f645af816ae7a9d2084c0f82d9744103e7f414 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.asc Wed Feb 11 04:37:27 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU2tgNAAoJEKVK0I6noCM8OQEH/jkUC/uGKvx1aT4TV1u/Ri/Y +5pZLfoiSUndlmAmwzBgLQnLkakIFTILGH86+QsuTL590ltpyxAp80Az7Y5J10C1u +Vfc/D2Ed7SuhFnTt1ROYpWeGlBqhi8KEHq5VF2z1Jsko4NjsHbFhMFvlKjVHX8Nd +5CDsmzCHvTqXLM5DGm6ChTaDUb5gTRsXWNpMKoNGqQr5uUHEm3sq8FwGDqoxz5k6 +vxpH4fOTqfrvlWVW5smL2Rz4i1vEwPI4UQzFaBzwzGE1U4rf/cUWpSmMKG6r3jTr +sdQWyar22V476J8x0J18jS+asFWnfvIF2XB6+qlTlS6Zo98voNmZpQwshhW1caU= +=Y/Uy +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.md5 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +dbe55531555634e796a1be24d1c68cbc \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-impl-1.2.3.jar.sha1 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +f6776a154d585df15f6b9991dddc3a91accdcfe7 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.asc Wed Feb 11 04:37:27 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU2tggAAoJEKVK0I6noCM8GDIH/17BznqPM9euVcBmE6nvL+RH +KL/PDulN2bsPOpAsQXi9zHU10GkArzVvezIxOU04YhFB5BDtkRdVldFFvUAtRJmU +b3wUM4LPKxm6iVVe4HA2PcCbM7aCnJppM5/tMNUIdUP5i9SKoL1V40xPE+xcHM6D +97AgQ5/gBjfKnxJfb6dC7d1czWZK9WntdCCh3wrHMvSuGYLRXPhCJxWpps6L0YsH +4haiPzqZWfhuRrcEDLX8ipGP6tVkoo0KeBQHSSPhv+y7nBYUEtTleCTKWAZnj8sK +eKvlOnEeQOQ3SFZlJK/xdxOkcSSmPBQpTHuvW5pg7iOTDg9JM1TzYaczXAl6fes= +=tWlg +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.md5 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +ef6b43bad7f19c17fc4b63f9f658cc71 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-jstlel-1.2.3.jar.sha1 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +97e9e8e369e3ed8bb00659c8231bbd4fe7c6b1df \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.asc Wed Feb 11 04:37:27 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU2tgEAAoJEKVK0I6noCM8Xz8IAIJ/4Wi/UnSpcHOCvo88dxOv +sXlLDKw0qHYXFnsceu3t33yzInvD1Dc1vqmylnkRYhVZALuYoPLeH7HsY9tgIdOP +lZkIzbwZK4ZK/NqH5i1fg64UBAtiDFqkKcTDeV8zveqVFkSqdyHUKl8Of0eAUK6s +nMagzL7s3+ZYyy9r7h+mu/nBsrouf3guInG4j12DEdDyJ7I+R3rjcaaGhmw5v83L +fdsQ4gPHAOuz+KMyagAfRIn0aaqBaZwvjcVRG9V9S0Ta5EPQ7oDMYlF7CLvAgUEy +FGoHem/QQ7XKlbdsHpTKbw4cyj9FzAhE9fH+Cp1NAJTt6ZBNkKTZp6g60eTyTp0= +=9YZW +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.md5 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +494ec12c0cc162d8854b4d27af5f6f02 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.3/taglibs-standard-spec-1.2.3.jar.sha1 Wed Feb 11 04:37:27 2015 @@ -0,0 +1 @@ +ff33ea73b1f42466ead23791ae453fb10095837c \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org