Разметка AddThis не отображается в HTML-редакторе TinyMCE - PullRequest
2 голосов
/ 20 июня 2011

У меня есть разработанная мной система управления контентом, в основе которой лежат файлы XML.Все готово и работает отлично, за исключением разметки для AddThis, которая не отображается в редакторе tinymce.Это также даже не появляется в представлении HTML.Это было бы не так уж и сложно, если бы пользователь не редактировал этот раздел страницы, а удалил дополнительный элемент управления.

Есть идеи?

Вот как работает разметкастраница и в xml-файле:

<div style="float: left; margin-top: 1px; font-family: arial; color: #005396; margin-left: 3px; font-size: medium; margin-right: 200px;">Join Our Mailing List</div>
      <div style="clear: right; float: right;">
        <div style="text-align: center; margin-top: 8px; font-family: arial; clear: left; float: left; color: #333333; font-size: large; vertical-align: middle;">Check Out _ Weekly <br /><span style="font-family: arial; color: #005396; font-size: large;">National Polling Summary </span></div>
        <div class="addthis_toolbox addthis_default_style addthis_32x32_style" style="float: right; padding-top: 15px;">
          <a class="addthis_button_facebook"></a>
          <a class="addthis_button_twitter"></a>
          <a class="addthis_button_email"></a>
          <a class="addthis_button_compact"></a>
        </div>
      </div>

Вот он, в разделе HTML tinymce

<div style="float: left; margin-top: 1px; font-family: arial; color: #005396; margin-    left: 3px; font-size: medium; margin-right: 200px;">Join Our Mailing List</div>
<div style="clear: right; float: right;">
<div style="text-align: center; margin-top: 8px; font-family: arial; clear: left;     float: left; color: #333333; font-size: large; vertical-align: middle;">Check Out _    Weekly <br /><span style="font-family: arial; color: #005396; font-size: large;">National   Polling Summary </span></div>
</div>

Вот мой init init:

tinyMCE.init({
    // General options
    mode: "textareas",
    theme: "advanced",
    plugins: "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",

    // Theme options
    theme_advanced_buttons1: "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
    theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
    theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
    theme_advanced_buttons4: "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
    theme_advanced_toolbar_location: "top",
    theme_advanced_toolbar_align: "left",
    theme_advanced_statusbar_location: "bottom",
    theme_advanced_resizing: true,
    relative_urls: false,
    editor_deselector : "mceNoEditor",


    // Example content CSS (should be your site CSS)
    // using false to ensure that the default browser settings are used for best Accessibility
    // ACCESSIBILITY SETTINGS
    content_css: "Symba/Styles/CSS/Site.css",        
    // Use browser preferred colors for dialogs.
    browser_preferred_colors: true,
    detect_highcontrast: true,

    // Drop lists for link/image/media/template dialogs
    template_external_list_url: "lists/template_list.js",
    external_link_list_url: "lists/link_list.js",
    external_image_list_url: "lists/image_list.js",
    media_external_list_url: "lists/media_list.js",

    // Style formats
    style_formats: [
        { title: 'Bold text', inline: 'b' },
        { title: 'Red text', inline: 'span', styles: { color: '#ff0000'} },
        { title: 'Red header', block: 'h1', styles: { color: '#ff0000'} },
        { title: 'Example 1', inline: 'span', classes: 'example1' },
        { title: 'Example 2', inline: 'span', classes: 'example2' },
        { title: 'Table styles' },
        { title: 'Table row 1', selector: 'tr', classes: 'tablerow1' }
    ],

    // Replace values for the template plugin
    template_replace_values: {
        username: "Some User",
        staffid: "991234"
    }
});

Обновление

Хорошо, я попытался добавить это к функции инициализации

 valid_elements: "*[*]",
 extended_valid_elements: "*[*]"

, и это вернуло div, но я все еще не получаю теги привязки.

1 Ответ

3 голосов
/ 20 июня 2011

FCKEditor и Tinyeditor удаляют пустые элементы по умолчанию. Попытайтесь добавить пустые места к своим якорям как это:

<a class="addthis_button_facebook">&nbsp;</a>           
<a class="addthis_button_twitter">&nbsp;</a>           
<a class="addthis_button_email">&nbsp;</a>           
<a class="addthis_button_compact">&nbsp;</a>


<div style="float: left; margin-top: 1px; font-family: arial; color: #005396; margin-left: 3px; font-size: medium; margin-right: 200px;">Join Our Mailing List</div>
<div style="clear: right; float: right;">
<div style="text-align: center; margin-top: 8px; font-family: arial; clear: left; float: left; color: #333333; font-size: large; vertical-align: middle;">Check Out _ Weekly <br />
<span style="font-family: arial; color: #005396; font-size: large;">National Polling Summary </span></div>
<div style="float: right; padding-top: 15px;" class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_facebook">&nbsp;</a>           
<a class="addthis_button_twitter">&nbsp;</a>           
<a class="addthis_button_email">&nbsp;</a>           
<a class="addthis_button_compact">&nbsp;</a>
</div>
</div>
...