view static/js/tiny_mce_init_std.js @ 791:0ca691cccf8d

Utilize select_related() for user & user profiles. This commit also removes the caching of the avatar URL in the avatar template tag. This is because we are now using select_related, so we already have the profile & avatar when we get to the tag. Thus we don't need to waste time querying the cache. Removed an apparently unused member map template as well.
author Brian Neal <bgneal@gmail.com>
date Fri, 23 May 2014 21:52:41 -0500
parents 639af9e6bd78
children
line wrap: on
line source
tinyMCE.init({
   mode : "specific_textareas",
   editor_deselector: "mceNoEditor",
   theme : "advanced",
   convert_urls: false,
   theme_advanced_toolbar_location : "top",
   theme_advanced_toolbar_align : "left",
   theme_advanced_buttons1 : "fullscreen,|,preview,|,bold,italic,underline,strikethrough,|,bullist,numlist,outdent,indent,|,undo,redo,|,link,unlink,anchor,|,image,cleanup,help,|,code",
   theme_advanced_buttons2 : "pastetext,pasteword,selectall",
   theme_advanced_buttons3 : "",
   auto_cleanup_word : true,
   plugins : "table,advhr,emotions,insertdatetime,preview,searchreplace,print,contextmenu,fullscreen,media,paste",
   paste_auto_cleanup_on_paste: true,
   plugin_insertdate_dateFormat : "%m/%d/%Y",
   plugin_insertdate_timeFormat : "%H:%M:%S",
   fullscreen_settings : {
      theme_advanced_path_location : "top",
      theme_advanced_buttons1 : "fullscreen,|,preview,|,cut,copy,paste,|,undo,redo,|,search,replace,|,code,|,cleanup,|,bold,italic,underline,strikethrough,|,forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,|,help",
      theme_advanced_buttons2 : "removeformat,styleselect,formatselect,fontselect,fontsizeselect,|,bullist,numlist,outdent,indent,|,link,unlink,anchor",
      theme_advanced_buttons3 : "sub,sup,|,image,insertdate,inserttime,|,tablecontrols,|,hr,advhr,visualaid,|,charmap,emotions,|,print",
      theme_advanced_buttons4 : "pastetext,pasteword,selectall"
   },
   valid_styles : { '*' : 'font-style,font-weight,text-decoration,float,margin,margin-right'}
});