MDL-11517 reserved word MOD used in table alias in questions backup code
[moodle-pu.git] / lib / yui / editor / README
blob2190c19ee6f3066ce674debde2dbceba14cdbdc7
1 **** version 2.3.0 ***
3 * Beta release.
5 * Known Issues
6     * All
7         1. Removed the menu for Create Ordered Lists, it now defaults to creating a simple OL with no type.
8      
9     * Safari
10         1. Bug #1390926 - Safari may not inject the editor's HTML into the text area when the config handleSubmit is set to true.
11             You can get around this with the following code (where comment is the id of the textarea):
12                 YAHOO.util.Dom.setStyle('comment', 'visibility', 'hidden');
13                 YAHOO.util.Dom.setStyle('comment', 'position', 'absolute');
14                 YAHOO.util.Dom.setStyle('comment', 'display', 'block');
15                 oEditor.saveHTML();
16                 window.setTimeout(function() {
17                         YAHOO.util.Dom.get('comment').form.submit();
18                 }, 200);
20             This issue will be fixed in a later release..
21         2. Unable to get the cursor position inside the editable area.
22             What this means is that when an image/object is inserted into the document
23             we have no way of knowing "exactly" where to put it. So we make an educated guess.
24             If they user clicked on an "element" (HTML Element) in the editor, then we will place
25             the newly inserted element directly after it in the DOM. If there was no element clicked
26             We will append the new element to the body.
28         3. Ordered/Unorder Lists are not support natively. So we have built a work around for this.
29             Most browsers will allow you to select a block of text and create a list out of it "automagically"
30             by inserting an LI around blocks that are separated by line breaks, BRs or Ps. In Safari, the 
31             entire text block will be turned into the first LI of the list. The user can then place the cursor
32             at the beginning of each line, and backspace, then hit enter to create the new list item. There are some
33             use cases that this might fail.
35         4. Dragging and dropping of selections and images/objects is not supported.
36             Safari will do some weird things if the text in the editable area is selected and dragged and dropped.
37             We prevent this from happening to images inside of the editable area, but we can not prevent it for text.
38             Safari will also give unexpected results if text from another Safari window in selected, then dragged
39             into the editable area.
41     * Opera
42         1. Placing the cursor in the editor, then Shift Clicking to highlight will not work. The limitation appear to be in Opera.
44         2. Image resize is unavailable, due to limitations in the browser
46         3. Shortcut keys are not supported in this release.
48         4. Dragging and dropping of selections and images/objects is not supported.
50         5. Hitting the back button on the page will not reload the iframe.
52         6. Selecting the editable area, then hitting the shortcut keys for "Reload" will
53             cause the current page to be displayed inside the editable area.
56 **** version 2.3.0 Peview Release Notes ***
58 * The only server side resource required to run the editor, is the blankimage file.
59     The blankimage file is the temporary image loaded into the editor when you click the
60     "Insert Image" button in the toolbar.
62     This can be set using:
64     var myEditor = new YAHOO.widget.Editor('test', {
65         blankimage: 'MY_IMAGE_PATH'
66     });
68 * There is a performance issue with Safari on a G4 computer. We will be working to get this resolved before the initial beta release.