@Override
public void read(Model model, String url)
{
// model.read(url)
TypedInputStream in = StreamManager.get().open(url) ;
if ( in == null )
throw new NotFoundException(url) ;
String contentType = in.getContentType() ;
// Reading a URL, no hint language provided.
// Use the URL structure as the hint.
Lang lang = null ;
if ( ! Lib.equal(contentType, WebContent.contentTypeTextPlain) )