| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #coding:utf-8
- from django import forms
- from django.conf import settings
- from django.contrib.admin.widgets import AdminTextareaWidget
- from django.template.loader import render_to_string
- from django.utils.safestring import mark_safe
- from django.utils.html import conditional_escape
- from django.utils.encoding import force_unicode
- from django.utils import simplejson
- from utils import MadeUeditorOptions
- import settings as USettings
- class UEditorWidget(forms.Textarea):
- def __init__(self,width=600,height=300,plugins=(),toolbars="normal",filePath="",imagePath="",scrawlPath="",imageManagerPath="",css="",options={}, attrs=None,**kwargs):
- self.ueditor_options=MadeUeditorOptions(width,height,plugins,toolbars,filePath,imagePath,scrawlPath,imageManagerPath,css,options)
- super(UEditorWidget, self).__init__(attrs)
- def render(self, name, value, attrs=None):
- if value is None: value = ''
- #取得工具栏设置
- try:
- if type(self.ueditor_options['toolbars'])==list:
- tbar=simplejson.dumps(self.ueditor_options['toolbars'])
- else:
- if getattr(USettings,"TOOLBARS_SETTINGS",{}).has_key(str(self.ueditor_options['toolbars'])):
- if self.ueditor_options['toolbars'] =="full":
- tbar=None
- else:
- tbar=simplejson.dumps(USettings.TOOLBARS_SETTINGS[str(self.ueditor_options['toolbars'])])
- else:
- tbar=None
- except:
- pass
- #传入模板的参数
- uOptions=self.ueditor_options.copy()
- uOptions.update({
- "name":name,
- "value":conditional_escape(force_unicode(value)),
- "toolbars":tbar,
- "options":simplejson.dumps(self.ueditor_options['options'])[1:-1]
- #str(self.ueditor_options['options'])[1:-1].replace("True","true").replace("False","false").replace("'",'"')
- })
- context = {
- 'UEditor':uOptions,
- 'STATIC_URL':settings.STATIC_URL,
- 'STATIC_ROOT':settings.STATIC_ROOT,
- 'MEDIA_URL':settings.MEDIA_URL,
- 'MEDIA_ROOT':settings.MEDIA_ROOT
- }
- return mark_safe(render_to_string('ueditor.html',context))
- class Media:
- css={"all": ("ueditor/themes/default/ueditor.css" ,
- "ueditor/themes/default/iframe.css" ,
- )}
- js=("ueditor/editor_config.js",
- "ueditor/editor_all_min.js")
- class AdminUEditorWidget(AdminTextareaWidget, UEditorWidget):
- def __init__(self,**kwargs):
- self.ueditor_options=kwargs
- super(UEditorWidget,self).__init__(kwargs)
|