Andy,
Here is some script which will resolve the missing trailing slash problem:
// require a trailing slash.
var path;
path = context.getRequest().getPathInfo();
if (path.charAt(path.length-1) != '/')
{
app.redirectTo(context,path+"/");
return;
}
This goes in system.script.xml in the get() function, below the check for
"if (xml == null)".
Unfortunately, there are several copies of system.script.xml. I'll change
the samples to move the system.script.xml file to a parent directory, and
have all apps include that one.
Mike