Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/plugin.js'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js,v diff -u -r1.1.2.1 -r1.1.2.2 --- lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js 2 Sep 2014 23:18:33 -0000 1.1.2.1 +++ lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js 5 Jun 2015 11:34:21 -0000 1.1.2.2 @@ -1,10 +1,207 @@ -/* - Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. - For licensing, see LICENSE.md or http://ckeditor.com/license -*/ -(function(){function c(b){var c=this instanceof CKEDITOR.ui.dialog.checkbox;b.hasAttribute(this.id)&&(b=b.getAttribute(this.id),c?this.setValue(e[this.id]["true"]==b.toLowerCase()):this.setValue(b))}function d(b){var c=""===this.getValue(),a=this instanceof CKEDITOR.ui.dialog.checkbox,d=this.getValue();c?b.removeAttribute(this.att||this.id):a?b.setAttribute(this.id,e[this.id][d]):b.setAttribute(this.att||this.id,d)}var e={scrolling:{"true":"yes","false":"no"},frameborder:{"true":"1","false":"0"}}; -CKEDITOR.dialog.add("iframe",function(b){var f=b.lang.iframe,a=b.lang.common,e=b.plugins.dialogadvtab;return{title:f.title,minWidth:350,minHeight:260,onShow:function(){this.fakeImage=this.iframeNode=null;var a=this.getSelectedElement();a&&(a.data("cke-real-element-type")&&"iframe"==a.data("cke-real-element-type"))&&(this.fakeImage=a,this.iframeNode=a=b.restoreRealElement(a),this.setupContent(a))},onOk:function(){var a;a=this.fakeImage?this.iframeNode:new CKEDITOR.dom.element("iframe");var c={},d= -{};this.commitContent(a,c,d);a=b.createFakeElement(a,"cke_iframe","iframe",!0);a.setAttributes(d);a.setStyles(c);this.fakeImage?(a.replace(this.fakeImage),b.getSelection().selectElement(a)):b.insertElement(a)},contents:[{id:"info",label:a.generalTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{id:"src",type:"text",label:a.url,required:!0,validate:CKEDITOR.dialog.validate.notEmpty(f.noUrl),setup:c,commit:d}]},{type:"hbox",children:[{id:"width",type:"text",requiredContent:"iframe[width]", -style:"width:100%",labelLayout:"vertical",label:a.width,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.width)),setup:c,commit:d},{id:"height",type:"text",requiredContent:"iframe[height]",style:"width:100%",labelLayout:"vertical",label:a.height,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.height)),setup:c,commit:d},{id:"align",type:"select",requiredContent:"iframe[align]","default":"",items:[[a.notSet,""],[a.alignLeft,"left"],[a.alignRight, -"right"],[a.alignTop,"top"],[a.alignMiddle,"middle"],[a.alignBottom,"bottom"]],style:"width:100%",labelLayout:"vertical",label:a.align,setup:function(a,b){c.apply(this,arguments);if(b){var d=b.getAttribute("align");this.setValue(d&&d.toLowerCase()||"")}},commit:function(a,b,c){d.apply(this,arguments);this.getValue()&&(c.align=this.getValue())}}]},{type:"hbox",widths:["50%","50%"],children:[{id:"scrolling",type:"checkbox",requiredContent:"iframe[scrolling]",label:f.scrolling,setup:c,commit:d},{id:"frameborder", -type:"checkbox",requiredContent:"iframe[frameborder]",label:f.border,setup:c,commit:d}]},{type:"hbox",widths:["50%","50%"],children:[{id:"name",type:"text",requiredContent:"iframe[name]",label:a.name,setup:c,commit:d},{id:"title",type:"text",requiredContent:"iframe[title]",label:a.advisoryTitle,setup:c,commit:d}]},{id:"longdesc",type:"text",requiredContent:"iframe[longdesc]",label:a.longDescr,setup:c,commit:d}]},e&&e.createAdvancedTab(b,{id:1,classes:1,styles:1},"iframe")]}})})(); \ No newline at end of file +/** + * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +( function() { + // Map 'true' and 'false' values to match W3C's specifications + // http://www.w3.org/TR/REC-html40/present/frames.html#h-16.5 + var checkboxValues = { + scrolling: { 'true': 'yes', 'false': 'no' }, + frameborder: { 'true': '1', 'false': '0' } + }; + + function loadValue( iframeNode ) { + var isCheckbox = this instanceof CKEDITOR.ui.dialog.checkbox; + if ( iframeNode.hasAttribute( this.id ) ) { + var value = iframeNode.getAttribute( this.id ); + if ( isCheckbox ) + this.setValue( checkboxValues[ this.id ][ 'true' ] == value.toLowerCase() ); + else + this.setValue( value ); + } + } + + function commitValue( iframeNode ) { + var isRemove = this.getValue() === '', + isCheckbox = this instanceof CKEDITOR.ui.dialog.checkbox, + value = this.getValue(); + if ( isRemove ) + iframeNode.removeAttribute( this.att || this.id ); + else if ( isCheckbox ) + iframeNode.setAttribute( this.id, checkboxValues[ this.id ][ value ] ); + else + iframeNode.setAttribute( this.att || this.id, value ); + } + + CKEDITOR.dialog.add( 'iframe', function( editor ) { + var iframeLang = editor.lang.iframe, + commonLang = editor.lang.common, + dialogadvtab = editor.plugins.dialogadvtab; + return { + title: iframeLang.title, + minWidth: 350, + minHeight: 260, + onShow: function() { + // Clear previously saved elements. + this.fakeImage = this.iframeNode = null; + + var fakeImage = this.getSelectedElement(); + if ( fakeImage && fakeImage.data( 'cke-real-element-type' ) && fakeImage.data( 'cke-real-element-type' ) == 'iframe' ) { + this.fakeImage = fakeImage; + + var iframeNode = editor.restoreRealElement( fakeImage ); + this.iframeNode = iframeNode; + + this.setupContent( iframeNode ); + } + }, + onOk: function() { + var iframeNode; + if ( !this.fakeImage ) + iframeNode = new CKEDITOR.dom.element( 'iframe' ); + else + iframeNode = this.iframeNode; + + // A subset of the specified attributes/styles + // should also be applied on the fake element to + // have better visual effect. (#5240) + var extraStyles = {}, + extraAttributes = {}; + this.commitContent( iframeNode, extraStyles, extraAttributes ); + + // Refresh the fake image. + var newFakeImage = editor.createFakeElement( iframeNode, 'cke_iframe', 'iframe', true ); + newFakeImage.setAttributes( extraAttributes ); + newFakeImage.setStyles( extraStyles ); + if ( this.fakeImage ) { + newFakeImage.replace( this.fakeImage ); + editor.getSelection().selectElement( newFakeImage ); + } else { + editor.insertElement( newFakeImage ); + } + }, + contents: [ { + id: 'info', + label: commonLang.generalTab, + accessKey: 'I', + elements: [ { + type: 'vbox', + padding: 0, + children: [ { + id: 'src', + type: 'text', + label: commonLang.url, + required: true, + validate: CKEDITOR.dialog.validate.notEmpty( iframeLang.noUrl ), + setup: loadValue, + commit: commitValue + } ] + }, + { + type: 'hbox', + children: [ { + id: 'width', + type: 'text', + requiredContent: 'iframe[width]', + style: 'width:100%', + labelLayout: 'vertical', + label: commonLang.width, + validate: CKEDITOR.dialog.validate.htmlLength( commonLang.invalidHtmlLength.replace( '%1', commonLang.width ) ), + setup: loadValue, + commit: commitValue + }, + { + id: 'height', + type: 'text', + requiredContent: 'iframe[height]', + style: 'width:100%', + labelLayout: 'vertical', + label: commonLang.height, + validate: CKEDITOR.dialog.validate.htmlLength( commonLang.invalidHtmlLength.replace( '%1', commonLang.height ) ), + setup: loadValue, + commit: commitValue + }, + { + id: 'align', + type: 'select', + requiredContent: 'iframe[align]', + 'default': '', + items: [ + [ commonLang.notSet, '' ], + [ commonLang.alignLeft, 'left' ], + [ commonLang.alignRight, 'right' ], + [ commonLang.alignTop, 'top' ], + [ commonLang.alignMiddle, 'middle' ], + [ commonLang.alignBottom, 'bottom' ] + ], + style: 'width:100%', + labelLayout: 'vertical', + label: commonLang.align, + setup: function( iframeNode, fakeImage ) { + loadValue.apply( this, arguments ); + if ( fakeImage ) { + var fakeImageAlign = fakeImage.getAttribute( 'align' ); + this.setValue( fakeImageAlign && fakeImageAlign.toLowerCase() || '' ); + } + }, + commit: function( iframeNode, extraStyles, extraAttributes ) { + commitValue.apply( this, arguments ); + if ( this.getValue() ) + extraAttributes.align = this.getValue(); + } + } ] + }, + { + type: 'hbox', + widths: [ '50%', '50%' ], + children: [ { + id: 'scrolling', + type: 'checkbox', + requiredContent: 'iframe[scrolling]', + label: iframeLang.scrolling, + setup: loadValue, + commit: commitValue + }, + { + id: 'frameborder', + type: 'checkbox', + requiredContent: 'iframe[frameborder]', + label: iframeLang.border, + setup: loadValue, + commit: commitValue + } ] + }, + { + type: 'hbox', + widths: [ '50%', '50%' ], + children: [ { + id: 'name', + type: 'text', + requiredContent: 'iframe[name]', + label: commonLang.name, + setup: loadValue, + commit: commitValue + }, + { + id: 'title', + type: 'text', + requiredContent: 'iframe[title]', + label: commonLang.advisoryTitle, + setup: loadValue, + commit: commitValue + } ] + }, + { + id: 'longdesc', + type: 'text', + requiredContent: 'iframe[longdesc]', + label: commonLang.longDescr, + setup: loadValue, + commit: commitValue + } ] + }, + dialogadvtab && dialogadvtab.createAdvancedTab( editor, { id: 1, classes: 1, styles: 1 }, 'iframe' ) + ] }; + } ); +} )(); Index: lams_central/web/ckeditor/plugins/iframe/icons/iframe.png =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/ckeditor/plugins/iframe/icons/iframe.png,v diff -u -r1.1.2.1 -r1.1.2.2 Binary files differ Index: lams_central/web/ckeditor/plugins/iframe/icons/hidpi/iframe.png =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/ckeditor/plugins/iframe/icons/hidpi/iframe.png,v diff -u -r1.1.2.1 -r1.1.2.2 Binary files differ Index: lams_central/web/ckeditor/plugins/iframe/images/placeholder.png =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/ckeditor/plugins/iframe/images/placeholder.png,v diff -u -r1.1 -r1.1.2.1 Binary files differ Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/af.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ar.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/bg.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/bn.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/bs.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ca.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/cs.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/cy.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/da.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/de.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/el.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/en-au.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/en-ca.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/en-gb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/en.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/eo.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/es.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/et.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/eu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/fa.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/fi.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/fo.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/fr-ca.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/fr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/gl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/gu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/he.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/hi.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/hr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/hu.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/id.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/is.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/it.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ja.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ka.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/km.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ko.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ku.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/lt.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/lv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/mk.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/mn.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ms.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/nb.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/nl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/no.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/pl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/pt-br.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/pt.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ro.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ru.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/si.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/sk.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/sl.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/sq.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/sr-latn.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/sr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/sv.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/th.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/tr.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/tt.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/ug.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/uk.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/vi.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/zh-cn.js'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1.2.1 refers to a dead (removed) revision in file `lams_central/web/ckeditor/plugins/iframe/lang/zh.js'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_central/web/includes/javascript/ckconfig_custom.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/ckconfig_custom.js,v diff -u -r1.19.2.2 -r1.19.2.3 --- lams_central/web/includes/javascript/ckconfig_custom.js 30 Oct 2014 17:10:37 -0000 1.19.2.2 +++ lams_central/web/includes/javascript/ckconfig_custom.js 5 Jun 2015 11:34:21 -0000 1.19.2.3 @@ -1,6 +1,6 @@ CKEDITOR.config.toolbar_Default = [ ['Source','-','Maximize', 'Preview','PasteFromWord','Undo','Redo','Bold','Italic','Underline', '-','Subscript','Superscript','NumberedList','BulletedList','-','Outdent','Indent','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','TextColor','BGColor','equation','-','Skype'], - ['Paint_Button','MoviePlayer','Kaltura','Image','Link','Table','HorizontalRule','Smiley','SpecialChar','Templates','Format','Font','FontSize','About'] + ['Paint_Button','MoviePlayer','Kaltura','Image','Link','Iframe','Table','HorizontalRule','Smiley','SpecialChar','Templates','Format','Font','FontSize','About'] ] ; // removing Video Recorder from default tool bar LDEV-2961 // To include it back, just add 'VideoRecorder' in between the MoviePlayer and Kaltura @@ -44,7 +44,7 @@ CKEDITOR.config.toolbar_CustomPedplanner = [ ['Source','-','Maximize','Preview','PasteFromWord','Bold','Italic','Underline', '-','NumberedList','BulletedList','-','Outdent','Indent','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','TextColor','BGColor','equation'], - ['Image','Link','Table','Smiley','Font','FontSize'] + ['Image','Link','Iframe','Table','Smiley','Font','FontSize'] ] ; CKEDITOR.config.toolbar_LessonDescription = [ @@ -57,15 +57,15 @@ ] ; -CKEDITOR.config.contentsCss = CKEDITOR.basePath + '../css/defaultHTML_learner.css' ; +CKEDITOR.config.contentsCss = CKEDITOR.basePath + '../css/defaultHTML_learner.css'; //CKEDITOR.config.skin = 'office2013' ; CKEDITOR.config.disableNativeSpellChecker = false; CKEDITOR.config.browserContextMenuOnCtrl = true; CKEDITOR.config.templates = CKEDITOR.basePath + '../www/htmltemplates.xml'; CKEDITOR.config.format_tags = 'div;h1;h2;h3;h4;h5;h6;pre;address;p' ; -CKEDITOR.config.enterMode = 'div' ; -CKEDITOR.plugins.addExternal('wikilink', CKEDITOR.basePath + '../tool/lawiki10/wikilink/', 'plugin.js') ; -CKEDITOR.config.extraPlugins = 'kaltura,wikilink,equation,paint,movieplayer,skype' ; +CKEDITOR.config.enterMode = 'div'; +CKEDITOR.plugins.addExternal('wikilink', CKEDITOR.basePath + '../tool/lawiki10/wikilink/', 'plugin.js'); +CKEDITOR.config.extraPlugins = 'kaltura,wikilink,equation,paint,movieplayer,skype,iframe'; CKEDITOR.config.enterMode = CKEDITOR.ENTER_DIV; CKEDITOR.config.removePlugins = 'elementspath'; CKEDITOR.config.allowedContent = true; @@ -96,4 +96,4 @@ f.data.dataValue = tempDiv.innerHTML; }); -}); +}); \ No newline at end of file