Re: Markdown Encoding Problem

2009-06-02 Thread bfrederi
Yes. I completely missed that ticket, but I had switched to importing markdown normally instead of through Django, and it solved my problems. But I noticed on Ubuntu that the repository version of python-markdown is still 1.6. So I will switch to a newer version of Markdown. Thank you both for yo

Re: Markdown Encoding Problem

2009-06-02 Thread Waylan Limberg
On Jun 1, 7:11 pm, Karen Tracey wrote: > > That comment, specifically, includes the same exception and traceback as you > are showing. I read subsequent discussion in the ticket to be saying that > the problem here is the markdown version, it's some pre-Unicode support > level that you likely d

Re: Markdown Encoding Problem

2009-06-01 Thread Karen Tracey
On Mon, Jun 1, 2009 at 4:02 PM, bfrederi wrote: > > I'm getting this: > > Traceback (most recent call last): > File "/home/django-code/aubrey_explore/tests.py", line 18, in > testSpeaking >self.assert_(markdown(self.bla.collection_description_short)) > File "/usr/lib/python2.5/site-packages

Re: Markdown Encoding Problem

2009-06-01 Thread bfrederi
Sorry, didn't mean to post so many replies. A combination of an annoying KVM switch and user error. On Jun 1, 3:19 pm, bfrederi wrote: > I'm getting this: > > Traceback (most recent call last): >   File "/home/django-code/aubrey_explore/tests.py", line 18, in > testSpeaking >     self.assert_(ma

Re: Markdown Encoding Problem

2009-06-01 Thread bfrederi
I'm getting this: Traceback (most recent call last): File "/home/django-code/aubrey_explore/tests.py", line 18, in testSpeaking self.assert_(markdown(self.bla.collection_description_short)) File "/usr/lib/python2.5/site-packages/django/contrib/markup/ templatetags/markup.py", line 72, in

Re: Markdown Encoding Problem

2009-06-01 Thread bfrederi
I'm getting this: Traceback (most recent call last): File "/home/django-code/aubrey_explore/tests.py", line 18, in testSpeaking self.assert_(markdown(self.bla.collection_description_short)) File "/usr/lib/python2.5/site-packages/django/contrib/markup/ templatetags/markup.py", line 72, in

Re: Markdown Encoding Problem

2009-06-01 Thread bfrederi
I'm getting this: Traceback (most recent call last): File "/home/django-code/aubrey_explore/tests.py", line 18, in testSpeaking self.assert_(markdown(self.bla.collection_description_short)) File "/usr/lib/python2.5/site-packages/django/contrib/markup/ templatetags/markup.py", line 72, in

Re: Markdown Encoding Problem

2009-06-01 Thread Karen Tracey
On Mon, Jun 1, 2009 at 2:26 PM, bfrederi wrote: > > I am having problems using the > django.contrib.markup.templatetags.markup.markdown function with > special characters (diacritics and such). > > I am using markdown in my model and creating a function that returns > markdown from a model field.

Markdown Encoding Problem

2009-06-01 Thread bfrederi
I am having problems using the django.contrib.markup.templatetags.markup.markdown function with special characters (diacritics and such). I am using markdown in my model and creating a function that returns markdown from a model field. I even went as far as to override the save method for my mode