Skip to main content

history compare for django-reversion

Project description

django-reversion-compare is an extension to django-reversion that provides a history compare view to compare two versions of a model which is under reversion.

Comparing model versions is not a easy task. Maybe there are different view how this should looks like. This project will gives you a generic way to see whats has been changed.

Many parts are customizable by overwrite methods or subclassing, see above.

Build Status on github

Build Status on travis-ci.org

Coverage Status on coveralls.io

Coverage Status on codecov.io

Requirements Status on requires.io

Installation

Just use:

pip install django-reversion-compare

Optionally you can install google-diff-match-patch, otherwise difflib would be used. The easiest way is to use the unofficial package diff-match-patch, e.g.:

pip install diff-match-patch

Setup

Add reversion_compare to INSTALLED_APPS in your settings.py, e.g.:

INSTALLED_APPS = (
    'django...',
    ...
    'reversion', # https://github.com/etianen/django-reversion
    'reversion_compare', # https://github.com/jedie/django-reversion-compare
    ...
)

# Add reversion models to admin interface:
ADD_REVERSION_ADMIN=True
# optional settings:
REVERSION_COMPARE_FOREIGN_OBJECTS_AS_ID=False
REVERSION_COMPARE_IGNORE_NOT_REGISTERED=False

Usage

Inherit from CompareVersionAdmin instead of VersionAdmin to get the comparison feature.

admin.py e.g.:

from django.contrib import admin
from reversion_compare.admin import CompareVersionAdmin

from my_app.models import ExampleModel

class ExampleModelAdmin(CompareVersionAdmin):
    pass

admin.site.register(ExampleModel, ExampleModelAdmin)

If you’re using an existing third party app, then you can add patch django-reversion-compare into its admin class by using the reversion_compare.helpers.patch_admin() method. For example, to add version control to the built-in User model:

from reversion_compare.helpers import patch_admin

patch_admin(User)

e.g.: Add django-cms Page model:

from cms.models.pagemodel import Page
from reversion_compare.helpers import patch_admin


# Patch django-cms Page Model to add reversion-compare functionality:
patch_admin(Page)

Customize

It’s possible to change the look for every field or for a entire field type. You must only define a methods to your admin class with this name scheme:

  • "compare_%s" % field_name

  • "compare_%s" % field.get_internal_type()

If there is no method with this name scheme, the fallback_compare() method will be used.

An example for specifying a compare method for a model field by name:

class YourAdmin(CompareVersionAdmin):
    def compare_foo_bar(self, obj_compare):
        """ compare the foo_bar model field """
        return "%r <-> %r" % (obj_compare.value1, obj_compare.value2)

and example using patch_admin with custom version admin class:

patch_admin(User, AdminClass=YourAdmin)

Class Based View

Beyond the Admin views, you can also create a Class Based View for displaying and comparing version differences. This is a single class-based-view that either displays the list of versions to select for an object or displays both the versions and their differences (if the versions to be compared have been selected). This class can be used just like a normal DetailView:

Inherit from it in your class and add a model (or queryset), for example:

from reversion_compare.views import HistoryCompareDetailView

class SimpleModelHistoryCompareView(HistoryCompareDetailView):
    model = SimpleModel

Then, assign that CBV to a url, for example:

url(r'^test_view/(?P<pk>\d+)$', views.SimpleModelHistoryCompareView.as_view() ),

Last step, you need to create a template to display both the version select form and the changes part (if the form is submitted). An example template is the following:

<style type="text/css">
/* minimal style for the diffs */
del, ins {
    color: #000;
    text-decoration: none;
}
del { background-color: #ffe6e6; }
ins { background-color: #e6ffe6; }
sup.follow { color: #5555ff; }
</style>

{% include "reversion-compare/action_list_partial.html"  %}
{% if request.GET.version_id1 %}
    {% include "reversion-compare/compare_partial.html"  %}
    {% include "reversion-compare/compare_links_partial.html"  %}
{% endif %}

Beyond the styling, you should include:

  • reversion-compare/action_list_partial.html partial template to display the version select form

  • reversion-compare/compare_partial.html partial template to display the actual version

  • reversion-compare/compare_links_partial.html to include previous/next comparison links

compare_partial.html and compare_links_partial.html will show the compare-related information so it’s better to display them only when the select-versions-tocompare-form has been submitted. If you want more control on the appearence of your templates you can check the above partials to understand how the availabble context variables are used and override them completely.

Screenshots

Here some screenshots of django-reversion-compare:


How to select the versions to compare:

django-reversion-compare_v0_1_0-01.png


from v0.1.0: DateTimeField compare (last update), TextField compare (content) with small changes and a ForeignKey compare (child model instance was added):

django-reversion-compare_v0_1_0-02.png


from v0.1.0: Same as above, but the are more lines changed in TextField and the ForeignKey relation was removed:

django-reversion-compare_v0_1_0-03.png


Example screenshot from v0.3.0: a many-to-many field compare (friends, hobbies):

django-reversion-compare_v0_3_0-01.png

  • In the first line, the m2m object has been changed.

  • line 2: A m2m object was deleted

  • line 3: A m2m object was removed from this entry (but not deleted)

  • line 4: This m2m object has not changed

create developer environment

e.g.:

# Clone project (Use your fork SSH url!):
~$ git clone https://github.com/jedie/django-reversion-compare.git
~$ cd django-reversion-compare

# create ".virtualenv" and install everything:
django-reversion-compare$ ./create_env.sh

# Activate virtual environment:
django-reversion-compare$ source .virtualenv/bin/activate

# Run all tests via "tox":
(.virtualenv) django-reversion-compare$ tox

Note:

  • Just call ./create_env.sh again to update a existing virtualenv ;)

  • Please run ./black.sh to reformat the code before creating a pull requests

running tests

Run all tests in all environment combinations via tox:

$ python3 setup.py tox

Run all tests in current environment via pytest:

$ python3 setup.py test

Helpfull for writing and debugging unittests is to run a local test server with the same data. e.g.:

~$ cd path/to/django-reversion-compare/
/django-reversion-compare$ ./run_testserver.py

migration will be run and a superuser will be created. Username: test Password: 12345678

Version compatibility

Reversion-Compare

django-reversion

Django

Python

>=v0.9.0

v2.0

v2.2, v3.0

v3.6, v3.7, v3.8, pypy3

>=v0.8.6

v2.0

v1.11, v2.0

v3.5, v3.6, v3.7, pypy3

>=v0.8.4

v2.0

v1.8, v1.11, v2.0

v3.5, v3.6, pypy3

>=v0.8.3

v2.0

v1.8, v1.11

v3.5, v3.6, pypy3

v0.8.x

v2.0

v1.8, v1.10, v1.11

v2.7, v3.4, v3.5, v3.6 (only with Django 1.11)

>=v0.7.2

v2.0

v1.8, v1.9, v1.10

v2.7, v3.4, v3.5

v0.7.x

v2.0

v1.8, v1.9

v2.7, v3.4, v3.5

v0.6.x

v1.9, v1.10

v1.8, v1.9

v2.7, v3.4, v3.5

>=v0.5.2

v1.9

v1.7, v1.8

v2.7, v3.4

>=v0.4

v1.8

v1.7

v2.7, v3.4

<v0.4

v1.6

v1.4

v2.7

These are the unittests variants. See also: /.travis.yml Maybe other versions are compatible, too.

Changelog

Donation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-reversion-compare-0.9.0.tar.gz (61.3 kB view details)

Uploaded Source

Built Distributions

django_reversion_compare-0.9.0-py3.6.egg (71.6 kB view details)

Uploaded Source

django_reversion_compare-0.9.0-py2.py3-none-any.whl (74.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-reversion-compare-0.9.0.tar.gz.

File metadata

  • Download URL: django-reversion-compare-0.9.0.tar.gz
  • Upload date:
  • Size: 61.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9

File hashes

Hashes for django-reversion-compare-0.9.0.tar.gz
Algorithm Hash digest
SHA256 bd68557fcf94c6501cdb3377e9d4b24bad0779422bdf7a82f51a0c71cbbe1313
MD5 9e741343020527fcf946830c27a19834
BLAKE2b-256 c80cf4b28d0c885413facf4933b9ca410f946cad8970a15b42a21a7759d2ca1e

See more details on using hashes here.

File details

Details for the file django_reversion_compare-0.9.0-py3.6.egg.

File metadata

  • Download URL: django_reversion_compare-0.9.0-py3.6.egg
  • Upload date:
  • Size: 71.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9

File hashes

Hashes for django_reversion_compare-0.9.0-py3.6.egg
Algorithm Hash digest
SHA256 19e10c38d3aba922bcfacc9f69b1127756e8cac47ce7b1f5c0e22d0d090c0f42
MD5 8eae0d02c7bf2eac777484cf77b87eec
BLAKE2b-256 2e1d04bef3c39575e63e09f73ee2f566ada43b5a38e95206576c0c13f8d1bbd5

See more details on using hashes here.

File details

Details for the file django_reversion_compare-0.9.0-py2.py3-none-any.whl.

File metadata

  • Download URL: django_reversion_compare-0.9.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9

File hashes

Hashes for django_reversion_compare-0.9.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 269ec0ecde8d2f020b1945a87a92f05a7871680d1c2bfbdb9d6dc79825c84a41
MD5 95563af267d627ffe70e0b263b9c06f8
BLAKE2b-256 e447a448bcb25795b9e4865413e23881414d60ff131facbc846856195c3e1826

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page