@datagrok/helm 2.3.2 → 2.3.4
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/CHANGELOG.md +20 -0
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +4 -4
- package/src/cell-renderer.ts +5 -4
- package/src/helm-helper.ts +6 -6
- package/src/helm-monomer-placer.ts +1 -1
- package/src/helm-web-editor.ts +5 -5
- package/src/package-test.ts +0 -1
- package/src/package-utils.ts +211 -69
- package/src/package.ts +10 -71
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- package/src/tests/helm-input-tests.ts +31 -20
- package/src/utils/get-monomer.ts +49 -1
- package/src/utils/helm-grid-cell-renderer.ts +8 -9
- package/src/utils/index.ts +2 -3
- package/src/widgets/helm-input.ts +4 -4
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
- package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
- package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
- package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
- package/vendor/dojo-1.10.10/dijit/main.js +4 -0
- package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
- package/vendor/dojo-1.10.10/dijit/place.js +142 -0
- package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
- package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
- package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
- package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
- package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
- package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
- package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
- package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
- package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
- package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
- package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
- package/vendor/dojo-1.10.10/dojo/html.js +161 -0
- package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
- package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
- package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
- package/vendor/dojo-1.10.10/dojo/require.js +11 -0
- package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
- package/vendor/dojo-1.10.10/dojo/string.js +67 -0
- package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
- package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
- package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
- package/vendor/dojo-1.10.10/dojo/window.js +141 -0
- package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
- package/vendor/dojo-1.10.10/dojox/main.js +4 -0
- package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
- package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
- package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
|
|
3
|
+
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
|
4
|
+
see: http://dojotoolkit.org/license for details
|
|
5
|
+
*/
|
|
6
|
+
//>>built
|
|
7
|
+
define("dojo/promise/all",["../_base/array","../_base/lang","../Deferred","../when"],function(_1,_2,_3,_4){
|
|
8
|
+
"use strict";
|
|
9
|
+
var _5=_1.some;
|
|
10
|
+
return function all(_6){
|
|
11
|
+
var _7,_1;
|
|
12
|
+
if(_2.isArray(_6)){
|
|
13
|
+
_1=_6;
|
|
14
|
+
}else{
|
|
15
|
+
if(_6&&typeof _6==="object"){
|
|
16
|
+
_7=_6;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
var _8;
|
|
20
|
+
var _9=[];
|
|
21
|
+
if(_7){
|
|
22
|
+
_1=[];
|
|
23
|
+
for(var _a in _7){
|
|
24
|
+
if(Object.hasOwnProperty.call(_7,_a)){
|
|
25
|
+
_9.push(_a);
|
|
26
|
+
_1.push(_7[_a]);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
_8={};
|
|
30
|
+
}else{
|
|
31
|
+
if(_1){
|
|
32
|
+
_8=[];
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
if(!_1||!_1.length){
|
|
36
|
+
return new _3().resolve(_8);
|
|
37
|
+
}
|
|
38
|
+
var _b=new _3();
|
|
39
|
+
_b.promise.always(function(){
|
|
40
|
+
_8=_9=null;
|
|
41
|
+
});
|
|
42
|
+
var _c=_1.length;
|
|
43
|
+
_5(_1,function(_d,_e){
|
|
44
|
+
if(!_7){
|
|
45
|
+
_9.push(_e);
|
|
46
|
+
}
|
|
47
|
+
_4(_d,function(_f){
|
|
48
|
+
if(!_b.isFulfilled()){
|
|
49
|
+
_8[_9[_e]]=_f;
|
|
50
|
+
if(--_c===0){
|
|
51
|
+
_b.resolve(_8);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},_b.reject);
|
|
55
|
+
return _b.isFulfilled();
|
|
56
|
+
});
|
|
57
|
+
return _b.promise;
|
|
58
|
+
};
|
|
59
|
+
});
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
define("dojo/promise/all", [
|
|
2
|
+
"../_base/array",
|
|
3
|
+
"../_base/lang",
|
|
4
|
+
"../Deferred",
|
|
5
|
+
"../when"
|
|
6
|
+
], function(array, lang, Deferred, when){
|
|
7
|
+
"use strict";
|
|
8
|
+
|
|
9
|
+
// module:
|
|
10
|
+
// dojo/promise/all
|
|
11
|
+
|
|
12
|
+
var some = array.some;
|
|
13
|
+
|
|
14
|
+
return function all(objectOrArray){
|
|
15
|
+
// summary:
|
|
16
|
+
// Takes multiple promises and returns a new promise that is fulfilled
|
|
17
|
+
// when all promises have been resolved or one has been rejected.
|
|
18
|
+
// description:
|
|
19
|
+
// Takes multiple promises and returns a new promise that is fulfilled
|
|
20
|
+
// when all promises have been resolved or one has been rejected. If one of
|
|
21
|
+
// the promises is rejected, the returned promise is also rejected. Canceling
|
|
22
|
+
// the returned promise will *not* cancel any passed promises.
|
|
23
|
+
// objectOrArray: Object|Array?
|
|
24
|
+
// The promise will be fulfilled with a list of results if invoked with an
|
|
25
|
+
// array, or an object of results when passed an object (using the same
|
|
26
|
+
// keys). If passed neither an object or array it is resolved with an
|
|
27
|
+
// undefined value.
|
|
28
|
+
// returns: dojo/promise/Promise
|
|
29
|
+
|
|
30
|
+
var object, array;
|
|
31
|
+
if(lang.isArray(objectOrArray)){
|
|
32
|
+
array = objectOrArray;
|
|
33
|
+
}else if(objectOrArray && typeof objectOrArray === "object"){
|
|
34
|
+
object = objectOrArray;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
var results;
|
|
38
|
+
var keyLookup = [];
|
|
39
|
+
if(object){
|
|
40
|
+
array = [];
|
|
41
|
+
for(var key in object){
|
|
42
|
+
if(Object.hasOwnProperty.call(object, key)){
|
|
43
|
+
keyLookup.push(key);
|
|
44
|
+
array.push(object[key]);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
results = {};
|
|
48
|
+
}else if(array){
|
|
49
|
+
results = [];
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if(!array || !array.length){
|
|
53
|
+
return new Deferred().resolve(results);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
var deferred = new Deferred();
|
|
57
|
+
deferred.promise.always(function(){
|
|
58
|
+
results = keyLookup = null;
|
|
59
|
+
});
|
|
60
|
+
var waiting = array.length;
|
|
61
|
+
some(array, function(valueOrPromise, index){
|
|
62
|
+
if(!object){
|
|
63
|
+
keyLookup.push(index);
|
|
64
|
+
}
|
|
65
|
+
when(valueOrPromise, function(value){
|
|
66
|
+
if(!deferred.isFulfilled()){
|
|
67
|
+
results[keyLookup[index]] = value;
|
|
68
|
+
if(--waiting === 0){
|
|
69
|
+
deferred.resolve(results);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}, deferred.reject);
|
|
73
|
+
return deferred.isFulfilled();
|
|
74
|
+
});
|
|
75
|
+
return deferred.promise; // dojo/promise/Promise
|
|
76
|
+
};
|
|
77
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
|
|
3
|
+
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
|
4
|
+
see: http://dojotoolkit.org/license for details
|
|
5
|
+
*/
|
|
6
|
+
//>>built
|
|
7
|
+
define("dojo/regexp",["./_base/kernel","./_base/lang"],function(_1,_2){
|
|
8
|
+
var _3={};
|
|
9
|
+
_2.setObject("dojo.regexp",_3);
|
|
10
|
+
_3.escapeString=function(_4,_5){
|
|
11
|
+
return _4.replace(/([\.$?*|{}\(\)\[\]\\\/\+\-^])/g,function(ch){
|
|
12
|
+
if(_5&&_5.indexOf(ch)!=-1){
|
|
13
|
+
return ch;
|
|
14
|
+
}
|
|
15
|
+
return "\\"+ch;
|
|
16
|
+
});
|
|
17
|
+
};
|
|
18
|
+
_3.buildGroupRE=function(_6,re,_7){
|
|
19
|
+
if(!(_6 instanceof Array)){
|
|
20
|
+
return re(_6);
|
|
21
|
+
}
|
|
22
|
+
var b=[];
|
|
23
|
+
for(var i=0;i<_6.length;i++){
|
|
24
|
+
b.push(re(_6[i]));
|
|
25
|
+
}
|
|
26
|
+
return _3.group(b.join("|"),_7);
|
|
27
|
+
};
|
|
28
|
+
_3.group=function(_8,_9){
|
|
29
|
+
return "("+(_9?"?:":"")+_8+")";
|
|
30
|
+
};
|
|
31
|
+
return _3;
|
|
32
|
+
});
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
define("dojo/regexp", ["./_base/kernel", "./_base/lang"], function(dojo, lang){
|
|
2
|
+
|
|
3
|
+
// module:
|
|
4
|
+
// dojo/regexp
|
|
5
|
+
|
|
6
|
+
var regexp = {
|
|
7
|
+
// summary:
|
|
8
|
+
// Regular expressions and Builder resources
|
|
9
|
+
};
|
|
10
|
+
lang.setObject("dojo.regexp", regexp);
|
|
11
|
+
|
|
12
|
+
regexp.escapeString = function(/*String*/str, /*String?*/except){
|
|
13
|
+
// summary:
|
|
14
|
+
// Adds escape sequences for special characters in regular expressions
|
|
15
|
+
// except:
|
|
16
|
+
// a String with special characters to be left unescaped
|
|
17
|
+
|
|
18
|
+
return str.replace(/([\.$?*|{}\(\)\[\]\\\/\+\-^])/g, function(ch){
|
|
19
|
+
if(except && except.indexOf(ch) != -1){
|
|
20
|
+
return ch;
|
|
21
|
+
}
|
|
22
|
+
return "\\" + ch;
|
|
23
|
+
}); // String
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
regexp.buildGroupRE = function(/*Object|Array*/arr, /*Function*/re, /*Boolean?*/nonCapture){
|
|
27
|
+
// summary:
|
|
28
|
+
// Builds a regular expression that groups subexpressions
|
|
29
|
+
// description:
|
|
30
|
+
// A utility function used by some of the RE generators. The
|
|
31
|
+
// subexpressions are constructed by the function, re, in the second
|
|
32
|
+
// parameter. re builds one subexpression for each elem in the array
|
|
33
|
+
// a, in the first parameter. Returns a string for a regular
|
|
34
|
+
// expression that groups all the subexpressions.
|
|
35
|
+
// arr:
|
|
36
|
+
// A single value or an array of values.
|
|
37
|
+
// re:
|
|
38
|
+
// A function. Takes one parameter and converts it to a regular
|
|
39
|
+
// expression.
|
|
40
|
+
// nonCapture:
|
|
41
|
+
// If true, uses non-capturing match, otherwise matches are retained
|
|
42
|
+
// by regular expression. Defaults to false
|
|
43
|
+
|
|
44
|
+
// case 1: a is a single value.
|
|
45
|
+
if(!(arr instanceof Array)){
|
|
46
|
+
return re(arr); // String
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// case 2: a is an array
|
|
50
|
+
var b = [];
|
|
51
|
+
for(var i = 0; i < arr.length; i++){
|
|
52
|
+
// convert each elem to a RE
|
|
53
|
+
b.push(re(arr[i]));
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// join the REs as alternatives in a RE group.
|
|
57
|
+
return regexp.group(b.join("|"), nonCapture); // String
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
regexp.group = function(/*String*/expression, /*Boolean?*/nonCapture){
|
|
61
|
+
// summary:
|
|
62
|
+
// adds group match to expression
|
|
63
|
+
// nonCapture:
|
|
64
|
+
// If true, uses non-capturing match, otherwise matches are retained
|
|
65
|
+
// by regular expression.
|
|
66
|
+
return "(" + (nonCapture ? "?:":"") + expression + ")"; // String
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
return regexp;
|
|
70
|
+
});
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
|
|
3
|
+
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
|
4
|
+
see: http://dojotoolkit.org/license for details
|
|
5
|
+
*/
|
|
6
|
+
//>>built
|
|
7
|
+
define("dojo/request/iframe",["module","require","./watch","./util","./handlers","../_base/lang","../io-query","../query","../has","../dom","../dom-construct","../_base/window","../NodeList-dom","../NodeList-manipulate"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9,_a,_b,_c){
|
|
8
|
+
var _d=_1.id.replace(/[\/\.\-]/g,"_"),_e=_d+"_onload";
|
|
9
|
+
if(!_c.global[_e]){
|
|
10
|
+
_c.global[_e]=function(){
|
|
11
|
+
var _f=_10._currentDfd;
|
|
12
|
+
if(!_f){
|
|
13
|
+
_10._fireNextRequest();
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
var _11=_f.response,_12=_11.options,_13=_a.byId(_12.form)||_f._tmpForm;
|
|
17
|
+
if(_13){
|
|
18
|
+
var _14=_f._contentToClean;
|
|
19
|
+
for(var i=0;i<_14.length;i++){
|
|
20
|
+
var key=_14[i];
|
|
21
|
+
for(var j=0;j<_13.childNodes.length;j++){
|
|
22
|
+
var _15=_13.childNodes[j];
|
|
23
|
+
if(_15.name===key){
|
|
24
|
+
_b.destroy(_15);
|
|
25
|
+
break;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
_f._originalAction&&_13.setAttribute("action",_f._originalAction);
|
|
30
|
+
if(_f._originalMethod){
|
|
31
|
+
_13.setAttribute("method",_f._originalMethod);
|
|
32
|
+
_13.method=_f._originalMethod;
|
|
33
|
+
}
|
|
34
|
+
if(_f._originalTarget){
|
|
35
|
+
_13.setAttribute("target",_f._originalTarget);
|
|
36
|
+
_13.target=_f._originalTarget;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
if(_f._tmpForm){
|
|
40
|
+
_b.destroy(_f._tmpForm);
|
|
41
|
+
delete _f._tmpForm;
|
|
42
|
+
}
|
|
43
|
+
_f._finished=true;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
function _16(_17,_18,uri){
|
|
47
|
+
if(_c.global[_17]){
|
|
48
|
+
return _c.global[_17];
|
|
49
|
+
}
|
|
50
|
+
if(_c.global.frames[_17]){
|
|
51
|
+
return _c.global.frames[_17];
|
|
52
|
+
}
|
|
53
|
+
if(!uri){
|
|
54
|
+
if(_9("config-useXDomain")&&!_9("config-dojoBlankHtmlUrl")){
|
|
55
|
+
console.warn("dojo/request/iframe: When using cross-domain Dojo builds,"+" please save dojo/resources/blank.html to your domain and set dojoConfig.dojoBlankHtmlUrl"+" to the path on your domain to blank.html");
|
|
56
|
+
}
|
|
57
|
+
uri=(_9("config-dojoBlankHtmlUrl")||_2.toUrl("dojo/resources/blank.html"));
|
|
58
|
+
}
|
|
59
|
+
var _19=_b.place("<iframe id=\""+_17+"\" name=\""+_17+"\" src=\""+uri+"\" onload=\""+_18+"\" style=\"position: absolute; left: 1px; top: 1px; height: 1px; width: 1px; visibility: hidden\">",_c.body());
|
|
60
|
+
_c.global[_17]=_19;
|
|
61
|
+
return _19;
|
|
62
|
+
};
|
|
63
|
+
function _1a(_1b,src,_1c){
|
|
64
|
+
var _1d=_c.global.frames[_1b.name];
|
|
65
|
+
if(_1d.contentWindow){
|
|
66
|
+
_1d=_1d.contentWindow;
|
|
67
|
+
}
|
|
68
|
+
try{
|
|
69
|
+
if(!_1c){
|
|
70
|
+
_1d.location=src;
|
|
71
|
+
}else{
|
|
72
|
+
_1d.location.replace(src);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
catch(e){
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
function doc(_1e){
|
|
79
|
+
if(_1e.contentDocument){
|
|
80
|
+
return _1e.contentDocument;
|
|
81
|
+
}
|
|
82
|
+
var _1f=_1e.name;
|
|
83
|
+
if(_1f){
|
|
84
|
+
var _20=_c.doc.getElementsByTagName("iframe");
|
|
85
|
+
if(_1e.document&&_20[_1f].contentWindow&&_20[_1f].contentWindow.document){
|
|
86
|
+
return _20[_1f].contentWindow.document;
|
|
87
|
+
}else{
|
|
88
|
+
if(_c.doc.frames[_1f]&&_c.doc.frames[_1f].document){
|
|
89
|
+
return _c.doc.frames[_1f].document;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
return null;
|
|
94
|
+
};
|
|
95
|
+
function _21(){
|
|
96
|
+
return _b.create("form",{name:_d+"_form",style:{position:"absolute",top:"-1000px",left:"-1000px"}},_c.body());
|
|
97
|
+
};
|
|
98
|
+
function _22(){
|
|
99
|
+
var dfd;
|
|
100
|
+
try{
|
|
101
|
+
if(_10._currentDfd||!_10._dfdQueue.length){
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
do{
|
|
105
|
+
dfd=_10._currentDfd=_10._dfdQueue.shift();
|
|
106
|
+
}while(dfd&&(dfd.canceled||(dfd.isCanceled&&dfd.isCanceled()))&&_10._dfdQueue.length);
|
|
107
|
+
if(!dfd||dfd.canceled||(dfd.isCanceled&&dfd.isCanceled())){
|
|
108
|
+
_10._currentDfd=null;
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
var _23=dfd.response,_24=_23.options,c2c=dfd._contentToClean=[],_25=_a.byId(_24.form),_26=_4.notify,_27=_24.data||null,_28;
|
|
112
|
+
if(!dfd._legacy&&_24.method==="POST"&&!_25){
|
|
113
|
+
_25=dfd._tmpForm=_21();
|
|
114
|
+
}else{
|
|
115
|
+
if(_24.method==="GET"&&_25&&_23.url.indexOf("?")>-1){
|
|
116
|
+
_28=_23.url.slice(_23.url.indexOf("?")+1);
|
|
117
|
+
_27=_6.mixin(_7.queryToObject(_28),_27);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
if(_25){
|
|
121
|
+
if(!dfd._legacy){
|
|
122
|
+
var _29=_25;
|
|
123
|
+
do{
|
|
124
|
+
_29=_29.parentNode;
|
|
125
|
+
}while(_29&&_29!==_c.doc.documentElement);
|
|
126
|
+
if(!_29){
|
|
127
|
+
_25.style.position="absolute";
|
|
128
|
+
_25.style.left="-1000px";
|
|
129
|
+
_25.style.top="-1000px";
|
|
130
|
+
_c.body().appendChild(_25);
|
|
131
|
+
}
|
|
132
|
+
if(!_25.name){
|
|
133
|
+
_25.name=_d+"_form";
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
if(_27){
|
|
137
|
+
var _2a=function(_2b,_2c){
|
|
138
|
+
_b.create("input",{type:"hidden",name:_2b,value:_2c},_25);
|
|
139
|
+
c2c.push(_2b);
|
|
140
|
+
};
|
|
141
|
+
for(var x in _27){
|
|
142
|
+
var val=_27[x];
|
|
143
|
+
if(_6.isArray(val)&&val.length>1){
|
|
144
|
+
for(var i=0;i<val.length;i++){
|
|
145
|
+
_2a(x,val[i]);
|
|
146
|
+
}
|
|
147
|
+
}else{
|
|
148
|
+
var n=_8("input[name='"+x+"']",_25);
|
|
149
|
+
if(n.indexOf()==-1){
|
|
150
|
+
_2a(x,val);
|
|
151
|
+
}else{
|
|
152
|
+
n.val(val);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
var _2d=_25.getAttributeNode("action"),_2e=_25.getAttributeNode("method"),_2f=_25.getAttributeNode("target");
|
|
158
|
+
if(_23.url){
|
|
159
|
+
dfd._originalAction=_2d?_2d.value:null;
|
|
160
|
+
if(_2d){
|
|
161
|
+
_2d.value=_23.url;
|
|
162
|
+
}else{
|
|
163
|
+
_25.setAttribute("action",_23.url);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
if(!dfd._legacy){
|
|
167
|
+
dfd._originalMethod=_2e?_2e.value:null;
|
|
168
|
+
if(_2e){
|
|
169
|
+
_2e.value=_24.method;
|
|
170
|
+
}else{
|
|
171
|
+
_25.setAttribute("method",_24.method);
|
|
172
|
+
}
|
|
173
|
+
}else{
|
|
174
|
+
if(!_2e||!_2e.value){
|
|
175
|
+
if(_2e){
|
|
176
|
+
_2e.value=_24.method;
|
|
177
|
+
}else{
|
|
178
|
+
_25.setAttribute("method",_24.method);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
dfd._originalTarget=_2f?_2f.value:null;
|
|
183
|
+
if(_2f){
|
|
184
|
+
_2f.value=_10._iframeName;
|
|
185
|
+
}else{
|
|
186
|
+
_25.setAttribute("target",_10._iframeName);
|
|
187
|
+
}
|
|
188
|
+
_25.target=_10._iframeName;
|
|
189
|
+
_26&&_26.emit("send",_23,dfd.promise.cancel);
|
|
190
|
+
_10._notifyStart(_23);
|
|
191
|
+
_25.submit();
|
|
192
|
+
}else{
|
|
193
|
+
var _30="";
|
|
194
|
+
if(_23.options.data){
|
|
195
|
+
_30=_23.options.data;
|
|
196
|
+
if(typeof _30!=="string"){
|
|
197
|
+
_30=_7.objectToQuery(_30);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
var _31=_23.url+(_23.url.indexOf("?")>-1?"&":"?")+_30;
|
|
201
|
+
_26&&_26.emit("send",_23,dfd.promise.cancel);
|
|
202
|
+
_10._notifyStart(_23);
|
|
203
|
+
_10.setSrc(_10._frame,_31,true);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
catch(e){
|
|
207
|
+
dfd.reject(e);
|
|
208
|
+
}
|
|
209
|
+
};
|
|
210
|
+
function _32(_33){
|
|
211
|
+
return !this.isFulfilled();
|
|
212
|
+
};
|
|
213
|
+
function _34(_35){
|
|
214
|
+
return !!this._finished;
|
|
215
|
+
};
|
|
216
|
+
function _36(_37,_38){
|
|
217
|
+
if(!_38){
|
|
218
|
+
try{
|
|
219
|
+
var _39=_37.options,doc=_10.doc(_10._frame),_3a=_39.handleAs;
|
|
220
|
+
if(_3a!=="html"){
|
|
221
|
+
if(_3a==="xml"){
|
|
222
|
+
if(doc.documentElement.tagName.toLowerCase()==="html"){
|
|
223
|
+
_8("a",doc.documentElement).orphan();
|
|
224
|
+
var _3b=doc.documentElement.innerText||doc.documentElement.textContent;
|
|
225
|
+
_3b=_3b.replace(/>\s+</g,"><");
|
|
226
|
+
_37.text=_6.trim(_3b);
|
|
227
|
+
}else{
|
|
228
|
+
_37.data=doc;
|
|
229
|
+
}
|
|
230
|
+
}else{
|
|
231
|
+
_37.text=doc.getElementsByTagName("textarea")[0].value;
|
|
232
|
+
}
|
|
233
|
+
_5(_37);
|
|
234
|
+
}else{
|
|
235
|
+
_37.data=doc;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
catch(e){
|
|
239
|
+
_38=e;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
if(_38){
|
|
243
|
+
this.reject(_38);
|
|
244
|
+
}else{
|
|
245
|
+
if(this._finished){
|
|
246
|
+
this.resolve(_37);
|
|
247
|
+
}else{
|
|
248
|
+
this.reject(new Error("Invalid dojo/request/iframe request state"));
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
};
|
|
252
|
+
function _3c(_3d){
|
|
253
|
+
this._callNext();
|
|
254
|
+
};
|
|
255
|
+
var _3e={method:"POST"};
|
|
256
|
+
function _10(url,_3f,_40){
|
|
257
|
+
var _41=_4.parseArgs(url,_4.deepCreate(_3e,_3f),true);
|
|
258
|
+
url=_41.url;
|
|
259
|
+
_3f=_41.options;
|
|
260
|
+
if(_3f.method!=="GET"&&_3f.method!=="POST"){
|
|
261
|
+
throw new Error(_3f.method+" not supported by dojo/request/iframe");
|
|
262
|
+
}
|
|
263
|
+
if(!_10._frame){
|
|
264
|
+
_10._frame=_10.create(_10._iframeName,_e+"();");
|
|
265
|
+
}
|
|
266
|
+
var dfd=_4.deferred(_41,null,_32,_34,_36,_3c);
|
|
267
|
+
dfd._callNext=function(){
|
|
268
|
+
if(!this._calledNext){
|
|
269
|
+
this._calledNext=true;
|
|
270
|
+
_10._currentDfd=null;
|
|
271
|
+
_10._fireNextRequest();
|
|
272
|
+
}
|
|
273
|
+
};
|
|
274
|
+
dfd._legacy=_40;
|
|
275
|
+
_10._dfdQueue.push(dfd);
|
|
276
|
+
_10._fireNextRequest();
|
|
277
|
+
_3(dfd);
|
|
278
|
+
return _40?dfd:dfd.promise;
|
|
279
|
+
};
|
|
280
|
+
_10.create=_16;
|
|
281
|
+
_10.doc=doc;
|
|
282
|
+
_10.setSrc=_1a;
|
|
283
|
+
_10._iframeName=_d+"_IoIframe";
|
|
284
|
+
_10._notifyStart=function(){
|
|
285
|
+
};
|
|
286
|
+
_10._dfdQueue=[];
|
|
287
|
+
_10._currentDfd=null;
|
|
288
|
+
_10._fireNextRequest=_22;
|
|
289
|
+
_4.addCommonMethods(_10,["GET","POST"]);
|
|
290
|
+
return _10;
|
|
291
|
+
});
|