Convert files to UNIX EOL and remove BOM.
authorJardel Weyrich <jweyrich@gmail.com>
Mon, 22 Nov 2010 07:47:46 +0000 (05:47 -0200)
committerJardel Weyrich <jweyrich@gmail.com>
Mon, 22 Nov 2010 10:23:55 +0000 (08:23 -0200)
Please, add these lines to your ~/.gitconfig file:
    [core]
        autocrlf = input
Or alternatively run:
    git config --global core.autocrlf input

21 files changed:
LICENSE
MANIFEST.in
README
TODO
django_tables/__init__.py
django_tables/app/templatetags/tables.py
django_tables/columns.py
django_tables/options.py
docs/features/index.rst
docs/features/pagination.rst
docs/installation.rst
docs/types/index.rst
docs/types/memory.rst
docs/types/models.rst
docs/types/sql.rst
tests/__init__.py
tests/test_basic.py
tests/test_memory.py
tests/test_models.py
tests/test_templates.py
tests/testapp/models.py

diff --git a/LICENSE b/LICENSE
index 953b038c1e06721ba5f7116b99152ba85800c3aa..a1eb27881f5aafb478c634f0e146fc353b856ca1 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2008, Michael Elsdörfer <http://elsdoerfer.name>
+Copyright (c) 2008, Michael Elsdörfer <http://elsdoerfer.name>
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -24,4 +24,4 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
+POSSIBILITY OF SUCH DAMAGE.
index 0e2ba0eed18728f4b35d79bb9183ec402dee4ac7..208f9d555deb3babc5eb95b1297dc3288fcecf03 100644 (file)
@@ -1,4 +1,4 @@
-include README\r
-include LICENSE\r
-include MANIFEST.in\r
-recursive-include tests *.py
\ No newline at end of file
+include README
+include LICENSE
+include MANIFEST.in
+recursive-include tests *.py
diff --git a/README b/README
index 2bc8b8161c8c6253d70499aba7eb0766991d8197..2c28c87862879206aa647b5ee4bf7328ba697a52 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-django-tables - a Django QuerySet renderer.\r
-\r
-Documentation:\r
-    http://elsdoerfer.name/docs/django-tables/\r
+django-tables - a Django QuerySet renderer.
+
+Documentation:
+    http://elsdoerfer.name/docs/django-tables/
diff --git a/TODO b/TODO
index af169c351321001f8876002d0b55b356150f4b5b..159c80c9dc181cdf131b292b761aa3274dc62dbf 100644 (file)
--- a/TODO
+++ b/TODO
@@ -117,4 +117,4 @@ have subclasses for each model class, even if it just redirects to use the
 correct filter class;
 
 If not using django-filter, we wouldn't have different filter types; filters
-would just hold the data, and each column would know how to apply it.
\ No newline at end of file
+would just hold the data, and each column would know how to apply it.
index 12ea2307ac97b8fdf7f91e677a9820d583a4eaab..76d80698e6206387a5d462c6849383cf9d2fafa4 100644 (file)
@@ -4,4 +4,4 @@ __version__ = (0, 3, 'dev')
 from memory import *
 from models import *
 from columns import *
-from options import *
\ No newline at end of file
+from options import *
index 7dc68033a4a17f6f7e22a9a4e88e95e3a9b32e74..ba1922ea2e589ad011a9874084060844afedd570 100644 (file)
@@ -1,4 +1,4 @@
-"""
+"""
 Allows setting/changing/removing of chosen url query string parameters,
 while maintaining any existing others.
 
@@ -68,4 +68,4 @@ def do_seturlparam(parser, token):
             raise template.TemplateSyntaxError, "Argument syntax wrong: should be key=value"
     return SetUrlParamNode(qschanges)
 
-register.tag('set_url_param', do_seturlparam)
\ No newline at end of file
+register.tag('set_url_param', do_seturlparam)
index 70ae897df7fefed8dc94a88a54081e263f395f00..3307f09264f76026a444170fa8cbee2f0f7cc128 100644 (file)
@@ -82,4 +82,4 @@ class TextColumn(Column):
     pass
 
 class NumberColumn(Column):
-    pass
\ No newline at end of file
+    pass
index 069a831a9681fccfcdd3d4354691f1d18c6e78cc..57331fbea76f0b3c4ccadc1fbadec4eece8ce9c8 100644 (file)
@@ -15,4 +15,4 @@ __all__ = ('options',)
 # raised instead.
 class DefaultOptions(object):
     IGNORE_INVALID_OPTIONS = True
-options = DefaultOptions()
\ No newline at end of file
+options = DefaultOptions()
index abada5ab1ae280c8b42d85fe174abe8aef1e1de1..e3e0a27a1ea2339a0361eef9e0e9e3f616dc70c5 100644 (file)
@@ -8,4 +8,4 @@ This section will explain some specific features in more detail.
    :maxdepth: 1
 
    ordering
-   pagination
\ No newline at end of file
+   pagination
index 30217c1ae5a450cb621ee06447238e84f33634ee..7640ffe57bfff6235933784319f3416b54ab17bb 100644 (file)
@@ -44,4 +44,4 @@ Note that due to the abstraction layer that ``django-tables`` represents, it
 is not necessary to use Django's ``QuerySetPaginator`` with model tables.
 Since the table knows that it holds a queryset, it will automatically choose
 to use count() to determine the data length (which is exactly what
-``QuerySetPaginator`` would do).
\ No newline at end of file
+``QuerySetPaginator`` would do).
index 2df888b79de38765b0210a0547b7c8698b1e366e..93bc1281afb8fc89cdbaddfaa477c51ee89baa61 100644 (file)
@@ -12,4 +12,4 @@ Running the test suite
 ----------------------
 
 The test suite uses nose:
-    http://somethingaboutorange.com/mrl/projects/nose/
\ No newline at end of file
+    http://somethingaboutorange.com/mrl/projects/nose/
index 02b20e05f1959a3683a2f35c2e9350595cc9dd43..1aaac3554b56b4406c109d8a46459ce554ce89ee 100644 (file)
@@ -9,4 +9,4 @@ Different types of tables are available:
 
    MemoryTable - uses dicts as the data source <memory>
    ModelTable - wraps around a Django Model <models>
-   SqlTable - is based on a raw SQL query <sql>
\ No newline at end of file
+   SqlTable - is based on a raw SQL query <sql>
index d43d7a14d308f6a2abeeff63583bab2c5c890a72..ae09ae78caa846e8c98ade9994c1192b38bd54c7 100644 (file)
@@ -17,4 +17,4 @@ table cell.
 
 Similarily, the colunn default value may also be callable that will take
 the row instance as an argument (representing the row that the default is
-needed for).
\ No newline at end of file
+needed for).
index b4e782d8ccbcdcb6cf18b30df5520c4cb14a5ace..699a2f50a572575cc6bdc1cddcbc24932c1ad8c5 100644 (file)
@@ -131,4 +131,4 @@ If you are using callables (e.g. for the ``default`` or ``data`` column
 options), they will generally be run when a row is accessed, and
 possible repeatedly when accessed more than once. This behavior differs from
 memory tables, where they would be called once, when the table is
-generated.
\ No newline at end of file
+generated.
index a21eb887f0aade50237a08ace414df5ba759d561..6f12f47a3d7cf9a4fdb7a7a07ef5cfb32f2c4f2b 100644 (file)
@@ -6,4 +6,4 @@ This table is backed by an SQL query that you specified. It'll help you
 ensure that pagination and sorting options are properly reflected in the
 query.
 
-**Currently not implemented yet.**
\ No newline at end of file
+**Currently not implemented yet.**
index 85fb830ac0973ab2198cf35938d54fbf8d0e8ff0..db2ee0d42ac69bb3d6b121171252df0d2ef65279 100644 (file)
@@ -1,3 +1,3 @@
 # make django-tables available for import for tests
 import os, sys
-sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
\ No newline at end of file
+sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
index 151951d0e3b3569de42bdae8d89951d76255ca09..fda93f38fb39148871a5c2f869316c6d8a7c9d1b 100644 (file)
@@ -142,4 +142,4 @@ def test_pagination():
     assert books.page.has_next() == True
     # exceptions are converted into 404s
     assert_raises(Http404, books.paginate, Paginator, 10, page=9999)
-    assert_raises(Http404, books.paginate, Paginator, 10, page="abc")
\ No newline at end of file
+    assert_raises(Http404, books.paginate, Paginator, 10, page="abc")
index 315a6978a219800a9090ec125a3880ba2f0a668f..fe5ef6b3f8765d40dfd7888df59f01913b30ea1c 100644 (file)
@@ -347,4 +347,4 @@ def test_column_order():
     books.order_by = 'id,-pages'
     assert [c.is_ordered for c in books.columns] == [True, False, True, False]
     assert [c.is_ordered_reverse for c in books.columns] == [False, False, True, False]
-    assert [c.is_ordered_straight for c in books.columns] == [True, False, False, False]
\ No newline at end of file
+    assert [c.is_ordered_straight for c in books.columns] == [True, False, False, False]
index 21d5bac52a30007c1d6f3570bd9728a28af7b0b5..0b3f79a3a58e652fa023eeb62ea6e454f5667fdd 100644 (file)
@@ -361,4 +361,4 @@ def test_pagination():
     assert len(connection.queries)-start_querycount == 2
 
     # reset
-    settings.DEBUG = False
\ No newline at end of file
+    settings.DEBUG = False
index b056770dc5a6b594c2546c2c992e58c18919a664..a8b04a8a7901ea52e692bd7c8ab975b3a424bae0 100644 (file)
@@ -1,4 +1,4 @@
-"""Test template specific functionality.
+"""Test template specific functionality.
 
 Make sure tables expose their functionality to templates right. This
 generally about testing "out"-functionality of the tables, whether
index 157f5f5e5324ec0daaf792293c2eec93b7296f19..7bedc38c12b38ba7789ff8252d2ecda50a266e91 100644 (file)
@@ -1 +1 @@
-"""Empty demo app our tests can assign models to."""
\ No newline at end of file
+"""Empty demo app our tests can assign models to."""