renamed to django-tables2
authorBradley Ayers <bradley.ayers@gmail.com>
Wed, 8 Jun 2011 23:06:34 +0000 (09:06 +1000)
committerBradley Ayers <bradley.ayers@gmail.com>
Wed, 8 Jun 2011 23:06:34 +0000 (09:06 +1000)
35 files changed:
MANIFEST.in
README.rst
django_tables2/__init__.py [moved from django_tables/__init__.py with 100% similarity]
django_tables2/columns.py [moved from django_tables/columns.py with 99% similarity]
django_tables2/models.py [moved from django_tables/models.py with 100% similarity]
django_tables2/rows.py [moved from django_tables/rows.py with 99% similarity]
django_tables2/static/django_tables/themes/paleblue/css/screen.css [moved from django_tables/static/django_tables/themes/paleblue/css/screen.css with 100% similarity]
django_tables2/static/django_tables/themes/paleblue/img/arrow-active-down.png [moved from django_tables/static/django_tables/themes/paleblue/img/arrow-active-down.png with 100% similarity]
django_tables2/static/django_tables/themes/paleblue/img/arrow-active-up.png [moved from django_tables/static/django_tables/themes/paleblue/img/arrow-active-up.png with 100% similarity]
django_tables2/static/django_tables/themes/paleblue/img/arrow-inactive-down.png [moved from django_tables/static/django_tables/themes/paleblue/img/arrow-inactive-down.png with 100% similarity]
django_tables2/static/django_tables/themes/paleblue/img/arrow-inactive-up.png [moved from django_tables/static/django_tables/themes/paleblue/img/arrow-inactive-up.png with 100% similarity]
django_tables2/static/django_tables/themes/paleblue/img/header-bg.gif [moved from django_tables/static/django_tables/themes/paleblue/img/header-bg.gif with 100% similarity]
django_tables2/static/django_tables/themes/paleblue/img/pagination-bg.gif [moved from django_tables/static/django_tables/themes/paleblue/img/pagination-bg.gif with 100% similarity]
django_tables2/tables.py [moved from django_tables/tables.py with 98% similarity]
django_tables2/templates/django_tables2/basic_table.html [moved from django_tables/templates/django_tables/basic_table.html with 100% similarity]
django_tables2/templates/django_tables2/table.html [moved from django_tables/templates/django_tables/table.html with 98% similarity]
django_tables2/templatetags/__init__.py [moved from django_tables/templatetags/__init__.py with 100% similarity]
django_tables2/templatetags/django_tables2.py [moved from django_tables/templatetags/django_tables.py with 97% similarity]
django_tables2/utils.py [moved from django_tables/utils.py with 98% similarity]
django_tables2/views.py [moved from django_tables/views.py with 97% similarity]
docs/Makefile
docs/conf.py
docs/index.rst
docs/make.bat
example/app/tables.py
example/settings.py
example/templates/example.html
setup.py
tests/__init__.py
tests/columns.py
tests/core.py
tests/models.py
tests/rows.py
tests/templates.py
tests/utils.py

index 5962fc8fa89ac518edb5255adf08b8df09ed9156..14296107253f30651868960ffdb0512d14bef92d 100644 (file)
@@ -1,5 +1,5 @@
 include README.rst
-recursive-include django_tables/templates *
-recursive-include django_tables/static *
+recursive-include django_tables2/templates *
+recursive-include django_tables2/static *
 recursive-include example/app/fixtures *
 recursive-include example/app/templates *
index 171ecfd2db50f4f7700480ef49a37dc9f3b55403..79c3960d4097a8713aa64b3c234cb484de73d587 100644 (file)
@@ -1,14 +1,44 @@
-===============================================
-django-tables - An app for creating HTML tables
-===============================================
+================================================
+django-tables2 - An app for creating HTML tables
+================================================
 
-django-tables simplifies the task of turning sets of datainto HTML tables. It
+.. note::
+
+    Prior to v0.6.0 this package was a fork of miracle2k's and both were known
+    as *django-tables*. This caused some problems (e.g. ambiguity and inability
+    to put this library on PyPI) so as of v0.6.0 this package is known as
+    *django-tables2*.
+
+django-tables2 simplifies the task of turning sets of data into HTML tables. It
 has native support for pagination and sorting. It does for HTML tables what
 ``django.forms`` does for HTML forms.
 
-Documentation_ is available on http://readthedocs.org
+Creating a table is as simple as::
+
+    import django_tables2 as tables
+
+    class SimpleTable(tables.Table):
+        class Meta:
+            model = Simple
+
+This would then be used in a view::
+
+    def simple_list(request):
+        queryset = Simple.objects.all()
+        table = SimpleTable(queryset)
+        return render_to_response("simple_list.html", {"table": table},
+                                  context_instance=RequestContext(request))
+
+And finally in the template::
+
+    {% load django_tables2 %}
+    {% render_table table %}
+
+
+This example shows one of the simplest cases, but django-tables2 can do a lot
+more! Check out the `documentation`__ for more details.
 
-.. _Documentation: http://readthedocs.org/docs/django-tables/en/latest/
+.. __: http://readthedocs.org/docs/django-tables/en/latest/
 
 
 Building the documentation
similarity index 99%
rename from django_tables/columns.py
rename to django_tables2/columns.py
index e3626d2a6b74f8906c970340c0c9601f0e259875..e711d7178d33d91c91e4ac0b1f9a9fc3cf993d80 100644 (file)
@@ -203,7 +203,7 @@ class LinkColumn(Column):
         )
 
         # tables.py
-        from django_tables.utils import A  # alias for Accessor
+        from django_tables2.utils import A  # alias for Accessor
 
         class PeopleTable(tables.Table):
             name = tables.LinkColumn('people_detail', args=[A('pk')])
similarity index 99%
rename from django_tables/rows.py
rename to django_tables2/rows.py
index f9b97702fb494ec1f7b011ffb60411cf120421f5..5579ebdfb9bbd337a8e9c5b0149da6958837ba1c 100644 (file)
@@ -18,7 +18,7 @@ class BoundRow(object):
 
     .. code-block:: python
 
-        >>> import django_tables as tables
+        >>> import django_tables2 as tables
         >>> class SimpleTable(tables.Table):
         ...     a = tables.Column()
         ...     b = tables.CheckBoxColumn(attrs={'name': 'my_chkbox'})
similarity index 98%
rename from django_tables/tables.py
rename to django_tables2/tables.py
index 3112e7536864c22bb7f4bc650b018bab30a7535e..3bd4c56cfe45d3f14e4665c05d7092167ff3fc54 100644 (file)
@@ -334,10 +334,10 @@ class Table(StrAndUnicode):
 
         The rendered table won't include pagination or sorting, as those
         features require a RequestContext. Use the ``render_table`` template
-        tag (requires ``{% load django_tables %}``) if you require this extra
+        tag (requires ``{% load django_tables2 %}``) if you require this extra
         functionality.
         """
-        template = get_template('django_tables/basic_table.html')
+        template = get_template('django_tables2/basic_table.html')
         return template.render(Context({'table': self}))
 
     @property
similarity index 98%
rename from django_tables/templates/django_tables/table.html
rename to django_tables2/templates/django_tables2/table.html
index 6400b75fc38d262f773ab46d5f5a8d82825fb5fc..d580a1a591eb7a8aba4b1b6d1a24248c7a229a93 100644 (file)
@@ -1,5 +1,5 @@
 {% spaceless %}
-{% load django_tables %}
+{% load django_tables2 %}
 {% if table.page %}
 <div class="table-container">
 {% endif %}
similarity index 97%
rename from django_tables/templatetags/django_tables.py
rename to django_tables2/templatetags/django_tables2.py
index 1166a3de3ccf68dc56c745b3071c5ffa73bd7339..3b1a6a5f73c7ac88ed0947747454c4c8fbce83a0 100644 (file)
@@ -1,4 +1,5 @@
-"""
+#! -*- coding: utf-8 -*-
+"""
 Allows setting/changing/removing of chosen url query string parameters, while
 maintaining any existing others.
 
@@ -102,7 +103,7 @@ class RenderTableNode(template.Node):
                                         "table": table})
             try:
                 table.request = context["request"]
-                return get_template("django_tables/table.html").render(context)
+                return get_template("django_tables2/table.html").render(context)
             finally:
                 del table.request
         except:
similarity index 98%
rename from django_tables/utils.py
rename to django_tables2/utils.py
index 93107ddf7fc7c0732eacce28aaf8b0c51b77ac0d..de376cec0ad4a479932f8ab22f0b6632025e7921 100644 (file)
@@ -65,7 +65,7 @@ class OrderBy(str):
 
 class OrderByTuple(tuple, StrAndUnicode):
     """Stores ordering as (as :class:`.OrderBy` objects). The
-    :attr:`django_tables.tables.Table.order_by` property is always converted
+    :attr:`django_tables2.tables.Table.order_by` property is always converted
     to an :class:`.OrderByTuple` object.
 
     This class is essentially just a :class:`tuple` with some useful extras.
@@ -262,7 +262,7 @@ class AttributeDict(dict):
 
         .. code-block:: python
 
-            >>> from django_tables.utils import AttributeDict
+            >>> from django_tables2.utils import AttributeDict
             >>> attrs = AttributeDict({'class': 'mytable', 'id': 'someid'})
             >>> attrs.as_html()
             'class="mytable" id="someid"'
similarity index 97%
rename from django_tables/views.py
rename to django_tables2/views.py
index 886ffe307cce831059e91684f49174e1d1b567f6..ca58560680f868512db27e455029cf57af4ecd6b 100644 (file)
@@ -9,7 +9,7 @@ class SingleTableMixin(object):
     ``TemplateResponseMixin``.
 
     :param table_class: table class
-    :type table_class: subclass of ``django_tables.Table``
+    :type table_class: subclass of ``django_tables2.Table``
 
     :param table_data: data used to populate the table
     :type table_data: any compatible data source
index 4dab0d95807f53e9d57880c7fca4694e107fb370..0d39543450358d69e27706daa041248f21ca3f27 100644 (file)
@@ -72,17 +72,17 @@ qthelp:
        @echo
        @echo "Build finished; now you can run "qcollectiongenerator" with the" \
              ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
-       @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/django-tables.qhcp"
+       @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/django-tables2.qhcp"
        @echo "To view the help file:"
-       @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/django-tables.qhc"
+       @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/django-tables2.qhc"
 
 devhelp:
        $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
        @echo
        @echo "Build finished."
        @echo "To view the help file:"
-       @echo "# mkdir -p $$HOME/.local/share/devhelp/django-tables"
-       @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/django-tables"
+       @echo "# mkdir -p $$HOME/.local/share/devhelp/django-tables2"
+       @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/django-tables2"
        @echo "# devhelp"
 
 epub:
index c8cc665b151bf1c900536eaef142ed1140ed9ce6..cd6c4fbae7d1b568becde195b92bdc5c3b27b9ea 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# django-tables documentation build configuration file, created by
+# django-tables2 documentation build configuration file, created by
 # sphinx-quickstart on Wed Jan  5 13:04:34 2011.
 #
 # This file is execfile()d with the current directory set to its containing dir.
@@ -20,7 +20,7 @@ os.environ["DJANGO_SETTINGS_MODULE"] = "example.settings"
 # import our libs
 sys.path.insert(0, os.path.join(os.path.abspath('.'), os.pardir))
 import example
-import django_tables as tables
+import django_tables2 as tables
 sys.path.pop(0)
 
 
@@ -46,7 +46,7 @@ source_suffix = '.rst'
 master_doc = 'index'
 
 # General information about the project.
-project = u'django-tables'
+project = u'django-tables2'
 #copyright = u''
 
 # The version info for the project you're documenting, acts as replacement for
@@ -170,7 +170,7 @@ html_show_copyright = False
 #html_file_suffix = None
 
 # Output file base name for HTML help builder.
-htmlhelp_basename = 'django-tablesdoc'
+htmlhelp_basename = 'django-tables2doc'
 
 
 # -- Options for LaTeX output --------------------------------------------------
@@ -184,7 +184,7 @@ htmlhelp_basename = 'django-tablesdoc'
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, documentclass [howto/manual]).
 latex_documents = [
-  ('index', 'django-tables.tex', u'django-tables Documentation',
+  ('index', 'django-tables2.tex', u'django-tables2 Documentation',
    u'n/a', 'manual'),
 ]
 
@@ -217,6 +217,6 @@ latex_documents = [
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    ('index', 'django-tables', u'django-tables Documentation',
+    ('index', 'django-tables2', u'django-tables2 Documentation',
      [u'n/a'], 1)
 ]
index ca434285be84bf97204fc4d2c4ad46e16bf4b27f..7d5d33ace068b424d0608fef40564c4ac3028d7a 100644 (file)
@@ -1,21 +1,21 @@
 .. default-domain:: py
 
-===============================================
-django-tables - An app for creating HTML tables
-===============================================
+================================================
+django-tables2 - An app for creating HTML tables
+================================================
 
-django-tables simplifies the task of turning sets of datainto HTML tables. It
+django-tables2 simplifies the task of turning sets of datainto HTML tables. It
 has native support for pagination and sorting. It does for HTML tables what
 ``django.forms`` does for HTML forms.
 
 Quick start guide
 =================
 
-1. Download and install from https://github.com/bradleyayers/django-tables.
+1. Download and install from https://github.com/bradleyayers/django-tables2.
    Grab a ``.tar.gz`` of the latest tag, and run ``pip install <tar.gz>``.
-2. Hook the app into your Django project by adding ``'django_tables'`` to your
+2. Hook the app into your Django project by adding ``'django_tables2'`` to your
    ``INSTALLED_APPS`` setting.
-3. Write a subclass of :class:`~django_tables.tables.Table` that describes the
+3. Write a subclass of :class:`~django_tables2.tables.Table` that describes the
    structure of your table.
 4. Create an instance of your table in a :term:`view`, provide it with
    :term:`table data`, and pass it to a :term:`template` for display.
@@ -39,13 +39,13 @@ turn it into an HTML table. This is the data we'll be using:
     ]
 
 
-The first step is to subclass :class:`~django_tables.tables.Table` and describe
+The first step is to subclass :class:`~django_tables2.tables.Table` and describe
 the table structure. This is done by creating a column for each attribute in
 the :term:`table data`.
 
 .. code-block:: python
 
-    import django_tables as tables
+    import django_tables2 as tables
 
     class CountryTable(tables.Table):
         name = tables.Column()
@@ -72,7 +72,7 @@ write a view that would look something like:
                                   context_instance=RequestContext(request))
 
 In your template, the easiest way to :term:`render` the table is via the
-:meth:`~django_tables.tables.Table.as_html` method:
+:meth:`~django_tables2.tables.Table.as_html` method:
 
 .. code-block:: django
 
@@ -97,7 +97,7 @@ table via the :ref:`template tag <template-tags.render_table>` rather than
 
 .. code-block:: django
 
-    {% load django_tables %}
+    {% load django_tables2 %}
     {% render_table table %}
 
 .. note::
@@ -128,7 +128,7 @@ adding a ``class Meta:`` to the table class and defining a ``attrs`` variable.
 
 .. code-block:: python
 
-    import django_tables as tables
+    import django_tables2 as tables
 
     class CountryTable(tables.Table):
         name = tables.Column()
@@ -143,7 +143,7 @@ The last thing to do is to include the stylesheet in the template.
 
 .. code-block:: html
 
-    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}django_tables/themes/paleblue/css/screen.css" />
+    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}django_tables2/themes/paleblue/css/screen.css" />
 
 Save your template and reload the page in your browser.
 
@@ -164,7 +164,7 @@ table with data, pass it in as the first argument when instantiating a table.
 Each item in the :term:`table data` is called a :term:`record` and is used to
 populate a single row in the table. By default, the table uses column names
 as :term:`accessors <accessor>` to retrieve individual cell values. This can
-be changed via the :attr:`~django_tables.columns.Column.accessor` argument.
+be changed via the :attr:`~django_tables2.columns.Column.accessor` argument.
 
 Any iterable can be used as table data, and there's builtin support for
 :class:`QuerySet` objects (to ensure they're handled effeciently).
@@ -285,7 +285,7 @@ Column headers
 ==============
 
 The header cell for each column comes from the column's
-:meth:`~django_tables.columns.BoundColumn.header` method. By default this
+:meth:`~django_tables2.columns.BoundColumn.header` method. By default this
 method returns the column's ``verbose_name``, which is either explicitly
 specified, or generated automatically based on the column name.
 
@@ -354,12 +354,12 @@ CSS
 ---
 
 In order to use CSS to style a table, you'll probably want to add a
-``class`` or ``id`` attribute to the ``<table>`` element. ``django-tables`` has
+``class`` or ``id`` attribute to the ``<table>`` element. ``django-tables2`` has
 a hook that allows abitrary attributes to be added to the ``<table>`` tag.
 
 .. code-block:: python
 
-    >>> import django_tables as tables
+    >>> import django_tables2 as tables
     >>> class SimpleTable(tables.Table):
     ...     id = tables.Column()
     ...     age = tables.Column()
@@ -404,7 +404,7 @@ arguments you're interested in, and the function will recieve them
 
 .. code-block:: python
 
-    >>> import django_tables as tables
+    >>> import django_tables2 as tables
     >>> class SimpleTable(tables.Table):
     ...     row_number = tables.Column()
     ...     id = tables.Column()
@@ -440,7 +440,7 @@ To change the way cells are rendered, simply override the
 
 .. code-block:: python
 
-    >>> import django_tables as tables
+    >>> import django_tables2 as tables
     >>>
     >>> class AngryColumn(tables.Column):
     ...     def render(self, value):
@@ -500,7 +500,7 @@ ignore the built-in generation tools, and instead pass an instance of your
 
 .. code-block:: django
 
-    {% load django_tables %}
+    {% load django_tables2 %}
     <table>
         <thead>
             <tr>
@@ -535,14 +535,14 @@ Template tags
 render_table
 ------------
 
-Renders a :class:`~django_tables.tables.Table` object to HTML and includes as
+Renders a :class:`~django_tables2.tables.Table` object to HTML and includes as
 many features as possible.
 
 Sample usage:
 
 .. code-block:: django
 
-    {% load django_tables %}
+    {% load django_tables2 %}
     {% render_table table %}
 
 This tag temporarily modifies the :class:`.Table` object while it is being
@@ -625,7 +625,7 @@ Class Based Generic Mixins
 ==========================
 
 Django 1.3 introduced `class based views`__ as a mechanism to reduce the
-repetition in view code. django-tables comes with a single class based view
+repetition in view code. django-tables2 comes with a single class based view
 mixin: ``SingleTableMixin``. It makes it trivial to incorporate a table into a
 view/template, however it requires a few variables to be defined on the view:
 
@@ -641,7 +641,7 @@ For example:
 
 .. code-block:: python
 
-    from django_tables.views import SingleTableMixin
+    from django_tables2.views import SingleTableMixin
     from django.generic.views.list import ListView
 
 
@@ -664,7 +664,7 @@ The template could then be as simple as:
 
 .. code-block:: django
 
-    {% load django_tables %}
+    {% load django_tables2 %}
     {% render_table table %}
 
 Such little code is possible due to the example above taking advantage of
@@ -699,7 +699,7 @@ Example::
     ['name']
 
 To have a mixin contribute a column, it needs to be a subclass of
-:class:`~django_tables.tables.Table`. With this in mind the previous example
+:class:`~django_tables2.tables.Table`. With this in mind the previous example
 *should* have been written as follows::
 
     >>> class UsefulMixin(tables.Table):
@@ -735,7 +735,7 @@ Often a table will become quite complex after time, e.g. `table.render_foo`_,
 changing ``verbose_name`` on columns, or adding an extra
 :class:`~.CheckBoxColumn`.
 
-``django-tables`` offers the :attr:`.Table.Meta.model` option to ease the pain.
+``django-tables2`` offers the :attr:`.Table.Meta.model` option to ease the pain.
 The ``model`` option causes the table automatically generate columns for the
 fields in the model. This means that the above table could be re-written as
 follows::
@@ -750,7 +750,7 @@ follows::
 If you want to customise one of the columns, simply define it the way you would
 normally::
 
-    >>> from django_tables import A
+    >>> from django_tables2 import A
     >>> class PersonTable(tables.Table):
     ...     user = tables.LinkColumn("admin:auth_user_change", args=[A("user.pk")])
     ...
@@ -794,14 +794,14 @@ API Reference
 :class:`Accessor` Objects:
 --------------------------
 
-.. autoclass:: django_tables.utils.Accessor
+.. autoclass:: django_tables2.utils.Accessor
     :members:
 
 
 :class:`Table` Objects:
 -----------------------
 
-.. autoclass:: django_tables.tables.Table
+.. autoclass:: django_tables2.tables.Table
 
 
 :class:`Table.Meta` Objects:
@@ -816,7 +816,7 @@ API Reference
 
         Allows custom HTML attributes to be specified which will be added to
         the ``<table>`` tag of any table rendered via
-        :meth:`~django_tables.tables.Table.as_html` or the
+        :meth:`~django_tables2.tables.Table.as_html` or the
         :ref:`template-tags.render_table` template tag.
 
         :type: ``dict``
@@ -867,14 +867,14 @@ API Reference
             ...     last_name = tables.Column()
             ...
             >>> Person.base_columns
-            {'first_name': <django_tables.columns.Column object at 0x10046df10>,
-            'last_name': <django_tables.columns.Column object at 0x10046d8d0>}
+            {'first_name': <django_tables2.columns.Column object at 0x10046df10>,
+            'last_name': <django_tables2.columns.Column object at 0x10046d8d0>}
             >>> class ForgetfulPerson(Person):
             ...     class Meta:
             ...         exclude = ("last_name", )
             ...
             >>> ForgetfulPerson.base_columns
-            {'first_name': <django_tables.columns.Column object at 0x10046df10>}
+            {'first_name': <django_tables2.columns.Column object at 0x10046df10>}
 
         .. note::
 
@@ -967,41 +967,41 @@ API Reference
 :class:`TableData` Objects:
 ------------------------------
 
-.. autoclass:: django_tables.tables.TableData
+.. autoclass:: django_tables2.tables.TableData
     :members: __init__, order_by, __getitem__, __len__
 
 
 :class:`Column` Objects:
 ------------------------
 
-.. autoclass:: django_tables.columns.Column
+.. autoclass:: django_tables2.columns.Column
 
 
 :class:`CheckBoxColumn` Objects:
 --------------------------------
 
-.. autoclass:: django_tables.columns.CheckBoxColumn
+.. autoclass:: django_tables2.columns.CheckBoxColumn
     :members:
 
 
 :class:`LinkColumn` Objects:
 ----------------------------
 
-.. autoclass:: django_tables.columns.LinkColumn
+.. autoclass:: django_tables2.columns.LinkColumn
     :members:
 
 
 :class:`TemplateColumn` Objects:
 --------------------------------
 
-.. autoclass:: django_tables.columns.TemplateColumn
+.. autoclass:: django_tables2.columns.TemplateColumn
     :members:
 
 
 :class:`BoundColumns` Objects
 -----------------------------
 
-.. autoclass:: django_tables.columns.BoundColumns
+.. autoclass:: django_tables2.columns.BoundColumns
     :members: all, items, sortable, visible, __iter__,
               __contains__, __len__, __getitem__
 
@@ -1009,42 +1009,42 @@ API Reference
 :class:`BoundColumn` Objects
 ----------------------------
 
-.. autoclass:: django_tables.columns.BoundColumn
+.. autoclass:: django_tables2.columns.BoundColumn
     :members:
 
 
 :class:`BoundRows` Objects
 --------------------------
 
-.. autoclass:: django_tables.rows.BoundRows
+.. autoclass:: django_tables2.rows.BoundRows
     :members: __iter__, __len__, count
 
 
 :class:`BoundRow` Objects
 -------------------------
 
-.. autoclass:: django_tables.rows.BoundRow
+.. autoclass:: django_tables2.rows.BoundRow
     :members: __getitem__, __contains__, __iter__, record, table
 
 
 :class:`AttributeDict` Objects
 ------------------------------
 
-.. autoclass:: django_tables.utils.AttributeDict
+.. autoclass:: django_tables2.utils.AttributeDict
     :members:
 
 
 :class:`OrderBy` Objects
 ------------------------
 
-.. autoclass:: django_tables.utils.OrderBy
+.. autoclass:: django_tables2.utils.OrderBy
     :members:
 
 
 :class:`OrderByTuple` Objects
 -----------------------------
 
-.. autoclass:: django_tables.utils.OrderByTuple
+.. autoclass:: django_tables2.utils.OrderByTuple
     :members: __unicode__, __contains__, __getitem__, cmp
 
 
@@ -1054,10 +1054,10 @@ Glossary
 .. glossary::
 
     accessor
-        Refers to an :class:`~django_tables.utils.Accessor` object
+        Refers to an :class:`~django_tables2.utils.Accessor` object
 
     bare orderby
-        The non-prefixed form of an :class:`~django_tables.utils.OrderBy`
+        The non-prefixed form of an :class:`~django_tables2.utils.OrderBy`
         object. Typically the bare form is just the ascending form.
 
         Example: ``age`` is the bare form of ``-age``
@@ -1082,7 +1082,7 @@ Glossary
         A single Python object used as the data for a single row.
 
     render
-        The act of serialising a :class:`~django_tables.tables.Table` into
+        The act of serialising a :class:`~django_tables2.tables.Table` into
         HTML.
 
     template
@@ -1090,4 +1090,4 @@ Glossary
 
     table data
         An interable of :term:`records <record>` that
-        :class:`~django_tables.tables.Table` uses to populate its rows.
+        :class:`~django_tables2.tables.Table` uses to populate its rows.
index f2874c0c1681d025b92884db2e7f924251644ab3..71ef011a4eb926788ba89db3ae9d8b0cbc74b4dc 100644 (file)
@@ -95,9 +95,9 @@ if "%1" == "qthelp" (
        echo.
        echo.Build finished; now you can run "qcollectiongenerator" with the ^
 .qhcp project file in %BUILDDIR%/qthelp, like this:
-       echo.^> qcollectiongenerator %BUILDDIR%\qthelp\django-tables.qhcp
+       echo.^> qcollectiongenerator %BUILDDIR%\qthelp\django-tables2.qhcp
        echo.To view the help file:
-       echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-tables.ghc
+       echo.^> assistant -collectionFile %BUILDDIR%\qthelp\django-tables2.ghc
        goto end
 )
 
index 522e6660adeb5adb25657789288825c3c60bf090..56e5d9df15676e2ab7c82db1f0f43e77e2f42c11 100644 (file)
@@ -1,4 +1,4 @@
-import django_tables as tables
+import django_tables2 as tables
 
 
 class CountryTable(tables.Table):
index d8d8d9f414f00ab8cd7c5c5a49f2c1410a2def36..f67caa80b5253273d0ba0fd2de42518c1c7798cd 100644 (file)
@@ -1,4 +1,4 @@
-# import django_tables
+# import django_tables2
 from os.path import dirname, join, abspath
 import sys
 
@@ -129,7 +129,7 @@ INSTALLED_APPS = (
     'django.contrib.messages',
     'django.contrib.staticfiles',
     'example.app',
-    'django_tables',
+    'django_tables2',
 )
 
 # A sample logging configuration. The only tangible logging
index d444881c2f6974b36adc2725011c2daec8da7175..7e168d11f72d4b920c3f1c71996289623ab323ba 100644 (file)
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}">
     <head>
-        <title>django-tables examples</title>
-        <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}django_tables/themes/paleblue/css/screen.css" />
+        <title>django-tables2 examples</title>
+        <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}django_tables2/themes/paleblue/css/screen.css" />
         <style type="text/css">
             pre {
                 background-color: #D8F0FF;
@@ -13,9 +13,9 @@
     </head>
 
     <body>
-        <h1><tt>django-tables</tt> examples</h1>
+        <h1><tt>django-tables2</tt> examples</h1>
         <p>This page demonstrates various types of tables being rendered via
-        <tt>django-tables</tt>.</p>
+        <tt>django-tables2</tt>.</p>
 
         <h2>Example 1 — QuerySet</h2>
         <h3>via <tt>as_html()</tt></h3>
@@ -23,9 +23,9 @@
         {{ example1.as_html }}
 
         <h3>via template tag</h3>
-        <pre>{% templatetag openblock %} load django_tables {% templatetag closeblock %}
+        <pre>{% templatetag openblock %} load django_tables2 {% templatetag closeblock %}
 {% templatetag openblock %} render_table example1 {% templatetag closeblock %}</pre>
-        {% load django_tables %}
+        {% load django_tables2 %}
         {% render_table example1 %}
 
         <h2>Example 2 — QuerySet + pagination</h2>
@@ -34,9 +34,9 @@
         {{ example2.as_html }}
 
         <h3>via template tag</h3>
-        <pre>{% templatetag openblock %} load django_tables {% templatetag closeblock %}
+        <pre>{% templatetag openblock %} load django_tables2 {% templatetag closeblock %}
 {% templatetag openblock %} render_table example2 {% templatetag closeblock %}</pre>
-        {% load django_tables %}
+        {% load django_tables2 %}
         {% render_table example2 %}
 
         <h2>Example 3 — QuerySet + paleblue theme</h2>
@@ -45,9 +45,9 @@
         {{ example3.as_html }}
 
         <h3>via template tag</h3>
-        <pre>{% templatetag openblock %} load django_tables {% templatetag closeblock %}
+        <pre>{% templatetag openblock %} load django_tables2 {% templatetag closeblock %}
 {% templatetag openblock %} render_table example3 {% templatetag closeblock %}</pre>
-        {% load django_tables %}
+        {% load django_tables2 %}
         {% render_table example3 %}
 
         <h2>Example 4 — QuerySet + pagination + paleblue theme</h2>
@@ -56,9 +56,9 @@
         {{ example4.as_html }}
 
         <h3>via template tag</h3>
-        <pre>{% templatetag openblock %} load django_tables {% templatetag closeblock %}
+        <pre>{% templatetag openblock %} load django_tables2 {% templatetag closeblock %}
 {% templatetag openblock %} render_table example4 {% templatetag closeblock %}</pre>
-        {% load django_tables %}
+        {% load django_tables2 %}
         {% render_table example4 %}
 
     </body>
index 68c1132a61aec8a7ece41ee57375c174188277b7..496a2a0be2749439f24a8608a3e28bbd72a0911f 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,14 +3,14 @@ from setuptools import setup, find_packages
 
 
 setup(
-    name='django-tables',
-    version='0.5.1',
+    name='django-tables2',
+    version='0.6.0.dev',
     description='Table framework for Django',
 
     author='Bradley Ayers',
     author_email='bradley.ayers@gmail.com',
     license='Simplified BSD',
-    url='https://github.com/bradleyayers/django-tables/',
+    url='https://github.com/bradleyayers/django-tables2/',
 
     packages=find_packages(exclude=['tests.*', 'tests', 'example.*', 'example']),
     include_package_data=True,  # declarations in MANIFEST.in
index dec96d788793fad3047794761477c81817bdd547..21419be7a7e4a6691110eba1f9daaed80db348cb 100644 (file)
@@ -16,7 +16,7 @@ settings.configure(
     },
     INSTALLED_APPS = [
         'tests.testapp',
-        'django_tables',
+        'django_tables2',
     ],
     ROOT_URLCONF = 'tests.testapp.urls',
 )
index 2af414266b33ca1f262a311461d32b146a4e02f0..8dd7cb618d86f79b2c2375a67cca350162a33e0a 100644 (file)
@@ -5,8 +5,8 @@ from django_attest import TransactionTestContext
 from django.test.client import RequestFactory
 from django.template import Context, Template
 from django.core.exceptions import ImproperlyConfigured
-import django_tables as tables
-from django_tables import utils, A
+import django_tables2 as tables
+from django_tables2 import utils, A
 from .testapp.models import Person
 
 
@@ -121,7 +121,7 @@ def unicode():
 
     table = UnicodeTable(dataset)
     request = RequestFactory().get('/some-url/')
-    template = Template('{% load django_tables %}{% render_table table %}')
+    template = Template('{% load django_tables2 %}{% render_table table %}')
     html = template.render(Context({'request': request, 'table': table}))
 
     Assert(u'Brädley' in html)
index 24f5b3aeedbf0296aeb5ae26b17d95f2f663d628..109d26f0e826b60923d2e53b816c566ca9cb79a3 100644 (file)
@@ -3,8 +3,8 @@ import copy
 from attest import Tests, Assert
 from django.http import Http404
 from django.core.paginator import Paginator
-import django_tables as tables
-from django_tables import utils
+import django_tables2 as tables
+from django_tables2 import utils
 
 
 core = Tests()
index 99fd940979c996e8c6474a4152b97c235f8883ef..af311262e97c7388f3aca3eb3b92c9ac66f8a662 100644 (file)
@@ -2,7 +2,7 @@ import itertools
 from django.conf import settings
 from django.test.client import RequestFactory
 from django.template import Template, Context
-import django_tables as tables
+import django_tables2 as tables
 from django_attest import TransactionTestContext
 from attest import Tests, Assert
 from .testapp.models import Person, Occupation
index 9bc274a1e88edab45f96e55af6544baf60a31eac..a8ae3d058cbf91613b12996588bd4652bdcb1114 100644 (file)
@@ -1,7 +1,7 @@
 """Test the core table functionality."""
 from attest import Tests, Assert
-import django_tables as tables
-from django_tables import utils
+import django_tables2 as tables
+from django_tables2 import utils
 
 
 rows = Tests()
index 6831919f33ad0c68a05f04a37bfac4e71156202e..8909971a450562133c5da7f223086cb6949a0309 100644 (file)
@@ -2,7 +2,7 @@
 from django.template import Template, Context, VariableDoesNotExist
 from django.http import HttpRequest
 from django.conf import settings
-import django_tables as tables
+import django_tables2 as tables
 from attest import Tests, Assert
 from xml.etree import ElementTree as ET
 
@@ -83,7 +83,7 @@ def custom_rendering():
 def templatetag():
     # ensure it works with a multi-order-by
     table = CountryTable(MEMORY_DATA, order_by=('name', 'population'))
-    t = Template('{% load django_tables %}{% render_table table %}')
+    t = Template('{% load django_tables2 %}{% render_table table %}')
     html = t.render(Context({'request': HttpRequest(), 'table': table}))
 
     root = ET.fromstring(html)
@@ -94,7 +94,7 @@ def templatetag():
 
     # no data with no empty_text
     table = CountryTable([])
-    t = Template('{% load django_tables %}{% render_table table %}')
+    t = Template('{% load django_tables2 %}{% render_table table %}')
     html = t.render(Context({'request': HttpRequest(), 'table': table}))
     root = ET.fromstring(html)
     Assert(len(root.findall('.//thead/tr'))) == 1
@@ -103,7 +103,7 @@ def templatetag():
 
     # no data WITH empty_text
     table = CountryTable([], empty_text='this table is empty')
-    t = Template('{% load django_tables %}{% render_table table %}')
+    t = Template('{% load django_tables2 %}{% render_table table %}')
     html = t.render(Context({'request': HttpRequest(), 'table': table}))
     root = ET.fromstring(html)
     Assert(len(root.findall('.//thead/tr'))) == 1
@@ -114,7 +114,7 @@ def templatetag():
     Assert(root.find('.//tbody/tr/td').text) == 'this table is empty'
 
     # variable that doesn't exist (issue #8)
-    t = Template('{% load django_tables %}{% render_table this_doesnt_exist %}')
+    t = Template('{% load django_tables2 %}{% render_table this_doesnt_exist %}')
     with Assert.raises(VariableDoesNotExist):
         settings.DEBUG = True
         t.render(Context())
index 48b6fe98b7d0eb6e6e127845b3fa25f46fea6cff..a11e8faa60641c902823f32afa87b54c6a6f2c42 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf8 -*-
-from django_tables.utils import OrderByTuple, OrderBy, Accessor
+from django_tables2.utils import OrderByTuple, OrderBy, Accessor
 from attest import Tests, Assert