Re: TINYMCE Configuration on Django

2020-02-17 Thread Ahmed Hashim
Check sentdex tutorial on youtube "Django Web Development with Python" it has great learning with tinymce also. thanks Ahmed On Mon, Feb 17, 2020 at 12:34 AM Hedrick Godson's wrote: > https://django-tinymce.readthedocs.io/en/latest/installation.html > > > That w

Re: TINYMCE Configuration on Django

2020-02-16 Thread Hedrick Godson's
6 February 2020 22:01 > *To:* django-users@googlegroups.com > *Subject:* Re: TINYMCE Configuration on Django > > > > Ckeditor is also cool, and easy to use in production. > > > > On Mon, Feb 17, 2020, 12:02 AM Hedrick Godson's > wrote: > > In ur setti

RE: TINYMCE Configuration on Django

2020-02-16 Thread ngallen4
Configured as you specified below but still problem persist From: django-users@googlegroups.com On Behalf Of Omkar Parab Sent: Sunday, 16 February 2020 22:01 To: django-users@googlegroups.com Subject: Re: TINYMCE Configuration on Django Ckeditor is also cool, and easy to use in

Re: TINYMCE Configuration on Django

2020-02-16 Thread Omkar Parab
Ckeditor is also cool, and easy to use in production. On Mon, Feb 17, 2020, 12:02 AM Hedrick Godson's wrote: > In ur settings.py file add this > Add to installed apps > INSTALLED_APPS = [ > 'tinymce', > > ] > > Configure it > > TINYMCE_DEFAULT_CONF

Re: TINYMCE Configuration on Django

2020-02-16 Thread Hedrick Godson's
In ur settings.py file add this Add to installed apps INSTALLED_APPS = [ 'tinymce', ] Configure it TINYMCE_DEFAULT_CONFIG = { 'plugins' :"image, imagetools, media, codesample,link, code, textcolor, save, preview, table", 'theme' : 'modern&#x

RE: TINYMCE Configuration on Django

2020-02-16 Thread ngallen4
On settings.py # TIYMCE DJANGO_SETTINGS_MODULE='testtinymce.settings' From: django-users@googlegroups.com On Behalf Of Hedrick Godson's Sent: Sunday, 16 February 2020 17:57 To: django-users@googlegroups.com Subject: Re: TINYMCE Configuration on Django How did you co

RE: TINYMCE Configuration on Django

2020-02-16 Thread ngallen4
Okay thanks let me do it From: django-users@googlegroups.com On Behalf Of N'BE SORO Sent: Sunday, 16 February 2020 17:43 To: django-users@googlegroups.com Subject: Re: TINYMCE Configuration on Django Hello, please use tinymce 4 Lite https://github.com/Soro08/django-tinymce4

Re: TINYMCE Configuration on Django

2020-02-16 Thread Hedrick Godson's
How did you configure tinymce in settings.py?You have to add other functionalities too. On Sun, 16 Feb 2020, 17:43 N'BE SORO wrote: > Hello, please use tinymce 4 Lite > > https://github.com/Soro08/django-tinymce4-lite > > Le dim. 16 févr. 2020 à 14:28, a écrit : > >&g

Re: tinymce no module exists

2019-08-07 Thread Mike Dewhirst
ff in the project not the system Python. Connected by Motorola Kean wrote: >Hi Mike,  > > >thank you for the heip, > > >I tried the relative path  (in main/urls.py) you provided and it threw up >errors. > >the existing reference I have seems stable, please see

Re: tinymce no module exists

2019-08-05 Thread Kean
Hi Mike, thank you for the heip, I tried the relative path (in main/urls.py) you provided and it threw up errors. the existing reference I have seems stable, please see below path('tinymce/', include('tinymce.urls')), I have pip3 installed django-tinymce4-lite. What is

Re: tinymce no module exists

2019-08-04 Thread Mike Dewhirst
On 4/08/2019 9:52 pm, Kean wrote: Hi, Im trying to improve text field with a text editor in an app i created with django. Installed tinymce4-lite using pip3 into my virtaulenv. You need to pip3 install django-tinymce4-lite updates apps in system.py with 'tinymce' I don'

Re: tinymce no module exists

2019-08-04 Thread Kean Dumba
Hi Sam, Thanks added tinymce to apps as recommended, but still getting the same error Best, K On Sun, 4 Aug 2019 at 15:06, Sam W wrote: > Add it to the installed apps > > INSTALLED_APPS = ( > ... > 'tinymce', > ) > > -- > You received this mess

tinymce no module exists

2019-08-04 Thread Sam W
Add it to the installed apps INSTALLED_APPS = ( ... 'tinymce', ) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to d

tinymce no module exists

2019-08-04 Thread Kean
Hi, Im trying to improve text field with a text editor in an app i created with django. Installed tinymce4-lite using pip3 into my virtaulenv. updates apps in system.py with 'tinymce' mapped url in project settings 'path('tinymce/', include('tinymce

Re: Internal Server Error: /tinymce/compressor/

2019-06-19 Thread Derek
> I'm currently switching from ... > > > > tinymce_lite4 and filebrowser-no-grappelli > > to > > django-tinymce, django-grappelli and django-filebrowser > > > > It is running on Ubuntu 18.04, Python3.6 and Django 2.1. > > > > Thanks > > &g

Re: Internal Server Error: /tinymce/compressor/

2019-06-18 Thread Mike Dewhirst
er-no-grappelli to     django-tinymce, django-grappelli and django-filebrowser It is running on Ubuntu 18.04, Python3.6 and Django 2.1. Thanks Mike Internal Server Error: /tinymce/compressor/ UnicodeDecodeError at /tinymce/compressor/ 'ascii' codec can't decode byte 0xc2 in position

Internal Server Error: /tinymce/compressor/

2019-06-18 Thread Mike Dewhirst
Can anyone point me in the right direction please? I'm currently switching from ...     tinymce_lite4 and filebrowser-no-grappelli to     django-tinymce, django-grappelli and django-filebrowser It is running on Ubuntu 18.04, Python3.6 and Django 2.1. Thanks Mike Internal Server

tinymce: Reverse for 'tinymce.views.spell_check'

2017-02-03 Thread schaf . mh
Hi All, I'm on Django 1.10.5 using django-tinymce 2.6.0. Before upgrading to Django 1.10.5 I did not have any problems, but now I get an error: NoReverseMatch at /registry/preview/4 > > Reverse for 'tinymce.views.spell_check' with arguments '()' and keyword

Re: Adding Tinymce to Admin

2016-06-09 Thread Ankush Thakur
Nope. And you know why, coz I'm an idiot! :P Will try this and post here if I run into problems. Thanks a ton! ~~Ankush On Thursday, June 9, 2016 at 5:15:52 PM UTC+5:30, jorr...@gmail.com wrote: > > Have you looked at https://github.com/aljosa/django-tinymce ? > -- You receive

Re: Adding Tinymce to Admin

2016-06-09 Thread Ankush Thakur
"Ankush Thakur" > wrote: > >> I wish to add TinyMCE editor to my Django-powered app. My Model is a >> typical blog model, with a TextField for the actual post contents. Now what >> I want is, every time I'm editing the contents (or adding a new blog), I

Re: Adding Tinymce to Admin

2016-06-09 Thread jorrit787
Have you looked at https://github.com/aljosa/django-tinymce ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.co

Re: Adding Tinymce to Admin

2016-06-09 Thread ludovic coues
016 6:56 p.m., "Ankush Thakur" wrote: > I wish to add TinyMCE editor to my Django-powered app. My Model is a > typical blog model, with a TextField for the actual post contents. Now what > I want is, every time I'm editing the contents (or adding a new blog), I > should

Adding Tinymce to Admin

2016-06-08 Thread Ankush Thakur
I wish to add TinyMCE editor to my Django-powered app. My Model is a typical blog model, with a TextField for the actual post contents. Now what I want is, every time I'm editing the contents (or adding a new blog), I should be able to write in a WordPress-style editor. I understand that I&#

django-tinymce not rendering in IE11

2016-02-24 Thread frocco
Hello, Works fine in Chrome or Firefox. Does not render using IE11. did pip install django-tinymce Can someone help me with this? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Django TinyMCE external_image_list_url breaking admin urls

2015-11-08 Thread Chris Davies-Barnard
admin',* * 'django.contrib.admindocs',* * 'django.contrib.auth',* * 'django.contrib.contenttypes',* * 'django.contrib.sessions',* * 'django.contrib.messages',* * 'django.contrib.staticfiles',* * 'tinymce',* * 'mediamanager

Re: Django TinyMCE external_image_list_url breaking admin urls

2015-11-08 Thread Chris Davies-Barnard
Hi James, Well, I seem to have made it work by removing the reverse command all together. mce_attrs={ 'external_image_list_url': 'http://csmatrix.local/gallery/imagelist/'}, obviously this is not a very elegant solution but its working.I also noted that I could

Re: Django TinyMCE external_image_list_url breaking admin urls

2015-11-08 Thread James Schneider
> http://csmatrix.local/admin/main/page/add/ > > Using the URLconf defined in CSMatrix.urls, Django tried these URL > patterns, in this order: > >1. ^$ [name='cover'] >2. ^m/ >3. ^curriculum/ >4. ^unitsoflearning/ >5. ^studyprogramme/ >

Re: Django TinyMCE external_image_list_url breaking admin urls

2015-11-08 Thread Chris Davies-Barnard
page/add/ Using the URLconf defined in CSMatrix.urls, Django tried these URL patterns, in this order: 1. ^$ [name='cover'] 2. ^m/ 3. ^curriculum/ 4. ^unitsoflearning/ 5. ^studyprogramme/ 6. ^gallery/ 7. ^reprographics/ 8. ^accounts/ 9. ^login/$ 10. ^logout/$

Re: Django TinyMCE external_image_list_url breaking admin urls

2015-11-07 Thread James Schneider
entire traceback that you are receiving. -James On Nov 7, 2015 9:53 AM, "Chris Davies-Barnard" wrote: > Hi all, > > I posted this on SO but have not had any interest and I'm still stuck so > would really really appreciate someone taking a look. > > I have a pa

Django TinyMCE external_image_list_url breaking admin urls

2015-11-07 Thread Chris Davies-Barnard
Hi all, I posted this on SO but have not had any interest and I'm still stuck so would really really appreciate someone taking a look. I have a pages app into which I have implemented TinyMCE for the main content. This works and I am able to format content and view it on the front end

Re: Tinymce 4.x with grappelli filebrowser?

2013-10-06 Thread Robert Steckroth
Ohh nice, thank you, I found just what I was looking for there. On Sun, Oct 6, 2013 at 10:52 AM, Gabriel - Iulian Dumbrava < gabriel.dumbr...@gmail.com> wrote: > Hi, > > There are a few forks of django-filebrowser-no-grappelli that have solved > this issue. > > Probably someone has solved it in

Tinymce 4.x with grappelli filebrowser?

2013-10-06 Thread Gabriel - Iulian Dumbrava
Hi, There are a few forks of django-filebrowser-no-grappelli that have solved this issue. Probably someone has solved it in a fork of the grappelli version. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and st

Tinymce 4.x with grappelli filebrowser?

2013-10-05 Thread Robert Steckroth
Man, it is becoming less a reality to get this working. Has anyone found a solution to this? The whole thing is working just fine except for the tiny_mce_popup.js file. -- Systems/Software Engineer -- You received this message because you are subscribed to the Google Groups "Django users" gro

Re: flatpages-tinymce

2013-07-29 Thread Karl Arunachal
Thank you. On Sun, Jul 28, 2013 at 7:03 PM, Roberto López López wrote: > > Your message is quite confusing and difficult to understand, I have to > say. What are you asking for? To show tinymce within your change_form or > within the admin app? What do you mean by "flat pages&

Re: flatpages-tinymce

2013-07-28 Thread Roberto López López
Your message is quite confusing and difficult to understand, I have to say. What are you asking for? To show tinymce within your change_form or within the admin app? What do you mean by "flat pages"? Which error are you getting? On 07/28/2013 08:35 AM, Karl Arunachal wrote: >

Re: flatpages-tinymce

2013-07-28 Thread Roberto López López
On 07/28/2013 08:35 AM, Karl Arunachal wrote: > || -- Roberto López López System Developer Parallab, Uni Computing +47 55584091 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

flatpages-tinymce

2013-07-27 Thread Karl Arunachal
Hello, I am trying to use tinymce in the flat pages. But i just can't show it up in my admin. Please help me out where am going wrong. The javascript file is in: C:\Users\Kakar\web\cms\static\js\tinymce\tinymce.min.js urls.py: (r'^tiny_mce/(?P.*)$', 'djang

tinymce

2013-07-27 Thread Karl Arunachal
Hello, I am not able to use the tinymce editor in my flat pages. My tinymce is in this dir: C:\Users\Kakar\Downloads\Compressed\tinymce\js\tinymce\tinymce.min.js And in my template dir i have another admin folder for 'change_form.html', just below this line: i have added this line

Re: tinymce

2013-07-26 Thread Bill Freeman
See the README at https://github.com/aljosa/django-tinymce On Fri, Jul 26, 2013 at 2:00 PM, Karl Arunachal < kakararunachalserv...@gmail.com> wrote: > Hi, > I want to integrate tinymce in my text area. But i can't find any good > tutorials for it. Can some someone please

tinymce

2013-07-26 Thread Karl Arunachal
Hi, I want to integrate tinymce in my text area. But i can't find any good tutorials for it. Can some someone please advice me how to do this. Thank you. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: django + tinymce problems

2012-10-29 Thread sri
Thanks for the reply Tom. It worked after changing to relative paths. Sreekanth On Monday, 29 October 2012 11:13:17 UTC, Tom Evans wrote: > > On Sun, Oct 28, 2012 at 9:44 PM, sri > > wrote: > > Hi, > > > > I have tried using tinymce in my sample django applicat

Re: django + tinymce problems

2012-10-29 Thread Tom Evans
On Sun, Oct 28, 2012 at 9:44 PM, sri wrote: > Hi, > > I have tried using tinymce in my sample django application, but i am not > getting the tinymce editor in my admin pages. > > I am trying to setup tinymce to use in admin pages and using Django 1.4 > > This is how my set

django + tinymce problems

2012-10-28 Thread sri
Hi, I have tried using tinymce in my sample django application, but i am not getting the tinymce editor in my admin pages. I am trying to setup tinymce to use in admin pages and using Django 1.4 This is how my settings.py file looks like MEDIA_ROOT = ' ' MEDIA_URL = ' &

Re: django + TinyMce

2012-08-21 Thread Владислав Иванов
#x27;] def formfield_for_dbfield(self, db_field, **kwargs): if db_field.name in ('anounce', 'soderz', 'istochnik'): return db_field.formfield(widget=TinyMCE( attrs={'cols': 130, 'rows': 30}, )) return super(TinyMCEAdmin, self).for

Re: django + TinyMce

2012-08-20 Thread Kolbe
Here's a good reference. http://www.hackedexistence.com/project/django/video4-tinymce.html On Monday, August 20, 2012 2:36:22 PM UTC+8, Владислав Иванов wrote: > > Hello! I am a novice. I want to install TinyMce on Django. I tried a lot > of lessons posted on the Internet, nothi

Re: django + TinyMce

2012-08-20 Thread lakesh
http://www.youtube.com/watch?v=bJeTEDRvGVA. Try this... On Monday, August 20, 2012 2:36:22 PM UTC+8, Владислав Иванов wrote: > > Hello! I am a novice. I want to install TinyMce on Django. I tried a lot > of lessons posted on the Internet, nothing. 3 days can not adjust. Please > te

Re: django + TinyMce

2012-08-20 Thread Amyth Arora
you are getting the error because you are not register the tinyMCE correctly, the line that is causing this error is: admin.site.register(TinyMCEAdmin) you need to specify a model class as the first argument and then the ModelAdmin class, for example: admin.site.register(TinyMCEModel

Re: django + TinyMce

2012-08-20 Thread Владислав Иванов
ets import TinyMCE class RabotyAdmin(admin.ModelAdmin): list_display = ('tema', 'predmet', 'tip', 'pub_date') list_filter = ['predmet'] search_fields = ['tema'] class TinyMCEAdmin(admin.ModelAdmin): def formfield_for_dbfie

Re: django + TinyMce

2012-08-20 Thread Amyth Arora
Hey there, i could not really find a detailed step by step tutorial on setting tinyMCE on django, so i did one for you and for others, you can check it out here http://techstricks.com/django-tinymce-tutorial-step-by-step/ and feel free to ask any question if you face any problems On Mon, Aug 20

Re: django + TinyMce

2012-08-20 Thread Aljoša Mohorović
HTMLField() is probably the easiest way to use django-tinymce: http://django-tinymce.readthedocs.org/en/latest/usage.html#the-htmlfield-model-field-type let me know if you have any issues. Aljosa -- https://twitter.com/maljosa https://github.com/aljosa -- You received this message because you

Re: django + TinyMce

2012-08-20 Thread miigaa ..
http://django-tinymce.googlecode.com/svn/tags/release-1.5/docs/.build/html/installation.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send

Re: django + TinyMce

2012-08-20 Thread Aljoša Mohorović
skip step #4, 1-3 should be enough: http://django-tinymce.readthedocs.org/en/latest/installation.html#id2 Aljosa -- https://twitter.com/maljosa https://github.com/aljosa -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Re: django + TinyMce

2012-08-20 Thread Diego pascual lopez
Hi, Try this link https://github.com/aljosa/django-tinymce Regards. On Mon, Aug 20, 2012 at 8:36 AM, Владислав Иванов wrote: > Hello! I am a novice. I want to install TinyMce on Django. I tried a lot > of lessons posted on the Internet, nothing. 3 days can not adjust. Please > tell

django + TinyMce

2012-08-19 Thread Владислав Иванов
Hello! I am a novice. I want to install TinyMce on Django. I tried a lot of lessons posted on the Internet, nothing. 3 days can not adjust. Please tell me a link to a detailed and clear tutorial -- You received this message because you are subscribed to the Google Groups "Django users&q

Re: TinyMCE config

2012-08-05 Thread Aljoša Mohorović
On Fri, Aug 3, 2012 at 6:20 PM, Jonathan Baker wrote: > If you're up for it, I'd love to help update the documentation to save > future users (and yourself) some time with the issues I ran in to. sure, just send pull requests for https://github.com/aljosa/django-tinymce

Re: TinyMCE config

2012-08-03 Thread Jonathan Baker
Success! Thanks for all the help. After integrating your app with the FlatPage app I was able to integrate it with FlatBlock as well. If you're up for it, I'd love to help update the documentation to save future users (and yourself) some time with the issues I ran in to. JDB On Fri, Aug 3, 2012

Re: TinyMCE config

2012-08-03 Thread Aljoša Mohorović
documentation is not completely updated so steps in previous emails are correct. i won't be available until next week but check second snippet under: http://django-tinymce.readthedocs.org/en/latest/usage.html#the-flatpages-link-list-view and be sure that you have something like: """ admin.site.unr

Re: TinyMCE config

2012-08-02 Thread Jonathan Baker
> On 2-8-2012 23:53, Jonathan Baker wrote: > > Thanks for the responses, but I'm still stuck. For now, I'm just trying > to > > add TinyMCE to FlatPages within the Django admin app. > > Yet another victim of formfield_overrides? > Remember that the Django adm

Re: TinyMCE config

2012-08-02 Thread Melvyn Sopacua
On 2-8-2012 23:53, Jonathan Baker wrote: > Thanks for the responses, but I'm still stuck. For now, I'm just trying to > add TinyMCE to FlatPages within the Django admin app. Yet another victim of formfield_overrides? Remember that the Django admin overrides form fields based on

Re: TinyMCE config

2012-08-02 Thread Jonathan Baker
Thanks for the responses, but I'm still stuck. For now, I'm just trying to add TinyMCE to FlatPages within the Django admin app. When I visit http://127.0.0.1:8000/admin/flatpages/flatpage/add/ the 'content' textarea is rendered without the WYSiWYG, and I don't see any 404

Re: TinyMCE config

2012-08-02 Thread Aljoša Mohorović
/TINYMCE_JS_ROOT because it is set automatically based on staticfiles settings. It's available as configuration option if you need to override default setup. When you "pip install django-tinymce" all required files are copied so you can skip step 4 as described in docs, you just need to se

Re: TinyMCE config

2012-08-01 Thread Mike Dewhirst
On 2/08/2012 1:37pm, Jonathan Baker wrote: Thanks Mike. 'tinymce' is included in INSTALLED_APPS because I'm using the app located here: https://github.com/aljosa/django-tinymce/ . I saw a few comments around the web that suggested that this was the route to go to easily in

Re: TinyMCE config

2012-08-01 Thread Jonathan Baker
Thanks Mike. 'tinymce' is included in INSTALLED_APPS because I'm using the app located here: https://github.com/aljosa/django-tinymce/ . I saw a few comments around the web that suggested that this was the route to go to easily integrate TinyMCE. I've made a few adjustments

Re: TinyMCE config

2012-08-01 Thread Mike Dewhirst
On 2/08/2012 11:19am, jondbaker wrote: I'm trying to install django-tinymce so that I can use utilize it within the admin when editing flatpages and flatblocks. I've been following the instructions at http://django-tinymce.readthedocs.org/en/latest/installation.html, but I can

TinyMCE config

2012-08-01 Thread jondbaker
I'm trying to install django-tinymce so that I can use utilize it within the admin when editing flatpages and flatblocks. I've been following the instructions at http://django-tinymce.readthedocs.org/en/latest/installation.html, but I can't seem to get TinyMCE to display. dja

Re: django comments with tinymce

2012-07-18 Thread Benas Girčys
I solved it. Problem was with AJAX :) On Tue, Jul 17, 2012 at 2:30 PM, Aljoša Mohorović < aljosa.mohoro...@gmail.com> wrote: > On Tue, Jul 17, 2012 at 10:47 AM, Benasg wrote: > > Hello, when I using django comments without tinymce it`s works perfect, > but > > when I ad

Re: django comments with tinymce

2012-07-17 Thread Aljoša Mohorović
On Tue, Jul 17, 2012 at 10:47 AM, Benasg wrote: > Hello, when I using django comments without tinymce it`s works perfect, but > when I add tiny I get error "This field is required". > Any suggestion? can you post models.py code before and after you added tinymce? Aljosa --

django comments with tinymce

2012-07-17 Thread Benasg
Hello, when I using django comments without tinymce it`s works perfect, but when I add tiny I get error "This field is required". Any suggestion? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on

Re: TinyMCE, safe tag and wrong conversion of entities

2012-01-29 Thread Weldan
unicode? On 25 January 2012 07:43, jurgen wrote: > In my admin interface, I can create a database entry which contains > HTML using TinyMCE. I do this to create publication entries for my > website. In the database, a publication entry stores entities using > numeric encoding. To r

TinyMCE, safe tag and wrong conversion of entities

2012-01-27 Thread jurgen
In my admin interface, I can create a database entry which contains HTML using TinyMCE. I do this to create publication entries for my website. In the database, a publication entry stores entities using numeric encoding. To render a list of publications, I use the safe tag in the django template

When override default setting of TinyMCE, why can't get the value of textarea?

2011-12-26 Thread Tsung-Hsien
Hi, I refer the article,https://code.djangoproject.com/wiki/ AddWYSIWYGEditor, and create textareas.js to override default setting of TinyMCE. the textarea shows new functions while creating the textareas.js. However, when I submit the data, server can't save the data. if I don't ov

Open the Django page raw-id widget within TinyMCE

2011-11-14 Thread Simon Bächler
Hi Django's raw_id widget is very well suited for selecting a page as a foreign key in the admin frontend. Even from a tree view as it is the case for instance in FeinCMS. TinyMCE on the other hand allows for a dropdown list for link targets. Which is not that great if you have a few hu

small problem with django-filebrowser and tinymce integration

2011-09-24 Thread xpanta
Hi, I am trying to integrate django-tinymce with django-filebrowser for my django admin. Everything (almost) works fine. - manage.py test filebrowser, works ok - http://localhost:8000/admin/filebrowser/browse/ works, too however when I press the button on the windows popup of of tinymce

Re: How TinyMCE don't displays Html tags to vistors

2011-09-20 Thread Aljoša Mohorović
On Tue, Sep 20, 2011 at 8:18 AM, Tsung-Hsien wrote: > I've been done my admin interface with TinyMCE. However,  aftering > editing, I see words with HTML tags update to my website. > > What's a good way to solve this? you need to add "{{ tinymce_co

How TinyMCE don't displays Html tags to vistors

2011-09-19 Thread Tsung-Hsien
I've been done my admin interface with TinyMCE. However, aftering editing, I see words with HTML tags update to my website. What's a good way to solve this? Thank you! -- You received this message because you are subscribed to the Google Groups "Django users" group. T

django-tinymce

2011-04-22 Thread Nolan Bradshaw
I attempted to install djang-tinymce, yesterday. failed miserably. Is their some runserver issue that results in an extra step? I dumped the djang-tinymce in my dist-packages in the admin media. created a folder in my site static folder called js and placed the js files their. Then went into my

TinyMCE + Filebrowser (can't make integration)

2011-02-19 Thread gerram
Help me anyone. I installed separately: 1) grappelli, filebrowser, tinymce. Filebrowser works good, tinymce works good but if I try to get widget of filebrowser from tinymce form (insert image) then I get standart upload interface from tinymce. I want to get my filebrowser interface. In my app

Re: ASK-TinyMCE

2010-12-23 Thread Arek
Hi Emmerling, adding this in admin.py fixed the problem for me. class YourModelOptions(admin.ModelAdmin): class Media: js = ['http://example.site/static/admin/tinymce/jscripts/tiny_mce/tiny_mce.js', 'http://example.site/static/admin/tinymce_setup/tinymce_setu

ASK-TinyMCE

2010-12-23 Thread Emmerling
Hi, I'm trying to embed TinyMCE into my admin page but it never showed. I followed the tutorial from http://dehora.net/journal/2006/05/using_tinymce_in_djangos_admin.html and http://code.djangoproject.com/wiki/AddWYSIWYGEditor but both are not working and I still get that same plain text

including emotion images using tinyMCE

2010-12-18 Thread fei
Just setup my django project to use tinyMCE (version 3.3.9.2). Everything works fine except the emotion plugin (smily faces). When a smily is inserted, tinyMCE insert an image using relative paths. An example is shown here, The problem is this relative path cannot be recognised by django when

Re: tinymce

2010-12-17 Thread Aljoša Mohorović
On Fri, Dec 17, 2010 at 3:27 PM, alecx wrote: > I integrated django-tinymce into my application. Now I can edit the > text in the former textarea field. > But when I submit the form, the field is empty. > I am not able to figure out why the text I wrote in the editor field > i

tinymce

2010-12-17 Thread alecx
Hi, I integrated django-tinymce into my application. Now I can edit the text in the former textarea field. But when I submit the form, the field is empty. I am not able to figure out why the text I wrote in the editor field is not submitted. Has someone a tip for me? Thanks in advance. -- You

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
Hi, What does your admin.py look like? You might need to add a media class to your admin classes e.g. class Media: js = ('/js/tiny_mce/tiny_mce.js', '/js/textareas.js') I never tried to get tinymce working with the admin mind, I just spotted it i

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

2010-09-13 Thread tricks...@googlemail.com
dleware', 'django.contrib.messages.middleware.MessageMiddleware', ) CACHE_BACKEND = "locmem:///?timeout=300&max_entries=5000" INTERNAL_IPS = ('127.0.0.1:8000',) ROOT_URLCONF = 'project.urls' TEMPLATE_DIRS = ( os.path.join(PROJECT_DIR, 'templat

django-tinymce no links allowed

2010-07-21 Thread Bobby Roberts
hi all. I'm using: Django 1.2.1 (mod_wsgi 3.2/Python 2.5) django-tinymce 1.5 i'm having an issue where the ahref link button is not working properly. Although I am getting the popup windows, i complete the data and hit the button but no link information is inserted. The only way to

Re: How to merge TinyMCE to django flatpage

2010-06-19 Thread Mario
Steven, You need to read the 1st paragraph on page 25 closely. Also make sure the java scripts are loaded correctly. I personally use Firefox Firebug to debug the failing scripts. Finally using the Django Dev Server will not display the TinyMCE widgets. You need to make changes on your Apache

How to merge TinyMCE to django flatpage

2010-06-19 Thread Steven Han
Hi, I am reading the book of . I want to merge a simple rich-text editor to flatpage following the chapter 3. In the url.py ,I have added the link to the urlpatterns. like this: urlpatterns = patterns('', (r'^admin/',inlcude(admin.site.urls)), (r'^tiny_mce/(?P.*)$','django.views.static.serv

Re: tinymce hyperlinks

2010-05-31 Thread Nuno Maltez
7;s a branch that still works with 1.1. >> >> Having said that, we're using grappelli (a slightly older revision) >> with Django 1.1 in a live project and it works just fine. Do you >> notice any javascript errors when using the wizard? >> >> Nuno >> >&

Re: tinymce hyperlinks

2010-05-31 Thread Bobby Roberts
Sun, May 30, 2010 at 9:45 PM, Bobby Roberts wrote: > > i'm using django 1.1 with tinymce and the grappelli skins.  we just > > realized that the tinymce editor does not let you put hyperlinks in. > > if you go into HTML and hand code them they are fine.  if you try to > > c

Re: tinymce hyperlinks

2010-05-31 Thread Nuno Maltez
javascript errors when using the wizard? Nuno On Sun, May 30, 2010 at 9:45 PM, Bobby Roberts wrote: > i'm using django 1.1 with tinymce and the grappelli skins.  we just > realized that the tinymce editor does not let you put hyperlinks in. > if you go into HTML and hand code them they

tinymce hyperlinks

2010-05-30 Thread Bobby Roberts
i'm using django 1.1 with tinymce and the grappelli skins. we just realized that the tinymce editor does not let you put hyperlinks in. if you go into HTML and hand code them they are fine. if you try to click the link button and use the wizard, no link is inserted and the insert button do

Re: Grappelli - TinyMCE only works in Firefox

2010-05-07 Thread django_jedi
Thanks for the link, Patrick. Since I placed this post, we commented out that line in the init: browsers : "msie,gecko,opera" ...and it works in all browsers *except* IE7. I had tried "MSIE" for explorer, but not lower-case. We'll give that a whirl and see what happens. -- You received th

Re: Grappelli - TinyMCE only works in Firefox

2010-05-06 Thread patrickk
TinyMCE works in every browser ... you just need to change the setup- file, see http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/browsers regards, patrick On 6 Mai, 14:53, django_jedi wrote: > Hi All, > > We're using Grappelli in the admin of a Django site we're

Grappelli - TinyMCE only works in Firefox

2010-05-06 Thread django_jedi
Hi All, We're using Grappelli in the admin of a Django site we're building. Weirdly, the TinyMCE text editor only shows up in Firefox. Has anyone else run into this? I've been scouring the Net and the TinyMCE wiki for clues but so far no luck. Any help would be greatly ap

Re: Django-tinyMCE and django-filebrowser js error

2010-05-01 Thread John Wesonga
Fixed this.. On Apr 30, 3:06 pm, John Wesonga wrote: > I've set up django-filebrowser in my app without any bugs, I already > had django-tinymce set up and it loads the editor in the admin forms. > I now want to use django-filebrowser with django-tinymce, but I keep > getting a

Django-tinyMCE and django-filebrowser js error

2010-04-30 Thread John Wesonga
I've set up django-filebrowser in my app without any bugs, I already had django-tinymce set up and it loads the editor in the admin forms. I now want to use django-filebrowser with django-tinymce, but I keep getting a weird javascript error when I click on "Image URL" in the Ima

Re: django tinymce/filebrowser issue

2010-04-28 Thread Bill Freeman
It means that something is calling reverse, or a template is using the url tag, with a bad argument. The argument could be bad in it's own right (if it's your own code doing it, or if something like filebrowser or tinymce is using an improperly set configuration variable from settin

Re: django tinymce/filebrowser issue

2010-04-28 Thread fuxter
> Any > idea what could be causing that? > last time i had exact same problem. existing button but filebrowser not appearing. it was thist one: if you check the url you'd get an clear error about reverse url fault. actually i had to fix tinymce python source: fb_ur

Re: django tinymce/filebrowser issue

2010-04-28 Thread Bobby Roberts
hey bill i'm getting this traceback: NoReverseMatch at /tinymce/filebrowser/ Reverse for 'filebrowser-index' with arguments '()' and keyword arguments '{}' not found. Request Method: GET Request URL: http://www.rakeshark.com/

  1   2   3   >