Author: kkolinko Date: Mon Dec 30 11:42:01 2013 New Revision: 4012 Log: Add binaries (copied from the Maven staging site). Add READMEs and NOTICE.
Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/NOTICE (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/README_bin.txt (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/README_src.txt (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.sha1 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar (with props) dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.asc dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.md5 dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.sha1 Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/NOTICE ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/NOTICE (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/NOTICE Mon Dec 30 11:42:01 2013 @@ -0,0 +1,5 @@ +Apache Standard Taglib +Copyright 2001-2013 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/NOTICE ------------------------------------------------------------------------------ svn:eol-style = native Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/README_bin.txt ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/README_bin.txt (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/README_bin.txt Mon Dec 30 11:42:01 2013 @@ -0,0 +1,104 @@ +--------------------------------------------------------------------------- +Apache Standard Tag Library 1.2.1 -- 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.1.jar + - taglibs-standard-impl-1.2.1.jar + - taglibs-standard-jstlel-1.2.1.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.1</version> + </dependency> + <dependency> + <groupId>org.apache.taglibs</groupId> + <artifactId>taglibs-standard-impl</artifactId> + <version>1.2.1</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 under Tomcat 7.0.47 +and should work in any compliant JSP 2.1 (or later) container. + +--------------------------------------------------------------------------- +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! + Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/README_bin.txt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/README_bin.txt ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/README_src.txt ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/README_src.txt (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/README_src.txt Mon Dec 30 11:42:01 2013 @@ -0,0 +1,59 @@ +--------------------------------------------------------------------------- +Apache Standard Tag Library 1.2.1 -- 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). Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/README_src.txt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/README_src.txt ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.asc Mon Dec 30 11:42:01 2013 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2.0.20 (Darwin) +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJShDnuAAoJEKVK0I6noCM8INkH/0JKiz41Od/lGScLFVOkPwjm +vr2nhbu24WA68Hm+EmATrChobuQ8RbO7XzTkueK1D4xuae6zLe2fqaSQgiZAKdAK +9Mqas9X5jMumkzMz7iad04wy2x2WTdAlGyYAZZ3rMiQ4LBkoLe4ijgdq1W4Z+a3w +0c4TUXEfAHJQ1mzJt9Gq7yFeXiDZwqoXYzsOy+I+q3mohjiYkwBh2McX/0idybX5 +7RuLzSRQBLuI8PwtInVQo2cq3sYOEpWb6IxVEMZQi1vAH9tm3aeUQZjCE+cGW3q8 +7G6qKI9cRg617F77q+4B1xSrC51ivMEas6/c5I7J3JlD6IHiDoqiwYnp2RD8OuY= +=JFd9 +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.md5 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +73954cec72fc1bdf15b9628e0c9d0344 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-compat-1.2.1.jar.sha1 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +f0363444e0b58329a28df6a084d1b78ee73e6ef5 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.asc Mon Dec 30 11:42:01 2013 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2.0.20 (Darwin) +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJShDnoAAoJEKVK0I6noCM8S1AIAMBcioqDdBnSieSIh98iDgIt +wiO28LkFM9TQ0V7jJYsTjE71F6Lynoo9gkjY/pCRhSCxF+a8+yh+DApwSbf5wILJ +dYafgosYD/2033IJLGDwSdmdwo5zPV8rHcCaxTkjuXndOJWrOuLDv+6k9GTERrT8 +4Cn5meuzZ/n+y+VpcYMuu7UjWY4YaxySFPEWSroY6qGWQsTqynoN/aYVv7/r0xmr +uk9BPIvNqejiD0X74ct/75JPjpBJfD2/Hz0eTrSPAfVTsHGvQEbm8RGurJ8A1CXa +dVhXMUYy9TaFw3iTOy63kxmfZwjRcUc7a0PQgY6WEgG3plLl8WhRIPv3yJRHxH4= +=8lMI +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.md5 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +b268ae1e23396aaa1d4b319124745ca5 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-impl-1.2.1.jar.sha1 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +707591cd2ac6cc1b6beff4c0439873e03fa3a6b0 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.asc Mon Dec 30 11:42:01 2013 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2.0.20 (Darwin) +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJShDn4AAoJEKVK0I6noCM8lYUH/jcpVrV+2tR4GNK54Pu14w03 +uGzT0dj6dc6sZJd1Ml9vrl7VjICc6t4sVqPSz0ahx4hy/oSQatk/b1Bqp4gsFxAr +vFxBAphHQ0c0Ai1vNEuSfcCdnV6PVwsoYYk79+CbrTlI+l2RzByiOfZENIRaHHtO +wHKCGEdN++DCN6hChad6zhUYuE+uftpqA0ppF5wXbBPF+xcsusSdZpYLZECNNi2z +LC7e3PRf3Iza5OmjCQV3nOffEjKiUxJEbSXra1P3n/uJJjYGY0ey7UWlXMsE8C2K +AGGWvbQIwisbrUopnJW+GjLJdQRadM/TqLeDPL9LAeuMXsUzHCFfjqB7zmPuo50= +=Z/hi +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.md5 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +fed036e3c8d9ec7a5675b6cfccbe2f08 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-jstlel-1.2.1.jar.sha1 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +7eb464b709e354ca9394e18fd32511c51c6687f6 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar ============================================================================== Binary file - no diff available. Propchange: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.asc ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.asc (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.asc Mon Dec 30 11:42:01 2013 @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG/MacGPG2 v2.0.20 (Darwin) +Comment: GPGTools - https://gpgtools.org + +iQEcBAABCgAGBQJShDndAAoJEKVK0I6noCM87E8IAMH/omhily4nvzSub4uNCsIT +W+4P2Gl3UrbHaIfJfvQPv0If+O/NrunGabO8LDRG0fhYhjHKDRnaaF1gCXI6F/lH ++7zn9bGb1W8pDDS5gXJJl0UpVA+a2q2CXV9NrqXZp3pMyeh7G2Gn12PBtcAmhFgo +KG+UGOe5iBm+12JUvD6PhejQdzByo3v7YzmtnQOfj3Mf3jUlNzVu9YOEMtv+0sdj +8j+hbB9nxJutHC7CW9bhQXw5fxnMGO/LywoRug45Z4YaqIDs07QGzaHrMgb4qO1m +wHBg4eJhbLWAPtjSYQrqE0Vaab2t0C6+GlRA6u5QHVzLg0WzA9Efqvv71PqKFXY= +=i7Za +-----END PGP SIGNATURE----- Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.md5 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.md5 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.md5 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +5948855e1b1a8048907ce84a6cb17de8 \ No newline at end of file Added: dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.sha1 ============================================================================== --- dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.sha1 (added) +++ dev/tomcat/taglibs/taglibs-standard-1.2.1/taglibs-standard-spec-1.2.1.jar.sha1 Mon Dec 30 11:42:01 2013 @@ -0,0 +1 @@ +32aa0d038dd1e3a4c4e8ecc3c14733c6f54bef3b \ 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