Update of /cvsroot/php-blog/serendipity/htmlarea/plugins/FullPage/popups
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12393/htmlarea/plugins/FullPage/popups
Modified Files:
docprop.html
Log Message:
* Upgraded htmlarea WYSIWYG editor to latest version. Entering links now properly works, as finally does Copy+Paste from Mozilla! (garvinhicking)
Index: docprop.html
===================================================================
RCS file: /cvsroot/php-blog/serendipity/htmlarea/plugins/FullPage/popups/docprop.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- docprop.html 23 Mar 2004 15:41:09 -0000 1.1
+++ docprop.html 11 Jan 2005 15:00:57 -0000 1.2
@@ -16,7 +16,8 @@
f_body_bgcolor : true,
f_body_fgcolor : true,
f_base_style : true,
- f_alt_style : true
+ f_alt_style : true,
+ f_charset : true
};
var editor = null;
@@ -120,6 +121,17 @@
<td class="label"><span>Text color:</span></td>
<td><input type="text" id="f_body_fgcolor" size="7" /></td>
</tr>
+ <tr>
+ <td class="label"><span>Character set:</span></td>
+ <td><select id="f_charset">
+ <option value=""></option>
+ <option value="utf-8">UTF-8 (recommended)</option>
+ <option value="windows-1251">cyrillic (WINDOWS-1251)</option>
+ <option value="koi8-r">cyrillic (KOI8-R)</option>
+ <option value="iso-8859-5">cyrillic (ISO-8859-5)</option>
+ <option value="iso-8859-1">western (ISO-8859-1)</option>
+ </select></td>
+ </tr>
</table>
<div id="buttons">
|