jsf.js_next_gen 4.0.1-beta.5 → 4.0.1-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/assets/style.css +4 -5
- package/dist/window/faces-development.js +111 -91
- package/dist/window/faces-development.js.br +0 -0
- package/dist/window/faces-development.js.gz +0 -0
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js +1 -1
- package/dist/window/faces.js.br +0 -0
- package/dist/window/faces.js.gz +0 -0
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +111 -91
- package/dist/window/jsf-development.js.br +0 -0
- package/dist/window/jsf-development.js.gz +0 -0
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.br +0 -0
- package/dist/window/jsf.js.gz +0 -0
- package/dist/window/jsf.js.map +1 -1
- package/package.json +10 -10
- package/src/main/typescript/impl/util/XhrQueueController.ts +3 -17
- package/src/main/typescript/impl/xhrCore/XhrRequest.ts +94 -51
- package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +1 -1
- package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +126 -0
- package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +60 -0
- package/src/main/typescript/test/frameworkBase/_ext/shared/fixtures/css/bootstrap-icons.css +15 -0
- package/src/main/typescript/test/frameworkBase/_ext/shared/fixtures/css/tobago.css +15 -0
- package/src/main/typescript/test/frameworkBase/_ext/shared/fixtures/js/tobago.js +15 -0
- package/src/main/typescript/test/myfaces/{OnLoadSpec.ts → OnLoad.spec.ts} +2 -2
- package/src/main/typescript/test/xhrCore/ErrorChainTest.spec.ts +136 -0
- package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +9 -12
- package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +1 -1
- package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +18 -0
- package/target/AssocArray.js +281 -0
- package/target/AssocArray.js.map +1 -0
- package/target/Config.js +235 -0
- package/target/Config.js.map +1 -0
- package/target/CryptoExtensions.js +112 -0
- package/target/CryptoExtensions.js.map +1 -0
- package/target/DomQuery.js +1963 -0
- package/target/DomQuery.js.map +1 -0
- package/target/Es2019Array.js +117 -0
- package/target/Es2019Array.js.map +1 -0
- package/target/Global.js +38 -0
- package/target/Global.js.map +1 -0
- package/target/IDomQuery.js +3 -0
- package/target/IDomQuery.js.map +1 -0
- package/target/Lang.js +183 -0
- package/target/Lang.js.map +1 -0
- package/target/Messaging.js +645 -0
- package/target/Messaging.js.map +1 -0
- package/target/Monad.js +330 -0
- package/target/Monad.js.map +1 -0
- package/target/Promise.js +296 -0
- package/target/Promise.js.map +1 -0
- package/target/PromiseShim.js +30 -0
- package/target/PromiseShim.js.map +1 -0
- package/target/SourcesCollectors.js +444 -0
- package/target/SourcesCollectors.js.map +1 -0
- package/target/Stream.js +562 -0
- package/target/Stream.js.map +1 -0
- package/target/TagBuilder.js +178 -0
- package/target/TagBuilder.js.map +1 -0
- package/target/XmlQuery.js +84 -0
- package/target/XmlQuery.js.map +1 -0
- package/target/impl/util/XhrQueueController.js +3 -18
- package/target/impl/util/XhrQueueController.js.map +1 -1
- package/target/impl/xhrCore/XhrRequest.js +89 -45
- package/target/impl/xhrCore/XhrRequest.js.map +1 -1
- package/target/index.js +80 -0
- package/target/index.js.map +1 -0
- package/target/index_core.js +76 -0
- package/target/index_core.js.map +1 -0
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js +124 -0
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js +57 -1
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
- package/target/test/myfaces/OnLoad.spec.js +57 -0
- package/target/test/myfaces/OnLoad.spec.js.map +1 -0
- package/target/test/myfaces/OnLoadSpec.js +2 -2
- package/target/test/myfaces/OnLoadSpec.js.map +1 -1
- package/target/test/xhrCore/ErrorChainTest.spec.js +156 -0
- package/target/test/xhrCore/ErrorChainTest.spec.js.map +1 -0
- package/target/test/xhrCore/NamespacesRequestTest.spec.js +8 -5
- package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest23.spec.js +13 -0
- package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -1
- package/target/types/main/typescript/AssocArray.d.ts +86 -0
- package/target/types/main/typescript/Config.d.ts +94 -0
- package/target/types/main/typescript/CryptoExtensions.d.ts +87 -0
- package/target/types/main/typescript/DomQuery.d.ts +587 -0
- package/target/types/main/typescript/Es2019Array.d.ts +30 -0
- package/target/types/main/typescript/Global.d.ts +23 -0
- package/target/types/main/typescript/IDomQuery.d.ts +480 -0
- package/target/types/main/typescript/Lang.d.ts +97 -0
- package/target/types/main/typescript/Messaging.d.ts +285 -0
- package/target/types/main/typescript/Monad.d.ts +161 -0
- package/target/types/main/typescript/Promise.d.ts +58 -0
- package/target/types/main/typescript/PromiseShim.d.ts +22 -0
- package/target/types/main/typescript/SourcesCollectors.d.ts +280 -0
- package/target/types/main/typescript/Stream.d.ts +284 -0
- package/target/types/main/typescript/TagBuilder.d.ts +50 -0
- package/target/types/main/typescript/XmlQuery.d.ts +31 -0
- package/target/types/main/typescript/api/_api.d.ts +182 -0
- package/target/types/main/typescript/api/faces.d.ts +17 -0
- package/target/types/main/typescript/api/jsf.d.ts +17 -0
- package/target/types/main/typescript/impl/AjaxImpl.d.ts +164 -0
- package/target/types/main/typescript/impl/PushImpl.d.ts +38 -0
- package/target/types/main/typescript/impl/core/Const.d.ts +138 -0
- package/target/types/main/typescript/impl/core/ImplTypes.d.ts +16 -0
- package/target/types/main/typescript/impl/i18n/Messages.d.ts +102 -0
- package/target/types/main/typescript/impl/util/Assertions.d.ts +46 -0
- package/target/types/main/typescript/impl/util/AsyncRunnable.d.ts +112 -0
- package/target/types/main/typescript/impl/util/ExtDomQuery.d.ts +100 -0
- package/target/types/main/typescript/impl/util/FileUtils.d.ts +25 -0
- package/target/types/main/typescript/impl/util/HiddenInputBuilder.d.ts +37 -0
- package/target/types/main/typescript/impl/util/IListener.d.ts +18 -0
- package/target/types/main/typescript/impl/util/Lang.d.ts +138 -0
- package/target/types/main/typescript/impl/util/XhrQueueController.d.ts +51 -0
- package/target/types/main/typescript/impl/xhrCore/ErrorData.d.ts +37 -0
- package/target/types/main/typescript/impl/xhrCore/EventData.d.ts +25 -0
- package/target/types/main/typescript/impl/xhrCore/IResponseProcessor.d.ts +136 -0
- package/target/types/main/typescript/impl/xhrCore/RequestDataResolver.d.ts +84 -0
- package/target/types/main/typescript/impl/xhrCore/ResonseDataResolver.d.ts +60 -0
- package/target/types/main/typescript/impl/xhrCore/Response.d.ts +29 -0
- package/target/types/main/typescript/impl/xhrCore/ResponseProcessor.d.ts +208 -0
- package/target/types/main/typescript/impl/xhrCore/XhrFormData.d.ts +83 -0
- package/target/types/main/typescript/impl/xhrCore/XhrRequest.d.ts +102 -0
- package/target/types/main/typescript/index.d.ts +34 -0
- package/target/types/main/typescript/index_core.d.ts +29 -0
- package/target/types/main/typescript/myfaces/OamSubmit.d.ts +53 -0
- package/target/types/main/typescript/test/frameworkBase/LangTest.spec.d.ts +1 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.d.ts +1 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.d.ts +39 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/MappingTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.d.ts +0 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.d.ts +1 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.d.ts +1 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/shared/StandardInits.d.ts +63 -0
- package/target/types/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.d.ts +23 -0
- package/target/types/main/typescript/test/impl/ImplTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/impl/ImplTest_23.spec.d.ts +16 -0
- package/target/types/main/typescript/test/impl/SeparatorCharsTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/myfaces/OamSubmit.spec.d.ts +16 -0
- package/target/types/main/typescript/test/myfaces/OnLoad.spec.d.ts +16 -0
- package/target/types/main/typescript/test/queue/AsynchronousProbe.d.ts +38 -0
- package/target/types/main/typescript/test/queue/AsynchronousQueueTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/ClientWindow.spec.d.ts +1 -0
- package/target/types/main/typescript/test/xhrCore/ErrorChainTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/EventTests.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/FakeWebsocket.d.ts +24 -0
- package/target/types/main/typescript/test/xhrCore/FileUploadTest.spec.d.ts +1 -0
- package/target/types/main/typescript/test/xhrCore/NamespacesRequestTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/OamSubmitTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/RequestParamsTest.spec.d.ts +1 -0
- package/target/types/main/typescript/test/xhrCore/RequestTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/RequestTest_23.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/ResponseTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/ResponseTest23.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/ShadowDomTest.spec.d.ts +16 -0
- package/target/types/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.d.ts +1 -0
- package/target/types/main/typescript/test/xhrCore/WebsocketTest.d.ts +1 -0
- package/target/types/main/typescript/test/xhrCore/XhrFormDataTest.spec.d.ts +16 -0
- package/target/types/test/typescript/AssocArrayTest.spec.d.ts +1 -0
- package/target/types/test/typescript/DomQueryTest.spec.d.ts +1 -0
- package/target/types/test/typescript/ExtendedArrayTest.spec.d.ts +1 -0
- package/target/types/test/typescript/LangTest.spec.d.ts +1 -0
- package/target/types/test/typescript/MappingProbes.d.ts +24 -0
- package/target/types/test/typescript/MappingTest.spec.d.ts +1 -0
- package/target/types/test/typescript/MessagingTest.spec.d.ts +1 -0
- package/target/types/test/typescript/MonadTest.spec.d.ts +16 -0
- package/target/types/test/typescript/PromiseTest.spec.d.ts +1 -0
- package/target/types/test/typescript/StreamTest.spec.d.ts +1 -0
- package/target/types/test/typescript/XmlQueryTest.spec.d.ts +1 -0
- package/target/types/test/typescript/markups/tobago-with-header.d.ts +1 -0
- package/target/types/test/typescript/markups/tobago-without-header.d.ts +1 -0
- package/webpack.config.js +1 -1
- package/webpack.config.js.map +1 -1
- package/.nyc_output/09ca9ebc-2305-4357-8db9-48ddfc7dfde2.json +0 -1
- package/.nyc_output/7c496a14-166e-4aa5-85b9-47b22b055ad8.json +0 -1
- package/.nyc_output/processinfo/09ca9ebc-2305-4357-8db9-48ddfc7dfde2.json +0 -1
- package/.nyc_output/processinfo/7c496a14-166e-4aa5-85b9-47b22b055ad8.json +0 -1
- package/.nyc_output/processinfo/index.json +0 -1
- package/src/test.html +0 -75
- package/src/tmp/test.html +0 -16
- package/tmp.xml +0 -36
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":null,"pid":65593,"argv":["/Users/werpu2/.nvm/versions/node/v16.17.0/bin/node","/Users/werpu2/development/workspace/jsfs_js_ts/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha"],"execArgv":[],"cwd":"/Users/werpu2/development/workspace/jsfs_js_ts","time":1676467533528,"ppid":65592,"coverageFilename":"/Users/werpu2/development/workspace/jsfs_js_ts/.nyc_output/09ca9ebc-2305-4357-8db9-48ddfc7dfde2.json","externalId":"","uuid":"09ca9ebc-2305-4357-8db9-48ddfc7dfde2","files":["/Users/werpu2/development/workspace/jsfs_js_ts/remap.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/@types/definitions/index.d.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/_api.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/faces.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/jsf.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/Const.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncQueue.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/FileUtils.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/HiddenInputBuilder.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/IListener.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/IResponseProcessor.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":null,"pid":65594,"argv":["/Users/werpu2/.nvm/versions/node/v16.17.0/bin/node","/Users/werpu2/development/workspace/jsfs_js_ts/node_modules/.bin/mocha"],"execArgv":[],"cwd":"/Users/werpu2/development/workspace/jsfs_js_ts","time":1676467535108,"ppid":65593,"coverageFilename":"/Users/werpu2/development/workspace/jsfs_js_ts/.nyc_output/7c496a14-166e-4aa5-85b9-47b22b055ad8.json","externalId":"","uuid":"7c496a14-166e-4aa5-85b9-47b22b055ad8","files":["/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/Const.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncQueue.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/HiddenInputBuilder.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/FileUtils.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/jsf.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/_api.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/faces.ts"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"processes":{"09ca9ebc-2305-4357-8db9-48ddfc7dfde2":{"parent":null,"children":[]},"7c496a14-166e-4aa5-85b9-47b22b055ad8":{"parent":null,"children":[]}},"files":{"/Users/werpu2/development/workspace/jsfs_js_ts/remap.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/@types/definitions/index.d.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/_api.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/faces.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/jsf.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/Const.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncQueue.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/FileUtils.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/HiddenInputBuilder.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/IListener.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/IResponseProcessor.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts":["09ca9ebc-2305-4357-8db9-48ddfc7dfde2","7c496a14-166e-4aa5-85b9-47b22b055ad8"]},"externalIds":{}}
|
package/src/test.html
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<h2>protocol testcase1</h2>
|
|
3
|
-
|
|
4
|
-
<div id="centerDiv">
|
|
5
|
-
|
|
6
|
-
<h1>Selenium Testprobe for insert update delete and attribute change</h1>
|
|
7
|
-
|
|
8
|
-
<h2>This test tests all aspects of the protocol, under xhr and iframe conditions</h2>
|
|
9
|
-
|
|
10
|
-
<div id="testResults">
|
|
11
|
-
|
|
12
|
-
<h3>Test Results</h3>
|
|
13
|
-
|
|
14
|
-
<div id="evalarea1">booga</div>
|
|
15
|
-
|
|
16
|
-
<div id="evalarea2">eval area 2 triggered by update</div>
|
|
17
|
-
|
|
18
|
-
<div id="evalarea3">eval area 3 triggered by insert</div>
|
|
19
|
-
|
|
20
|
-
<div id="evalarea4">eval area 4 triggered by a click on the changed attributes area</div>
|
|
21
|
-
|
|
22
|
-
<div id="changesArea">update insert area</div>
|
|
23
|
-
|
|
24
|
-
<div id="deleteable">delete area will be deleted once you press the delete button</div>
|
|
25
|
-
|
|
26
|
-
<div id="attributeChange">attributes changes area</div>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
</div>
|
|
31
|
-
|
|
32
|
-
<h2>Call actions via normal ppr</h2>
|
|
33
|
-
|
|
34
|
-
<form id="form1" action="boog.html">
|
|
35
|
-
|
|
36
|
-
<input type="hidden" id="jakarta.faces.ViewState" name="jakarta.faces.ViewState" value="blubbblubblubb">
|
|
37
|
-
|
|
38
|
-
<input type="button" id="cmd_eval" value="eval" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'eval1');">
|
|
39
|
-
|
|
40
|
-
<input type="button" id="cmd_update_insert" value="update insert" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'updateinsert1');">
|
|
41
|
-
|
|
42
|
-
<input type="button" id="cmd_simple_resource" value="simple resource" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'simpleresource');">
|
|
43
|
-
|
|
44
|
-
<input type="button" id="cmd_complex_resource" value="complex resource" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'complex_resource');">
|
|
45
|
-
|
|
46
|
-
<input type="button" id="cmd_update_insert2" value="update insert second protocol path" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'updateinsert2');">
|
|
47
|
-
|
|
48
|
-
<input type="button" id="cmd_delete" value="delete" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'delete1');">
|
|
49
|
-
|
|
50
|
-
<input type="button" id="cmd_replace" value="Replace Body" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'body_replace1');">
|
|
51
|
-
|
|
52
|
-
<input type="button" id="cmd_attributeschange" value="change attributes" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'attributes');">
|
|
53
|
-
|
|
54
|
-
<input type="button" id="cmd_illegalresponse" value="illegal response, error trigger" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'illegalResponse');">
|
|
55
|
-
|
|
56
|
-
<input type="button" id="cmd_viewstate" value="Viewstate only update trigger" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'viewstate');">
|
|
57
|
-
|
|
58
|
-
<input type="button" id="cmd_error" value="Server error with error response" onclick="emitPPR(this, ('undefined' == typeof event)? null: event, 'errors');">
|
|
59
|
-
|
|
60
|
-
<input type="button" id="cmd_error_component" value="Error: no component given" onclick="(window.faces || window.jsf).ajax.request(null, event, {}); return false">
|
|
61
|
-
|
|
62
|
-
</form>
|
|
63
|
-
|
|
64
|
-
<script type="text/javascript">
|
|
65
|
-
document.getElementById("evalarea1").innerHTML = "booga";
|
|
66
|
-
|
|
67
|
-
var target = "./test.mockup";
|
|
68
|
-
|
|
69
|
-
function emitPPR(source, event, action, useIframe, formName) {
|
|
70
|
-
document.getElementById(formName || "form1").action = target;
|
|
71
|
-
|
|
72
|
-
(window?.faces ?? window.jsf).ajax.request(/*String|Dom Node*/ source, /*|EVENT|*/ (window.event) ? window.event : event, /*{|OPTIONS|}*/ {op: action});
|
|
73
|
-
}
|
|
74
|
-
</script>
|
|
75
|
-
</div>
|
package/src/tmp/test.html
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<div id="viewroot_1">
|
|
3
|
-
<form id="viewroot_1:form1">
|
|
4
|
-
<button type="submit" id="viewroot_1:submit_1"></button>
|
|
5
|
-
<input type="hidden" id="viewroot_1:form1:jakarta.faces.ViewState:1" name="jakarta.faces.ViewState" value="updatedVST">
|
|
6
|
-
</form>
|
|
7
|
-
<form id="viewroot_1:form2">
|
|
8
|
-
<button type="submit" id="viewroot_1:submit_2"></button>
|
|
9
|
-
</form>
|
|
10
|
-
</div>
|
|
11
|
-
|
|
12
|
-
<div id="viewroot_2">
|
|
13
|
-
<form id="viewroot_2:form1">
|
|
14
|
-
<button type="submit" id="viewroot_1:submit_2"></button>
|
|
15
|
-
</form>
|
|
16
|
-
</div>
|
package/tmp.xml
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<partial-response id="j_id__v_0">
|
|
3
|
-
<changes>
|
|
4
|
-
<update id="jakarta.faces.ViewRoot"><![CDATA[<!DOCTYPE html>
|
|
5
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
6
|
-
<head>
|
|
7
|
-
<title>JAVASERVERFACES_SPEC_PUBLIC-790 - Integration Test</title>
|
|
8
|
-
<script src="/jakarta.faces.resource/faces.js.xhtml?ln=jakarta.faces;stage=Development"></script>
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<div id="panel1">
|
|
12
|
-
<form id="form1" name="form1" method="post"
|
|
13
|
-
action="booga"
|
|
14
|
-
><input id="form1:button" name="form1:button" type="submit"
|
|
15
|
-
value="submit form1 via ajax">
|
|
16
|
-
</form>
|
|
17
|
-
</div>
|
|
18
|
-
<div id="panel2">
|
|
19
|
-
after update
|
|
20
|
-
<form id="form2" name="form2" method="post" action="booga2"
|
|
21
|
-
><a href="#" id="form2:link" name="form2:link"></a>
|
|
22
|
-
<input type="hidden" name="form2_SUBMIT" value="1"/></form>
|
|
23
|
-
</div>
|
|
24
|
-
<div id="panel3">
|
|
25
|
-
after update
|
|
26
|
-
<form id="form3" name="form3" method="post" action="booga3"
|
|
27
|
-
><a href="#" id="form3:link" name="form3:link"></a>
|
|
28
|
-
</form>
|
|
29
|
-
</div>
|
|
30
|
-
</body>
|
|
31
|
-
</html>
|
|
32
|
-
]]>
|
|
33
|
-
</update>
|
|
34
|
-
<update id="viewroot_1:jakarta.faces.ViewState:1"><![CDATA[booga_after_update]]></update>
|
|
35
|
-
</changes>
|
|
36
|
-
</partial-response>
|