Re: django tinyMCE is normal text field instead of rich text formatting? a fix please.

2010-09-14 Thread bagheera
Dnia 13-09-2010 o 18:57:35 tricks...@googlemail.com napisał(a): I installed Django tiny mce however i am getting a normal text area in my admin. Can anyone help me to correct this to a rich text area where i can access text formatting? I just downloaded newest tinyMCE and placed it in &#x

Re: django tinyMCE is normal text field instead of rich text formatting? a fix please.

2010-09-13 Thread joconnell
rich text area where > i can access text formatting? > > Any help would be greatly appreciated. Here are my settings.py > > import os > PROJECT_DIR = os.path.dirname(__file__) > > DEBUG = True > TEMPLATE_DEBUG = DEBUG > > ADMINS = ( >     # ('

django tinyMCE is normal text field instead of rich text formatting? a fix please.

2010-09-13 Thread tricks...@googlemail.com
I installed Django tiny mce however i am getting a normal text area in my admin. Can anyone help me to correct this to a rich text area where i can access text formatting? Any help would be greatly appreciated. Here are my settings.py import os PROJECT_DIR = os.path.dirname(__file__

Re: passing text formatting with sqlite3

2010-01-29 Thread Namibnat
Thanks, I was starting to try stupid things because I just wasn't getting it right. I could simply pass in the article with: {{ data|safe }} Thanks for the help. Vernon On Jan 29, 11:59 am, Daniel Roseman wrote: > On Jan 29, 8:40 am, Namibnat wrote: > > > If I have a "km2" within a Sqlite3 d

Re: passing text formatting with sqlite3

2010-01-29 Thread Daniel Roseman
On Jan 29, 8:40 am, Namibnat wrote: > If I have a "km2" within a Sqlite3 database, how do I > format the superscript to show right once it is displayed in the > template.  I have tried python  "\xb2" mark-up, the normal HTML "sup" > tags and I have tried to figure out a way to pass it with the nor

passing text formatting with sqlite3

2010-01-29 Thread Namibnat
If I have a "km2" within a Sqlite3 database, how do I format the superscript to show right once it is displayed in the template. I have tried python "\xb2" mark-up, the normal HTML "sup" tags and I have tried to figure out a way to pass it with the normal Django variable mechanism. I am still ne

Re: How to add basic text formatting to the message body of send_mail in django?

2009-08-21 Thread Shawn Milochik
On Aug 21, 2009, at 12:50 PM, Ray wrote: > > Hi, > I'm trying to do this: > > send_mail(subject='hey, Ray', >message='Hey ray, this is an automated message, \n heres a > link: yahoo.com or yahoo.com', >from_email='bl...@gmail.co', >recipient_list=['blan...@gma

How to add basic text formatting to the message body of send_mail in django?

2009-08-21 Thread Ray
Hi, I'm trying to do this: send_mail(subject='hey, Ray', message='Hey ray, this is an automated message, \n heres a link: yahoo.com or yahoo.com', from_email='bl...@gmail.co', recipient_list=['blan...@gmail.com'], fail_silently=False )

Re: Text Formatting

2008-06-09 Thread yanksluvr7
thanks I'll check that out On Jun 9, 9:53 am, "Scott Moonen" <[EMAIL PROTECTED]> wrote: > You'll need to use some sort of rich text editor. I've used > TinyMCEin the past; there are others as > well. > > -- Scott > > On Mon, Jun 9, 2008 at 9:51 AM, yanksluvr7 <[E

Re: Text Formatting

2008-06-09 Thread Scott Moonen
You'll need to use some sort of rich text editor. I've used TinyMCEin the past; there are others as well. -- Scott On Mon, Jun 9, 2008 at 9:51 AM, yanksluvr7 <[EMAIL PROTECTED]> wrote: > > Is there a way to make a django page so you can copy and paste text > int

Text Formatting

2008-06-09 Thread yanksluvr7
Is there a way to make a django page so you can copy and paste text into the page and have it keep its original formatting? Everything I have found makes it copy as plain text, so any spacing, bullets, bold, italics, or anything else is lost. --~--~-~--~~~---~--~~