W3C CVS Root

CVS log for java/classes/org/w3c/tools/resources/ContainerResource.java

[BACK] Up to [Public] / java / classes / org / w3c / tools / resources

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.24: download - view: text, markup, annotated - select for diffs
Fri Oct 18 13:42:25 2013 UTC (12 years, 2 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +11 -10 lines
generics + raw types + serializer

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Jun 26 12:26:01 2012 UTC (13 years, 5 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +339 -330 lines
more cleanup + use of HashMap and ConcurrentHashMap in the resource store

Revision 1.22: download - view: text, markup, annotated - select for diffs
Sat Jun 16 15:48:48 2012 UTC (13 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -2 lines
various updates, use of StringBuilder, for each loops, starting some generics, some optims, ipv6 patch for acls

Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Feb 10 13:34:44 2004 UTC (21 years, 10 months ago) by ylafon
Branches: MAIN
CVS tags: rel-2-2, R_2_2_6_B0, R_2_2_5_B0, R_2_2_4_B0
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +4 -3 lines
fixed one again getKey to have a wider range

Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Jan 6 10:05:37 2004 UTC (21 years, 11 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +4 -2 lines
real random key generation

Revision 1.19: download - view: text, markup, annotated - select for diffs
Fri Jun 6 09:06:17 2003 UTC (22 years, 6 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_3_B1
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
getKey now use the unsynchronized call to avoid deadlock when a resource mark its parent as modified, see
"http-server-socket-clients:228":
        at org.w3c.tools.resources.Resource.getValue(Resource.java:195)
        - waiting to lock <bc6b4b58> (a org.w3c.jigsaw.resources.DirectoryResource)
        at org.w3c.tools.resources.ContainerResource.getKey(ContainerResource.java:56)
        at org.w3c.tools.resources.SpaceEntryImpl.<init>(SpaceEntryImpl.java:26)
        at org.w3c.tools.resources.Resource.getSpaceEntry(Resource.java:285)
        at org.w3c.tools.resources.Resource.markModified(Resource.java:518)
        at org.w3c.tools.resources.FramedResource.markModified(FramedResource.java:609)
        at org.w3c.tools.resources.Resource.setValue(Resource.java:568)
        at org.w3c.tools.resources.FramedResource.setValue(FramedResource.java:618)
        - locked <bc6b4ba8> (a org.w3c.tools.resources.FileResource)
        at org.w3c.tools.resources.FileResource.setValue(FileResource.java:204)
        - locked <bc6b4ba8> (a org.w3c.tools.resources.FileResource)
        at org.w3c.tools.resources.FileResource.updateFileAttributes(FileResource.java:340)
        at org.w3c.tools.resources.FileResource.checkContent(FileResource.java:182)
        at org.w3c.jigsaw.frames.HTTPFrame.getFileResource(HTTPFrame.java:1782)
        at org.w3c.jigsaw.frames.HTTPFrame.get(HTTPFrame.java:1646)
        at org.w3c.jigsaw.frames.HTTPFrame.perform(HTTPFrame.java:1608)
        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:1871)
        at org.w3c.jigsaw.http.Client.processRequest(Client.java:456)
        at org.w3c.jigsaw.http.Client.startConnection(Client.java:609)
        at org.w3c.jigsaw.http.socket.SocketClient.run(SocketClient.java:125)
        at org.w3c.util.CachedThread.run(ThreadCache.java:87)
"http-server-socket-clients:65":
        at org.w3c.tools.resources.FileResource.getFile(FileResource.java:243)
        - waiting to lock <bc6b4ba8> (a org.w3c.tools.resources.FileResource)
        at org.w3c.jigsaw.frames.HTTPFrame.computeContainerListing(HTTPFrame.java:943)
        - locked <bc6b4b58> (a org.w3c.jigsaw.resources.DirectoryResource)
        at org.w3c.jigsaw.frames.HTTPFrame.getDirectoryListing(HTTPFrame.java:1062)
        at org.w3c.jigsaw.frames.HTTPFrame.getDirectoryResource(HTTPFrame.java:1839)
        at org.w3c.jigsaw.frames.HTTPFrame.get(HTTPFrame.java:1643)
        at org.w3c.jigsaw.frames.HTTPFrame.perform(HTTPFrame.java:1608)
        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:1871)
        at org.w3c.jigsaw.http.Client.processRequest(Client.java:456)
        at org.w3c.jigsaw.http.Client.startConnection(Client.java:609)
        at org.w3c.jigsaw.http.socket.SocketClient.run(SocketClient.java:125)
        at org.w3c.util.CachedThread.run(ThreadCache.java:87)

Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Aug 27 12:34:51 2002 UTC (23 years, 4 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_2_B0
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +14 -1 lines
Added a way to ensure that a key can't be used two times for two different container when the key is automatically generated

Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed Jun 26 17:27:43 2002 UTC (23 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +7 -7 lines
some string in defs hastable are interned to save space

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Jun 20 11:17:36 2002 UTC (23 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2 lines
typo fixed

Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Jun 12 14:22:42 2002 UTC (23 years, 6 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +7 -3 lines
small optim on stringbuffer size

Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Aug 16 21:37:51 2000 UTC (25 years, 4 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_2_1_B0, R_2_2_0_B0
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +10 -9 lines
Fixed import statements and removed extra empty lines

Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Feb 22 11:08:26 2000 UTC (25 years, 10 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_1_2_B0, R_2_1_1_B0
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +22 -18 lines
fixed race condition during the load of resources, now the load is synchronized
and an aditionnal lookup is performed inside the synchronized call to avoid multiple loads.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Apr 28 08:05:30 1999 UTC (26 years, 8 months ago) by bmahe
Branches: MAIN
CVS tags: rel-2-1, rel-2-0, 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, R_2_0_5_B1, R_2_0_5_B0, R_2_0_4_B1, R_2_0_4_B0, R_2_0_3_B0
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +7 -8 lines
unloaded resource doesn't handle events now

Revision 1.11: download - view: text, markup, annotated - select for diffs
Tue Apr 20 13:16:13 1999 UTC (26 years, 8 months ago) by ylafon
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +3 -2 lines
formatting change

Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Mar 22 17:03:40 1999 UTC (26 years, 9 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_2_B0
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +14 -9 lines
now PassDirectory act like a DirectoryResource is target is null

Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Dec 8 14:38:29 1998 UTC (27 years ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_1_B0, R_2_0_0_B0
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +55 -2 lines
checkSensoitivity implemented

Revision 1.8: download - view: text, markup, annotated - select for diffs
Tue Dec 1 09:59:46 1998 UTC (27 years ago) by bmahe
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -8 lines
bug fixed, occured when indexed name != physical name

Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri Aug 14 11:13:00 1998 UTC (27 years, 4 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_beta_3
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +5 -5 lines
javadoc updated

Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Aug 13 16:25:28 1998 UTC (27 years, 4 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +7 -1 lines
javadoc

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Jun 5 09:00:51 1998 UTC (27 years, 6 months ago) by ylafon
Branches: MAIN
CVS tags: R_2_0_beta_2_1
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +401 -400 lines
indent

Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Feb 6 09:50:47 1998 UTC (27 years, 10 months ago) by bmahe
Branches: MAIN
CVS tags: R_2_0_beta_1
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +13 -2 lines
should not be abstract

Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Jan 23 12:58:28 1998 UTC (27 years, 11 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.2: preferred, colored
Changes since revision 1.2: +10 -2 lines
removed unused classes

Revision 1.2: download - view: text, markup, annotated - select for diffs
Fri Jan 23 09:16:21 1998 UTC (27 years, 11 months ago) by bmahe
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +5 -1 lines
removed unused classes

Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Jan 22 12:54:53 1998 UTC (27 years, 11 months ago) by bmahe
Branches: MAIN
first commit for org.w3c

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