Re: Trying to set up hashed versioning in Django for static files

2014-03-10 Thread Vernon Burt
That seemed to do it.. I definitly learned a lot about serving these files. Thank you to both Tom and Camilo, you helped me a lot! Thanks again, Vernon Burt On Monday, March 10, 2014 6:02:30 AM UTC-7, Tom Evans wrote: > > On Mon, Mar 10, 2014 at 1:02 AM, Vernon Burt > >

Re: Trying to set up hashed versioning in Django for static files

2014-03-10 Thread Tom Evans
On Mon, Mar 10, 2014 at 1:02 AM, Vernon Burt wrote: > I suppose that's my confusion - before this, each application directory had > it's own /static/ directory with /css/, /js/ and /img/ directories as > needed. I adjusted the settings as mentioned and tried the following:

Re: Trying to set up hashed versioning in Django for static files

2014-03-09 Thread Vernon Burt
I suppose that's my confusion - before this, each application directory had it's own /static/ directory with /css/, /js/ and /img/ directories as needed. I adjusted the settings as mentioned and tried the following: DEBUG = False PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))

Re: Trying to set up hashed versioning in Django for static files

2014-03-08 Thread Tom Evans
On Fri, Mar 7, 2014 at 4:08 AM, Vernon Burt wrote: > Hello all, > > I've pretty quikly found out in my DJango adventure that I need to have some > kind of versioning for my static css and javascript files. After talking to > some web developers I was directed to use Django's

Re: Trying to set up hashed versioning in Django for static files

2014-03-07 Thread Camilo Torres
On Thursday, March 6, 2014 11:38:07 PM UTC-4:30, Vernon Burt wrote: > > I've pretty quikly found out in my DJango adventure that I need to have > some kind of versioning for my static css and javascript files. After > talking to some web developers I was directed to use Django's >

Trying to set up hashed versioning in Django for static files

2014-03-06 Thread Vernon Burt
Hello all, I've pretty quikly found out in my DJango adventure that I need to have some kind of versioning for my static css and javascript files. After talking to some web developers I was directed to use Django's CachedStaticFilesStorage app to append an md5 hash to the static files path.