Ticket #17660: 17660a_docs.patch

File 17660a_docs.patch, 828 bytes (added by FunkyBob, 12 years ago)

Updated docs patch

  • docs/releases/1.4.txt

     
    297297backend's ``url`` method and therefore supports advanced features such as
    298298:ref:`serving files from a cloud service<staticfiles-from-cdn>`.
    299299
     300``extends`` template tag
     301~~~~~~~~~~~~~~~~~~~~~~~~
     302
     303Previously, the :ttag:`extends` tag used a buggy method of parsing arguments,
     304which could lead to it erroneously considering an argument as a string literal
     305when it wasn't.  It now utilises parser.compile_filter like other tags.
     306
     307The ``ExtendsNode`` definition has changed, so it may break any custom tags
     308that use this class.
     309
    300310``CachedStaticFilesStorage`` storage backend
    301311~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    302312
Back to Top