two quick suggestions for scaffolds. i'd be happy to submit a patch if the maintainers agree:
1. Move cache_max_age to a dev.ini setting scaffolds currently have this line: https://github.com/Pylons/pyramid/blob/master/pyramid/scaffolds/alchemy/%2Bpackage%2B/__init__.py https://github.com/Pylons/pyramid/blob/master/pyramid/scaffolds/starter/%2Bpackage%2B/__init__.py https://github.com/Pylons/pyramid/blob/master/pyramid/scaffolds/zodb/%2Bpackage%2B/__init__.py config.add_static_view('static', 'static', cache_max_age=3600) That's great in production, but on dev you often need to test against css/js/img changes I found this approach works very well: __init__.py config.add_static_view('static', 'static', cache_max_age=settings['static.cache_max_age']) dev.ini static.cache_max_age= 60 [ then i use 3600 on production.ini and 600 on staging.ini ] 2. migrate all the /static/ items to /static/pyramid/ it's too cluttered and slightly intimidating , and when you're playing around... i want to clean out those files but I don't want to lose them (yet). -- You received this message because you are subscribed to the Google Groups "pylons-devel" group. To post to this group, send email to pylons-devel@googlegroups.com. To unsubscribe from this group, send email to pylons-devel+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/pylons-devel?hl=en.