rjack-jetty-jsp 6.1.26.2.1.0-java → 7.2.2.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.rdoc +4 -0
- data/Manifest.txt +3 -5
- data/README.rdoc +8 -31
- data/Rakefile +2 -2
- data/assembly.xml +1 -2
- data/lib/rjack-jetty-jsp/base.rb +4 -4
- data/lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar +0 -0
- data/lib/rjack-jetty-jsp/{jsp-2.1-glassfish-2.1.v20091210.jar → jsp-2.1-glassfish-2.1.v20100127.jar} +0 -0
- data/lib/rjack-jetty-jsp/{jsp-api-2.1-glassfish-2.1.v20091210.jar → jsp-api-2.1-glassfish-2.1.v20100127.jar} +0 -0
- data/pom.xml +13 -2
- data/webapps/test.war +0 -0
- metadata +10 -14
- data/lib/rjack-jetty-jsp/ant-1.6.5.jar +0 -0
- data/lib/rjack-jetty-jsp/core-3.1.1.jar +0 -0
- data/lib/rjack-jetty-jsp/jsp-2.1-jetty-6.1.26.jar +0 -0
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
|
@@ -10,9 +10,7 @@ test/test_jsp.rb
|
|
|
10
10
|
webapps/test/index.jsp
|
|
11
11
|
webapps/test/WEB-INF/web.xml
|
|
12
12
|
webapps/test.war
|
|
13
|
-
lib/rjack-jetty-jsp/ant-1.6.5.jar
|
|
14
|
-
lib/rjack-jetty-jsp/core-3.1.1.jar
|
|
15
13
|
lib/rjack-jetty-jsp/ecj-3.5.1.jar
|
|
16
|
-
lib/rjack-jetty-jsp/jsp-2.1-
|
|
17
|
-
lib/rjack-jetty-jsp/jsp-2.1-
|
|
18
|
-
lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.
|
|
14
|
+
lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar
|
|
15
|
+
lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20100127.jar
|
|
16
|
+
lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20100127.jar
|
data/README.rdoc
CHANGED
|
@@ -29,43 +29,20 @@ permissions and limitations under the License.
|
|
|
29
29
|
|
|
30
30
|
=== Jetty Web Container (Java)
|
|
31
31
|
|
|
32
|
-
Copyright (c) 1995-
|
|
33
|
-
|
|
34
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
35
|
-
you may not use this file except in compliance with the License.
|
|
36
|
-
You may obtain a copy of the License at
|
|
37
|
-
|
|
38
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
39
|
-
|
|
40
|
-
Unless required by applicable law or agreed to in writing, software
|
|
41
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
42
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
43
|
-
See the License for the specific language governing permissions and
|
|
44
|
-
limitations under the License.
|
|
32
|
+
Copyright (c) 1995-2009 Mort Bay Consulting Pty Ltd
|
|
45
33
|
|
|
46
34
|
The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd
|
|
47
|
-
unless otherwise noted. It is licensed under the apache 2.0
|
|
48
|
-
license.
|
|
35
|
+
unless otherwise noted. It is dual licensed under the apache 2.0
|
|
36
|
+
license and eclipse 1.0 license. Jetty may be distributed under
|
|
37
|
+
either license.
|
|
49
38
|
|
|
50
|
-
The javax.servlet package used
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
You can obtain a copy of the license at
|
|
54
|
-
https://glassfish.dev.java.net/public/CDDLv1.0.html.
|
|
39
|
+
The javax.servlet package used was sourced from the Apache
|
|
40
|
+
Software Foundation and is distributed under the apache 2.0
|
|
41
|
+
license.
|
|
55
42
|
|
|
56
|
-
The UnixCrypt.java code
|
|
43
|
+
The UnixCrypt.java code implements the one way cryptography used by
|
|
57
44
|
Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
|
|
58
45
|
modified April 2001 by Iris Van den Broeke, Daniel Deville.
|
|
59
46
|
Permission to use, copy, modify and distribute UnixCrypt
|
|
60
47
|
for non-commercial or commercial purposes and without fee is
|
|
61
48
|
granted provided that the copyright notice appears in all copies.
|
|
62
|
-
|
|
63
|
-
The default JSP implementation is provided by the Glassfish JSP engine
|
|
64
|
-
from project Glassfish http://glassfish.dev.java.net. Copyright 2005
|
|
65
|
-
Sun Microsystems, Inc. and portions Copyright Apache Software Foundation.
|
|
66
|
-
|
|
67
|
-
Some portions of the code are Copyright:
|
|
68
|
-
2006 Tim Vernum
|
|
69
|
-
1999 Jason Gilbert.
|
|
70
|
-
|
|
71
|
-
The jboss integration module contains some LGPL code.
|
data/Rakefile
CHANGED
|
@@ -31,8 +31,8 @@ t.generated_files = 'webapps/test.war'
|
|
|
31
31
|
t.assembly_version = 1.0
|
|
32
32
|
|
|
33
33
|
task :check_pom_deps do
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
v = "#{ Jetty::Jsp::JETTY_VERSION }.#{ Jetty::Jsp::JETTY_BUILD }"
|
|
35
|
+
t.test_line_match( 'pom.xml', %r{<version>#{ v }</version>} )
|
|
36
36
|
end
|
|
37
37
|
task :check_history_version do
|
|
38
38
|
t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
|
data/assembly.xml
CHANGED
|
@@ -7,12 +7,11 @@
|
|
|
7
7
|
<dependencySets>
|
|
8
8
|
<dependencySet>
|
|
9
9
|
<includes>
|
|
10
|
-
<include>org.
|
|
10
|
+
<include>org.eclipse.jetty:jetty-jsp-2.1</include>
|
|
11
11
|
<include>org.mortbay.jetty:jsp-api-2.1-glassfish</include>
|
|
12
12
|
<include>org.mortbay.jetty:jsp-2.1-glassfish</include>
|
|
13
13
|
<include>org.eclipse.jdt:core</include>
|
|
14
14
|
<include>org.eclipse.jdt.core.compiler:ecj</include>
|
|
15
|
-
<include>ant:ant</include>
|
|
16
15
|
</includes>
|
|
17
16
|
</dependencySet>
|
|
18
17
|
</dependencySets>
|
data/lib/rjack-jetty-jsp/base.rb
CHANGED
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
module RJack
|
|
18
18
|
module Jetty
|
|
19
19
|
module Jsp
|
|
20
|
-
JETTY_VERSION = '
|
|
21
|
-
JSP_VERSION = '2.1'
|
|
20
|
+
JETTY_VERSION = '7.2.2'
|
|
22
21
|
GEM_VERSION = '0'
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
VERSION = [ JETTY_VERSION, GEM_VERSION ].join( '.' )
|
|
23
|
+
JETTY_BUILD = 'v20101205'
|
|
24
|
+
JSP_VERSION = '2.1'
|
|
25
25
|
|
|
26
26
|
JETTY_JSP_DIR = File.dirname( __FILE__ ) # :nodoc:
|
|
27
27
|
|
|
Binary file
|
data/lib/rjack-jetty-jsp/{jsp-2.1-glassfish-2.1.v20091210.jar → jsp-2.1-glassfish-2.1.v20100127.jar}
RENAMED
|
Binary file
|
|
Binary file
|
data/pom.xml
CHANGED
|
@@ -7,10 +7,21 @@
|
|
|
7
7
|
<version>1.0</version>
|
|
8
8
|
|
|
9
9
|
<dependencies>
|
|
10
|
+
<dependency>
|
|
11
|
+
<groupId>org.eclipse.jetty</groupId>
|
|
12
|
+
<artifactId>jetty-jsp-2.1</artifactId>
|
|
13
|
+
<version>7.2.2.v20101205</version>
|
|
14
|
+
</dependency>
|
|
10
15
|
<dependency>
|
|
11
16
|
<groupId>org.mortbay.jetty</groupId>
|
|
12
|
-
<artifactId>jsp-2.1-
|
|
13
|
-
<version>
|
|
17
|
+
<artifactId>jsp-2.1-glassfish</artifactId>
|
|
18
|
+
<version>2.1.v20100127</version>
|
|
19
|
+
<exclusions>
|
|
20
|
+
<exclusion>
|
|
21
|
+
<groupId>org.mortbay.jetty</groupId>
|
|
22
|
+
<artifactId>servlet-api</artifactId>
|
|
23
|
+
</exclusion>
|
|
24
|
+
</exclusions>
|
|
14
25
|
</dependency>
|
|
15
26
|
</dependencies>
|
|
16
27
|
|
data/webapps/test.war
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -3,13 +3,11 @@ name: rjack-jetty-jsp
|
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
- 26
|
|
6
|
+
- 7
|
|
7
|
+
- 2
|
|
9
8
|
- 2
|
|
10
|
-
- 1
|
|
11
9
|
- 0
|
|
12
|
-
version:
|
|
10
|
+
version: 7.2.2.0
|
|
13
11
|
platform: java
|
|
14
12
|
authors:
|
|
15
13
|
- David Kellum
|
|
@@ -28,11 +26,11 @@ dependencies:
|
|
|
28
26
|
- - ~>
|
|
29
27
|
- !ruby/object:Gem::Version
|
|
30
28
|
segments:
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
29
|
+
- 7
|
|
30
|
+
- 2
|
|
31
|
+
- 2
|
|
34
32
|
- 0
|
|
35
|
-
version:
|
|
33
|
+
version: 7.2.2.0
|
|
36
34
|
type: :runtime
|
|
37
35
|
version_requirements: *id001
|
|
38
36
|
- !ruby/object:Gem::Dependency
|
|
@@ -76,12 +74,10 @@ files:
|
|
|
76
74
|
- webapps/test/index.jsp
|
|
77
75
|
- webapps/test/WEB-INF/web.xml
|
|
78
76
|
- webapps/test.war
|
|
79
|
-
- lib/rjack-jetty-jsp/ant-1.6.5.jar
|
|
80
|
-
- lib/rjack-jetty-jsp/core-3.1.1.jar
|
|
81
77
|
- lib/rjack-jetty-jsp/ecj-3.5.1.jar
|
|
82
|
-
- lib/rjack-jetty-jsp/jsp-2.1-
|
|
83
|
-
- lib/rjack-jetty-jsp/jsp-2.1-
|
|
84
|
-
- lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.
|
|
78
|
+
- lib/rjack-jetty-jsp/jetty-jsp-2.1-7.2.2.v20101205.jar
|
|
79
|
+
- lib/rjack-jetty-jsp/jsp-2.1-glassfish-2.1.v20100127.jar
|
|
80
|
+
- lib/rjack-jetty-jsp/jsp-api-2.1-glassfish-2.1.v20100127.jar
|
|
85
81
|
has_rdoc: true
|
|
86
82
|
homepage: http://rjack.rubyforge.org
|
|
87
83
|
licenses: []
|
|
Binary file
|
|
Binary file
|
|
Binary file
|