routes_in=( ('/$a/$c/$f\.(htm|html|HTM|HTML)':'/$a/$c/$f'), )
routes_out=()
Mind that it is \. instead of . because it is a regex.
Massimo
http://.../app/default/grab/myview.htm
then remove the routes.py file and in default.py do
def grab():
response.view='default/'+args[1]
return dict()