From: Jani Laakso Date: Fri, 30 Nov 2007 16:08:50 +0000 (+0000) Subject: Removed obsolete TK4 files. X-Git-Tag: 6.7.0.beta1~5344 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e4bcb45c452c69674c29545d06b4168cf7431350;p=vaadin-framework.git Removed obsolete TK4 files. svn changeset:3091/svn branch:trunk --- diff --git a/WebContent/openajax/HubTest-BasicConformance.js b/WebContent/openajax/HubTest-BasicConformance.js deleted file mode 100644 index ca8ce23d50..0000000000 --- a/WebContent/openajax/HubTest-BasicConformance.js +++ /dev/null @@ -1,62 +0,0 @@ -/******************************************************************************* - * HubTest-BasicConformance.js: - * JavaScript for test case HubTest-BasicConformance.html. - * - * This JavaScript MUST NOT BE CHANGED. - * - * Copyright 2007 OpenAjax Alliance - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy - * of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless - * required by applicable law or agreed to in writing, software distributed - * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * - ******************************************************************************/ - -var checkPrefix = HubTest_BasicConformance_MyPrefix; -var publishSubscribeWorking = false; -var markupScannerWorking = false; -var loadHandlerWorking = false; - -function TestWasSuccessful(idstring) { - var elem = document.getElementById(idstring); - elem.innerHTML = 'TEST SUCCEEDED!!!'; -} - -function subscribeTestCB(prefix, name, subscriberData, publisherData) { - publishSubscribeWorking = true; -} - -/* This function updates the HTML DOM based on whether the various test succeeded. - It is invoked when the document 'load' event is raised. */ -function ConformanceChecks() { - var elem = document.getElementById("LibraryName"); - elem.innerHTML = 'For library: '+checkPrefix+''; - if (OpenAjax.libraries[checkPrefix]) { - TestWasSuccessful("registerLibraryResult"); - } - if (OpenAjax.globals[checkPrefix]) { - TestWasSuccessful("registerGlobalsResult"); - } - if (loadHandlerWorking) { - TestWasSuccessful("addOnLoadResult"); - } - OpenAjax.subscribe("foo","bar",subscribeTestCB); - OpenAjax.publish("foo","bar"); - if (publishSubscribeWorking) { - TestWasSuccessful("PublishSubscribeResult"); - } - if (markupScannerWorking) { - TestWasSuccessful("MarkupScannerResult"); - } -} - -/* This logic verifies that the markup scanner is working */ -function markupScannerCB(element) { - markupScannerWorking = true; -} -OpenAjax.registerAttrScanCB("foo", "class", "match", "HubTestResult", markupScannerCB); - diff --git a/WebContent/openajax/OpenAjax.js b/WebContent/openajax/OpenAjax.js deleted file mode 100644 index 9f50c09a81..0000000000 --- a/WebContent/openajax/OpenAjax.js +++ /dev/null @@ -1,1063 +0,0 @@ -/******************************************************************************* - * OpenAjax.js / OpenAjaxBootstrap.js: - * - * Component of the OpenAjax Hub, as specified by OpenAjax Alliance. - * Specification is under development at: - * - * http://www.openajax.org/member/wiki/OpenAjax_Hub_Specification - * - * In the current implementation, the OpenAjax.js file is created by simply - * concatenating the individual component JavaScript files in a particular order, with - * where this file must be the first one in the list. - * - * Copyright 2006-2007 OpenAjax Alliance - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy - * of the License at http://www.apache.org/licenses/LICENSE-2.0 . Unless - * required by applicable law or agreed to in writing, software distributed - * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * - ******************************************************************************/ - -/* - * OpenAjax Hub configuration parameters. - * These configuration parameters are meant for use by the application developer, - * not the Ajax runtime library developer. - * - * The following is a quick summary of available parameters. - * Refer to the OpenAjax Hub Specification for the official and detailed definition of these features. - * - * bootstrapFile = string - * Holds name of JavaScript file that initializes OpenAjax object and includes definition of - * OpenAjax.require() function for dynamic module loading. - * idsToScan = array of strings (Default is []) - * Provides to the OpenAjax Hub a list of element IDs upon which to invoke the - * markup scanner. - * scanPage = boolean (Default is true) - * Tells the OpenAjax Hub whether to auto-invoke its markup scanner - * on the BODY element in the document. - */ -if (typeof OpenAjaxConfig == "undefined") { - OpenAjaxConfig = {}; -} - -/* - * Only create an OpenAjax object if it doesn't exist already. - * (If it already exists, then assume the prior instance provides the services that are needed. - * Also, attempts to initialize a second time probably will clobber key data from existing OpenAjax object.) - */ -if (typeof OpenAjax == "undefined") { - - OpenAjax = { - - implementer: "http://openajax.org", - implVersion: "0.3", - specVersion: "0.3", - implExtraData: {}, - _allModules: {"Libraries":1,"LoadUnload":1,"Globals":1,"PublishSubscribe":1,"MarkupScanner":1}, - loadDone: false, - unloadDone: false, - - - // Public function. If module has not been loaded already, load it now. - require: function(modules) { - var head = document.head; - if (!head) { - // Overcome bug in Mozilla when XSLT generates the HTML document. - head = document.getElementsByTagName("head").item(0); - } - if (!head) { - return; - } - var reqmods = modules.split(","); - var allmods = OpenAjax._allModules; - for (var i=0; i= 2) { - nsuri = OpenAjax.libraries[t[0]].namespaceURI; - nodeName = t[1]; - } else { - nsuri = null; - // No namespace prefix, so nodeName already has correct value. - } - } - arrayToAdjust.push({ - "prefix": prefix, - "nsuri": nsuri, - "nodeName": nodeName, - "checkType": checkType, - "checkString": checkString, - "func": refOrName - }); - } - - /* Remove callback functions from the appropriate private array. */ - OpenAjax._unregScanCB = function ( - functionName, // Public function name for error messages - arrayToAdjust, // The array from which registrations will be removed. - prefix){ // The prefix that corresponds to this library. - for (var i=arrayToAdjust.length-1; i >=0 ; i--) { - if (arrayToAdjust[i].prefix == prefix) { - // Use 'slice' instead of 'splice' due to bug in IE7. - var tail = arrayToAdjust.slice(i+1); - var len = arrayToAdjust.length; - for (var p=i; p - - - - - - - - - OpenAjax Hub Basic Conformance Test: IT Mill Toolkit 4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
X
- - - -
-

- - OpenAjax Alliance banner - -

-

OpenAjax Hub Basic Conformance Test

-

For library: (unknown)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1OpenAjax Conformance Requirement (Libraries): Library RegistrationTEST NOT SUCCESSFUL
2OpenAjax Conformance Requirement (Libraries): Globals RegistrationTEST NOT SUCCESSFUL
3OpenAjax Conformance Requirement (Libraries): Load/Unload Handlers Registered Indirectly Through the HubTEST NOT APPLICABLE
4OpenAjax Hub Publish/Subscribe TestTEST NOT SUCCESSFUL
5OpenAjax Hub Markup Scanner TestTEST NOT SUCCESSFUL
-

Notes:

-
    -
  • A library completely passes this test if all boxes say TEST SUCCEEDED.
  • -
  • Some toolkits do not initialize themselves during 'load' event processing. - Because of these situations, it is OK if the load/unload test case says TEST NOT APPLICABLE.
  • -
-
- - -
- - - -
Loading...
-
- - - - \ No newline at end of file diff --git a/WebContent/openajax/stylesheets/hubtest.css b/WebContent/openajax/stylesheets/hubtest.css deleted file mode 100644 index ad59f53e70..0000000000 --- a/WebContent/openajax/stylesheets/hubtest.css +++ /dev/null @@ -1,51 +0,0 @@ -#HubTest_BasicConformance { - width: 846px; -} -#OpenAjaxBanner.imageContainer { - border:none; - margin:0; - padding:0; -} -.HubTestTitle { - text-align:center; -} -.HubTestTitle { - margin-bottom:.25em; -} -#LibraryName { - font-size:1.2em; - font-family:sans-serif; - margin-top:2em; - margin-bottom:1em;; -} -.HubTestResults { - border-collapse:collapse; - font-family:sans-serif; -} -.HubTestNumber,.HubTestLabel,.HubTestResult { - padding-left:1em; - padding-right:1em; - padding-top:.3em; - padding-bottom:.3em; - vertical-align:top; - border-width:3px; - border-style:solid; - border-color:black; -} -.HubTestNumber { - color:darkgreen; - font-weight:bold; - font-size: 1.2em; - width:10px; -} -.HubTestLabel { - color:darkgreen; - font-weight:bold; - font-size: 1.2em; - width:540px; -} -.HubTestResult { - font-weight:bold; - font-size: 1.2em; - width: 300px; -} diff --git a/WebContent/styles/demos.css b/WebContent/styles/demos.css deleted file mode 100644 index 2db0c84898..0000000000 --- a/WebContent/styles/demos.css +++ /dev/null @@ -1,143 +0,0 @@ -/* Basic styles */ - -body { - background-color: #c7e4ff; - font-family: Georgia, Arial, Tahoma, Verdana, sans-serif; - margin: 0; - padding: 0; - letter-spacing: 0.01em; - color: #4c4c4c; - font-size: 62.5%; -} - -h1,h2,h3,h4,h5,h6 { - font-family: Arial, Tahoma, Verdana, sans-serif; - color: #ee4411; - font-weight: normal; -} -h3 a { - color: #ee4411; -} -h3 a:visited { - color: #ee4411; -} -h1 { - font-size: 3em; -} -h2 { - font-size: 2.4em; -} -h3 { - font-size: 2em; -} -h4 { - font-size: 1.8em; - color: #3798f3; - margin-bottom: 0.4em; -} -h5 { - font-size: 1.5em; -} -h6 { - font-size: 1.2em; - font-weight: bold; -} - -a:link { - color: #ee4411; - text-decoration: none; - border-bottom: dotted 1px #539dc9; -} -a:visited { - color: #5d7178; - text-decoration: none; - border-bottom: dotted 1px #539dc9; -} -a:active { - color: #3a9bff; - text-decoration: none; -} -a:hover { - color: #3b62b1; - background-color: #e7f3fa; - border-bottom: solid 1px #ee4411; - text-decoration: none; -} - -ul { - list-style-type: square; -} - -/* Layout */ - -#container { - margin: 30px 30px; - text-align: left; - padding: 35px 30px 30px 30px; - overflow: hidden; - margin-right: 30px; - background-color: #fff; -} - -#itmilllogo { - background-image: url(itmill-logo-small.gif); - width: 195px; - height: 32px; - overflow: hidden; - text-indent: -90000px; - float: left; -} - -#toolkit { - float: left; - width: 100px; - height: 25px; - background: transparent url(frontpage_logo.png) no-repeat; - margin: 3px 0 30px 10px; -} - -pre { - background-color: #f7f7f7; - border: solid 2px #e6e6e6; - font-family: monospace; - font-size: 1.1em; - padding: 0.5em 1em; -} - -hr { - height: 1px; - overflow: hidden; - color: #b2d2e5; - background-color: #b2d2e5; - border: none; -} - -.feature-browser, -.sample-code { - clear: both; - padding: 10px 10px 20px 50px; - background-color: #f7f7f7; - border: solid 2px #e6e6e6; - font-size: 1.2em; - line-height: 1.6em; - margin: 30px 0; -} - -.feature-browser { - background: #f7f7f7 url(feature_browser_bg.gif) no-repeat top right; -} - -.sample-code { - background: #f7f7f7 url(sample_code_bg.gif) no-repeat top right; -} - -.option { - clear: both; -} - -.option .link { - float: left; - width: 15em; -} -.option .desc { -} diff --git a/WebContent/styles/feature_browser_bg.gif b/WebContent/styles/feature_browser_bg.gif deleted file mode 100644 index c47081a8b7..0000000000 Binary files a/WebContent/styles/feature_browser_bg.gif and /dev/null differ diff --git a/WebContent/styles/frontpage_logo.png b/WebContent/styles/frontpage_logo.png deleted file mode 100644 index 6b2ecc5d16..0000000000 Binary files a/WebContent/styles/frontpage_logo.png and /dev/null differ diff --git a/WebContent/styles/itmill-logo-small.gif b/WebContent/styles/itmill-logo-small.gif deleted file mode 100644 index 949bff35ee..0000000000 Binary files a/WebContent/styles/itmill-logo-small.gif and /dev/null differ diff --git a/WebContent/styles/sample_code_bg.gif b/WebContent/styles/sample_code_bg.gif deleted file mode 100644 index 13d1e436c7..0000000000 Binary files a/WebContent/styles/sample_code_bg.gif and /dev/null differ