jetty-jsp 6.1.18.2.1.1 → 6.1.19.2.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ === 6.1.19.2.1.1 (2009-7-22)
2
+ * Update to Jetty 6.1.19 JSP 2.1
3
+
1
4
  === 6.1.18.2.1.1 (2009-5-29)
2
5
  * Update to Jetty 6.1.18 JSP 2.1
3
6
 
@@ -7,7 +10,7 @@
7
10
 
8
11
  === 6.1.16.2.1.1 (2009-4-4)
9
12
  * Update to Jetty 6.1.16 JSP 2.1, which now uses externalized
10
- jsp-2.1-glassfish and jsp-api-2.1-glassfish (9.1.1.B51.25.p1) gems.
13
+ jsp-2.1-glassfish and jsp-api-2.1-glassfish (9.1.1.B51.25.p1) jars.
11
14
 
12
15
  === 6.1.14.2.1.1 (2008-12-6)
13
16
  * Update to Jetty 6.1.14
@@ -6,8 +6,8 @@ pom.xml
6
6
  assembly.xml
7
7
  lib/jetty-jsp.rb
8
8
  lib/jetty-jsp/base.rb
9
- lib/jetty-jsp/ant-1.6.5.jar
10
- lib/jetty-jsp/core-3.1.1.jar
11
9
  lib/jetty-jsp/jsp-2.1-glassfish-9.1.1.B60.25.p0.jar
12
- lib/jetty-jsp/jsp-2.1-jetty-6.1.18.jar
10
+ lib/jetty-jsp/ant-1.6.5.jar
13
11
  lib/jetty-jsp/jsp-api-2.1-glassfish-9.1.1.B60.25.p0.jar
12
+ lib/jetty-jsp/core-3.1.1.jar
13
+ lib/jetty-jsp/jsp-2.1-jetty-6.1.19.jar
data/README.txt CHANGED
@@ -5,8 +5,8 @@
5
5
 
6
6
  == Description
7
7
 
8
- A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/]
9
- JSP 2.1 support for JRuby. This gem is provided as a companion to the
8
+ A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/]
9
+ JSP 2.1 support for JRuby. This gem is provided as a companion to the
10
10
  jetty[http://rjack.rubyforge.org/jetty/] gem.
11
11
 
12
12
  == License
@@ -34,7 +34,7 @@ Copyright (c) 1995-2006 Mort Bay Consulting Pty Ltd
34
34
  Licensed under the Apache License, Version 2.0 (the "License");
35
35
  you may not use this file except in compliance with the License.
36
36
  You may obtain a copy of the License at
37
-
37
+
38
38
  http://www.apache.org/licenses/LICENSE-2.0
39
39
 
40
40
  Unless required by applicable law or agreed to in writing, software
@@ -47,16 +47,16 @@ The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd
47
47
  unless otherwise noted. It is licensed under the apache 2.0
48
48
  license.
49
49
 
50
- The javax.servlet package used by Jetty is copyright
51
- Sun Microsystems, Inc and Apache Software Foundation. It is
50
+ The javax.servlet package used by Jetty is copyright
51
+ Sun Microsystems, Inc and Apache Software Foundation. It is
52
52
  distributed under the Common Development and Distribution License.
53
- You can obtain a copy of the license at
53
+ You can obtain a copy of the license at
54
54
  https://glassfish.dev.java.net/public/CDDLv1.0.html.
55
55
 
56
56
  The UnixCrypt.java code ~Implements the one way cryptography used by
57
57
  Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
58
58
  modified April 2001 by Iris Van den Broeke, Daniel Deville.
59
- Permission to use, copy, modify and distribute UnixCrypt
59
+ Permission to use, copy, modify and distribute UnixCrypt
60
60
  for non-commercial or commercial purposes and without fee is
61
61
  granted provided that the copyright notice appears in all copies.
62
62
 
@@ -65,7 +65,7 @@ from project Glassfish http://glassfish.dev.java.net. Copyright 2005
65
65
  Sun Microsystems, Inc. and portions Copyright Apache Software Foundation.
66
66
 
67
67
  Some portions of the code are Copyright:
68
- 2006 Tim Vernum
68
+ 2006 Tim Vernum
69
69
  1999 Jason Gilbert.
70
70
 
71
71
  The jboss integration module contains some LGPL code.
data/Rakefile CHANGED
@@ -27,7 +27,7 @@ ASSEMBLY = "target/jetty-jsp-assembly-1.0-bin.dir"
27
27
 
28
28
  desc "Update the Manifest with actual jars"
29
29
  task :manifest => [ ASSEMBLY ] do
30
- out = File.new( 'Manifest.txt', 'w' )
30
+ out = File.new( 'Manifest.txt', 'w' )
31
31
  begin
32
32
  out.write <<END
33
33
  History.txt
@@ -47,7 +47,6 @@ END
47
47
  end
48
48
  end
49
49
 
50
-
51
50
  file ASSEMBLY => [ 'pom.xml', 'assembly.xml' ] do
52
51
  sh( 'mvn package' )
53
52
  end
@@ -69,7 +68,7 @@ task :mvn_clean do
69
68
  rm_f( JAR_FILES )
70
69
  sh( 'mvn clean' )
71
70
  end
72
- task :clean => :mvn_clean
71
+ task :clean => :mvn_clean
73
72
 
74
73
  task :tag do
75
74
  tag = "jetty-jsp-#{JettyJsp::VERSION}"
@@ -21,6 +21,6 @@ require 'jetty'
21
21
 
22
22
  # Loads jars for JSP 2.1 support
23
23
  module JettyJsp
24
-
24
+
25
25
  Dir.glob( File.join( JETTY_JSP_DIR, '*.jar' ) ).each { |jar| require jar }
26
26
  end
@@ -15,11 +15,11 @@
15
15
  #++
16
16
 
17
17
  module JettyJsp
18
- JETTY_VERSION = '6.1.18'
18
+ JETTY_VERSION = '6.1.19'
19
19
  JSP_VERSION = '2.1'
20
20
  GEM_VERSION = '1'
21
21
 
22
- VERSION = [ JETTY_VERSION, JSP_VERSION, GEM_VERSION ].join( '.' )
22
+ VERSION = [ JETTY_VERSION, JSP_VERSION, GEM_VERSION ].join( '.' )
23
23
 
24
24
  JETTY_JSP_DIR = File.dirname( __FILE__ ) # :nodoc:
25
25
  end
data/pom.xml CHANGED
@@ -10,7 +10,7 @@
10
10
  <dependency>
11
11
  <groupId>org.mortbay.jetty</groupId>
12
12
  <artifactId>jsp-2.1-jetty</artifactId>
13
- <version>6.1.18</version>
13
+ <version>6.1.19</version>
14
14
  </dependency>
15
15
  </dependencies>
16
16
 
@@ -37,4 +37,4 @@
37
37
  </plugins>
38
38
  </build>
39
39
 
40
- </project>
40
+ </project>
metadata CHANGED
@@ -9,8 +9,8 @@ email:
9
9
  - dek-ruby@gravitext.com
10
10
  cert_chain: []
11
11
 
12
- summary: A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/] JSP
13
- 2.1 support for JRuby
12
+ summary: A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/]
13
+ JSP 2.1 support for JRuby
14
14
  post_install_message:
15
15
  extra_rdoc_files:
16
16
  - History.txt
@@ -22,14 +22,17 @@ name: jetty-jsp
22
22
  rdoc_options:
23
23
  - --main
24
24
  - README.txt
25
- autorequire:
26
25
  rubyforge_project: rjack
26
+ autorequire:
27
+ licenses: []
28
+
27
29
  executables: []
28
30
 
29
- description: A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/] JSP
30
- 2.1 support for JRuby. This gem is provided as a companion to the jetty[http://rjack.rubyforge.org/jetty/]
31
- gem.
32
- specification_version: 2
31
+ description: |-
32
+ A gem packaging of the {Jetty Web Server}[http://www.mortbay.org/jetty/]
33
+ JSP 2.1 support for JRuby. This gem is provided as a companion to the
34
+ jetty[http://rjack.rubyforge.org/jetty/] gem.
35
+ specification_version: 3
33
36
  default_executable:
34
37
  files:
35
38
  - History.txt
@@ -40,11 +43,11 @@ files:
40
43
  - assembly.xml
41
44
  - lib/jetty-jsp.rb
42
45
  - lib/jetty-jsp/base.rb
43
- - lib/jetty-jsp/ant-1.6.5.jar
44
- - lib/jetty-jsp/core-3.1.1.jar
45
46
  - lib/jetty-jsp/jsp-2.1-glassfish-9.1.1.B60.25.p0.jar
46
- - lib/jetty-jsp/jsp-2.1-jetty-6.1.18.jar
47
+ - lib/jetty-jsp/ant-1.6.5.jar
47
48
  - lib/jetty-jsp/jsp-api-2.1-glassfish-9.1.1.B60.25.p0.jar
49
+ - lib/jetty-jsp/core-3.1.1.jar
50
+ - lib/jetty-jsp/jsp-2.1-jetty-6.1.19.jar
48
51
  required_rubygems_version: !ruby/object:Gem::Requirement
49
52
  requirements:
50
53
  - - '>='
@@ -53,17 +56,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
56
  version:
54
57
  extensions: []
55
58
 
56
- rubygems_version: 1.3.1
59
+ rubygems_version: 1.3.3
57
60
  requirements: []
58
61
 
59
62
  authors:
60
63
  - David Kellum
61
- date: 2009-05-29 07:00:00 +00:00
64
+ date: 2009-07-22 07:00:00 +00:00
62
65
  platform: ruby
63
66
  test_files: []
64
67
 
65
68
  version: !ruby/object:Gem::Version
66
- version: 6.1.18.2.1.1
69
+ version: 6.1.19.2.1.1
67
70
  require_paths:
68
71
  - lib
69
72
  dependencies:
@@ -72,7 +75,7 @@ dependencies:
72
75
  requirements:
73
76
  - - ~>
74
77
  - !ruby/object:Gem::Version
75
- version: 6.1.18.1
78
+ version: 6.1.19.1
76
79
  version:
77
80
  type: :runtime
78
81
  version_requirement: