On 8/15/07, Andy <[EMAIL PROTECTED]> wrote: > It works, except it seems horribly inefficient. The problem is *each > time* a page is requested, it would have to do a remote URL Request, > write the new css file, etc. Has anyone been confronted with this > problem. Is there an easier solution?
Since the files are tied to specific SVN revisions, why not add a post-commit hook which generates the correct stylesheets (remember, you can use the Django template language for that pretty easily), and maybe even automatically rsync's or scp's them over to your media server? They only need to be generated once for a given SVN changeset, after all... -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

