------------------
- Removed all compatibility shims for Django versions prior to 1.3, including
all support for static media at ``MEDIA_URL``, static assets under
``media/``, and the ``MARKITUP_MEDIA_URL`` setting.
- Updated to jquery 1.6.
- Added check to avoid double _rendered fields when MarkupField is used on an
abstract base model class. Fixes 11. Thanks Denis Kolodin for report and
patch.
- Added compatibility with new AJAX CSRF requirements in Django 1.2.5 and
1.3. Fixes 7. Thanks zw0rk for the report.
- Added blank=True to MarkupField's auto-added rendered-field to avoid South
warnings.
- Django 1.3 & staticfiles compatibility: MARKITUP_MEDIA_URL and jQuery URL
default to STATIC_URL rather than MEDIA_URL, if set. Static assets now
available under static/ as well as media/. Thanks Mikhail Korobov.
- MarkupField.get_db_prep_value updated to take "connection" and "prepared"
arguments to avoid deprecation warnings under Django 1.3. Thanks Mikhail
Korobov.
- enforce minimum length of 3 characters for MarkItUp!-inserted h1 and h2
underline-style headers (works around bug in python-markdown). Thanks
Daemian Mack for the report.