1. 23 Eyl, 2015 1 kayıt (commit)
  2. 21 Eyl, 2015 2 kayıt (commit)
  3. 18 Eyl, 2015 1 kayıt (commit)
  4. 15 Eyl, 2015 1 kayıt (commit)
  5. 12 Eyl, 2015 1 kayıt (commit)
  6. 11 Eyl, 2015 1 kayıt (commit)
  7. 12 Agu, 2015 1 kayıt (commit)
    • Doug Beck's avatar
      Fixed #24257 -- Corrected i18n handling of percent signs. · b7508896
      Doug Beck yazdı
      Refactored tests to use a sample project.
      
      Updated extraction:
      * Removed special handling of single percent signs.
      * When extracting messages from template text, doubled all percent signs
        so they are not interpreted by gettext as string format flags. All
        strings extracted by gettext, if containing a percent sign, will now
        be labeled "#, python-format".
      
      Updated translation:
      * Used "%%" for "%" in template text before calling gettext.
      * Updated {% trans %} rendering to restore "%" from "%%".
      b7508896
  8. 08 Agu, 2015 2 kayıt (commit)
  9. 27 Tem, 2015 1 kayıt (commit)
  10. 21 Tem, 2015 1 kayıt (commit)
  11. 16 Tem, 2015 1 kayıt (commit)
  12. 01 Tem, 2015 1 kayıt (commit)
  13. 30 Haz, 2015 1 kayıt (commit)
  14. 29 Haz, 2015 1 kayıt (commit)
  15. 27 Haz, 2015 1 kayıt (commit)
  16. 24 Haz, 2015 1 kayıt (commit)
  17. 06 Haz, 2015 1 kayıt (commit)
  18. 02 Haz, 2015 1 kayıt (commit)
  19. 27 May, 2015 1 kayıt (commit)
  20. 21 May, 2015 1 kayıt (commit)
  21. 20 May, 2015 1 kayıt (commit)
  22. 28 Nis, 2015 1 kayıt (commit)
  23. 22 Nis, 2015 1 kayıt (commit)
  24. 20 Nis, 2015 1 kayıt (commit)
  25. 14 Nis, 2015 2 kayıt (commit)
  26. 01 Nis, 2015 1 kayıt (commit)
  27. 27 Mar, 2015 1 kayıt (commit)
  28. 20 Mar, 2015 1 kayıt (commit)
    • Preston Timmons's avatar
      Cleaned up the template debug implementation. · 55f12f87
      Preston Timmons yazdı
      This patch does three major things:
      
      * Merges the django.template.debug implementation into django.template.base.
      
      * Simplifies the debug implementation.
      
        The old implementation copied debug information to every token and node.
        The django_template_source attribute was set in multiple places, some
        quite hacky, like django.template.defaulttags.ForNode.
      
        Debug information is now annotated in two high-level places:
      
        * Template.compile_nodelist for errors during parsing
        * Node.render_annotated for errors during rendering
      
        These were chosen because they have access to the template and context
        as well as to all exceptions that happen during either the parse or
        render phase.
      
      * Moves the contextual line traceback information creation from
        django.views.debug into django.template.base.Template. The debug views now
        only deal with the presentation of the debug information.
      55f12f87
  29. 16 Mar, 2015 1 kayıt (commit)
  30. 10 Mar, 2015 2 kayıt (commit)
  31. 09 Mar, 2015 1 kayıt (commit)
  32. 07 Mar, 2015 1 kayıt (commit)
  33. 06 Mar, 2015 1 kayıt (commit)
  34. 05 Mar, 2015 1 kayıt (commit)
    • Preston Timmons's avatar
      Fixed test_notafile_error to pass on Windows. · fb7d6817
      Preston Timmons yazdı
      This test failed because a different error code is raised on Windows when
      opening a directory. Since the particular message isn't as important to this
      test as the fact that the original IOError is reraised, this fixes the test
      by making the assertion more generic.
      fb7d6817
  35. 03 Mar, 2015 1 kayıt (commit)
  36. 02 Mar, 2015 1 kayıt (commit)