Re: [Django] #15035: collectstatic does not support remote backends that implement modified_time

2017-01-04 Thread Django
#15035: collectstatic does not support remote backends that implement 
modified_time
+-
   Reporter:  Ben Davis |Owner:  Jannis Leidel
   Type:|   Status:  closed
  Component:  Contrib apps  |  Version:  1.3-beta
   Severity:|   Resolution:  fixed
   Keywords:| Triage Stage:  Accepted
  Has patch:  1 |  Needs documentation:  0
Needs tests:  0 |  Patch needs improvement:  0
+-

Comment (by Tim Graham ):

 In [changeset:"bff4abacad48eba715be64d7b15582d15bdc1fca" bff4abac]:
 {{{
 #!CommitTicketReference repository=""
 revision="bff4abacad48eba715be64d7b15582d15bdc1fca"
 Refs #15035 -- Corrected a bug and improved comments for a staticfiles
 test.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/068.bc53f246d31a0711ac5c64753242d0eb%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15035: collectstatic does not support remote backends that implement modified_time

2011-01-07 Thread Django
#15035: collectstatic does not support remote backends that implement 
modified_time
---+
  Reporter:  bendavis78| Owner:  jezdez  
Status:  assigned  | Milestone:  1.3 
 Component:  Contrib apps  |   Version:  1.3-beta
Resolution:|  Keywords:  
 Stage:  Accepted  | Has_patch:  1   
Needs_docs:  0 |   Needs_tests:  0   
Needs_better_patch:  0 |  
---+
Comment (by bendavis78):

 Yup, works for me.  Thanks!

 Also thanks for leading me to discover that Django has an official git
 clone -- that makes me all types of happy :-D

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #15035: collectstatic does not support remote backends that implement modified_time

2011-01-07 Thread Django
#15035: collectstatic does not support remote backends that implement 
modified_time
---+
  Reporter:  bendavis78| Owner:  jezdez  
Status:  assigned  | Milestone:  1.3 
 Component:  Contrib apps  |   Version:  1.3-beta
Resolution:|  Keywords:  
 Stage:  Accepted  | Has_patch:  1   
Needs_docs:  0 |   Needs_tests:  0   
Needs_better_patch:  0 |  
---+
Changes (by jezdez):

  * status:  new => assigned
  * needs_better_patch:  => 0
  * component:  Uncategorized => Contrib apps
  * needs_tests:  => 0
  * version:  SVN => 1.3-beta
  * milestone:  => 1.3
  * owner:  nobody => jezdez
  * needs_docs:  => 0
  * stage:  Unreviewed => Accepted

Comment:

 Can you please check if this also works?

 https://github.com/jezdez/django/compare/master...trac-15035

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



[Django] #15035: collectstatic does not support remote backends that implement modified_time

2011-01-06 Thread Django
#15035: collectstatic does not support remote backends that implement 
modified_time
---+
 Reporter:  bendavis78 |   Owner:  nobody
   Status:  new|   Milestone:
Component:  Uncategorized  | Version:  SVN   
 Keywords: |   Stage:  Unreviewed
Has_patch:  1  |  
---+
 My CDN (rackspace cloud files) supports getting the modified time of an
 object.  If I implement modified_time() in my cloud storage app, we get an
 exception:

 {{{
 Traceback (most recent call last):
   File "./manage.py", line 26, in 
 management.execute_from_command_line()
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/core/management/__init__.py",
 line 429, in execute_from_command_line
 utility.execute()
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/core/management/__init__.py",
 line 379, in execute
 self.fetch_command(subcommand).run_from_argv(self.argv)
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/core/management/base.py",
 line 191, in run_from_argv
 self.execute(*args, **options.__dict__)
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/core/management/base.py",
 line 220, in execute
 output = self.handle(*args, **options)
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/core/management/base.py",
 line 351, in handle
 return self.handle_noargs(**options)
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/contrib/staticfiles/management/commands/collectstatic.py",
 line 78, in handle_noargs
 self.copy_file(source, prefix, storage, **options)
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/contrib/staticfiles/management/commands/collectstatic.py",
 line 130, in copy_file
 self.destination_storage.path(destination))
   File
 
"/home/ben/Projects/SavidWorks/ellableu/.env/src/django/django/core/files/storage.py",
 line 86, in path
 raise NotImplementedError("This backend doesn't support absolute
 paths.")
 NotImplementedError: This backend doesn't support absolute paths.
 }}}

 This can be fixed by setting destination_is_link to False when
 self.distination_local is False. Patch is attached.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.