I'm using the pylons "minify" webhelper to minify and combine all of my javascript/css files. It seems the helper concatenates all of the file names and uses the result as the name for the combined version. I have a lot of JavaScript files that are being combined and the resulting file name is giving the error:
IOError: [Errno 63] File name too long
Is there any way to manually specify the file name or shorten it without changing the helper code?
Basicaly MinificationWebHelpers adds following options to the WebHelpers javascript_link and stylesheet_link functions:
So it looks like you can set combined_filename to whatever you want the name to be