// possible to support type maps per/Container, i.e. /foo/*.jsp -
// but that would require changes in the spec.
Context mapCtx=ct.getContext();
Container defC=mapCtx.getContainer();
SimpleHashtable eM=(SimpleHashtable) defC.getNote( ctExtMapNote );
if( eM==null ) {
eM=new SimpleHashtable();
defC.setNote( ctExtMapNote, eM );
}
// add it to the Container local maps
if( ignoreCase )
eM.put( path.substring( 1 ).toLowerCase() , ct );
else
eM.put( path.substring( 1 ), ct );
if(debug>0)
log( "SM: extension map " + ctxP + "/" +
path + " " + ct + " " );
break;
case Container.PATH_MAP: