W3C CVS Root

CVS log for java/classes/org/w3c/jigsaw/servlet/ServletWrapper.java

[BACK] Up to [Public] / java / classes / org / w3c / jigsaw / servlet

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.81: download - view: text, markup, annotated - select for diffs
Fri Oct 18 13:42:19 2013 UTC (10 years, 6 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +827 -831 lines
generics + raw types + serializer

Revision 1.80: download - view: text, markup, annotated - select for diffs
Wed Jul 18 13:39:32 2012 UTC (11 years, 9 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +9 -20 lines
generics... a sequel

Revision 1.79: download - view: text, markup, annotated - select for diffs
Fri Sep 28 14:29:57 2007 UTC (16 years, 7 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +115 -108 lines

Moved from int to long for ContentLength, to cope with 2G+ files.
It introduced lots of changes in the HTTp stack and cache, as well as
the logging system, everything seems to work properly.
Store serialization/deserialization was a bit trickier, Long is now
ensuring that the object is a Number instead of a Long to cope with
the Integer->Long change in the stores.

NOTE that those changes mark the beginning of the new 2.3 track starting
with this beta. hopefully is should be as stable as previously, but
nothing is granted :)

Revision 1.78: download - view: text, markup, annotated - select for diffs
Sun Feb 11 10:50:01 2007 UTC (17 years, 2 months ago) by ylafon
Branches: MAIN
CVS tags: rel-2-2, R_2_2_6_B0
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +370 -127 lines
fixes to the servlet context

Revision 1.77: download - view: text, markup, annotated - select for diffs
Wed Jun 8 12:55:30 2005 UTC (18 years, 11 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_5_B0
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +2 -1 lines
*** empty log message ***

Revision 1.76: download - view: text, markup, annotated - select for diffs
Thu Nov 4 16:10:11 2004 UTC (19 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +26 -12 lines
Thomas Kopp patch:

<cite>
The boolean launchServlet(Class cls) method now correctly
escalates servlet initialization exceptions.

In prior releases, the service method of an un-initialized
servlet was erroneously called under certain conditions.
</cite>

Revision 1.75: download - view: text, markup, annotated - select for diffs
Wed Oct 6 09:54:32 2004 UTC (19 years, 7 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +5 -1 lines
thread interrupt done in a better way

Revision 1.74: download - view: text, markup, annotated - select for diffs
Thu Sep 30 18:51:13 2004 UTC (19 years, 7 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +42 -4 lines
added interrupt on timed out threads

Revision 1.73: download - view: text, markup, annotated - select for diffs
Mon Aug 9 12:37:06 2004 UTC (19 years, 9 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +17 -17 lines
code reindent

Revision 1.72: download - view: text, markup, annotated - select for diffs
Tue Feb 18 16:17:53 2003 UTC (21 years, 2 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_4_B0, R_2_2_3_B1
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +2 -2 lines
small blank fix just to add that the bug fix was about the following deadlock:
"http-server-socket-clients:316":
        at org.w3c.jigsaw.servlet.ServletWrapper$TimeoutManager.setTimer(ServletWrapper.java:94)
        - waiting to lock <e0ea8c98> (a org.w3c.jigsaw.servlet.ServletWrapper$TimeoutManager)
        at org.w3c.jigsaw.servlet.ServletWrapper$TimeoutManager.start(ServletWrapper.java:108)
        at org.w3c.jigsaw.servlet.ServletWrapper$TimeoutManager.restart(ServletWrapper.java:102)
        at org.w3c.jigsaw.servlet.ServletWrapper.launchServlet(ServletWrapper.java:817)
        at org.w3c.jigsaw.servlet.ServletWrapper.launchServlet(ServletWrapper.java:917)
        at org.w3c.jigsaw.servlet.ServletWrapper.checkServlet(ServletWrapper.java:324)
        - locked <e0ea8c40> (a org.w3c.jigsaw.servlet.ServletWrapper$ServletPool)
        at org.w3c.jigsaw.servlet.ServletWrapperFrame.perform(ServletWrapperFrame.java:108)
        at org.w3c.tools.resources.FramedResource.performFrames(FramedResource.java:695)
        at org.w3c.tools.resources.FramedResource.perform(FramedResource.java:713)
        at org.w3c.jigsaw.http.httpd.perform(httpd.java:1850)
        at org.w3c.jigsaw.http.Client.processRequest(Client.java:452)
        at org.w3c.jigsaw.http.Client.startConnection(Client.java:588)
        at org.w3c.jigsaw.http.socket.SocketClient.run(SocketClient.java:125)
        at org.w3c.util.CachedThread.run(ThreadCache.java:87)
"Event Manager":
        at org.w3c.jigsaw.servlet.ServletWrapper.destroyServlet(ServletWrapper.java:773)
        - waiting to lock <e0ea8c40> (a org.w3c.jigsaw.servlet.ServletWrapper$ServletPool)
        at org.w3c.jigsaw.servlet.ServletWrapper$TimeoutManager.handleTimerEvent(ServletWrapper.java:90)
        - locked <e0ea8c98> (a org.w3c.jigsaw.servlet.ServletWrapper$TimeoutManager)
        at org.w3c.tools.timers.EventManager.run(EventManager.java:227)

Revision 1.71: download - view: text, markup, annotated - select for diffs
Tue Feb 18 16:14:57 2003 UTC (21 years, 2 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +11 -15 lines
same fix, rewritten in another way

Revision 1.70: download - view: text, markup, annotated - select for diffs
Tue Feb 18 16:13:36 2003 UTC (21 years, 2 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +14 -10 lines
followup

Revision 1.69: download - view: text, markup, annotated - select for diffs
Tue Feb 18 16:12:32 2003 UTC (21 years, 2 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +5 -3 lines
handleTimerEvent only needs to synchronize on timer, not the whole thing

Revision 1.68: download - view: text, markup, annotated - select for diffs
Tue Feb 4 16:17:01 2003 UTC (21 years, 3 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +9 -1 lines
signal the end of the servlet thread by adding a "ENDED" state to the
Jigsaw Reply object

Revision 1.67: download - view: text, markup, annotated - select for diffs
Tue Oct 29 14:51:20 2002 UTC (21 years, 6 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_2_B0
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +8 -3 lines
more error recovery code

Revision 1.66: download - view: text, markup, annotated - select for diffs
Mon Sep 16 18:36:56 2002 UTC (21 years, 7 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +11 -6 lines
first steps toward jsdk2.3 impl

Revision 1.65: download - view: text, markup, annotated - select for diffs
Mon Sep 2 16:05:18 2002 UTC (21 years, 8 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +4 -1 lines
added debug possibilities (while testing jdk1.4.1rc)

Revision 1.64: download - view: text, markup, annotated - select for diffs
Mon Jul 15 14:43:08 2002 UTC (21 years, 9 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +13 -1 lines
exception are now displayed in the output of the page

Revision 1.63: download - view: text, markup, annotated - select for diffs
Mon Jul 8 14:54:00 2002 UTC (21 years, 10 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +13 -7 lines
stream is now flushed if it has been used prior to a servlet error

Revision 1.62: download - view: text, markup, annotated - select for diffs
Fri Jul 5 15:46:08 2002 UTC (21 years, 10 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +23 -9 lines
Servlet feeder now uses a thread cache (more efficient and avoid having too
many unused threads)

Revision 1.61: download - view: text, markup, annotated - select for diffs
Wed Jun 26 17:28:41 2002 UTC (21 years, 10 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +4 -4 lines
unnecessary safeness initialization

Revision 1.60: download - view: text, markup, annotated - select for diffs
Mon Nov 12 14:03:35 2001 UTC (22 years, 5 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_1_B0
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +343 -231 lines
merged more changes from Thomas Kopp, reindented, replaced { for ifs

Revision 1.59: download - view: text, markup, annotated - select for diffs
Fri Oct 26 12:49:50 2001 UTC (22 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +215 -44 lines
Merged changes from Thomas Kopp <Thomas.Kopp@dialogika.de> concerning invalidation, servlet loading, request handling, limited size pool of instances

Revision 1.58: download - view: text, markup, annotated - select for diffs
Sun Dec 31 16:38:40 2000 UTC (23 years, 4 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_0_B0
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +10 -9 lines
get the sync object at the beginning

Revision 1.57: download - view: text, markup, annotated - select for diffs
Thu Dec 21 16:57:25 2000 UTC (23 years, 4 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +12 -4 lines
robustness fix, the servlet is now killed after waiting for the srever's timeout

Revision 1.46.4.8: download - view: text, markup, annotated - select for diffs
Fri Nov 10 10:15:40 2000 UTC (23 years, 5 months ago) by bmahe
Branches: rel-2-0
Diff to: previous 1.46.4.7: preferred, colored; branchpoint 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46.4.7: +91 -5 lines
chunk fixed

Revision 1.56: download - view: text, markup, annotated - select for diffs
Fri Nov 3 10:32:03 2000 UTC (23 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +61 -2 lines
fixed error conditions of the servlet.

Revision 1.55: download - view: text, markup, annotated - select for diffs
Thu Nov 2 16:10:47 2000 UTC (23 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +32 -5 lines
Added support for reentry of the servlet outputstream, it provide valid HTTP/1.1 chunked output

Revision 1.46.4.7: download - view: text, markup, annotated - select for diffs
Wed Sep 6 13:19:07 2000 UTC (23 years, 8 months ago) by bmahe
Branches: rel-2-0
Diff to: previous 1.46.4.6: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.6: +1 -8 lines
message removed

Revision 1.54: download - view: text, markup, annotated - select for diffs
Wed Sep 6 13:18:16 2000 UTC (23 years, 8 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +1 -8 lines
message removed

Revision 1.46.4.6: download - view: text, markup, annotated - select for diffs
Tue Sep 5 17:18:01 2000 UTC (23 years, 8 months ago) by bmahe
Branches: rel-2-0
Diff to: previous 1.46.4.5: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.5: +8 -6 lines
System.out instead of RuntimeException

Revision 1.53: download - view: text, markup, annotated - select for diffs
Tue Sep 5 17:17:23 2000 UTC (23 years, 8 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +8 -6 lines
System.out instead of RuntimeException

Revision 1.46.4.5: download - view: text, markup, annotated - select for diffs
Fri Aug 18 08:31:18 2000 UTC (23 years, 8 months ago) by bmahe
Branches: rel-2-0
Diff to: previous 1.46.4.4: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.4: +44 -21 lines
exception when no ServletContext

Revision 1.52: download - view: text, markup, annotated - select for diffs
Fri Aug 18 08:30:55 2000 UTC (23 years, 8 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +9 -2 lines
exception when no ServletContext

Revision 1.51: download - view: text, markup, annotated - select for diffs
Wed Aug 16 21:37:46 2000 UTC (23 years, 8 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +36 -20 lines
Fixed import statements and removed extra empty lines

Revision 1.50: download - view: text, markup, annotated - select for diffs
Fri Mar 3 16:04:07 2000 UTC (24 years, 2 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_1_2_B0, R_2_1_1_B0
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +4 -1 lines
bug fix, getRealPath and proxy

Revision 1.46.4.4: download - view: text, markup, annotated - select for diffs
Fri Mar 3 15:58:08 2000 UTC (24 years, 2 months ago) by bmahe
Branches: rel-2-0
CVS tags: R_2_0_5_B1, R_2_0_5_B0
Diff to: previous 1.46.4.3: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.3: +4 -1 lines
bug fix, getRealPath and proxy

Revision 1.46.4.3: download - view: text, markup, annotated - select for diffs
Fri Feb 11 16:22:45 2000 UTC (24 years, 2 months ago) by bmahe
Branches: rel-2-0
Diff to: previous 1.46.4.2: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.2: +1 -11 lines
1.1 compliance

Revision 1.49: download - view: text, markup, annotated - select for diffs
Fri Feb 11 16:21:45 2000 UTC (24 years, 2 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +0 -10 lines
1.1 compliance

Revision 1.48: download - view: text, markup, annotated - select for diffs
Fri Feb 11 13:20:01 2000 UTC (24 years, 2 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +12 -2 lines
Servlet API 2.2

Revision 1.46.4.2: download - view: text, markup, annotated - select for diffs
Tue Feb 8 15:41:35 2000 UTC (24 years, 3 months ago) by bmahe
Branches: rel-2-0
Diff to: previous 1.46.4.1: preferred, colored; branchpoint 1.46: preferred, colored
Changes since revision 1.46.4.1: +12 -2 lines
servlet api 2.2

Revision 1.47: download - view: text, markup, annotated - select for diffs
Wed Jan 12 17:26:52 2000 UTC (24 years, 3 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +13 -12 lines
servlet.properties

Revision 1.46.4.1: download - view: text, markup, annotated - select for diffs
Wed Jan 12 17:24:44 2000 UTC (24 years, 3 months ago) by bmahe
Branches: rel-2-0
CVS tags: R_2_0_4_B1, R_2_0_4_B0
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +13 -12 lines
servlet.properties

Revision 1.46: download - view: text, markup, annotated - select for diffs
Thu Aug 5 09:14:43 1999 UTC (24 years, 9 months ago) by bmahe
Branches: MAIN
CVS tags: rel-2-1, R_2_1_0_B4, R_2_1_0_B3, R_2_1_0_B2, R_2_1_0_B1, R_2_1_0_B0
Branch point for: rel-2-0
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +17 -5 lines
bug fixed: now servlet is not destoyed only if all connections are closed

Revision 1.45: download - view: text, markup, annotated - select for diffs
Thu Jul 22 12:42:16 1999 UTC (24 years, 9 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_3_B0
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +6 -4 lines
servlet timeout could be -1

Revision 1.44: download - view: text, markup, annotated - select for diffs
Wed May 5 12:01:47 1999 UTC (25 years ago) by bmahe
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +3 -2 lines
servlet reloaded when parameter changed

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Apr 7 08:59:15 1999 UTC (25 years, 1 month ago) by bmahe
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +3 -1 lines
print ServletException at init time

Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Mar 29 15:33:58 1999 UTC (25 years, 1 month ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_2_B0
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +3 -2 lines
bug fixed for template class files

Revision 1.41: download - view: text, markup, annotated - select for diffs
Mon Mar 29 12:45:16 1999 UTC (25 years, 1 month ago) by bmahe
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +6 -3 lines
used to map a File to a servlet

Revision 1.40: download - view: text, markup, annotated - select for diffs
Fri Mar 19 15:17:51 1999 UTC (25 years, 1 month ago) by bmahe
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +87 -3 lines
per servlet timeout

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Mar 18 14:37:26 1999 UTC (25 years, 1 month ago) by bmahe
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +3 -3 lines
first working implementation of JSDK2.1

Revision 1.38: download - view: text, markup, annotated - select for diffs
Wed Mar 17 18:01:10 1999 UTC (25 years, 1 month ago) by bmahe
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2 lines
first implementation of jsdk2.1

Revision 1.37: download - view: text, markup, annotated - select for diffs
Fri Aug 14 11:11:40 1998 UTC (25 years, 8 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_beta_3, R_2_0_1_B0, R_2_0_0_B0
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +9 -1 lines
javadoc updated

Revision 1.36: download - view: text, markup, annotated - select for diffs
Fri Aug 7 09:06:29 1998 UTC (25 years, 9 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +71 -30 lines
better exception catching

Revision 1.35: download - view: text, markup, annotated - select for diffs
Thu Aug 6 08:11:28 1998 UTC (25 years, 9 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +3 -3 lines
flush not close

Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Jul 23 16:39:01 1998 UTC (25 years, 9 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +26 -60 lines
new ServletLoader

Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Jul 21 15:21:38 1998 UTC (25 years, 9 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +3 -1 lines
doc

Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Jul 21 11:05:00 1998 UTC (25 years, 9 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +23 -1 lines
a new servlet indexer class

Revision 1.31: download - view: text, markup, annotated - select for diffs
Wed Jun 17 15:01:39 1998 UTC (25 years, 10 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_beta_2_1
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +9 -9 lines
indent

Revision 1.30: download - view: text, markup, annotated - select for diffs
Fri Jun 12 11:56:50 1998 UTC (25 years, 10 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1 lines
bug fix

Revision 1.29: download - view: text, markup, annotated - select for diffs
Wed Jun 10 08:41:49 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +3 -1 lines
close stream

Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu Jun 4 16:20:54 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +25 -3 lines
evolution

Revision 1.27: download - view: text, markup, annotated - select for diffs
Fri May 29 13:34:54 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +1 -2 lines
bug fix

Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri May 29 13:16:24 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +35 -6 lines
bug fix

Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed May 27 13:00:38 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +14 -6 lines
new resource unloaded event + servlet logger

Revision 1.24: download - view: text, markup, annotated - select for diffs
Mon May 25 15:05:45 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +6 -6 lines
new ServletContext implmentation

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue May 19 13:52:24 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +14 -6 lines
added Single Thread model

Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue May 19 11:55:56 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -2 lines
loader becomes protected

Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu May 14 15:04:53 1998 UTC (25 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +6 -3 lines
JSDK2.0 compatibility (Sessions added)

Revision 1.20: download - view: text, markup, annotated - select for diffs
Wed Apr 15 13:23:49 1998 UTC (26 years ago) by bmahe
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +277 -245 lines
boolean flag to disable auto reload

Revision 1.19: download - view: text, markup, annotated - select for diffs
Thu Feb 26 13:20:10 1998 UTC (26 years, 2 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_beta_1
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +5 -12 lines
modified initialize method

Revision 1.18: download - view: text, markup, annotated - select for diffs
Thu Jan 22 14:11:52 1998 UTC (26 years, 3 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_alpha_1a, R_2_0_alpha_1, R_1_0_beta_2
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +45 -79 lines
first commit for org.w3c...

Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed Sep 17 15:37:25 1997 UTC (26 years, 7 months ago) by benoit
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -6 lines
(benoit) removed some unused lines

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Sep 11 07:37:33 1997 UTC (26 years, 7 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +5 -1 lines
bugs fixed

Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Sep 9 09:39:04 1997 UTC (26 years, 8 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +5 -5 lines
fixed a bug with Servlet class found in the classpath

Revision 1.14: download - view: text, markup, annotated - select for diffs
Fri Aug 22 11:53:36 1997 UTC (26 years, 8 months ago) by bmahe
Branches: MAIN
CVS tags: R_1_0_beta_1_1, R_1_0_beta_1_0
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +1 -3 lines
removed minor bug

Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Aug 22 08:48:50 1997 UTC (26 years, 8 months ago) by abaird
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -3 lines
- Documentation changes

Revision 1.12: download - view: text, markup, annotated - select for diffs
Fri Jul 25 14:28:17 1997 UTC (26 years, 9 months ago) by bmahe
Branches: MAIN
CVS tags: R_1_0_beta_0_3, R_1_0_beta_0_2, R_1_0_beta_0_1
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
removed debug option

Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu Jul 10 12:16:23 1997 UTC (26 years, 10 months ago) by bmahe
Branches: MAIN
CVS tags: R_1_0_beta_0_0
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +3 -5 lines
println removed

Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue Jul 1 08:36:28 1997 UTC (26 years, 10 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +1 -2 lines
*** empty log message ***

Revision 1.9: download - view: text, markup, annotated - select for diffs
Wed Jun 18 09:39:43 1997 UTC (26 years, 10 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +292 -268 lines
new ClassLoader for local servlet

Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Apr 4 07:37:41 1997 UTC (27 years, 1 month ago) by abaird
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2 lines
- Now uses empty enumerations when it makes sense

Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri Mar 28 16:16:55 1997 UTC (27 years, 1 month ago) by abaird
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +8 -16 lines
- Upgraded to servlet beta API.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Mar 7 13:07:02 1997 UTC (27 years, 2 months ago) by abaird
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +4 -4 lines
- Renamed ATTR_CONTEXT to ATTR_SERVLET_CONTEXT (conflict with the now
  generic context attribute)

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Jan 17 10:41:30 1997 UTC (27 years, 3 months ago) by abaird
Branches: MAIN
CVS tags: R_1_0_alpha6_1, R_1_0_alpha6
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -1 lines
- Upgarded to w3c.tools.store change

Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Dec 27 15:07:32 1996 UTC (27 years, 4 months ago) by abaird
Branches: MAIN
CVS tags: R_1_0_alpha_5
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
- Fixed more compilation bugs.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Dec 27 13:29:16 1996 UTC (27 years, 4 months ago) by abaird
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2 lines
- Compil bug fixed

Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Dec 26 14:11:25 1996 UTC (27 years, 4 months ago) by abaird
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +10 -5 lines
- Added the appropriate @author doc comments.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Dec 17 12:26:41 1996 UTC (27 years, 4 months ago) by abaird
Branches: MAIN
- Initial checkin of Sun servlet API implementation.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

Webmaster