Author: jboynes Date: Tue Mar 10 16:18:00 2015 New Revision: 8242 Log: Stage Apache Standard Taglib 1.2.5 files for voting
Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/ dev/tomcat/taglibs/taglbs-standard-1.2.5/NOTICE dev/tomcat/taglibs/taglbs-standard-1.2.5/README_bin.txt dev/tomcat/taglibs/taglbs-standard-1.2.5/README_src.txt dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip (with props) dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.asc dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.md5 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.sha1 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar (with props) dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.asc dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.md5 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.sha1 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar (with props) dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.asc dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.md5 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.sha1 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar (with props) dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.asc dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.md5 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.sha1 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar (with props) dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.asc dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.md5 dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.sha1 Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/NOTICE ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/NOTICE (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/NOTICE Tue Mar 10 16:18:00 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/taglbs-standard-1.2.5/README_bin.txt ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/README_bin.txt (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/README_bin.txt Tue Mar 10 16:18:00 2015 @@ -0,0 +1,116 @@ +--------------------------------------------------------------------------- +Apache Standard Tag Library 1.2.5 -- 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.5.jar + - taglibs-standard-impl-1.2.5.jar + - taglibs-standard-jstlel-1.2.5.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.5</version> + </dependency> + <dependency> + <groupId>org.apache.taglibs</groupId> + <artifactId>taglibs-standard-impl</artifactId> + <version>1.2.5</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. The 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. Permission must be granted to the taglibs-standard-impl +library to read this property. + + permission java.util.PropertyPermission "org.apache.taglibs.standard.xml.accessExternalEntity", "read"; + +--------------------------------------------------------------------------- +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/taglbs-standard-1.2.5/README_src.txt ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/README_src.txt (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/README_src.txt Tue Mar 10 16:18:00 2015 @@ -0,0 +1,59 @@ +--------------------------------------------------------------------------- +Apache Standard Tag Library 1.2.5 -- 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/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.asc ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.asc (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.asc Tue Mar 10 16:18:00 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU/xejAAoJEKVK0I6noCM8dr4H/R3WKpJNJhReLmwG3oe595uY +1CXOlrRUPgjr1CbOY9/NImpnjrqMcMEAeBhR5QcNwLPRcOCc+3+dYIYYwm/Vt/rJ +QU5bSV7dxT3zjxJVOj2JamV2n5JMS+i+F7TCKZN48YC1cVelKkv4B5+RXfVjpFwv +CXjQ9LTpSRyth9Qi9Geu14S7W6nWDWvd76xvBW9e6FL7bvI7I95pWAd8uTXrEnGI +tjbXqTqoULcDr73iiXgIrte+wb5uP0Nd1hBZ65EU9tj0wiVFomcL331Tpn3+L4tH +/672BDvEsGznnoJbiFsLve5/fkHvU2+S6DNFo8V4Umjvcu5z0jZluaNVA3USIqA= +=eaPg +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.md5 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.md5 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.md5 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +97c720452907fb1133a2419e73aa9f10 \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.sha1 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.sha1 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-1.2.5-source-release.zip.sha1 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +d1cd43dcc9241f788de0a048afc3d0324b723300 \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.asc (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.asc Tue Mar 10 16:18:00 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU/xe6AAoJEKVK0I6noCM8vOsH/imeYUb50Go838RngqDSx5w/ +iPF2lE0A7oNpzM67PN2MZBTXNyCKEXtxOhxJrJxjgT186/0RrVhrojVCgFw8Wax4 +6BCROA9mGf+TWFWKynKOwM9/lCWfYTzFd1mHChCo45D/FabzMDSxBO/wL4UdXYOm +waBW/LAQ2oADvn8DhKPZ1x2NdeWXV8B876G9/t8ldSHOZcLlsedA8zoDesZ2+TNK +S8yTh6ayn/1fKRErdWU5T4xP2arWWhzterWOX34skfqwTzVyFJ471xfR9BATVeCm +Mbtk5ABLPsN7YwTABROsRXvQSoROxTpwQcXt1JDdtePsSp2K4M+DWtSXMLYzqv8= +=6tD9 +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.md5 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.md5 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +ba0c4631fbd9fbaec7c20c96ea52665c \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.sha1 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-compat-1.2.5.jar.sha1 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +fac163f57f6569dfb479896918fa84fb5f3fe81e \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.asc (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.asc Tue Mar 10 16:18:00 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU/xe0AAoJEKVK0I6noCM8hzgH+QE3Vaj2GF79Py6EGhnd4EUT +FZQWdJ5NikYi7GbUB7VD4wXfVPmeYVdAk0b+zf0zPBdiyOSVzNg5fAG/32esFqfT +WhFLIQsclt3q9DIkjZxUk2q5IFS8rFGa4tiSyKvhcbfgl6WCGgMSYWLbKQk21mV4 +ExeNICbiwk6lVEmqmUDfkDthMCxFmUYoxLvWu72b9vKJMaa4mz1a36c46HLbj6Yp +61DfRGBtxlhjonZRLvaAHTufzH+HTOwR2E6k1+cmZucHWOQ3XU2ynoxX9J3rfRsf +2UQCQoP3Mgl1AjQBeNEBOKl2sYsYDwB8vFV7+WG3zz2kfmRURbIHN+4nA+R/wDk= +=EU+t +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.md5 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.md5 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +8e5c8db242fbef3db1acfcbb3bc8ec8b \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.sha1 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-impl-1.2.5.jar.sha1 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +9b9783ccb2a323383e6e20e36d368f8997b71967 \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.asc (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.asc Tue Mar 10 16:18:00 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU/xfCAAoJEKVK0I6noCM8vNcH/0NrtzYjRzXnGN2UbsSYWz47 +kU5ws/hMqQ+IsZNT9Vik2Mijk3LfF2oljrjukls8sfuraltyleswC+oAJV9T4aYU +Jk2RymjRuwTRLrNtMqgdWioErqIv0M5I1h0C6XDTLYglmLvfFhkLRLKZd+WWeSRN +Z10D2q5qCjIMB7RxLRds/d/O2Fbp9+Lw7CKHd4hyEddnJooLpj/rTcX3psRsMnwE +Ls6K1hZmuPi1qtTM/5d9k7+4J/Ra/JdDPxTSPp81rQEJnsIqTXhKsTjziH2Opd/l +j5Ho1HiEsQjruoWgffCSPEll+f/Au0Pc1/CKOQcor9NQLaSkTb/sLR5N3/vtDbY= +=8T8F +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.md5 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.md5 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +fc22dca932afe1407c61c5c02e3b0093 \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.sha1 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-jstlel-1.2.5.jar.sha1 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +7acb4b1a404d8016caf89fddcbe84791c4bc2ba0 \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.asc (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.asc Tue Mar 10 16:18:00 2015 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2 +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJU/xesAAoJEKVK0I6noCM86HwH/0pgEC/7YX5W+qo5pYaGplzc +tVZYdxFOVza9qmV56C6QCfm5pQDxij9vqBszkxx67fd3h89ochp9x4GCFBuWyB8e +dkbM03ykxr6XxAeo8sPrROXmXh3XBg9vLexOFpBMhXOdDMy6/tAqPdmBLOT4HLvx +BhGss6xEOYXHq3Ij+mvMG23i5copnu1K8Ctl9r3WZyfnvgBSV0iwykoyi5DxhoDD +NOLM3MjDRiua1mUexbvq6OGhHYvDv+MT4a8YOvVWGUr+lZ7edidRm5Lsbs5lk7h/ +Tja4aUSPcDZNATNjav32tLcFxG9Au8JKBw4e8fmFl55je1gmxdU9GsSPd1iw5Pk= +=7xQn +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.md5 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.md5 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +671c434560d04e8f06aac02a413d11e4 \ No newline at end of file Added: dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.sha1 (added) +++ dev/tomcat/taglibs/taglbs-standard-1.2.5/taglibs-standard-spec-1.2.5.jar.sha1 Tue Mar 10 16:18:00 2015 @@ -0,0 +1 @@ +c3bb98c30f75fef1e229d1d03cf8457de22f1ba0 \ 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