a b c d e f g h i j k l m n o p q r s t u v w x y z

diff from 221029 and 224780

Description: Class based template tags for Django projects (Documentation)
 django-classy-tags is an approach at making writing template tags in
 Django easier, shorter and more fun by providing an extensible
 argument parser which reduces most of the boiler plate code you
 usually have to write when coding custom template tags.
 .
 django-classy-tags does no magic by design. Thus you will not get
 automatic registering/loading of your tags like other solutions
 provide. You will not get automatic argument guessing from function
 signatures but rather you have to declare what arguments your tag
 accepts. There is also no magic in your template tag class either,
 it’s just a subclass of django.template.Node which invokes a parser
 class to parse the arguments when it’s initialized and resolves those
 arguments into keyword arguments in it’s render method and calls it’s
 render_tag method with those keyword arguments.
 .
 This package contains the documentation.
Description: Class based template tags for Django projects (Documentation)
 django-classy-tags is an approach at making writing template tags in
 Django easier, shorter and more fun. It provides an extensible
 argument parser which reduces most of the boiler plate code you
 usually have to write when coding custom template tags.
 .
 django-classy-tags does no magic by design. Thus you will not get
 automatic registering/loading of your tags like other solutions
 provide. You will not get automatic argument guessing from function
 signatures but rather you have to declare what arguments your tag
 accepts. There is no magic in your template tag class either,
 it’s just a subclass of django.template.Node which invokes a parser
 class to parse the arguments when it’s initialized and resolves those
 arguments into keyword arguments in it’s render method and calls its
 render_tag method with those keyword arguments.
 .
 This package contains the documentation.
--- 221029	Thu Jan  1 00:00:00 1970
+++ 224780	Thu Jan  1 00:00:00 1970
@@ -1,6 +1,6 @@
 Class based template tags for Django projects (Documentation)
  django-classy-tags is an approach at making writing template tags in
- Django easier, shorter and more fun by providing an extensible
+ Django easier, shorter and more fun. It provides an extensible
  argument parser which reduces most of the boiler plate code you
  usually have to write when coding custom template tags.
  .
@@ -8,10 +8,10 @@
  automatic registering/loading of your tags like other solutions
  provide. You will not get automatic argument guessing from function
  signatures but rather you have to declare what arguments your tag
- accepts. There is also no magic in your template tag class either,
+ accepts. There is no magic in your template tag class either,
  it’s just a subclass of django.template.Node which invokes a parser
  class to parse the arguments when it’s initialized and resolves those
- arguments into keyword arguments in it’s render method and calls it’s
+ arguments into keyword arguments in it’s render method and calls its
  render_tag method with those keyword arguments.
  .
  This package contains the documentation.