Skip to content

Commit

Permalink
Change dev.ckeditor.com link.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Samsel committed Nov 3, 2017
1 parent 2a253b2 commit e1aeca2
Show file tree
Hide file tree
Showing 246 changed files with 1,876 additions and 1,876 deletions.
1,490 changes: 745 additions & 745 deletions CHANGES.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions core/_bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

( function() {
// Disable HC detection in WebKit. (http://dev.ckeditor.com/ticket/5429)
// Disable HC detection in WebKit. (https://dev.ckeditor.com/ticket/5429)
if ( CKEDITOR.env.webkit )
CKEDITOR.env.hc = false;
else {
Expand All @@ -19,13 +19,13 @@
hcDetect.appendTo( CKEDITOR.document.getHead() );

// Update CKEDITOR.env.
// Catch exception needed sometimes for FF. (http://dev.ckeditor.com/ticket/4230)
// Catch exception needed sometimes for FF. (https://dev.ckeditor.com/ticket/4230)
try {
var top = hcDetect.getComputedStyle( 'border-top-color' ),
right = hcDetect.getComputedStyle( 'border-right-color' );

// We need to check if getComputedStyle returned any value, because on FF
// it returnes empty string if CKEditor is loaded in hidden iframe. (http://dev.ckeditor.com/ticket/11121)
// it returnes empty string if CKEditor is loaded in hidden iframe. (https://dev.ckeditor.com/ticket/11121)
CKEDITOR.env.hc = !!( top && top == right );
} catch ( e ) {
CKEDITOR.env.hc = false;
Expand Down
2 changes: 1 addition & 1 deletion core/ckeditor_base.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if ( !window.CKEDITOR ) {
* upgrading.
*
* **Note:** There is [a known issue where "icons.png" does not include
* timestamp](http://dev.ckeditor.com/ticket/10685) and might get cached.
* timestamp](https://dev.ckeditor.com/ticket/10685) and might get cached.
* We are working on having it fixed.
*
* alert( CKEDITOR.timestamp ); // e.g. '87dm'
Expand Down
2 changes: 1 addition & 1 deletion core/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ CKEDITOR.command = function( editor, commandDefinition ) {
if ( this.state == CKEDITOR.TRISTATE_DISABLED || !this.checkAllowed() )
return false;

if ( this.editorFocus ) // Give editor focus if necessary (http://dev.ckeditor.com/ticket/4355).
if ( this.editorFocus ) // Give editor focus if necessary (https://dev.ckeditor.com/ticket/4355).
editor.focus();

if ( this.fire( 'exec' ) === false )
Expand Down
14 changes: 7 additions & 7 deletions core/creators/themedui.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ CKEDITOR.replaceClass = 'ckeditor';

// If data has not been modified in the mode which we are currently leaving,
// avoid making snapshot right after initializing new mode.
// http://dev.ckeditor.com/ticket/5217#comment:20
// https://dev.ckeditor.com/ticket/5217#comment:20
// Tested by:
// 'test switch mode with unrecoreded, inner HTML specific content (boguses)'
// 'test switch mode with unrecoreded, inner HTML specific content (boguses) plus changes in source mode'
Expand Down Expand Up @@ -280,10 +280,10 @@ CKEDITOR.replaceClass = 'ckeditor';
outer = container;
}

// Set as border box width. (http://dev.ckeditor.com/ticket/5353)
// Set as border box width. (https://dev.ckeditor.com/ticket/5353)
outer.setSize( 'width', width, true );

// WebKit needs to refresh the iframe size to avoid rendering issues. (1/2) (http://dev.ckeditor.com/ticket/8348)
// WebKit needs to refresh the iframe size to avoid rendering issues. (1/2) (https://dev.ckeditor.com/ticket/8348)
contentsFrame && ( contentsFrame.style.width = '1%' );

// Get the height delta between the outer table and the content area.
Expand All @@ -295,7 +295,7 @@ CKEDITOR.replaceClass = 'ckeditor';

contents.setStyle( 'height', resultContentsHeight + 'px' );

// WebKit needs to refresh the iframe size to avoid rendering issues. (2/2) (http://dev.ckeditor.com/ticket/8348)
// WebKit needs to refresh the iframe size to avoid rendering issues. (2/2) (https://dev.ckeditor.com/ticket/8348)
contentsFrame && ( contentsFrame.style.width = '100%' );

// Emit a resize event.
Expand Down Expand Up @@ -337,7 +337,7 @@ CKEDITOR.replaceClass = 'ckeditor';
// replacement will be done later in the editor creation lifecycle.
element.setStyle( 'visibility', 'hidden' );

// http://dev.ckeditor.com/ticket/8031 Remember if textarea was required and remove the attribute.
// https://dev.ckeditor.com/ticket/8031 Remember if textarea was required and remove the attribute.
editor._.required = element.hasAttribute( 'required' );
element.removeAttribute( 'required' );
}
Expand Down Expand Up @@ -422,7 +422,7 @@ CKEDITOR.replaceClass = 'ckeditor';
topHtml: topHtml ? '<span id="' + editor.ui.spaceId( 'top' ) + '" class="cke_top cke_reset_all" role="presentation" style="height:auto">' + topHtml + '</span>' : '',
contentId: editor.ui.spaceId( 'contents' ),
bottomHtml: bottomHtml ? '<span id="' + editor.ui.spaceId( 'bottom' ) + '" class="cke_bottom cke_reset_all" role="presentation">' + bottomHtml + '</span>' : '',
outerEl: CKEDITOR.env.ie ? 'span' : 'div' // http://dev.ckeditor.com/ticket/9571
outerEl: CKEDITOR.env.ie ? 'span' : 'div' // https://dev.ckeditor.com/ticket/9571
} ) );

if ( elementMode == CKEDITOR.ELEMENT_MODE_REPLACE ) {
Expand Down Expand Up @@ -451,7 +451,7 @@ CKEDITOR.replaceClass = 'ckeditor';
// Disable browser context menu for editor's chrome.
container.disableContextMenu();

// Redirect the focus into editor for webkit. (http://dev.ckeditor.com/ticket/5713)
// Redirect the focus into editor for webkit. (https://dev.ckeditor.com/ticket/5713)
CKEDITOR.env.webkit && container.on( 'focus', function() {
editor.focus();
} );
Expand Down
4 changes: 2 additions & 2 deletions core/dom/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ CKEDITOR.tools.extend( CKEDITOR.dom.document.prototype, {
* but an element with focus is always the active element in a document.
*
* @returns {CKEDITOR.dom.element} Active element or `null` if an IE8-9 bug is encountered.
* See [#10030](http://dev.ckeditor.com/ticket/10030).
* See [#10030](https://dev.ckeditor.com/ticket/10030).
*/
getActive: function() {
var $active;
Expand Down Expand Up @@ -262,7 +262,7 @@ CKEDITOR.tools.extend( CKEDITOR.dom.document.prototype, {
* @param {String} html The HTML defining the document content.
*/
write: function( html ) {
// Don't leave any history log in IE. (http://dev.ckeditor.com/ticket/5657)
// Don't leave any history log in IE. (https://dev.ckeditor.com/ticket/5657)
this.$.open( 'text/html', 'replace' );

// Support for custom document.domain in IE.
Expand Down
4 changes: 2 additions & 2 deletions core/dom/domobject.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CKEDITOR.dom.domObject.prototype = ( function() {
return function( domEvent ) {
// In FF, when reloading the page with the editor focused, it may
// throw an error because the CKEDITOR global is not anymore
// available. So, we check it here first. (http://dev.ckeditor.com/ticket/2923)
// available. So, we check it here first. (https://dev.ckeditor.com/ticket/2923)
if ( typeof CKEDITOR != 'undefined' )
domObject.fire( eventName, new CKEDITOR.dom.event( domEvent ) );
};
Expand Down Expand Up @@ -138,7 +138,7 @@ CKEDITOR.dom.domObject.prototype = ( function() {
}

// Remove events from events object so fire() method will not call
// listeners (http://dev.ckeditor.com/ticket/11400).
// listeners (https://dev.ckeditor.com/ticket/11400).
CKEDITOR.event.prototype.removeAllListeners.call( this );
}
};
Expand Down
38 changes: 19 additions & 19 deletions core/dom/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
*/
appendText: function( text ) {
// On IE8 it is impossible to append node to script tag, so we use its text.
// On the contrary, on Safari the text property is unpredictable in links. (http://dev.ckeditor.com/ticket/13232)
// On the contrary, on Safari the text property is unpredictable in links. (https://dev.ckeditor.com/ticket/13232)
if ( this.$.text != null && CKEDITOR.env.ie && CKEDITOR.env.version < 9 )
this.$.text += text;
else
Expand Down Expand Up @@ -377,14 +377,14 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab

// In case of Internet Explorer, we must check if there is no background-color
// added to the element. In such case, we have to overwrite it to prevent "switching it off"
// by a browser (http://dev.ckeditor.com/ticket/14667).
// by a browser (https://dev.ckeditor.com/ticket/14667).
if ( CKEDITOR.env.ie && !CKEDITOR.env.edge ) {
tmpElement = new CKEDITOR.dom.element( 'div' );

while ( current = docFrag.getFirst() ) {
if ( current.$.style.backgroundColor ) {
// This is a necessary hack to make sure that IE will track backgroundColor CSS property, see
// http://dev.ckeditor.com/ticket/14667#comment:8 for more details.
// https://dev.ckeditor.com/ticket/14667#comment:8 for more details.
current.$.style.backgroundColor = current.$.style.backgroundColor;
}

Expand Down Expand Up @@ -452,7 +452,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
*/
getHtml: function() {
var retval = this.$.innerHTML;
// Strip <?xml:namespace> tags in IE. (http://dev.ckeditor.com/ticket/3341).
// Strip <?xml:namespace> tags in IE. (https://dev.ckeditor.com/ticket/3341).
return CKEDITOR.env.ie ? retval.replace( /<\?[^>]*>/g, '' ) : retval;
},

Expand All @@ -467,7 +467,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
getOuterHtml: function() {
if ( this.$.outerHTML ) {
// IE includes the <?xml:namespace> tag in the outerHTML of
// namespaced element. So, we must strip it here. (http://dev.ckeditor.com/ticket/3341)
// namespaced element. So, we must strip it here. (https://dev.ckeditor.com/ticket/3341)
return this.$.outerHTML.replace( /<\?[^>]*>/, '' );
}

Expand Down Expand Up @@ -618,7 +618,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
return this.$[ name ];

case 'style':
// IE does not return inline styles via getAttribute(). See http://dev.ckeditor.com/ticket/2947.
// IE does not return inline styles via getAttribute(). See https://dev.ckeditor.com/ticket/2947.
return this.$.style.cssText;

case 'contenteditable':
Expand Down Expand Up @@ -679,7 +679,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
function( propertyName ) {
var style = this.getWindow().$.getComputedStyle( this.$, null );

// Firefox may return null if we call the above on a hidden iframe. (http://dev.ckeditor.com/ticket/9117)
// Firefox may return null if we call the above on a hidden iframe. (https://dev.ckeditor.com/ticket/9117)
return style ? style.getPropertyValue( propertyName ) : '';
} : function( propertyName ) {
return this.$.currentStyle[ CKEDITOR.tools.cssStyleToDomStyle( propertyName ) ];
Expand Down Expand Up @@ -972,7 +972,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
elementWindow, elementWindowFrame;

// Webkit and Opera report non-zero offsetHeight despite that
// element is inside an invisible iframe. (http://dev.ckeditor.com/ticket/4542)
// element is inside an invisible iframe. (https://dev.ckeditor.com/ticket/4542)
if ( isVisible && CKEDITOR.env.webkit ) {
elementWindow = this.getWindow();

Expand Down Expand Up @@ -1033,7 +1033,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
// attribute, which will be marked as "specified", even if the
// outerHTML of the element is not displaying the class attribute.
// Note : I was not able to reproduce it outside the editor,
// but I've faced it while working on the TC of http://dev.ckeditor.com/ticket/1391.
// but I've faced it while working on the TC of https://dev.ckeditor.com/ticket/1391.
if ( this.getAttribute( 'class' ) ) {
return true;
}
Expand All @@ -1057,7 +1057,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
var attrs = this.$.attributes,
attrsNum = attrs.length;

// The _moz_dirty attribute might get into the element after pasting (http://dev.ckeditor.com/ticket/5455)
// The _moz_dirty attribute might get into the element after pasting (https://dev.ckeditor.com/ticket/5455)
var execludeAttrs = { 'data-cke-expando': 1, _moz_dirty: 1 };

return attrsNum > 0 && ( attrsNum > 2 || !execludeAttrs[ attrs[ 0 ].nodeName ] || ( attrsNum == 2 && !execludeAttrs[ attrs[ 1 ].nodeName ] ) );
Expand Down Expand Up @@ -1164,7 +1164,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
function mergeElements( element, sibling, isNext ) {
if ( sibling && sibling.type == CKEDITOR.NODE_ELEMENT ) {
// Jumping over bookmark nodes and empty inline elements, e.g. <b><i></i></b>,
// queuing them to be moved later. (http://dev.ckeditor.com/ticket/5567)
// queuing them to be moved later. (https://dev.ckeditor.com/ticket/5567)
var pendingNodes = [];

while ( sibling.data( 'cke-bookmark' ) || sibling.isEmptyInlineRemoveable() ) {
Expand Down Expand Up @@ -1194,7 +1194,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
}

return function( inlineOnly ) {
// Merge empty links and anchors also. (http://dev.ckeditor.com/ticket/5567)
// Merge empty links and anchors also. (https://dev.ckeditor.com/ticket/5567)
if ( !( inlineOnly === false || CKEDITOR.dtd.$removeEmpty[ this.getName() ] || this.is( 'a' ) ) ) {
return;
}
Expand Down Expand Up @@ -1253,7 +1253,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
};
} else if ( CKEDITOR.env.ie8Compat && CKEDITOR.env.secure ) {
return function( name, value ) {
// IE8 throws error when setting src attribute to non-ssl value. (http://dev.ckeditor.com/ticket/7847)
// IE8 throws error when setting src attribute to non-ssl value. (https://dev.ckeditor.com/ticket/7847)
if ( name == 'src' && value.match( /^http:\/\// ) ) {
try {
standard.apply( this, arguments );
Expand Down Expand Up @@ -1501,7 +1501,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
clientLeft = $docElem.clientLeft || body.$.clientLeft || 0,
needAdjustScrollAndBorders = true;

// http://dev.ckeditor.com/ticket/3804: getBoundingClientRect() works differently on IE and non-IE
// https://dev.ckeditor.com/ticket/3804: getBoundingClientRect() works differently on IE and non-IE
// browsers, regarding scroll positions.
//
// On IE, the top position of the <html> element is always 0, no matter
Expand All @@ -1516,12 +1516,12 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
needAdjustScrollAndBorders = ( quirks && inBody ) || ( !quirks && inDocElem );
}

// http://dev.ckeditor.com/ticket/12747.
// https://dev.ckeditor.com/ticket/12747.
if ( needAdjustScrollAndBorders ) {
var scrollRelativeLeft,
scrollRelativeTop;

// See http://dev.ckeditor.com/ticket/12758 to know more about document.(documentElement|body).scroll(Left|Top) in Webkit.
// See https://dev.ckeditor.com/ticket/12758 to know more about document.(documentElement|body).scroll(Left|Top) in Webkit.
if ( CKEDITOR.env.webkit || ( CKEDITOR.env.ie && CKEDITOR.env.version >= 12 ) ) {
scrollRelativeLeft = body.$.scrollLeft || $docElem.scrollLeft;
scrollRelativeTop = body.$.scrollTop || $docElem.scrollTop;
Expand Down Expand Up @@ -1603,7 +1603,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
parent.$.clientHeight && parent.$.clientHeight < parent.$.scrollHeight;

// Skip body element, which will report wrong clientHeight when containing
// floated content. (http://dev.ckeditor.com/ticket/9523)
// floated content. (https://dev.ckeditor.com/ticket/9523)
if ( overflowed && !parent.is( 'body' ) )
this.scrollIntoParent( parent, alignToTop, 1 );

Expand Down Expand Up @@ -1677,7 +1677,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
}

// [WebKit] Reset stored scrollTop value to not break scrollIntoView() method flow.
// Scrolling breaks when range.select() is used right after element.scrollIntoView(). (http://dev.ckeditor.com/ticket/14659)
// Scrolling breaks when range.select() is used right after element.scrollIntoView(). (https://dev.ckeditor.com/ticket/14659)
if ( CKEDITOR.env.webkit ) {
var editor = this.getEditor( false );

Expand Down Expand Up @@ -1857,7 +1857,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
this.getParent( true ) && this.$.parentNode.replaceChild( newNode.$, this.$ );
newNode.$[ 'data-cke-expando' ] = this.$[ 'data-cke-expando' ];
this.$ = newNode.$;
// Bust getName's cache. (http://dev.ckeditor.com/ticket/8663)
// Bust getName's cache. (https://dev.ckeditor.com/ticket/8663)
delete this.getName;
},

Expand Down
2 changes: 1 addition & 1 deletion core/dom/elementpath.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
block = e;

if ( pathBlockLimitElements[ elementName ] ) {
// End level DIV is considered as the block, if no block is available. (http://dev.ckeditor.com/ticket/525)
// End level DIV is considered as the block, if no block is available. (https://dev.ckeditor.com/ticket/525)
// But it must NOT be the root element (checked above).
if ( !block && elementName == 'div' && !checkHasBlock( e ) )
block = e;
Expand Down
Loading

0 comments on commit e1aeca2

Please sign in to comment.