Noël Café : Blog
Noëlの公開備忘録とひとりごと。コメント・トラックバックご自由に

3.1にしましたが。

Movable Type 3.1 ja
いろいろおかしな事になっています!
edit_entry.tmpl, bm_entry.tmpl編。


Entry画面の"Entry Body"の文字の場所がおかしい。
edit_entry.tmpl

<div id="body-box">

<br clear="all" />
<div id="body-box">

にする。
これで、まずは解決。


edit_entry.tmpl, bm_entry.tmplの書き換え。

write(”<a title="<MT_TRANS phrase="Bold">" href="#" onclick="return formatStr(document.entry_form.text, \\”strong\\”)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-bold.gif" alt="<MT_TRANS phrase="Bold">" width="22" height="16" border="0" /></a>”);

が書いてあるところの、
<script type="text/javascript">~</script>の部分。
edit_entry.tmplは2カ所, bm_entry.tmplは1カ所。
この例では、
Bold, Italic, Underline, Blockquote, hr, URL, e-mail, amazon, Decode, File
と来る場合。
URL, e-mailに関しては→URLボタンにTarget属性 Ver. 3.1
hrに関しては→Insert Something再考。
amazonに関しては→Amazon Button
Decodeに関しては→Decodeボタンをつける。
を参照してください。
(mt.jsに書く事があります。)
いらない物がある場合は、該当する行をぽいっとしてください。
edit_entry.tmplの1個目は、

<script type="text/javascript">
<!--
if (canFormat) {
with (document) {
write(''<a title="<MT_TRANS phrase="Bold">" href="#" onclick="return formatStr(document.entry_form.text, \\''strong\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-bold.gif" alt="<MT_TRANS phrase="Bold">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Italic">" href="#" onclick="return formatStr(document.entry_form.text, \\''em\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-italic.gif" alt="<MT_TRANS phrase="Italic">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Underline">" href="#" onclick="return formatStr(document.entry_form.text, \\''u\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-underline.gif" alt="<MT_TRANS phrase="Underline">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Quote">" href="#" onclick="return formatStr(document.entry_form.text, \\''blockquote\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-quote.gif" alt="<MT_TRANS phrase="Quote">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Horizontal Rule">" href="#" onclick="return insertSomething(document.entry_form.text, \\''<hr size=&quot;1&quot; noshade />\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-hr.gif" alt="<MT_TRANS phrase="Insert Horizontal Rule">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Link">" href="#" onclick="return insertLink(document.entry_form.text)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-link.gif" alt="<MT_TRANS phrase="Insert Link">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Email Link">" href="#" onclick="return insertLink(document.entry_form.text, 1)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-email.gif" alt="<MT_TRANS phrase="Insert Email Link">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Amazon Associate">" href="#" onclick="return insertAmazon(document.entry_form.text)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-amazon.gif" alt="<MT_TRANS phrase="Amazon Associate">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Decode">" href="#" onclick="return Decode(document.entry_form.text)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-decode.gif" alt="<MT_TRANS phrase="Decode">" width="22" height="16" border="0" /></a>'');
}
}
<TMPL_IF NAME=CAN_UPLOAD>
if (canFormat) {
with (document) {
write(''<a title="<MT_TRANS phrase="Upload File">" href="<TMPL_VAR NAME=SCRIPT_URL>?__mode=start_upload&amp;blog_id=<TMPL_VAR NAME=BLOG_ID>" onclick="window.open(this.href, \\''upload\\'', \\''width=400,height=450,resizable=yes\\''); return false"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-file.gif" alt="<MT_TRANS phrase="Upload File">" width="22" height="16" border="0" /></a>'');
}
}
</TMPL_IF>
// -->
</script>

edit_entry.tmplの2個目。

<script type="text/javascript">
<!--
if (canFormat) {
with (document) {
write(''<a title="<MT_TRANS phrase="Bold">" href="#" onclick="return formatStr(document.entry_form.text_more, \\''strong\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-bold.gif" alt="<MT_TRANS phrase="Bold">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Italic">" href="#" onclick="return formatStr(document.entry_form.text_more, \\''em\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-italic.gif" alt="<MT_TRANS phrase="Italic">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Underline">" href="#" onclick="return formatStr(document.entry_form.text_more, \\''u\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-underline.gif" alt="<MT_TRANS phrase="Underline">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Quote">" href="#" onclick="return formatStr(document.entry_form.text_more, \\''blockquote\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-quote.gif" alt="<MT_TRANS phrase="Quote">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Horizontal Rule">" href="#" onclick="return insertSomething(document.entry_form.text_more, \\''<hr size=&quot;1&quot; noshade />\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-hr.gif" alt="<MT_TRANS phrase="Insert Horizontal Rule">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Link">" href="#" onclick="return insertLink(document.entry_form.text_more)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-link.gif" alt="<MT_TRANS phrase="Insert Link">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Email Link">" href="#" onclick="return insertLink(document.entry_form.text_more, 1)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-email.gif" alt="<MT_TRANS phrase="Insert Email Link">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Amazon Associate">" href="#" onclick="return insertAmazon(document.entry_form.text_more)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-amazon.gif" alt="<MT_TRANS phrase="Amazon Associate">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Decode">" href="#" onclick="return Decode(document.entry_form.text_more)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-decode.gif" alt="<MT_TRANS phrase="Decode">" width="22" height="16" border="0" /></a>'');
}
}
<TMPL_IF NAME=CAN_UPLOAD>
if (canFormat) {
with (document) {
write(''<a title="<MT_TRANS phrase="Upload File">" href="<TMPL_VAR NAME=SCRIPT_URL>?__mode=start_upload&amp;blog_id=<TMPL_VAR NAME=BLOG_ID>" onclick="window.open(this.href, \\''upload\\'', \\''width=400,height=450,resizable=yes\\''); return false"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-file.gif" alt="<MT_TRANS phrase="Upload File">" width="22" height="16" border="0" /></a>'');
}
}
</TMPL_IF>
// -->

bm_entry.tmplの、

<script type="text/javascript">
<!--
if (canFormat) {
with (document) {
write(''<a title="<MT_TRANS phrase="Bold">" href="#" onclick="return formatStr(document.entry_form.text, \\''strong\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-bold.gif" alt="<MT_TRANS phrase="Bold">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Italic">" href=&;quot;#" onclick="return formatStr(document.entry_form.text, \\''em\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-italic.gif" alt="<MT_TRANS phrase="Italic">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Underline">" href="#" onclick="return formatStr(document.entry_form.text, \\''u\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-underline.gif" alt="<MT_TRANS phrase="Underline">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Quote">" href="#" onclick="return formatStr(document.entry_form.text, \\''blockquote\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-quote.gif" alt="<MT_TRANS phrase="Quote">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Horizontal Rule">" href="#" onclick="return insertSomething(document.entry_form.text, \\''<hr size=&quot;1&quot; noshade />\\'')"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-hr.gif" alt="<MT_TRANS phrase="Insert Horizontal Rule">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Link">" href="#" onclick="return insertLink(document.entry_form.text)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-link.gif" alt="<MT_TRANS phrase="Insert Link">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Insert Email Link">" href="#" onclick="return insertLink(document.entry_form.text, 1)">&lt;img src="<TMPL_VAR NAME=STATIC_URI>images/html-email.gif" alt="<MT_TRANS phrase="Insert Email Link">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Amazon Associate">" href="#" onclick="return insertAmazon(document.entry_form.text)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-amazon.gif" alt="<MT_TRANS phrase="Amazon Associate">" width="22" height="16" border="0" /></a>'');
write(''<a title="<MT_TRANS phrase="Decode">" href="#" onclick="return Decode(document.entry_form.text)"><img src="<TMPL_VAR NAME=STATIC_URI>images/html-decode.gif" alt="<MT_TRANS phrase="Decode">" width="22" height="16" border="0" /></a>'');
}
}
// -->
</script>

そして、ボタンたち。
Quote hr Link e-mail amazon Decode File
こんな感じかな??
なんか、絵は嫌だったのです。

Leave a Reply

*


CAPTCHA



Trackback

  1. Movable Type 3.171-ja

    Movable Typeの3.17が出ていましたのでアップグレードを行いました。…


Trackback URL