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
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { AsyncRunnable, IAsyncRunnable } from "../util/AsyncRunnable";
|
|
17
|
+
import { Config } from "mona-dish";
|
|
18
|
+
import { ExtConfig } from "../util/ExtDomQuery";
|
|
19
|
+
/**
|
|
20
|
+
* Faces XHR Request Wrapper
|
|
21
|
+
* as AsyncRunnable for our Asynchronous queue
|
|
22
|
+
* This means from the outside the
|
|
23
|
+
* xhr request is similar to a Promise in a way
|
|
24
|
+
* that you can add then and catch and finally callbacks.
|
|
25
|
+
*
|
|
26
|
+
*
|
|
27
|
+
* The idea is that we basically just enqueue
|
|
28
|
+
* a single ajax request into our queue
|
|
29
|
+
* and let the queue do the processing.
|
|
30
|
+
*
|
|
31
|
+
*
|
|
32
|
+
*/
|
|
33
|
+
export declare class XhrRequest extends AsyncRunnable<XMLHttpRequest> {
|
|
34
|
+
private requestContext;
|
|
35
|
+
private internalContext;
|
|
36
|
+
private timeout;
|
|
37
|
+
private ajaxType;
|
|
38
|
+
private contentType;
|
|
39
|
+
private responseContext;
|
|
40
|
+
private stopProgress;
|
|
41
|
+
private xhrObject;
|
|
42
|
+
/**
|
|
43
|
+
* Required Parameters
|
|
44
|
+
*
|
|
45
|
+
* @param requestContext the request context with all pass through values
|
|
46
|
+
* @param internalContext internal context with internal info which is passed through, not used by the user
|
|
47
|
+
* Optional Parameters
|
|
48
|
+
* @param timeout optional xhr timeout
|
|
49
|
+
* @param ajaxType optional request type, default "POST"
|
|
50
|
+
* @param contentType optional content type, default "application/x-www-form-urlencoded"
|
|
51
|
+
*/
|
|
52
|
+
constructor(requestContext: ExtConfig, internalContext: Config, timeout?: number, ajaxType?: string, contentType?: string);
|
|
53
|
+
start(): IAsyncRunnable<XMLHttpRequest>;
|
|
54
|
+
cancel(): void;
|
|
55
|
+
/**
|
|
56
|
+
* attaches the internal event and processing
|
|
57
|
+
* callback within the promise to our xhr object
|
|
58
|
+
*
|
|
59
|
+
* @param resolve
|
|
60
|
+
* @param reject
|
|
61
|
+
*/
|
|
62
|
+
private registerXhrCallbacks;
|
|
63
|
+
private isCancelledResponse;
|
|
64
|
+
/**
|
|
65
|
+
* client side abort... also here for now we clean the queue
|
|
66
|
+
*
|
|
67
|
+
* @param resolve
|
|
68
|
+
* @param reject
|
|
69
|
+
* @private
|
|
70
|
+
*/
|
|
71
|
+
private onAbort;
|
|
72
|
+
/**
|
|
73
|
+
* request timeout, this must be handled like a generic server error per spec
|
|
74
|
+
* unfortunately, so we have to jump to the next item (we cancelled before)
|
|
75
|
+
* @param resolve
|
|
76
|
+
* @param reject
|
|
77
|
+
* @private
|
|
78
|
+
*/
|
|
79
|
+
private onTimeout;
|
|
80
|
+
/**
|
|
81
|
+
* the response is received and normally is a normal response
|
|
82
|
+
* but also can be some kind of error (http code >= 300)
|
|
83
|
+
* In any case the response will be resolved either as error or response
|
|
84
|
+
* and the next item in the queue will be processed
|
|
85
|
+
* @param resolve
|
|
86
|
+
* @private
|
|
87
|
+
*/
|
|
88
|
+
private onResponseReceived;
|
|
89
|
+
private handleGenericError;
|
|
90
|
+
/**
|
|
91
|
+
* last minute cleanup, the request now either is fully done
|
|
92
|
+
* or not by having had a cancel or error event be
|
|
93
|
+
* @param data
|
|
94
|
+
* @param resolve
|
|
95
|
+
* @private
|
|
96
|
+
*/
|
|
97
|
+
private onResponseProcessed;
|
|
98
|
+
private sendRequest;
|
|
99
|
+
private sendEvent;
|
|
100
|
+
private handleErrorAndClearQueue;
|
|
101
|
+
private handleError;
|
|
102
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
* or more contributor license agreements. See the NOTICE file
|
|
4
|
+
* distributed with this work for additional information
|
|
5
|
+
* regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
* to you under the Apache License, Version 2.0 (the
|
|
7
|
+
* "License"); you may not use this file except in compliance
|
|
8
|
+
* with the License. You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing,
|
|
13
|
+
* software distributed under the License is distributed on an
|
|
14
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
* KIND, either express or implied. See the License for the
|
|
16
|
+
* specific language governing permissions and limitations
|
|
17
|
+
* under the License.
|
|
18
|
+
*/
|
|
19
|
+
export { DomQuery, ElementAttribute, DomQueryCollector, DQ, DQ$ } from "./DomQuery";
|
|
20
|
+
export { Lang } from "./Lang";
|
|
21
|
+
export { Monad, IValueHolder, IFunctor, IMonad, IIdentity, Optional, ValueEmbedder } from "./Monad";
|
|
22
|
+
export { CancellablePromise, IPromise, PromiseStatus } from "./Promise";
|
|
23
|
+
export { XMLQuery, XQ } from "./XmlQuery";
|
|
24
|
+
export { Stream, LazyStream, IteratableConsumer, FlatMapStreamDataSource, IStream } from "./Stream";
|
|
25
|
+
export { ArrayStreamDataSource, MappedStreamDataSource, FilteredStreamDatasource, MultiStreamDatasource, SequenceDataSource, QueryFormStringCollector, IStreamDataSource, ICollector, ArrayCollector, ConfigCollector, AssocArrayCollector, FormDataCollector, QueryFormDataCollector, } from "./SourcesCollectors";
|
|
26
|
+
export { TagBuilder } from "./TagBuilder";
|
|
27
|
+
export { Message, Broker, BroadcastChannelBroker, Crypto, NoCrypto, Hash } from "./Messaging";
|
|
28
|
+
export { JSONCrypto, ExpiringCrypto } from "./CryptoExtensions";
|
|
29
|
+
export { assign, assignIf, simpleShallowMerge, shallowMerge } from "./AssocArray";
|
|
30
|
+
export { Config } from "./Config";
|
|
31
|
+
export { ConfigDef } from "./Config";
|
|
32
|
+
export { CONFIG_ANY } from "./Config";
|
|
33
|
+
export { CONFIG_VALUE } from "./Config";
|
|
34
|
+
export { Es2019Array, _Es2019Array } from "./Es2019Array";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
* or more contributor license agreements. See the NOTICE file
|
|
4
|
+
* distributed with this work for additional information
|
|
5
|
+
* regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
* to you under the Apache License, Version 2.0 (the
|
|
7
|
+
* "License"); you may not use this file except in compliance
|
|
8
|
+
* with the License. You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing,
|
|
13
|
+
* software distributed under the License is distributed on an
|
|
14
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
* KIND, either express or implied. See the License for the
|
|
16
|
+
* specific language governing permissions and limitations
|
|
17
|
+
* under the License.
|
|
18
|
+
*/
|
|
19
|
+
export { DomQuery, ElementAttribute, DomQueryCollector, DQ, DQ$ } from "./DomQuery";
|
|
20
|
+
export { Lang } from "./Lang";
|
|
21
|
+
export { Monad, IValueHolder, IFunctor, IMonad, IIdentity, Optional, ValueEmbedder } from "./Monad";
|
|
22
|
+
export { XMLQuery, XQ } from "./XmlQuery";
|
|
23
|
+
export { assign, assignIf, append, simpleShallowMerge, shallowMerge } from "./AssocArray";
|
|
24
|
+
export { Config } from "./Config";
|
|
25
|
+
export { ConfigDef } from "./Config";
|
|
26
|
+
export { CONFIG_ANY } from "./Config";
|
|
27
|
+
export { CONFIG_VALUE } from "./Config";
|
|
28
|
+
export * as Assoc from "./AssocArray";
|
|
29
|
+
export { Es2019Array, _Es2019Array } from "./Es2019Array";
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/**
|
|
17
|
+
* legacy code to enable various aspects
|
|
18
|
+
* of myfaces, used to be rendered inline
|
|
19
|
+
* for jsf 2.0 we can externalize it into its own custom resource
|
|
20
|
+
*
|
|
21
|
+
* note this is a straight 1:1 port from the existing codebase
|
|
22
|
+
* (not too much work has been spent here, the important thing is, that
|
|
23
|
+
* the namespace and functions need to be kept intact for legacy code)
|
|
24
|
+
*
|
|
25
|
+
* we might move the code over in the future, but for now a straight 1:1 port suffices
|
|
26
|
+
*/
|
|
27
|
+
export declare module oam {
|
|
28
|
+
/**
|
|
29
|
+
* sets a hidden input field
|
|
30
|
+
* @param formName the formName
|
|
31
|
+
* @param name the hidden field
|
|
32
|
+
* @param value the value to be rendered
|
|
33
|
+
*/
|
|
34
|
+
const setHiddenInput: (formName: string, name: string, value: string) => void;
|
|
35
|
+
/**
|
|
36
|
+
* clears a hidden input field
|
|
37
|
+
*
|
|
38
|
+
* @param formName formName for the input
|
|
39
|
+
* @param name the name of the input field
|
|
40
|
+
*/
|
|
41
|
+
const clearHiddenInput: (formName: string, name: string) => void;
|
|
42
|
+
/**
|
|
43
|
+
* does special form submit remapping
|
|
44
|
+
* re-maps the issuing command link into something,
|
|
45
|
+
* the "decode" of the command link on the server can understand
|
|
46
|
+
*
|
|
47
|
+
* @param formName
|
|
48
|
+
* @param linkId
|
|
49
|
+
* @param target
|
|
50
|
+
* @param params
|
|
51
|
+
*/
|
|
52
|
+
const submitForm: (formName: string, linkId?: string | null, target?: string | null, params?: AssocArr<any> | Tuples<string, any> | null) => boolean;
|
|
53
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const window: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare const window: any;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export interface Probe1 {
|
|
17
|
+
val1: string;
|
|
18
|
+
val2: Date;
|
|
19
|
+
val3: any;
|
|
20
|
+
val4: Probe2[];
|
|
21
|
+
val5: Probe2;
|
|
22
|
+
val6: any;
|
|
23
|
+
}
|
|
24
|
+
export interface Probe2 {
|
|
25
|
+
val1: string;
|
|
26
|
+
}
|
|
27
|
+
export declare class Probe2Impl implements Probe2 {
|
|
28
|
+
val1: string;
|
|
29
|
+
constructor(data: Probe2);
|
|
30
|
+
}
|
|
31
|
+
export declare class Probe1Impl implements Probe1 {
|
|
32
|
+
val1: string;
|
|
33
|
+
val2: Date;
|
|
34
|
+
val3: any;
|
|
35
|
+
val4: Probe2[];
|
|
36
|
+
val5: Probe2;
|
|
37
|
+
val6: any;
|
|
38
|
+
constructor(data: Probe1, mixin?: any);
|
|
39
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const tobagoSheetWithHeader = "<tobago-sheet id=\"page:mainForm:s1\" data-tobago-selection-mode=\"multi\" data-tobago-first=\"0\" rows=\"0\" row-count=\"88\" data-tobago-layout=\"{"columns":[1.0]}\">\n <style nonce=\"\" id=\"page:mainForm:s1:j_id_2n\">#page\\:mainForm\\:s1{max-height:486px;}\n </style>\n <input id=\"page:mainForm:s1::widths\" name=\"page:mainForm:s1::widths\" type=\"hidden\" value=\"[]\">\n <input id=\"page:mainForm:s1::rendered\" name=\"page:mainForm:s1::rendered\" type=\"hidden\" value=\"[true]\">\n <input id=\"page:mainForm:s1::scrollPosition\" name=\"page:mainForm:s1::scrollPosition\" type=\"hidden\" value=\"[0,0]\">\n <input id=\"page:mainForm:s1::selected\" name=\"page:mainForm:s1::selected\" type=\"hidden\" value=\"[]\">\n <header>\n <table cellspacing=\"0\" cellpadding=\"0\" summary=\"\" class=\"table table-sm tobago-tableLayout-fixed\">\n <colgroup>\n <col width=\"385\">\n <col>\n <col width=\"15\">\n </colgroup>\n <thead>\n <tr>\n <th>\n <span><tobago-out id=\"page:mainForm:s1:_col0\"><span class=\"form-control-plaintext\">Name</span></tobago-out></span>\n <span class=\"tobago-resize\" data-tobago-column-index=\"0\"> </span>\n </th>\n <th>\n <span></span>\n </th>\n <th>\n <span></span>\n </th>\n </tr>\n </thead>\n </table>\n </header>\n <div class=\"tobago-body\">\n <table cellspacing=\"0\" cellpadding=\"0\" summary=\"\" class=\"table table-sm tobago-tableLayout-fixed\">\n <colgroup>\n <col width=\"385\">\n <col>\n </colgroup>\n <tbody>\n <tr row-index=\"0\" id=\"page:mainForm:s1:0:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:0:t_name\"><span class=\"form-control-plaintext\">Sun</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:0:sample0\" execute=\"page:mainForm:s1:0:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"1\" id=\"page:mainForm:s1:1:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:1:t_name\"><span class=\"form-control-plaintext\">Mercury</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:1:sample0\" execute=\"page:mainForm:s1:1:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"2\" id=\"page:mainForm:s1:2:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:2:t_name\"><span class=\"form-control-plaintext\">Venus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:2:sample0\" execute=\"page:mainForm:s1:2:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"3\" id=\"page:mainForm:s1:3:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:3:t_name\"><span class=\"form-control-plaintext\">Earth</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:3:sample0\" execute=\"page:mainForm:s1:3:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"4\" id=\"page:mainForm:s1:4:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:4:t_name\"><span class=\"form-control-plaintext\">Mars</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:4:sample0\" execute=\"page:mainForm:s1:4:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"5\" id=\"page:mainForm:s1:5:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:5:t_name\"><span class=\"form-control-plaintext\">Jupiter</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:5:sample0\" execute=\"page:mainForm:s1:5:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"6\" id=\"page:mainForm:s1:6:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:6:t_name\"><span class=\"form-control-plaintext\">Saturn</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:6:sample0\" execute=\"page:mainForm:s1:6:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"7\" id=\"page:mainForm:s1:7:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:7:t_name\"><span class=\"form-control-plaintext\">Uranus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:7:sample0\" execute=\"page:mainForm:s1:7:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"8\" id=\"page:mainForm:s1:8:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:8:t_name\"><span class=\"form-control-plaintext\">Neptune</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:8:sample0\" execute=\"page:mainForm:s1:8:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"9\" id=\"page:mainForm:s1:9:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:9:t_name\"><span class=\"form-control-plaintext\">Pluto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:9:sample0\" execute=\"page:mainForm:s1:9:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"10\" id=\"page:mainForm:s1:10:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:10:t_name\"><span class=\"form-control-plaintext\">Moon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:10:sample0\" execute=\"page:mainForm:s1:10:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"11\" id=\"page:mainForm:s1:11:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:11:t_name\"><span class=\"form-control-plaintext\">Phobos</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:11:sample0\" execute=\"page:mainForm:s1:11:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"12\" id=\"page:mainForm:s1:12:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:12:t_name\"><span class=\"form-control-plaintext\">Deimos</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:12:sample0\" execute=\"page:mainForm:s1:12:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"13\" id=\"page:mainForm:s1:13:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:13:t_name\"><span class=\"form-control-plaintext\">Metis</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:13:sample0\" execute=\"page:mainForm:s1:13:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"14\" id=\"page:mainForm:s1:14:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:14:t_name\"><span class=\"form-control-plaintext\">Adrastea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:14:sample0\" execute=\"page:mainForm:s1:14:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"15\" id=\"page:mainForm:s1:15:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:15:t_name\"><span class=\"form-control-plaintext\">Amalthea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:15:sample0\" execute=\"page:mainForm:s1:15:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"16\" id=\"page:mainForm:s1:16:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:16:t_name\"><span class=\"form-control-plaintext\">Thebe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:16:sample0\" execute=\"page:mainForm:s1:16:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"17\" id=\"page:mainForm:s1:17:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:17:t_name\"><span class=\"form-control-plaintext\">Io</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:17:sample0\" execute=\"page:mainForm:s1:17:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"18\" id=\"page:mainForm:s1:18:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:18:t_name\"><span class=\"form-control-plaintext\">Europa</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:18:sample0\" execute=\"page:mainForm:s1:18:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"19\" id=\"page:mainForm:s1:19:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:19:t_name\"><span class=\"form-control-plaintext\">Ganymede</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:19:sample0\" execute=\"page:mainForm:s1:19:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"20\" id=\"page:mainForm:s1:20:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:20:t_name\"><span class=\"form-control-plaintext\">Callisto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:20:sample0\" execute=\"page:mainForm:s1:20:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"21\" id=\"page:mainForm:s1:21:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:21:t_name\"><span class=\"form-control-plaintext\">Themisto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:21:sample0\" execute=\"page:mainForm:s1:21:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"22\" id=\"page:mainForm:s1:22:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:22:t_name\"><span class=\"form-control-plaintext\">Leda</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:22:sample0\" execute=\"page:mainForm:s1:22:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"23\" id=\"page:mainForm:s1:23:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:23:t_name\"><span class=\"form-control-plaintext\">Himalia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:23:sample0\" execute=\"page:mainForm:s1:23:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"24\" id=\"page:mainForm:s1:24:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:24:t_name\"><span class=\"form-control-plaintext\">Lysithea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:24:sample0\" execute=\"page:mainForm:s1:24:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"25\" id=\"page:mainForm:s1:25:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:25:t_name\"><span class=\"form-control-plaintext\">Elara</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:25:sample0\" execute=\"page:mainForm:s1:25:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"26\" id=\"page:mainForm:s1:26:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:26:t_name\"><span class=\"form-control-plaintext\">Ananke</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:26:sample0\" execute=\"page:mainForm:s1:26:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"27\" id=\"page:mainForm:s1:27:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:27:t_name\"><span class=\"form-control-plaintext\">Carme</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:27:sample0\" execute=\"page:mainForm:s1:27:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"28\" id=\"page:mainForm:s1:28:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:28:t_name\"><span class=\"form-control-plaintext\">Pasiphae</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:28:sample0\" execute=\"page:mainForm:s1:28:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"29\" id=\"page:mainForm:s1:29:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:29:t_name\"><span class=\"form-control-plaintext\">Sinope</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:29:sample0\" execute=\"page:mainForm:s1:29:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"30\" id=\"page:mainForm:s1:30:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:30:t_name\"><span class=\"form-control-plaintext\">Iocaste</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:30:sample0\" execute=\"page:mainForm:s1:30:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"31\" id=\"page:mainForm:s1:31:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:31:t_name\"><span class=\"form-control-plaintext\">Harpalyke</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:31:sample0\" execute=\"page:mainForm:s1:31:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"32\" id=\"page:mainForm:s1:32:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:32:t_name\"><span class=\"form-control-plaintext\">Praxidike</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:32:sample0\" execute=\"page:mainForm:s1:32:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"33\" id=\"page:mainForm:s1:33:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:33:t_name\"><span class=\"form-control-plaintext\">Taygete</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:33:sample0\" execute=\"page:mainForm:s1:33:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"34\" id=\"page:mainForm:s1:34:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:34:t_name\"><span class=\"form-control-plaintext\">Chaldene</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:34:sample0\" execute=\"page:mainForm:s1:34:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"35\" id=\"page:mainForm:s1:35:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:35:t_name\"><span class=\"form-control-plaintext\">Kalyke</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:35:sample0\" execute=\"page:mainForm:s1:35:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"36\" id=\"page:mainForm:s1:36:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:36:t_name\"><span class=\"form-control-plaintext\">Callirrhoe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:36:sample0\" execute=\"page:mainForm:s1:36:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"37\" id=\"page:mainForm:s1:37:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:37:t_name\"><span class=\"form-control-plaintext\">Megaclite</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:37:sample0\" execute=\"page:mainForm:s1:37:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"38\" id=\"page:mainForm:s1:38:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:38:t_name\"><span class=\"form-control-plaintext\">Isonoe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:38:sample0\" execute=\"page:mainForm:s1:38:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"39\" id=\"page:mainForm:s1:39:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:39:t_name\"><span class=\"form-control-plaintext\">Erinome</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:39:sample0\" execute=\"page:mainForm:s1:39:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"40\" id=\"page:mainForm:s1:40:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:40:t_name\"><span class=\"form-control-plaintext\">Pan</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:40:sample0\" execute=\"page:mainForm:s1:40:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"41\" id=\"page:mainForm:s1:41:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:41:t_name\"><span class=\"form-control-plaintext\">Atlas</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:41:sample0\" execute=\"page:mainForm:s1:41:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"42\" id=\"page:mainForm:s1:42:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:42:t_name\"><span class=\"form-control-plaintext\">Prometheus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:42:sample0\" execute=\"page:mainForm:s1:42:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"43\" id=\"page:mainForm:s1:43:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:43:t_name\"><span class=\"form-control-plaintext\">Pandora</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:43:sample0\" execute=\"page:mainForm:s1:43:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"44\" id=\"page:mainForm:s1:44:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:44:t_name\"><span class=\"form-control-plaintext\">Epimetheus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:44:sample0\" execute=\"page:mainForm:s1:44:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"45\" id=\"page:mainForm:s1:45:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:45:t_name\"><span class=\"form-control-plaintext\">Janus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:45:sample0\" execute=\"page:mainForm:s1:45:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"46\" id=\"page:mainForm:s1:46:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:46:t_name\"><span class=\"form-control-plaintext\">Mimas</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:46:sample0\" execute=\"page:mainForm:s1:46:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"47\" id=\"page:mainForm:s1:47:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:47:t_name\"><span class=\"form-control-plaintext\">Enceladus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:47:sample0\" execute=\"page:mainForm:s1:47:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"48\" id=\"page:mainForm:s1:48:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:48:t_name\"><span class=\"form-control-plaintext\">Tethys</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:48:sample0\" execute=\"page:mainForm:s1:48:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"49\" id=\"page:mainForm:s1:49:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:49:t_name\"><span class=\"form-control-plaintext\">Telesto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:49:sample0\" execute=\"page:mainForm:s1:49:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"50\" id=\"page:mainForm:s1:50:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:50:t_name\"><span class=\"form-control-plaintext\">Calypso</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:50:sample0\" execute=\"page:mainForm:s1:50:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"51\" id=\"page:mainForm:s1:51:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:51:t_name\"><span class=\"form-control-plaintext\">Dione</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:51:sample0\" execute=\"page:mainForm:s1:51:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"52\" id=\"page:mainForm:s1:52:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:52:t_name\"><span class=\"form-control-plaintext\">Helene</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:52:sample0\" execute=\"page:mainForm:s1:52:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"53\" id=\"page:mainForm:s1:53:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:53:t_name\"><span class=\"form-control-plaintext\">Rhea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:53:sample0\" execute=\"page:mainForm:s1:53:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"54\" id=\"page:mainForm:s1:54:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:54:t_name\"><span class=\"form-control-plaintext\">Titan</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:54:sample0\" execute=\"page:mainForm:s1:54:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"55\" id=\"page:mainForm:s1:55:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:55:t_name\"><span class=\"form-control-plaintext\">Hyperion</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:55:sample0\" execute=\"page:mainForm:s1:55:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"56\" id=\"page:mainForm:s1:56:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:56:t_name\"><span class=\"form-control-plaintext\">Iapetus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:56:sample0\" execute=\"page:mainForm:s1:56:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"57\" id=\"page:mainForm:s1:57:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:57:t_name\"><span class=\"form-control-plaintext\">Phoebe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:57:sample0\" execute=\"page:mainForm:s1:57:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"58\" id=\"page:mainForm:s1:58:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:58:t_name\"><span class=\"form-control-plaintext\">Cordelia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:58:sample0\" execute=\"page:mainForm:s1:58:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"59\" id=\"page:mainForm:s1:59:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:59:t_name\"><span class=\"form-control-plaintext\">Ophelia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:59:sample0\" execute=\"page:mainForm:s1:59:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"60\" id=\"page:mainForm:s1:60:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:60:t_name\"><span class=\"form-control-plaintext\">Bianca</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:60:sample0\" execute=\"page:mainForm:s1:60:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"61\" id=\"page:mainForm:s1:61:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:61:t_name\"><span class=\"form-control-plaintext\">Cressida</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:61:sample0\" execute=\"page:mainForm:s1:61:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"62\" id=\"page:mainForm:s1:62:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:62:t_name\"><span class=\"form-control-plaintext\">Desdemona</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:62:sample0\" execute=\"page:mainForm:s1:62:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"63\" id=\"page:mainForm:s1:63:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:63:t_name\"><span class=\"form-control-plaintext\">Juliet</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:63:sample0\" execute=\"page:mainForm:s1:63:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"64\" id=\"page:mainForm:s1:64:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:64:t_name\"><span class=\"form-control-plaintext\">Portia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:64:sample0\" execute=\"page:mainForm:s1:64:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"65\" id=\"page:mainForm:s1:65:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:65:t_name\"><span class=\"form-control-plaintext\">Rosalind</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:65:sample0\" execute=\"page:mainForm:s1:65:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"66\" id=\"page:mainForm:s1:66:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:66:t_name\"><span class=\"form-control-plaintext\">Belinda</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:66:sample0\" execute=\"page:mainForm:s1:66:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"67\" id=\"page:mainForm:s1:67:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:67:t_name\"><span class=\"form-control-plaintext\">1986U10</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:67:sample0\" execute=\"page:mainForm:s1:67:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"68\" id=\"page:mainForm:s1:68:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:68:t_name\"><span class=\"form-control-plaintext\">Puck</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:68:sample0\" execute=\"page:mainForm:s1:68:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"69\" id=\"page:mainForm:s1:69:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:69:t_name\"><span class=\"form-control-plaintext\">Miranda</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:69:sample0\" execute=\"page:mainForm:s1:69:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"70\" id=\"page:mainForm:s1:70:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:70:t_name\"><span class=\"form-control-plaintext\">Ariel</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:70:sample0\" execute=\"page:mainForm:s1:70:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"71\" id=\"page:mainForm:s1:71:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:71:t_name\"><span class=\"form-control-plaintext\">Umbriel</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:71:sample0\" execute=\"page:mainForm:s1:71:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"72\" id=\"page:mainForm:s1:72:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:72:t_name\"><span class=\"form-control-plaintext\">Titania</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:72:sample0\" execute=\"page:mainForm:s1:72:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"73\" id=\"page:mainForm:s1:73:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:73:t_name\"><span class=\"form-control-plaintext\">Oberon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:73:sample0\" execute=\"page:mainForm:s1:73:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"74\" id=\"page:mainForm:s1:74:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:74:t_name\"><span class=\"form-control-plaintext\">Caliban</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:74:sample0\" execute=\"page:mainForm:s1:74:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"75\" id=\"page:mainForm:s1:75:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:75:t_name\"><span class=\"form-control-plaintext\">Stephano</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:75:sample0\" execute=\"page:mainForm:s1:75:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"76\" id=\"page:mainForm:s1:76:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:76:t_name\"><span class=\"form-control-plaintext\">Sycorax</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:76:sample0\" execute=\"page:mainForm:s1:76:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"77\" id=\"page:mainForm:s1:77:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:77:t_name\"><span class=\"form-control-plaintext\">Prospero</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:77:sample0\" execute=\"page:mainForm:s1:77:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"78\" id=\"page:mainForm:s1:78:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:78:t_name\"><span class=\"form-control-plaintext\">Setebos</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:78:sample0\" execute=\"page:mainForm:s1:78:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"79\" id=\"page:mainForm:s1:79:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:79:t_name\"><span class=\"form-control-plaintext\">Naiad</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:79:sample0\" execute=\"page:mainForm:s1:79:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"80\" id=\"page:mainForm:s1:80:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:80:t_name\"><span class=\"form-control-plaintext\">Thalassa</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:80:sample0\" execute=\"page:mainForm:s1:80:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"81\" id=\"page:mainForm:s1:81:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:81:t_name\"><span class=\"form-control-plaintext\">Despina</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:81:sample0\" execute=\"page:mainForm:s1:81:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"82\" id=\"page:mainForm:s1:82:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:82:t_name\"><span class=\"form-control-plaintext\">Galatea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:82:sample0\" execute=\"page:mainForm:s1:82:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"83\" id=\"page:mainForm:s1:83:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:83:t_name\"><span class=\"form-control-plaintext\">Larissa</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:83:sample0\" execute=\"page:mainForm:s1:83:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"84\" id=\"page:mainForm:s1:84:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:84:t_name\"><span class=\"form-control-plaintext\">Proteus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:84:sample0\" execute=\"page:mainForm:s1:84:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"85\" id=\"page:mainForm:s1:85:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:85:t_name\"><span class=\"form-control-plaintext\">Triton</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:85:sample0\" execute=\"page:mainForm:s1:85:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"86\" id=\"page:mainForm:s1:86:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:86:t_name\"><span class=\"form-control-plaintext\">Nereid</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:86:sample0\" execute=\"page:mainForm:s1:86:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"87\" id=\"page:mainForm:s1:87:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:87:t_name\"><span class=\"form-control-plaintext\">Charon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:87:sample0\" execute=\"page:mainForm:s1:87:sample0\"></tobago-behavior>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n </tobago-sheet>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const tobagoSheetWithoutHeader = "<tobago-sheet id=\"page:mainForm:s1\" data-tobago-selection-mode=\"multi\" data-tobago-first=\"0\" rows=\"0\" row-count=\"88\" data-tobago-layout=\"{"columns":[1.0]}\">\n <style nonce=\"\" id=\"page:mainForm:s1:j_id_2n\">#page\\:mainForm\\:s1{max-height:486px;}\n </style>\n <input id=\"page:mainForm:s1::widths\" name=\"page:mainForm:s1::widths\" type=\"hidden\" value=\"[]\">\n <input id=\"page:mainForm:s1::rendered\" name=\"page:mainForm:s1::rendered\" type=\"hidden\" value=\"[true]\">\n <input id=\"page:mainForm:s1::scrollPosition\" name=\"page:mainForm:s1::scrollPosition\" type=\"hidden\" value=\"[0,0]\">\n <input id=\"page:mainForm:s1::selected\" name=\"page:mainForm:s1::selected\" type=\"hidden\" value=\"[]\">\n <div class=\"tobago-body\">\n <table cellspacing=\"0\" cellpadding=\"0\" summary=\"\" class=\"table table-sm tobago-tableLayout-fixed\">\n <colgroup>\n <col>\n <col>\n </colgroup>\n <tbody>\n <tr row-index=\"0\" id=\"page:mainForm:s1:0:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:0:t_name\"><span class=\"form-control-plaintext\">Sun</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:0:sample0\" execute=\"page:mainForm:s1:0:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"1\" id=\"page:mainForm:s1:1:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:1:t_name\"><span class=\"form-control-plaintext\">Mercury</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:1:sample0\" execute=\"page:mainForm:s1:1:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"2\" id=\"page:mainForm:s1:2:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:2:t_name\"><span class=\"form-control-plaintext\">Venus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:2:sample0\" execute=\"page:mainForm:s1:2:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"3\" id=\"page:mainForm:s1:3:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:3:t_name\"><span class=\"form-control-plaintext\">Earth</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:3:sample0\" execute=\"page:mainForm:s1:3:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"4\" id=\"page:mainForm:s1:4:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:4:t_name\"><span class=\"form-control-plaintext\">Mars</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:4:sample0\" execute=\"page:mainForm:s1:4:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"5\" id=\"page:mainForm:s1:5:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:5:t_name\"><span class=\"form-control-plaintext\">Jupiter</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:5:sample0\" execute=\"page:mainForm:s1:5:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"6\" id=\"page:mainForm:s1:6:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:6:t_name\"><span class=\"form-control-plaintext\">Saturn</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:6:sample0\" execute=\"page:mainForm:s1:6:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"7\" id=\"page:mainForm:s1:7:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:7:t_name\"><span class=\"form-control-plaintext\">Uranus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:7:sample0\" execute=\"page:mainForm:s1:7:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"8\" id=\"page:mainForm:s1:8:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:8:t_name\"><span class=\"form-control-plaintext\">Neptune</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:8:sample0\" execute=\"page:mainForm:s1:8:sample0\"></tobago-behavior>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n</tobago-sheet>";
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
* this work for additional information regarding copyright ownership.
|
|
4
|
+
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
+
* (the "License"); you may not use this file except in compliance with
|
|
6
|
+
* the License. You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/**
|
|
17
|
+
* helpers with various init and html patterns
|
|
18
|
+
*
|
|
19
|
+
* We use jsdom global which builds up a
|
|
20
|
+
* dom tree and emulates a full environment
|
|
21
|
+
*
|
|
22
|
+
* Note the buildup and loading is asynchronous so
|
|
23
|
+
* we have to work with Promises and asyncs to get things
|
|
24
|
+
* where we want to have them
|
|
25
|
+
*
|
|
26
|
+
* This is a pattern pretty much for every test which iterates over
|
|
27
|
+
* multiple doms
|
|
28
|
+
*/
|
|
29
|
+
export declare module StandardInits {
|
|
30
|
+
const HTML_DEFAULT = "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Title</title>\n</head>\n<body>\n<div id=\"id_1\"></div>\n<div id=\"id_2\" booga=\"blarg\"></div>\n<div id=\"id_3\"></div>\n<div id=\"id_4\"></div>\n</body>\n</html>";
|
|
31
|
+
const HTML_SHADOW = "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Title</title>\n</head>\n<body>\n<form id=\"blarg\">\n <input type=\"text\" id=\"blarg:input_1\" name=\"blarg:input_1\" value=\"input_1_val\"></input>\n <input type=\"hidden\" id=\"jakarta.faces.ViewState\" name=\"jakarta.faces.ViewState\" value=\"blubbblubblubb\"></input>\n <input type=\"button\" id=\"blarg:input_2\" name=\"blarg:input_2\" value=\"input_1_val\"></input>\n <div id=\"shadowDomArea\">\n <input type=\"button\" id=\"blarg:input_3\" name=\"blarg:input_3\" value=\"input_3_val\"></input>\n </div>\n</form>\n</body>\n</html>";
|
|
32
|
+
const HTML_TOBAGO_SHEET_WITH_STYLE = "<!DOCTYPE html>\n<html lang='de'>\n<head>\n <meta charset='UTF-8'>\n <meta name='viewport' content='width=device-width, initial-scale=1.0'>\n <title>Test\n </title>\n <link rel='stylesheet' href='./fixtures/css/tobago.css' type='text/css'>\n <link rel='stylesheet' href='./fixtures/css/css/bootstrap-icons.css' type='text/css'>\n <script src='./fixtures/jakarta.faces.resource/faces.js.jsf' type='text/javascript'></script>\n <script src='./fixtures/js/tobago.js' type='module'></script>\n</head>\n<body>\n<tobago-page locale='de' class='container-fluid' id='page' focus-on-error='true' wait-overlay-delay-full='1000'\n wait-overlay-delay-ajax='1000'>\n <form action='/content/080-sheet/30-event/Sheet_Event.xhtml' id='page::form' method='post'\n accept-charset='UTF-8' data-tobago-context-path=''>\n <input type='hidden' name='javax.faces.source' id='javax.faces.source' disabled='disabled'>\n <tobago-focus id='page::lastFocusId'>\n <input type='hidden' name='page::lastFocusId' id='page::lastFocusId::field'>\n </tobago-focus>\n <input type='hidden' name='org.apache.myfaces.tobago.webapp.Secret' id='org.apache.myfaces.tobago.webapp.Secret'\n value='secretValue'>\n <div class='tobago-page-menuStore'>\n </div>\n <span id='page::jsf-state-container'><input type='hidden' name='javax.faces.ViewState'\n id='j_id__v_0:javax.faces.ViewState:1'\n value='viewStateValue' autocomplete='off'><input\n type='hidden' name='javax.faces.RenderKitId' value='tobago'><input type='hidden'\n id='j_id__v_0:javax.faces.ClientWindow:1'\n name='javax.faces.ClientWindow'\n value='clientWindowValue'></span>\n <button type='button' id='page:ajaxButton' name='page:ajaxButton'\n class='tobago-button btn btn-secondary tobago-auto-spacing'>\n <tobago-behavior event='click' client-id='page:ajaxButton' execute='page:ajaxButton'\n render='page:s1'></tobago-behavior>\n <span>Ajax</span></button>\n <tobago-sheet id='page:s1' data-tobago-selection-mode='multi' data-tobago-first='0' rows='0' row-count='2'>\n <style nonce='nonceValue' id='page:s1:j_id_4'>#page\\:s1 {\n max-height: 500px;\n }\n </style>\n <input id='page:s1::scrollPosition' name='page:s1::scrollPosition' type='hidden' value='[0,0]'>\n <input id='page:s1::selected' name='page:s1::selected' type='hidden' value='[]'>\n <div class='tobago-body'>\n <table cellspacing='0' cellpadding='0' summary='' class='table'>\n <thead>\n <tr>\n <th>\n <span><tobago-out id='page:s1:_col0'><span class='form-control-plaintext'>Name</span></tobago-out></span>\n </th>\n </tr>\n </thead>\n <tbody>\n <tr row-index='0'>\n <td>\n <tobago-out id='page:s1:0:t_name'><span class='form-control-plaintext'>Earth</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n </td>\n </tr>\n <tr row-index='1'>\n <td>\n <tobago-out id='page:s1:1:t_name'><span class='form-control-plaintext'>Moon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n </tobago-sheet>\n </form>\n <noscript>\n <div class='tobago-page-noscript'>Diese Seite ben\u00F6tigt JavaScript, allerdings ist JavaScript in Ihrem Browser\n derzeit deaktiviert. Um JavaScript zu aktivieren, lesen Sie ggf. die Anleitung Ihres Browsers.\n </div>\n </noscript>\n</tobago-page>\n</body>\n</html>";
|
|
33
|
+
/**
|
|
34
|
+
* a page simulating basically a simple faces form
|
|
35
|
+
*/
|
|
36
|
+
const HTML_PREFIX_EMBEDDED_BODY = "<form id=\"form1\">\n <tobago-in id=\"page:input\" class=\"tobago-auto-spacing\">\n <input type=\"text\" name=\"page:input\" id=\"page:input::field\" class=\"form-control\" value=\"input_value\">\n <tobago-behavior event=\"change\" client-id=\"page:input\" field-id=\"page:input::field\" execute=\"page:input\" render=\"page:output\"></tobago-behavior>\n </tobago-in>\n \n <tobago-out id=\"page:output\" class=\"tobago-auto-spacing\">\n <input type=\"text\" name=\"page:output\" id=\"page:output::field\" class=\"form-control\">\n </tobago-out>\n</form>";
|
|
37
|
+
const STD_XML = "<?xml version=\"1.0\" encoding=\"utf-8\"?><partial-response><changes><update id=\"value_1\"><![CDATA[<span id=\"out1\">2</span>]]></update><update id=\"jakarta.faces.ViewState\"><![CDATA[j_id1:j_id3]]></update></changes></partial-response>";
|
|
38
|
+
const ERROR_CHAIN_PAGE = "\n <!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Title</title>\n</head>\n<body>\n<h2>Error Chain Testcase</h2>\n<script type=\"text/javascript\">\n/**\n* code identical to mojarra test, both stem from me\n* so mojarras side EPL here ASL2!\n* \n* @param event\n*/\nfunction triggerRequestChain(event) {\n for(let cnt = 0; cnt < 5; cnt++) {\n faces.ajax.request(event.target, \"click\", {\n render:\"form1\",\n onerror: function() {\n document.getElementById(\"errorCalled\").innerHTML = \"1\";\n }\n })\n }\n}\n</script>\n<div id=\"errorCalled\"></div>\n<form id=\"form1\">\n <div id=\"form1:out1\">0</div>\n <input type=\"button\" id=\"form1:button1\" onclick=\"triggerRequestChain(event)\">\n</form>\n</body>\n</html>\n ";
|
|
39
|
+
/**
|
|
40
|
+
* This is a standardized small page mockup
|
|
41
|
+
* testing the various aspects of the protocol
|
|
42
|
+
* under pure html conditions
|
|
43
|
+
*
|
|
44
|
+
* We get the jsf out of the way and basically simulate what the browser sees
|
|
45
|
+
*/
|
|
46
|
+
const PROTOCOL_PAGE = "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Title</title>\n</head>\n<body>\n<h2>protocol testcase1</h2>\n\n<div id=\"centerDiv\">\n\n <h1>Selenium Testprobe for insert update delete and attribute change</h1>\n\n <h2>This test tests all aspects of the protocol, under xhr and iframe conditions</h2>\n\n <div id=\"testResults\">\n \n <h3>Test Results</h3>\n\n <div id=\"evalarea1\">eval area 1 triggered by eval</div>\n \n <div id=\"evalarea2\">eval area 2 triggered by update</div>\n \n <div id=\"evalarea3\">eval area 3 triggered by insert</div>\n \n <div id=\"evalarea4\">eval area 4 triggered by a click on the changed attributes area</div>\n\n <div id=\"changesArea\">update insert area</div>\n \n <div id=\"deleteable\">delete area will be deleted once you press the delete button</div>\n \n <div id=\"attributeChange\">attributes changes area</div>\n \n <div id=\"resource_area_1\"></div>\n <div id=\"resource_area_2\"></div>\n <div id=\"resource_area_3\"></div>\n <div id=\"nonce_result\"></div>\n \n </div>\n\n <h2>Call actions via normal ppr</h2>\n\n <form id=\"form1\" action=\"boog.html\">\n \n <input type=\"hidden\" id=\"jakarta.faces.ViewState\" name=\"jakarta.faces.ViewState\" value=\"blubbblubblubb\"></input>\n \n <input type=\"button\" id=\"cmd_eval\" value=\"eval\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'eval1');\"/>\n \n <input type=\"button\" id=\"cmd_update_insert\" value=\"update insert\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'updateinsert1');\"/>\n\n <input type=\"button\" id=\"cmd_simple_resource\" value=\"simple resource\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'simpleresource');\"/>\n\n <input type=\"button\" id=\"cmd_complex_resource\" value=\"complex resource\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'complex_resource');\"/>\n \n <input type=\"button\" id=\"cmd_complex_resource2\" value=\"complex resource2\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'complex_resource2');\"/> \n \n <input type=\"button\" id=\"cmd_update_insert2\" value=\"update insert second protocol path\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'updateinsert2');\"/>\n\n <input type=\"button\" id=\"cmd_delete\" value=\"delete\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'delete1');\"/>\n\n <input type=\"button\" id=\"cmd_replace\" value=\"Replace Body\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'body_replace1');\"/>\n\n <input type=\"button\" id=\"cmd_attributeschange\" value=\"change attributes\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'attributes');\"/>\n\n <input type=\"button\" id=\"cmd_illegalresponse\" value=\"illegal response, error trigger\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'illegalResponse');\"/>\n\n <input type=\"button\" id=\"cmd_viewstate\" value=\"Viewstate only update trigger\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'viewstate');\"/>\n\n <input type=\"button\" id=\"cmd_error\" value=\"Server error with error response\"\n onclick=\"emitPPR(this, ('undefined' == typeof event)? null: event, 'errors');\"/>\n\n <input type=\"button\" id=\"cmd_error_component\" value=\"Error: no component given\"\n onclick=\"(window.faces || window.jsf).ajax.request(null, event, {}); return false\"/>\n\n </form>\n\n <script type=\"text/javascript\">\n document.getElementById(\"evalarea1\").innerHTML = \"booga\";\n\n var target = \"./test.mockup\";\n\n function emitPPR(source, event, action, useIframe, formName) {\n document.getElementById(formName || \"form1\").action = target;\n\n (window?.faces ?? window.jsf).ajax.request(/*String|Dom Node*/ source, /*|EVENT|*/ (window.event) ? window.event : event, /*{|OPTIONS|}*/ {op: action});\n }\n </script>\n</div>\n</body>";
|
|
47
|
+
function basicXML(): Document;
|
|
48
|
+
function standardInit(scope: any, initFunc?: (boolean: any) => Promise<() => void>): Promise<any>;
|
|
49
|
+
function standardClose(scope: any): void;
|
|
50
|
+
function defaultHtml(withJsf?: boolean): Promise<() => void>;
|
|
51
|
+
function defaultHtml_23(withJsf?: boolean): Promise<() => void>;
|
|
52
|
+
function defaultMyFaces(withJsf?: boolean): Promise<() => void>;
|
|
53
|
+
function defaultMyFacesNamespaces(withJsf?: boolean): Promise<() => void>;
|
|
54
|
+
function defaultMyFaces23(withJsf?: boolean): Promise<() => void>;
|
|
55
|
+
function defaultFileForm(withJsf?: boolean): Promise<() => void>;
|
|
56
|
+
function tobagoFileForm(withJsf?: boolean): Promise<() => void>;
|
|
57
|
+
function defaultFileForm_23(withJsf?: boolean): Promise<() => void>;
|
|
58
|
+
function shadowDomMyFaces(withJsf?: boolean): Promise<() => void>;
|
|
59
|
+
function protocolPage(withJsf?: boolean, IS_40?: boolean): Promise<() => void>;
|
|
60
|
+
function errorChainPage(withJsf?: boolean, IS_40?: boolean): Promise<() => void>;
|
|
61
|
+
function prefixEmbeddedPage(withJsf?: boolean, IS_40?: boolean): Promise<() => void>;
|
|
62
|
+
function defaultSeparatorChar(separatorChar: string, withJsf?: boolean, IS_40?: boolean): Promise<() => void>;
|
|
63
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class XmlResponses {
|
|
2
|
+
static EVAL_1: string;
|
|
3
|
+
static UPDATE_INSERT_1: string;
|
|
4
|
+
static UPDATE_TOBAGO_SHEET_WITH_STYLE: string;
|
|
5
|
+
static SHADOW_DOM_UPDATE: string;
|
|
6
|
+
static UPDATE_INSERT_2: string;
|
|
7
|
+
static DELETE_1: string;
|
|
8
|
+
static VIEWSTATE_1: string;
|
|
9
|
+
static ATTRIBUTE_CHANGE: string;
|
|
10
|
+
static ERROR_1: string;
|
|
11
|
+
static ERROR_2: string;
|
|
12
|
+
static BODY_REPLACEMENT: string;
|
|
13
|
+
static HEAD_REPLACEMENT: string;
|
|
14
|
+
static VIEW_ROOT_REPLACEMENT: string;
|
|
15
|
+
static SIMPLE_RESOURCE_RESPONSE: string;
|
|
16
|
+
static MULTIPLE_RESOURCE_RESPONSE: string;
|
|
17
|
+
static EMBEDDED_SCRIPTS_RESOURCE_RESPONSE: string;
|
|
18
|
+
static HEAD_REPLACE: string;
|
|
19
|
+
static HEAD_REPLACE2: string;
|
|
20
|
+
static NONCE_REPLY: string;
|
|
21
|
+
static ILLEGAL_RESP: string;
|
|
22
|
+
static ERROR_CHAIN_RESPOND_OK: (cnt: number) => string;
|
|
23
|
+
}
|