'From Squeak3.7beta of ''1 April 2004'' [latest update: #5963] on 20 June 2004 at 10:44 am'! "Change Set: HTTPServerDirectoryFix Date: 20 June 2004 Author: Karl Ramberg Changed to use realUrl to make this method work.It is now possible to access server directories from the file list again."! !HTTPServerDirectory methodsFor: 'accessing' stamp: 'kfr 6/20/2004 10:36'! dirListUrl | listURL | listURL _ self realUrl. listURL last ~= $/ ifTrue: [listURL _ listURL , '/']. ^ listURL! !