-
Notifications
You must be signed in to change notification settings - Fork 116
Django 1.6 breaks markup template tag library #62
Comments
Thanks @robnewman! Let me know when your fork is ready! |
Any movement on this @robnewman ? |
@7wonders - Yeah fixed in my forked copy that you can get from my account. I've sent multiple pull requests but for some reason the owner doesn't want to merge them. Sorry I can't help more than that. |
Sorry guys, I don't fully understand the implications of merging this without sitting down and taking a look. @robnewman had you tested on 1.4, 1.5, 1.6? I suppose this would be a good reason to have Travis CI running. 😄 |
@bryanhelmig - Tested on 1.5 and 1.6. Not 1.4. Personally I don't see why anything would break - you can view the changes made in the source, which are minimal. But you are the owner of the repo, so you make the call (and/or run the tests if you really want it backwards compatible to 1.4) |
Thanks @robnewman. I can't guarantee I'll merge anything during the holidays, if anyone is reading along and needs support for this, the forks are a good solution. I'll post an update when there is one. |
Im slightly confused @robnewman . I just tried your fork and its breaking due to the references to markup in the templates. I was under the impression that you was going to implement django-markupfield to kill that problem? Also I saw this https://pypi.python.org/pypi/django-markitup which would maybe be even better as it would allow for removal of markup and to use any of the formats supported by markitup and even add an editor for those that might want it. Just a thought. |
@7wonders Ack - you are correct. Looks like I need to push again to my master. I have also significantly modified my version of django-knowledge where it uses Twitter-Bootstrap for the layout, and also supports tagging using Django's Taggit library, so (a) you can tag articles, and (b) you can use Taggit's |
@7wonders - If you need to get my fork running right now you can just remove that one line from |
@7wonders Okay, cleaned up the template and pushed to my master. Let me know if you still get that error - but on my issue list - Brian is not responsible for my fork. Thx. |
Django 1.6 removes markup from the django.core feature set.
More information:
The solution is one of two things:
{% load markup %}
template tag.In my (currently unmerged) fork and commit of this project I added support for Textile. I am also going to fix this problem using the second approach above and commit to my fork.
The text was updated successfully, but these errors were encountered: