From 58b91dd3baaaf72ab65062a4804403cd4a5935b2 Mon Sep 17 00:00:00 2001 From: xudan Date: Thu, 5 Jul 2018 22:37:35 -0400 Subject: Move OVP web portal code to a separate repo The new repo for web portal is https://gerrit.opnfv.org/gerrit/dovetail-webportal JIRA: DOVETAIL-671 Change-Id: Iac085abc3d175b9a091d70d0448af56c7a6845e9 Signed-off-by: xudan --- .../assets/lib/jquery/src/manipulation/_evalUrl.js | 23 ----- .../lib/jquery/src/manipulation/buildFragment.js | 104 --------------------- .../assets/lib/jquery/src/manipulation/getAll.js | 32 ------- .../lib/jquery/src/manipulation/setGlobalEval.js | 22 ----- .../assets/lib/jquery/src/manipulation/support.js | 35 ------- .../jquery/src/manipulation/var/rcheckableType.js | 5 - .../lib/jquery/src/manipulation/var/rscriptType.js | 5 - .../lib/jquery/src/manipulation/var/rtagName.js | 5 - .../assets/lib/jquery/src/manipulation/wrapMap.js | 29 ------ 9 files changed, 260 deletions(-) delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/_evalUrl.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/buildFragment.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/getAll.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/setGlobalEval.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/support.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rcheckableType.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rscriptType.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rtagName.js delete mode 100644 cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/wrapMap.js (limited to 'cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation') diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/_evalUrl.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/_evalUrl.js deleted file mode 100644 index f9ec7027..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/_evalUrl.js +++ /dev/null @@ -1,23 +0,0 @@ -define( [ - "../ajax" -], function( jQuery ) { - -"use strict"; - -jQuery._evalUrl = function( url ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - "throws": true - } ); -}; - -return jQuery._evalUrl; - -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/buildFragment.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/buildFragment.js deleted file mode 100644 index bcb50853..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/buildFragment.js +++ /dev/null @@ -1,104 +0,0 @@ -define( [ - "../core", - "./var/rtagName", - "./var/rscriptType", - "./wrapMap", - "./getAll", - "./setGlobalEval" -], function( jQuery, rtagName, rscriptType, wrapMap, getAll, setGlobalEval ) { - -"use strict"; - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, contains, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - -return buildFragment; -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/getAll.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/getAll.js deleted file mode 100644 index fede6c78..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/getAll.js +++ /dev/null @@ -1,32 +0,0 @@ -define( [ - "../core", - "../core/nodeName" -], function( jQuery, nodeName ) { - -"use strict"; - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - -return getAll; -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/setGlobalEval.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/setGlobalEval.js deleted file mode 100644 index cf95240a..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/setGlobalEval.js +++ /dev/null @@ -1,22 +0,0 @@ -define( [ - "../data/var/dataPriv" -], function( dataPriv ) { - -"use strict"; - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - -return setGlobalEval; -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/support.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/support.js deleted file mode 100644 index 4a5d9af4..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/support.js +++ /dev/null @@ -1,35 +0,0 @@ -define( [ - "../var/document", - "../var/support" -], function( document, support ) { - -"use strict"; - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; -} )(); - -return support; - -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rcheckableType.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rcheckableType.js deleted file mode 100644 index 25bbcb41..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rcheckableType.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return ( /^(?:checkbox|radio)$/i ); -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rscriptType.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rscriptType.js deleted file mode 100644 index 7237c8a3..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rscriptType.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return ( /^$|\/(?:java|ecma)script/i ); -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rtagName.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rtagName.js deleted file mode 100644 index d565dd3d..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/var/rtagName.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i ); -} ); diff --git a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/wrapMap.js b/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/wrapMap.js deleted file mode 100644 index 1f446f7d..00000000 --- a/cvp/3rd_party/static/testapi-ui/assets/lib/jquery/src/manipulation/wrapMap.js +++ /dev/null @@ -1,29 +0,0 @@ -define( function() { - -"use strict"; - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // Support: IE <=9 only - option: [ 1, "" ], - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -// Support: IE <=9 only -wrapMap.optgroup = wrapMap.option; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -return wrapMap; -} ); -- cgit 1.2.3-korg