dojo_src 1.4.102 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -3
- data/bin/dojofy +1 -1
- data/dojo/dijit/Calendar.js +62 -24
- data/dojo/dijit/CheckedMenuItem.js +1 -1
- data/dojo/dijit/ColorPalette.js +43 -288
- data/dojo/dijit/Dialog.js +25 -24
- data/dojo/dijit/DialogUnderlay.js +3 -1
- data/dojo/dijit/Editor.js +229 -68
- data/dojo/dijit/InlineEditBox.js +72 -35
- data/dojo/dijit/LICENSE +1 -1
- data/dojo/dijit/Menu.js +75 -76
- data/dojo/dijit/MenuBar.js +5 -10
- data/dojo/dijit/MenuItem.js +18 -11
- data/dojo/dijit/PopupMenuItem.js +1 -0
- data/dojo/dijit/ProgressBar.js +1 -1
- data/dojo/dijit/TitlePane.js +18 -38
- data/dojo/dijit/Toolbar.js +4 -1
- data/dojo/dijit/ToolbarSeparator.js +1 -1
- data/dojo/dijit/Tooltip.js +7 -14
- data/dojo/dijit/Tree.js +116 -64
- data/dojo/dijit/_Container.js +5 -11
- data/dojo/dijit/_CssStateMixin.js +252 -0
- data/dojo/dijit/_DialogMixin.js +3 -1
- data/dojo/dijit/_HasDropDown.js +48 -58
- data/dojo/dijit/_KeyNavContainer.js +4 -4
- data/dojo/dijit/_PaletteMixin.js +313 -0
- data/dojo/dijit/_Templated.js +2 -1
- data/dojo/dijit/_TimePicker.js +11 -6
- data/dojo/dijit/_Widget.js +125 -63
- data/dojo/dijit/_base/focus.js +15 -9
- data/dojo/dijit/_base/manager.js +210 -183
- data/dojo/dijit/_base/place.js +3 -52
- data/dojo/dijit/_base/popup.js +101 -89
- data/dojo/dijit/_base/scroll.js +4 -91
- data/dojo/dijit/_base/sniff.js +3 -66
- data/dojo/dijit/_base/typematic.js +31 -27
- data/dojo/dijit/_base/window.js +3 -23
- data/dojo/dijit/_editor/RichText.js +180 -74
- data/dojo/dijit/_editor/_Plugin.js +17 -16
- data/dojo/dijit/_editor/html.js +1 -1
- data/dojo/dijit/_editor/nls/FontChoice.js +2 -1
- data/dojo/dijit/_editor/nls/ar/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/ar/commands.js +12 -6
- data/dojo/dijit/_editor/nls/ca/LinkDialog.js +8 -3
- data/dojo/dijit/_editor/nls/ca/commands.js +4 -0
- data/dojo/dijit/_editor/nls/da/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/da/commands.js +6 -1
- data/dojo/dijit/_editor/nls/el/LinkDialog.js +8 -2
- data/dojo/dijit/_editor/nls/el/commands.js +7 -2
- data/dojo/dijit/_editor/nls/fi/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/fi/commands.js +7 -2
- data/dojo/dijit/_editor/nls/he/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/he/commands.js +9 -2
- data/dojo/dijit/_editor/nls/ja/commands.js +9 -10
- data/dojo/dijit/_editor/nls/nb/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/nb/commands.js +5 -0
- data/dojo/dijit/_editor/nls/nl/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/nl/commands.js +5 -0
- data/dojo/dijit/_editor/nls/pt-pt/LinkDialog.js +8 -2
- data/dojo/dijit/_editor/nls/pt-pt/commands.js +5 -0
- data/dojo/dijit/_editor/nls/ro/FontChoice.js +27 -0
- data/dojo/dijit/_editor/nls/ro/LinkDialog.js +13 -0
- data/dojo/dijit/_editor/nls/ro/commands.js +48 -0
- data/dojo/dijit/_editor/nls/sk/LinkDialog.js +9 -4
- data/dojo/dijit/_editor/nls/sk/commands.js +4 -0
- data/dojo/dijit/_editor/nls/sl/LinkDialog.js +6 -1
- data/dojo/dijit/_editor/nls/sl/commands.js +12 -8
- data/dojo/dijit/_editor/nls/sv/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/sv/commands.js +8 -2
- data/dojo/dijit/_editor/nls/th/LinkDialog.js +6 -1
- data/dojo/dijit/_editor/nls/th/commands.js +6 -2
- data/dojo/dijit/_editor/nls/tr/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/tr/commands.js +5 -0
- data/dojo/dijit/_editor/nls/zh-tw/LinkDialog.js +1 -1
- data/dojo/dijit/_editor/nls/zh/commands.js +3 -3
- data/dojo/dijit/_editor/plugins/AlwaysShowToolbar.js +2 -2
- data/dojo/dijit/_editor/plugins/EnterKeyHandling.js +85 -4
- data/dojo/dijit/_editor/plugins/FontChoice.js +194 -32
- data/dojo/dijit/_editor/plugins/FullScreen.js +76 -32
- data/dojo/dijit/_editor/plugins/LinkDialog.js +79 -22
- data/dojo/dijit/_editor/plugins/NewPage.js +7 -2
- data/dojo/dijit/_editor/plugins/Print.js +6 -3
- data/dojo/dijit/_editor/plugins/TabIndent.js +2 -2
- data/dojo/dijit/_editor/plugins/TextColor.js +75 -23
- data/dojo/dijit/_editor/plugins/ToggleDir.js +1 -1
- data/dojo/dijit/_editor/plugins/ViewSource.js +53 -28
- data/dojo/dijit/_editor/range.js +22 -19
- data/dojo/dijit/_editor/selection.js +56 -4
- data/dojo/dijit/dijit-all.js +5 -1
- data/dojo/dijit/form/Button.js +24 -58
- data/dojo/dijit/form/CheckBox.js +27 -19
- data/dojo/dijit/form/ComboBox.js +73 -54
- data/dojo/dijit/form/CurrencyTextBox.js +8 -5
- data/dojo/dijit/form/FilteringSelect.js +14 -6
- data/dojo/dijit/form/Form.js +26 -16
- data/dojo/dijit/form/HorizontalRuleLabels.js +2 -2
- data/dojo/dijit/form/HorizontalSlider.js +12 -1
- data/dojo/dijit/form/MultiSelect.js +3 -3
- data/dojo/dijit/form/NumberSpinner.js +4 -5
- data/dojo/dijit/form/NumberTextBox.js +25 -17
- data/dojo/dijit/form/Select.js +24 -18
- data/dojo/dijit/form/SimpleTextarea.js +2 -2
- data/dojo/dijit/form/TextBox.js +72 -12
- data/dojo/dijit/form/Textarea.js +8 -1
- data/dojo/dijit/form/TimeTextBox.js +3 -2
- data/dojo/dijit/form/ValidationTextBox.js +56 -42
- data/dojo/dijit/form/VerticalRuleLabels.js +4 -1
- data/dojo/dijit/form/VerticalSlider.js +0 -30
- data/dojo/dijit/form/_DateTimeTextBox.js +23 -17
- data/dojo/dijit/form/_FormMixin.js +23 -19
- data/dojo/dijit/form/_FormSelectWidget.js +3 -3
- data/dojo/dijit/form/_FormWidget.js +66 -164
- data/dojo/dijit/form/_Spinner.js +18 -37
- data/dojo/dijit/form/nls/ro/ComboBox.js +5 -0
- data/dojo/dijit/form/nls/ro/Textarea.js +8 -0
- data/dojo/dijit/form/nls/ro/validate.js +6 -0
- data/dojo/dijit/form/templates/Button.html +15 -16
- data/dojo/dijit/form/templates/CheckBox.html +3 -3
- data/dojo/dijit/form/templates/ComboBox.html +13 -14
- data/dojo/dijit/form/templates/ComboButton.html +13 -10
- data/dojo/dijit/form/templates/DropDownButton.html +18 -20
- data/dojo/dijit/form/templates/HorizontalSlider.html +7 -7
- data/dojo/dijit/form/templates/Select.html +7 -8
- data/dojo/dijit/form/templates/Spinner.html +23 -24
- data/dojo/dijit/form/templates/TextBox.html +6 -4
- data/dojo/dijit/form/templates/ValidationTextBox.html +8 -10
- data/dojo/dijit/form/templates/VerticalSlider.html +8 -9
- data/dojo/dijit/icons/commonIcons.css +164 -0
- data/dojo/dijit/icons/commonIcons_rtl.css +127 -0
- data/dojo/dijit/icons/editorIcons.css +78 -0
- data/dojo/dijit/icons/editorIcons_rtl.css +23 -0
- data/dojo/dijit/icons/images/commonIconsObjActDisabled.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActDisabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled8bit.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled8bit_rtl.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/editorIconsDisabled.png +0 -0
- data/dojo/dijit/icons/images/editorIconsDisabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/editorIconsEnabled.png +0 -0
- data/dojo/dijit/icons/images/editorIconsEnabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/loadingAnimation_rtl.gif +0 -0
- data/dojo/dijit/layout/AccordionContainer.js +214 -104
- data/dojo/dijit/layout/BorderContainer.js +50 -38
- data/dojo/dijit/layout/ContentPane.js +13 -11
- data/dojo/dijit/layout/ScrollingTabController.js +29 -28
- data/dojo/dijit/layout/SplitContainer.js +0 -1
- data/dojo/dijit/layout/StackContainer.js +15 -22
- data/dojo/dijit/layout/StackController.js +15 -18
- data/dojo/dijit/layout/TabContainer.js +2 -0
- data/dojo/dijit/layout/TabController.js +21 -17
- data/dojo/dijit/layout/_LayoutWidget.js +0 -1
- data/dojo/dijit/layout/templates/AccordionButton.html +5 -3
- data/dojo/dijit/layout/templates/ScrollingTabController.html +13 -8
- data/dojo/dijit/layout/templates/_ScrollingTabControllerButton.html +4 -5
- data/dojo/dijit/layout/templates/_TabButton.html +10 -9
- data/dojo/dijit/nls/ro/common.js +7 -0
- data/dojo/dijit/nls/ro/loading.js +5 -0
- data/dojo/dijit/robot.js +0 -97
- data/dojo/dijit/robotx.js +1 -1
- data/dojo/dijit/templates/Calendar.html +6 -6
- data/dojo/dijit/templates/CheckedMenuItem.html +3 -4
- data/dojo/dijit/templates/ColorPalette.html +4 -3
- data/dojo/dijit/templates/Dialog.html +1 -1
- data/dojo/dijit/templates/Menu.html +1 -1
- data/dojo/dijit/templates/MenuBarItem.html +1 -1
- data/dojo/dijit/templates/MenuItem.html +3 -3
- data/dojo/dijit/templates/MenuSeparator.html +6 -2
- data/dojo/dijit/templates/ProgressBar.html +1 -2
- data/dojo/dijit/templates/TimePicker.html +1 -1
- data/dojo/dijit/templates/TitlePane.html +8 -6
- data/dojo/dijit/templates/TreeNode.html +3 -3
- data/dojo/dijit/tests/Tree.html +16 -30
- data/dojo/dijit/tests/Tree_with_JRS.html +33 -27
- data/dojo/dijit/tests/Widget-placeAt.html +6 -6
- data/dojo/dijit/tests/_Container.html +1 -1
- data/dojo/dijit/tests/_Templated-widgetsInTemplate.html +2 -2
- data/dojo/dijit/tests/_Widget-attr.html +26 -7
- data/dojo/dijit/tests/_Widget-connect-performance.html +1 -1
- data/dojo/dijit/tests/_Widget-deferredConnect.html +1 -1
- data/dojo/dijit/tests/_Widget-lifecycle.html +1 -1
- data/dojo/dijit/tests/_Widget-ondijitclick.html +1 -1
- data/dojo/dijit/tests/_Widget-subscribe.html +1 -1
- data/dojo/dijit/tests/_altCalendar.html +12 -11
- data/dojo/dijit/tests/_base/module.js +5 -9
- data/dojo/dijit/tests/_base/place.html +2 -1
- data/dojo/dijit/tests/_base/robot/FocusManager.html +0 -2
- data/dojo/dijit/tests/_base/robot/focus_mouse.html +0 -1
- data/dojo/dijit/tests/_base/robot/popup.html +0 -1
- data/dojo/dijit/tests/_base/robot/typematic.html +72 -0
- data/dojo/dijit/tests/_base/tabindex.html +1 -1
- data/dojo/dijit/tests/_base/test_FocusManager.html +3 -2
- data/dojo/dijit/tests/_base/test_focusWidget.html +1 -1
- data/dojo/dijit/tests/_base/test_typematic.html +10 -3
- data/dojo/dijit/tests/_testCommon.js +28 -12
- data/dojo/dijit/tests/bidi.html +188 -0
- data/dojo/dijit/tests/editor/BackForwardState.html +2 -2
- data/dojo/dijit/tests/editor/EnterKeyHandling.html +31 -11
- data/dojo/dijit/tests/editor/_Editor.html +5 -4
- data/dojo/dijit/tests/editor/nls_8859-2.html +4 -4
- data/dojo/dijit/tests/editor/nls_sjis.html +5 -5
- data/dojo/dijit/tests/editor/nls_utf8.html +2 -2
- data/dojo/dijit/tests/editor/robot/BackForwardState.html +8 -9
- data/dojo/dijit/tests/editor/robot/Editor_FontChoice.html +282 -757
- data/dojo/dijit/tests/editor/robot/Editor_FullScreen.html +55 -55
- data/dojo/dijit/tests/editor/robot/Editor_LinkDialog.html +502 -123
- data/dojo/dijit/tests/editor/robot/Editor_NewPage.html +11 -11
- data/dojo/dijit/tests/editor/robot/Editor_ViewSource.html +56 -56
- data/dojo/dijit/tests/editor/robot/Editor_a11y.html +14 -14
- data/dojo/dijit/tests/editor/robot/Editor_misc.html +120 -4
- data/dojo/dijit/tests/editor/robot/Editor_mouse.html +4 -4
- data/dojo/dijit/tests/editor/robot/EnterKeyHandling.html +128 -16
- data/dojo/dijit/tests/editor/test_CustomPlugin.html +4 -4
- data/dojo/dijit/tests/editor/test_Editor.html +103 -70
- data/dojo/dijit/tests/editor/test_FontChoice.html +19 -5
- data/dojo/dijit/tests/editor/test_FullScreen.html +2 -2
- data/dojo/dijit/tests/editor/test_LinkDialog.html +2 -2
- data/dojo/dijit/tests/editor/test_NewPage.html +2 -2
- data/dojo/dijit/tests/editor/test_Print.html +2 -2
- data/dojo/dijit/tests/editor/test_TabIndent.html +2 -2
- data/dojo/dijit/tests/editor/test_ToggleDir.html +2 -2
- data/dojo/dijit/tests/editor/test_ToggleDir_rtl.html +2 -2
- data/dojo/dijit/tests/editor/test_ViewSource.html +2 -2
- data/dojo/dijit/tests/editor/test_resize.html +1 -1
- data/dojo/dijit/tests/form/Form.html +30 -16
- data/dojo/dijit/tests/form/FormInvalid.html +4 -4
- data/dojo/dijit/tests/form/TextBox_sizes.html +532 -0
- data/dojo/dijit/tests/form/TextBox_sizes.js +456 -0
- data/dojo/dijit/tests/form/_autoComplete.html +35 -15
- data/dojo/dijit/tests/form/module.js +25 -1
- data/dojo/dijit/tests/form/robot/Button_a11y.html +27 -14
- data/dojo/dijit/tests/form/robot/Button_mouse.html +429 -18
- data/dojo/dijit/tests/form/robot/DateTextBox.html +31 -34
- data/dojo/dijit/tests/form/robot/Form.html +3 -4
- data/dojo/dijit/tests/form/robot/Select.html +410 -0
- data/dojo/dijit/tests/form/robot/Slider_a11y.html +27 -28
- data/dojo/dijit/tests/form/robot/Slider_mouse.html +29 -29
- data/dojo/dijit/tests/form/robot/Spinner_a11y.html +88 -51
- data/dojo/dijit/tests/form/robot/Spinner_mouse.html +36 -37
- data/dojo/dijit/tests/form/robot/Textarea.html +178 -0
- data/dojo/dijit/tests/form/robot/TimeTextBox.html +81 -0
- data/dojo/dijit/tests/form/robot/_autoComplete_a11y.html +128 -47
- data/dojo/dijit/tests/form/robot/_autoComplete_mouse.html +171 -24
- data/dojo/dijit/tests/form/robot/test_validate.html +362 -102
- data/dojo/dijit/tests/form/robot/validationMessages.html +470 -0
- data/dojo/dijit/tests/form/runTests.html +9 -0
- data/dojo/dijit/tests/form/test_Button.html +56 -10
- data/dojo/dijit/tests/form/test_CheckBox.html +212 -61
- data/dojo/dijit/tests/form/test_ComboBox_destroy.html +2 -2
- data/dojo/dijit/tests/form/test_DateTextBox.html +17 -12
- data/dojo/dijit/tests/form/test_Form_onsubmit.html +2 -2
- data/dojo/dijit/tests/form/test_MultiSelect.html +7 -7
- data/dojo/dijit/tests/form/test_Select.html +180 -97
- data/dojo/dijit/tests/form/test_SimpleTextarea.html +16 -11
- data/dojo/dijit/tests/form/test_Slider.html +4 -4
- data/dojo/dijit/tests/form/test_Spinner.html +10 -11
- data/dojo/dijit/tests/form/test_Textarea.html +80 -76
- data/dojo/dijit/tests/form/test_TimeTextBox.html +2 -2
- data/dojo/dijit/tests/form/test_validStatePerformance.html +6 -6
- data/dojo/dijit/tests/form/test_validate.html +34 -23
- data/dojo/dijit/tests/form/test_validationState.html +8 -8
- data/dojo/dijit/tests/general-module.js +1 -0
- data/dojo/dijit/tests/helpers.js +2 -2
- data/dojo/dijit/tests/i18n/calendar.html +2 -2
- data/dojo/dijit/tests/i18n/currency.html +1 -1
- data/dojo/dijit/tests/i18n/date.html +1 -1
- data/dojo/dijit/tests/i18n/digit.html +1 -1
- data/dojo/dijit/tests/i18n/module.js +6 -6
- data/dojo/dijit/tests/i18n/number.html +1 -1
- data/dojo/dijit/tests/i18n/textbox.html +1 -1
- data/dojo/dijit/tests/i18n/time.html +1 -1
- data/dojo/dijit/tests/images/copy.gif +0 -0
- data/dojo/dijit/tests/images/cut.gif +0 -0
- data/dojo/dijit/tests/images/note.gif +0 -0
- data/dojo/dijit/tests/images/paste.gif +0 -0
- data/dojo/dijit/tests/infrastructure-module.js +7 -7
- data/dojo/dijit/tests/layout/AccordionContainer.html +81 -23
- data/dojo/dijit/tests/layout/ContentPane.html +40 -40
- data/dojo/dijit/tests/layout/ContentPaneLayout.html +6 -6
- data/dojo/dijit/tests/layout/TabContainer.html +20 -20
- data/dojo/dijit/tests/layout/getResponse.php +1 -1
- data/dojo/dijit/tests/layout/module.js +9 -2
- data/dojo/dijit/tests/layout/nestedStack.html +1 -1
- data/dojo/dijit/tests/layout/robot/AccordionContainer_a11y.html +68 -0
- data/dojo/dijit/tests/layout/robot/AccordionContainer_mouse.html +53 -0
- data/dojo/dijit/tests/layout/robot/BorderContainer.html +358 -0
- data/dojo/dijit/tests/layout/robot/TabContainer_a11y.html +29 -12
- data/dojo/dijit/tests/layout/robot/TabContainer_mouse.html +19 -13
- data/dojo/dijit/tests/layout/test_AccordionContainer.html +12 -8
- data/dojo/dijit/tests/layout/test_AccordionContainerDestroy.html +3 -3
- data/dojo/dijit/tests/layout/test_BorderContainer.html +21 -19
- data/dojo/dijit/tests/layout/test_BorderContainer_complex.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_experimental.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_full.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_nested.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_prog.html +2 -2
- data/dojo/dijit/tests/layout/test_ContentPane.html +7 -7
- data/dojo/dijit/tests/layout/test_ContentPane_prog.html +4 -4
- data/dojo/dijit/tests/layout/test_Gui.html +2 -2
- data/dojo/dijit/tests/layout/test_LayoutContainer.html +2 -2
- data/dojo/dijit/tests/layout/test_SplitContainer.html +1 -1
- data/dojo/dijit/tests/layout/test_StackContainer.html +6 -6
- data/dojo/dijit/tests/layout/test_StackContainer_code.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer.html +10 -10
- data/dojo/dijit/tests/layout/test_TabContainerTitlePane.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer_noLayout.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer_prog.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer_remote.html +2 -2
- data/dojo/dijit/tests/layout/test_refreshOnShow.html +2 -2
- data/dojo/dijit/tests/robot/Calendar_a11y.html +6 -7
- data/dojo/dijit/tests/robot/ColorPalette.html +38 -21
- data/dojo/dijit/tests/robot/Dialog_a11y.html +58 -17
- data/dojo/dijit/tests/robot/Dialog_mouse.html +0 -1
- data/dojo/dijit/tests/robot/InlineEditBox.html +135 -24
- data/dojo/dijit/tests/robot/Menu_a11y.html +7 -7
- data/dojo/dijit/tests/robot/Menu_mouse.html +2 -11
- data/dojo/dijit/tests/robot/TitlePane.html +20 -20
- data/dojo/dijit/tests/robot/Toolbar.html +3 -4
- data/dojo/dijit/tests/robot/TooltipDialog_a11y.html +233 -110
- data/dojo/dijit/tests/robot/TooltipDialog_mouse.html +121 -0
- data/dojo/dijit/tests/robot/Tooltip_a11y.html +15 -15
- data/dojo/dijit/tests/robot/Tooltip_mouse.html +0 -1
- data/dojo/dijit/tests/robot/Tree_a11y.html +74 -1
- data/dojo/dijit/tests/robot/Tree_dnd.html +5 -5
- data/dojo/dijit/tests/robot/Tree_dnd_multiParent.html +4 -4
- data/dojo/dijit/tests/robot/_Widget-deferredConnect.html +0 -1
- data/dojo/dijit/tests/robot/_Widget-ondijitclick_a11y.html +0 -1
- data/dojo/dijit/tests/robot/_Widget-ondijitclick_mouse.html +0 -1
- data/dojo/dijit/tests/test.html +1 -1
- data/dojo/dijit/tests/test_Calendar.html +4 -4
- data/dojo/dijit/tests/test_ColorPalette.html +3 -3
- data/dojo/dijit/tests/test_ColorPalette_quirks.html +5 -0
- data/dojo/dijit/tests/test_Declaration.html +2 -2
- data/dojo/dijit/tests/test_Dialog.html +65 -4
- data/dojo/dijit/tests/test_Dialog_focusDestroy.html +2 -2
- data/dojo/dijit/tests/test_InlineEditBox.html +14 -5
- data/dojo/dijit/tests/test_Menu.html +10 -8
- data/dojo/dijit/tests/test_Menu_iframe.html +1 -1
- data/dojo/dijit/tests/test_ProgressBar.html +2 -2
- data/dojo/dijit/tests/test_TitlePane.html +18 -18
- data/dojo/dijit/tests/test_Toolbar.html +2 -2
- data/dojo/dijit/tests/test_Tooltip.html +3 -3
- data/dojo/dijit/tests/test_TooltipDialog.html +20 -10
- data/dojo/dijit/tests/test_Tree.html +26 -20
- data/dojo/dijit/tests/test_Tree_Notification_API_Support.html +2 -2
- data/dojo/dijit/tests/test_bgIframe.html +2 -2
- data/dojo/dijit/tests/test_instantiate.html +2 -2
- data/dojo/dijit/tests/tree/module.js +2 -2
- data/dojo/dijit/tests/tree/test_CustomLabel.html +2 -2
- data/dojo/dijit/tests/tree/test_Tree_DnD.html +2 -2
- data/dojo/dijit/tests/tree/test_Tree_Programmatic.html +2 -2
- data/dojo/dijit/tests/tree/test_Tree_v1.html +3 -3
- data/dojo/dijit/themes/a11y/colors3x4-rtl.png +0 -0
- data/dojo/dijit/themes/a11y/colors3x4.png +0 -0
- data/dojo/dijit/themes/a11y/colors7x10-rtl.png +0 -0
- data/dojo/dijit/themes/a11y/colors7x10.png +0 -0
- data/dojo/dijit/themes/claro/Calendar.css +257 -0
- data/dojo/dijit/themes/claro/Calendar_rtl.css +19 -0
- data/dojo/dijit/themes/claro/ColorPalette.css +44 -0
- data/dojo/dijit/themes/claro/Common.css +79 -0
- data/dojo/dijit/themes/claro/Dialog.css +212 -0
- data/dojo/dijit/themes/claro/Dialog_rtl.css +10 -0
- data/dojo/dijit/themes/claro/Editor.css +56 -0
- data/dojo/dijit/themes/claro/Editor_rtl.css +7 -0
- data/dojo/dijit/themes/claro/InlineEditBox.css +23 -0
- data/dojo/dijit/themes/claro/Menu.css +182 -0
- data/dojo/dijit/themes/claro/Menu_rtl.css +9 -0
- data/dojo/dijit/themes/claro/ProgressBar.css +53 -0
- data/dojo/dijit/themes/claro/TimePicker.css +125 -0
- data/dojo/dijit/themes/claro/TimePicker_rtl.css +10 -0
- data/dojo/dijit/themes/claro/TitlePane.css +73 -0
- data/dojo/dijit/themes/claro/TitlePane_rtl.css +4 -0
- data/dojo/dijit/themes/claro/Toolbar.css +170 -0
- data/dojo/dijit/themes/claro/Tree.css +122 -0
- data/dojo/dijit/themes/claro/claro.css +29 -0
- data/dojo/dijit/themes/claro/claro_rtl.css +15 -0
- data/dojo/dijit/themes/claro/document.css +109 -0
- data/dojo/dijit/themes/claro/form/Button.css +168 -0
- data/dojo/dijit/themes/claro/form/Button_rtl.css +22 -0
- data/dojo/dijit/themes/claro/form/Checkbox.css +77 -0
- data/dojo/dijit/themes/claro/form/Common.css +176 -0
- data/dojo/dijit/themes/claro/form/Common_rtl.css +10 -0
- data/dojo/dijit/themes/claro/form/NumberSpinner.css +143 -0
- data/dojo/dijit/themes/claro/form/RadioButton.css +82 -0
- data/dojo/dijit/themes/claro/form/Select.css +124 -0
- data/dojo/dijit/themes/claro/form/Select_rtl.css +4 -0
- data/dojo/dijit/themes/claro/form/Slider.css +359 -0
- data/dojo/dijit/themes/claro/form/Slider_rtl.css +31 -0
- data/dojo/dijit/themes/claro/form/images/button.png +0 -0
- data/dojo/dijit/themes/claro/form/images/buttonArrows.png +0 -0
- data/dojo/dijit/themes/claro/form/images/button_grad_d.png +0 -0
- data/dojo/dijit/themes/claro/form/images/checkboxAndRadioButtons_IE6.png +0 -0
- data/dojo/dijit/themes/claro/form/images/checkboxRadioButtonStates.png +0 -0
- data/dojo/dijit/themes/claro/form/images/commonFormArrows.png +0 -0
- data/dojo/dijit/themes/claro/form/images/error.png +0 -0
- data/dojo/dijit/themes/claro/form/images/formHighlight.png +0 -0
- data/dojo/dijit/themes/claro/form/images/shadow.png +0 -0
- data/dojo/dijit/themes/claro/form/images/sliderHorizontal.png +0 -0
- data/dojo/dijit/themes/claro/form/images/sliderThumbs.png +0 -0
- data/dojo/dijit/themes/claro/form/images/sliderVertical.png +0 -0
- data/dojo/dijit/themes/claro/form/images/textBox_back.png +0 -0
- data/dojo/dijit/themes/claro/images/calendarArrows.png +0 -0
- data/dojo/dijit/themes/claro/images/calendarArrows8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/calendarContainerImages.png +0 -0
- data/dojo/dijit/themes/claro/images/checkmarkNoBorder.gif +0 -0
- data/dojo/dijit/themes/claro/images/checkmarkNoBorder.png +0 -0
- data/dojo/dijit/themes/claro/images/commonHighlight.png +0 -0
- data/dojo/dijit/themes/claro/images/dialogCloseIcon.png +0 -0
- data/dojo/dijit/themes/claro/images/dialogCloseIcon8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/dnd.png +0 -0
- data/dojo/dijit/themes/claro/images/loading.gif +0 -0
- data/dojo/dijit/themes/claro/images/loadingAnimation.gif +0 -0
- data/dojo/dijit/themes/claro/images/menuHighlight.png +0 -0
- data/dojo/dijit/themes/claro/images/progressBarAnim.gif +0 -0
- data/dojo/dijit/themes/claro/images/progressBarEmpty.png +0 -0
- data/dojo/dijit/themes/claro/images/progressBarFull.png +0 -0
- data/dojo/dijit/themes/claro/images/spriteArrows.png +0 -0
- data/dojo/dijit/themes/claro/images/titlebar.png +0 -0
- data/dojo/dijit/themes/claro/images/tooltip.png +0 -0
- data/dojo/dijit/themes/claro/images/tooltip8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/treeExpandImages.png +0 -0
- data/dojo/dijit/themes/claro/images/treeExpandImages8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/treeExpand_loading.gif +0 -0
- data/dojo/dijit/themes/claro/layout/AccordionContainer.css +108 -0
- data/dojo/dijit/themes/claro/layout/BorderContainer.css +134 -0
- data/dojo/dijit/themes/claro/layout/ContentPane.css +40 -0
- data/dojo/dijit/themes/claro/layout/TabContainer.css +439 -0
- data/dojo/dijit/themes/claro/layout/TabContainer_rtl.css +77 -0
- data/dojo/dijit/themes/claro/layout/images/accordion.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/splitterHorizontalHover.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/splitterVerticalHover.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabBottom.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabClose.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabLeft.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabNested.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabRight.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabTop.png +0 -0
- data/dojo/dijit/themes/dijit.css +633 -452
- data/dojo/dijit/themes/dijit_rtl.css +70 -59
- data/dojo/dijit/themes/nihilo/Calendar.css +0 -14
- data/dojo/dijit/themes/nihilo/Dialog.css +2 -5
- data/dojo/dijit/themes/nihilo/Editor.css +3 -58
- data/dojo/dijit/themes/nihilo/Editor_rtl.css +2 -6
- data/dojo/dijit/themes/nihilo/TimePicker.css +1 -11
- data/dojo/dijit/themes/nihilo/TimePicker_rtl.css +4 -0
- data/dojo/dijit/themes/nihilo/TitlePane.css +3 -32
- data/dojo/dijit/themes/nihilo/Toolbar.css +2 -2
- data/dojo/dijit/themes/nihilo/Tree.css +2 -20
- data/dojo/dijit/themes/nihilo/Tree_rtl.css +10 -16
- data/dojo/dijit/themes/nihilo/form/Button.css +36 -20
- data/dojo/dijit/themes/nihilo/form/Common.css +11 -37
- data/dojo/dijit/themes/nihilo/form/Select.css +4 -11
- data/dojo/dijit/themes/nihilo/form/Slider.css +0 -8
- data/dojo/dijit/themes/nihilo/layout/AccordionContainer.css +2 -4
- data/dojo/dijit/themes/nihilo/layout/AccordionContainer_rtl.css +1 -1
- data/dojo/dijit/themes/nihilo/layout/TabContainer.css +12 -23
- data/dojo/dijit/themes/nihilo/nihilo.css +2 -1
- data/dojo/dijit/themes/nihilo/nihilo_rtl.css +3 -2
- data/dojo/dijit/themes/soria/Calendar.css +0 -14
- data/dojo/dijit/themes/soria/Dialog.css +2 -5
- data/dojo/dijit/themes/soria/Editor.css +3 -57
- data/dojo/dijit/themes/soria/Editor_rtl.css +2 -7
- data/dojo/dijit/themes/soria/TimePicker.css +0 -10
- data/dojo/dijit/themes/soria/TimePicker_rtl.css +4 -0
- data/dojo/dijit/themes/soria/TitlePane.css +4 -30
- data/dojo/dijit/themes/soria/Toolbar.css +2 -2
- data/dojo/dijit/themes/soria/Tree.css +3 -20
- data/dojo/dijit/themes/soria/Tree_rtl.css +11 -12
- data/dojo/dijit/themes/soria/form/Button.css +38 -29
- data/dojo/dijit/themes/soria/form/Common.css +10 -36
- data/dojo/dijit/themes/soria/form/Select.css +4 -11
- data/dojo/dijit/themes/soria/form/Slider.css +0 -8
- data/dojo/dijit/themes/soria/layout/AccordionContainer.css +2 -4
- data/dojo/dijit/themes/soria/layout/AccordionContainer_rtl.css +1 -1
- data/dojo/dijit/themes/soria/layout/TabContainer.css +17 -34
- data/dojo/dijit/themes/soria/soria.css +2 -2
- data/dojo/dijit/themes/soria/soria_rtl.css +3 -2
- data/dojo/dijit/themes/themeTester.html +215 -100
- data/dojo/dijit/themes/tundra/Calendar.css +9 -20
- data/dojo/dijit/themes/tundra/Calendar_rtl.css +2 -2
- data/dojo/dijit/themes/tundra/Dialog.css +6 -25
- data/dojo/dijit/themes/tundra/Dialog_rtl.css +1 -1
- data/dojo/dijit/themes/tundra/Editor.css +5 -58
- data/dojo/dijit/themes/tundra/Editor_rtl.css +4 -9
- data/dojo/dijit/themes/tundra/Menu.css +2 -2
- data/dojo/dijit/themes/tundra/Menu_rtl.css +1 -6
- data/dojo/dijit/themes/tundra/TimePicker.css +0 -10
- data/dojo/dijit/themes/tundra/TimePicker_rtl.css +4 -0
- data/dojo/dijit/themes/tundra/TitlePane.css +4 -38
- data/dojo/dijit/themes/tundra/TitlePane_rtl.css +1 -1
- data/dojo/dijit/themes/tundra/Toolbar.css +12 -2
- data/dojo/dijit/themes/tundra/Tree.css +3 -22
- data/dojo/dijit/themes/tundra/Tree_rtl.css +9 -9
- data/dojo/dijit/themes/tundra/form/Button.css +35 -59
- data/dojo/dijit/themes/tundra/form/Common.css +12 -84
- data/dojo/dijit/themes/tundra/form/RadioButton.css +11 -13
- data/dojo/dijit/themes/tundra/form/Select.css +15 -22
- data/dojo/dijit/themes/tundra/form/Slider.css +0 -7
- data/dojo/dijit/themes/tundra/form/Slider_rtl.css +12 -12
- data/dojo/dijit/themes/tundra/layout/AccordionContainer.css +2 -4
- data/dojo/dijit/themes/tundra/layout/SplitContainer.css +0 -4
- data/dojo/dijit/themes/tundra/layout/TabContainer.css +19 -44
- data/dojo/dijit/themes/tundra/layout/TabContainer_rtl.css +21 -9
- data/dojo/dijit/themes/tundra/tundra.css +2 -1
- data/dojo/dijit/themes/tundra/tundra_rtl.css +2 -1
- data/dojo/dijit/tree/TreeStoreModel.js +13 -12
- data/dojo/dojo/DeferredList.js +66 -78
- data/dojo/dojo/LICENSE +1 -1
- data/dojo/dojo/NodeList-fx.js +92 -18
- data/dojo/dojo/Stateful.js +123 -0
- data/dojo/dojo/_base.js +1 -1
- data/dojo/dojo/_base/Deferred.js +211 -301
- data/dojo/dojo/_base/NodeList.js +28 -5
- data/dojo/dojo/_base/_loader/bootstrap.js +5 -16
- data/dojo/dojo/_base/_loader/hostenv_browser.js +42 -24
- data/dojo/dojo/_base/connect.js +13 -13
- data/dojo/dojo/_base/declare.js +81 -17
- data/dojo/dojo/_base/fx.js +75 -77
- data/dojo/dojo/_base/html.js +20 -10
- data/dojo/dojo/_base/json.js +2 -1
- data/dojo/dojo/back.js +7 -0
- data/dojo/dojo/cache.js +7 -8
- data/dojo/dojo/cldr/monetary.js +7 -4
- data/dojo/dojo/cldr/nls/ar/gregorian.js +7 -3
- data/dojo/dojo/cldr/nls/ar/hebrew.js +12 -16
- data/dojo/dojo/cldr/nls/ar/islamic-civil.js +124 -49
- data/dojo/dojo/cldr/nls/ar/islamic.js +61 -70
- data/dojo/dojo/cldr/nls/buddhist.js +236 -0
- data/dojo/dojo/cldr/nls/ca/gregorian.js +152 -148
- data/dojo/dojo/cldr/nls/cs/gregorian.js +110 -100
- data/dojo/dojo/cldr/nls/cs/number.js +1 -1
- data/dojo/dojo/cldr/nls/currency.js +0 -1
- data/dojo/dojo/cldr/nls/da/gregorian.js +144 -145
- data/dojo/dojo/cldr/nls/de/gregorian.js +22 -24
- data/dojo/dojo/cldr/nls/el/gregorian.js +15 -14
- data/dojo/dojo/cldr/nls/en-au/gregorian.js +3 -0
- data/dojo/dojo/cldr/nls/en-ca/gregorian.js +10 -0
- data/dojo/dojo/cldr/nls/en/gregorian.js +12 -10
- data/dojo/dojo/cldr/nls/es/gregorian.js +19 -20
- data/dojo/dojo/cldr/nls/fi/gregorian.js +15 -14
- data/dojo/dojo/cldr/nls/fr/gregorian.js +15 -17
- data/dojo/dojo/cldr/nls/gregorian.js +14 -8
- data/dojo/dojo/cldr/nls/he/gregorian.js +48 -49
- data/dojo/dojo/cldr/nls/he/hebrew.js +23 -56
- data/dojo/dojo/cldr/nls/he/islamic.js +17 -19
- data/dojo/dojo/cldr/nls/hebrew.js +133 -124
- data/dojo/dojo/cldr/nls/hu/gregorian.js +20 -17
- data/dojo/dojo/cldr/nls/islamic.js +132 -129
- data/dojo/dojo/cldr/nls/it/gregorian.js +143 -145
- data/dojo/dojo/cldr/nls/ja/gregorian.js +17 -17
- data/dojo/dojo/cldr/nls/ko/gregorian.js +19 -19
- data/dojo/dojo/cldr/nls/nb/gregorian.js +141 -143
- data/dojo/dojo/cldr/nls/nl/gregorian.js +12 -14
- data/dojo/dojo/cldr/nls/pl/gregorian.js +149 -143
- data/dojo/dojo/cldr/nls/pt-pt/gregorian.js +83 -39
- data/dojo/dojo/cldr/nls/pt/gregorian.js +14 -16
- data/dojo/dojo/cldr/nls/ru/gregorian.js +138 -146
- data/dojo/dojo/cldr/nls/sk/gregorian.js +15 -6
- data/dojo/dojo/cldr/nls/sl/gregorian.js +12 -11
- data/dojo/dojo/cldr/nls/sv/gregorian.js +23 -17
- data/dojo/dojo/cldr/nls/th/buddhist.js +10 -13
- data/dojo/dojo/cldr/nls/th/gregorian.js +140 -136
- data/dojo/dojo/cldr/nls/tr/gregorian.js +13 -13
- data/dojo/dojo/cldr/nls/zh-tw/gregorian.js +15 -2
- data/dojo/dojo/cldr/nls/zh/gregorian.js +17 -14
- data/dojo/dojo/cldr/supplemental.js +10 -10
- data/dojo/dojo/currency.js +27 -14
- data/dojo/dojo/data/ItemFileReadStore.js +22 -21
- data/dojo/dojo/date/locale.js +9 -9
- data/dojo/dojo/date/stamp.js +3 -5
- data/dojo/dojo/dnd/Container.js +3 -1
- data/dojo/dojo/dnd/Manager.js +1 -1
- data/dojo/dojo/dnd/Moveable.js +2 -2
- data/dojo/dojo/dnd/Mover.js +5 -5
- data/dojo/dojo/dnd/Source.js +9 -8
- data/dojo/dojo/dnd/common.js +1 -1
- data/dojo/dojo/dojo.js +6 -18
- data/dojo/dojo/hash.js +20 -15
- data/dojo/dojo/html.js +7 -6
- data/dojo/dojo/nls/ro/colors.js +155 -0
- data/dojo/dojo/number.js +67 -56
- data/dojo/dojo/parser.js +167 -47
- data/dojo/dojo/resources/dojo.css +5 -6
- data/dojo/dojo/robot.js +85 -11
- data/dojo/dojo/tests/NodeList-fx.html +58 -38
- data/dojo/dojo/tests/Stateful.js +36 -0
- data/dojo/dojo/tests/_base/Deferred.js +95 -0
- data/dojo/dojo/tests/_base/NodeList.html +9 -1
- data/dojo/dojo/tests/_base/declare.js +65 -3
- data/dojo/dojo/tests/_base/fx.html +55 -49
- data/dojo/dojo/tests/_base/html.html +7 -0
- data/dojo/dojo/tests/_base/html_rtl.html +1 -0
- data/dojo/dojo/tests/cache.js +7 -0
- data/dojo/dojo/tests/currency.js +3 -2
- data/dojo/dojo/tests/date/locale.js +7 -3
- data/dojo/dojo/tests/date/stamp.js +4 -0
- data/dojo/dojo/tests/dnd/robot/test_dnd.html +1 -1
- data/dojo/dojo/tests/hash.js +26 -1
- data/dojo/dojo/tests/module.js +3 -0
- data/dojo/dojo/tests/number.js +7 -0
- data/dojo/dojo/tests/parser.html +90 -10
- data/dojo/dojo/tests/uacss.js +10 -0
- data/dojo/{dijit/tests/_base → dojo/tests/uacss}/sniffQuirks.html +5 -4
- data/dojo/{dijit/tests/_base → dojo/tests/uacss}/sniffStandards.html +4 -4
- data/dojo/dojo/tests/window.js +11 -0
- data/dojo/{dijit/tests/_base → dojo/tests/window}/test_scroll.html +155 -229
- data/dojo/{dijit/tests/_base/test_scrollStrictDTD.html → dojo/tests/window/test_scrollNoDTD.html} +30 -35
- data/dojo/{dijit/tests/_base/test_scrollNoDTD.html → dojo/tests/window/test_scrollStrictDTD.html} +30 -31
- data/dojo/{dijit/tests/_base → dojo/tests/window}/viewport.html +8 -10
- data/dojo/dojo/tests/window/viewportQuirks.html +5 -0
- data/dojo/dojo/uacss.js +63 -0
- data/dojo/dojo/window.js +132 -0
- data/dojo/dojox/LICENSE +1 -1
- data/dojo/dojox/atom/io/model.js +1 -1
- data/dojo/dojox/atom/widget/nls/ro/FeedEntryEditor.js +7 -0
- data/dojo/dojox/atom/widget/nls/ro/FeedEntryViewer.js +12 -0
- data/dojo/dojox/atom/widget/nls/ro/FeedViewerEntry.js +4 -0
- data/dojo/dojox/atom/widget/nls/ro/PeopleEditor.js +6 -0
- data/dojo/dojox/av/FLAudio.js +62 -49
- data/dojo/dojox/av/resources/audio.swf +0 -0
- data/dojo/dojox/av/tests/test_FLAudio.html +15 -9
- data/dojo/dojox/charting/Chart2D.js +609 -51
- data/dojo/dojox/charting/DataChart.js +72 -63
- data/dojo/dojox/charting/DataSeries.js +183 -0
- data/dojo/dojox/charting/Element.js +201 -3
- data/dojo/dojox/charting/Series.js +47 -4
- data/dojo/dojox/charting/Theme.js +590 -189
- data/dojo/dojox/charting/action2d/Base.js +31 -5
- data/dojo/dojox/charting/action2d/Highlight.js +37 -12
- data/dojo/dojox/charting/action2d/Magnify.js +39 -13
- data/dojo/dojox/charting/action2d/MoveSlice.js +42 -13
- data/dojo/dojox/charting/action2d/Shake.js +36 -12
- data/dojo/dojox/charting/action2d/Tooltip.js +205 -7
- data/dojo/dojox/charting/axis2d/Base.js +46 -7
- data/dojo/dojox/charting/axis2d/Default.js +414 -238
- data/dojo/dojox/charting/axis2d/Invisible.js +290 -0
- data/dojo/dojox/charting/axis2d/common.js +53 -7
- data/dojo/dojox/charting/plot2d/Areas.js +2 -0
- data/dojo/dojox/charting/plot2d/Bars.js +94 -63
- data/dojo/dojox/charting/plot2d/Base.js +143 -53
- data/dojo/dojox/charting/plot2d/Bubble.js +139 -65
- data/dojo/dojox/charting/plot2d/Candlesticks.js +143 -80
- data/dojo/dojox/charting/plot2d/ClusteredBars.js +60 -58
- data/dojo/dojox/charting/plot2d/ClusteredColumns.js +59 -57
- data/dojo/dojox/charting/plot2d/Columns.js +78 -60
- data/dojo/dojox/charting/plot2d/Default.js +280 -121
- data/dojo/dojox/charting/plot2d/Grid.js +181 -19
- data/dojo/dojox/charting/plot2d/Lines.js +4 -0
- data/dojo/dojox/charting/plot2d/Markers.js +4 -0
- data/dojo/dojox/charting/plot2d/MarkersOnly.js +4 -0
- data/dojo/dojox/charting/plot2d/OHLC.js +127 -69
- data/dojo/dojox/charting/plot2d/Pie.js +200 -105
- data/dojo/dojox/charting/plot2d/Scatter.js +194 -8
- data/dojo/dojox/charting/plot2d/Stacked.js +71 -46
- data/dojo/dojox/charting/plot2d/StackedAreas.js +4 -0
- data/dojo/dojox/charting/plot2d/StackedBars.js +75 -64
- data/dojo/dojox/charting/plot2d/StackedColumns.js +75 -64
- data/dojo/dojox/charting/plot2d/StackedLines.js +4 -0
- data/dojo/dojox/charting/plot2d/_PlotEvents.js +123 -0
- data/dojo/dojox/charting/plot2d/common.js +44 -35
- data/dojo/dojox/charting/scaler/primitive.js +6 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars1.html +85 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars2.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars3.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars4.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars5.html +82 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble1.html +71 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble2.html +65 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble3.html +66 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble4.html +65 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble6.html +71 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns1.html +85 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns2.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns3.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns4.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns5.html +82 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie1.html +58 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie2.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie3.html +53 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie4.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie7.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie8.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie9.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pieA.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_scatter1.html +71 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_scatter2.html +65 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_scatterB.html +54 -0
- data/dojo/dojox/charting/tests/stock.json +0 -1
- data/dojo/dojox/charting/tests/test_DataChart.html +3 -1
- data/dojo/dojox/charting/tests/test_DataSeries.html +216 -0
- data/dojo/dojox/charting/tests/test_anim2d.html +2 -0
- data/dojo/dojox/charting/tests/test_axes.html +81 -0
- data/dojo/dojox/charting/tests/test_axisZoomControl.html +91 -0
- data/dojo/dojox/charting/tests/test_bars.html +4 -2
- data/dojo/dojox/charting/tests/test_chart2d.html +14 -8
- data/dojo/dojox/charting/tests/test_chart2d_dynamics.html +4 -2
- data/dojo/dojox/charting/tests/test_chart2d_updating.html +2 -0
- data/dojo/dojox/charting/tests/test_cylinders.html +4 -2
- data/dojo/dojox/charting/tests/test_event2d.html +6 -3
- data/dojo/dojox/charting/tests/test_fireEvent.html +204 -0
- data/dojo/dojox/charting/tests/test_labels2d.html +57 -3
- data/dojo/dojox/charting/tests/test_nulls.html +89 -0
- data/dojo/dojox/charting/tests/test_pie2d.html +7 -4
- data/dojo/dojox/charting/tests/test_plot_order.html +96 -0
- data/dojo/dojox/charting/tests/test_rotatedLabels.html +85 -0
- data/dojo/dojox/charting/tests/test_scaler.html +4 -2
- data/dojo/dojox/charting/tests/test_series_order.html +88 -0
- data/dojo/dojox/charting/tests/test_sparklines.html +2 -0
- data/dojo/dojox/charting/tests/test_tension.html +55 -0
- data/dojo/dojox/charting/tests/test_themes.html +270 -115
- data/dojo/dojox/charting/tests/test_widget2d.html +3 -1
- data/dojo/dojox/charting/tests/test_win2d.html +6 -4
- data/dojo/dojox/charting/tests/theme_preview.html +69 -0
- data/dojo/dojox/charting/themes/Charged.js +91 -0
- data/dojo/dojox/charting/themes/Chris.js +77 -0
- data/dojo/dojox/charting/themes/Electric.js +92 -0
- data/dojo/dojox/charting/themes/Ireland.js +2 -2
- data/dojo/dojox/charting/themes/Julie.js +70 -0
- data/dojo/dojox/charting/themes/PlotKit/base.js +53 -0
- data/dojo/dojox/charting/themes/PlotKit/blue.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/cyan.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/green.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/orange.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/purple.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/red.js +6 -35
- data/dojo/dojox/charting/themes/PrimaryColors.js +14 -0
- data/dojo/dojox/charting/themes/Renkoo.js +85 -0
- data/dojo/dojox/charting/themes/ThreeD.js +49 -0
- data/dojo/dojox/charting/themes/Tom.js +87 -0
- data/dojo/dojox/charting/themes/Tufte.js +45 -50
- data/dojo/dojox/charting/themes/gradientGenerator.js +83 -0
- data/dojo/dojox/charting/widget/Chart2D.js +21 -1
- data/dojo/dojox/charting/widget/Legend.js +10 -1
- data/dojo/dojox/color/Palette.js +124 -17
- data/dojo/dojox/css3/fx.js +183 -0
- data/dojo/dojox/data/AndOrReadStore.js +4 -2
- data/dojo/dojox/data/ClientFilter.js +1 -1
- data/dojo/dojox/data/FlickrRestStore.js +86 -88
- data/dojo/dojox/data/HtmlStore.js +1 -1
- data/dojo/dojox/data/ItemExplorer.js +3 -3
- data/dojo/dojox/data/PersevereStore.js +1 -1
- data/dojo/dojox/data/QueryReadStore.js +6 -9
- data/dojo/dojox/data/ServiceStore.js +9 -2
- data/dojo/dojox/data/StoreExplorer.js +2 -2
- data/dojo/dojox/data/XmlStore.js +1 -1
- data/dojo/dojox/data/demos/stores/LazyLoadJSIStore.js +1 -1
- data/dojo/dojox/data/s3/proxy.example-php +73 -73
- data/dojo/dojox/data/tests/stores/FlickrRestStore.js +1 -1
- data/dojo/dojox/data/util/JsonQuery.js +0 -3
- data/dojo/dojox/date/README +7 -1
- data/dojo/dojox/date/buddhist/locale.js +5 -5
- data/dojo/dojox/date/hebrew/locale.js +41 -18
- data/dojo/dojox/date/hebrew/numerals.js +17 -13
- data/dojo/dojox/date/islamic.js +0 -1
- data/dojo/dojox/date/islamic/Date.js +17 -19
- data/dojo/dojox/date/islamic/locale.js +37 -16
- data/dojo/dojox/date/posix.js +1 -1
- data/dojo/dojox/date/tests/hebrew/Date.js +2 -2
- data/dojo/dojox/date/tests/islamic/Date.js +200 -17
- data/dojo/dojox/date/timezone.js +59 -62
- data/dojo/dojox/dnd/BoundingBoxController.js +130 -0
- data/dojo/dojox/dnd/README +22 -0
- data/dojo/dojox/dnd/Selector.js +159 -0
- data/dojo/dojox/dnd/tests/robot/test_selector.html +71 -0
- data/dojo/dojox/dnd/tests/test_selector.html +57 -0
- data/dojo/dojox/drawing/Drawing.js +24 -17
- data/dojo/dojox/drawing/_base.js +0 -1
- data/dojo/dojox/drawing/annotations/Angle.js +17 -10
- data/dojo/dojox/drawing/annotations/BoxShadow.js +92 -4
- data/dojo/dojox/drawing/annotations/Label.js +6 -6
- data/dojo/dojox/drawing/defaults.js +44 -27
- data/dojo/dojox/drawing/library/icons.js +7 -0
- data/dojo/dojox/drawing/manager/Anchors.js +22 -10
- data/dojo/dojox/drawing/manager/Canvas.js +6 -5
- data/dojo/dojox/drawing/manager/Mouse.js +45 -19
- data/dojo/dojox/drawing/manager/Stencil.js +29 -26
- data/dojo/dojox/drawing/manager/_registry.js +4 -1
- data/dojo/dojox/drawing/manager/keys.js +1 -1
- data/dojo/dojox/drawing/plugins/_Plugin.js +1 -1
- data/dojo/dojox/drawing/plugins/drawing/Grid.js +15 -4
- data/dojo/dojox/drawing/plugins/drawing/Silverlight.js +1 -1
- data/dojo/dojox/drawing/plugins/tools/Pan.js +29 -5
- data/dojo/dojox/drawing/plugins/tools/Zoom.js +4 -4
- data/dojo/dojox/drawing/stencil/Ellipse.js +1 -1
- data/dojo/dojox/drawing/stencil/Line.js +0 -17
- data/dojo/dojox/drawing/stencil/Path.js +17 -13
- data/dojo/dojox/drawing/stencil/Text.js +26 -7
- data/dojo/dojox/drawing/stencil/_Base.js +163 -159
- data/dojo/dojox/drawing/tests/drawing.html +34 -35
- data/dojo/dojox/drawing/tests/test_drawing.html +20 -21
- data/dojo/dojox/drawing/tests/test_shadows.html +18 -18
- data/dojo/dojox/drawing/tools/Ellipse.js +20 -6
- data/dojo/dojox/drawing/tools/Line.js +19 -9
- data/dojo/dojox/drawing/tools/Rect.js +21 -7
- data/dojo/dojox/drawing/tools/TextBlock.js +37 -29
- data/dojo/dojox/drawing/tools/custom/Axes.js +249 -97
- data/dojo/dojox/drawing/tools/custom/Vector.js +298 -6
- data/dojo/dojox/drawing/ui/Button.js +45 -20
- data/dojo/dojox/drawing/ui/Toolbar.js +94 -29
- data/dojo/dojox/drawing/ui/Tooltip.js +3 -3
- data/dojo/dojox/drawing/ui/dom/Pan.js +2 -2
- data/dojo/dojox/drawing/ui/dom/Toolbar.js +4 -4
- data/dojo/dojox/drawing/util/common.js +20 -14
- data/dojo/dojox/drawing/util/oo.js +1 -1
- data/dojo/dojox/dtl/Context.js +8 -7
- data/dojo/dojox/dtl/_DomTemplated.js +5 -1
- data/dojo/dojox/dtl/_Templated.js +38 -3
- data/dojo/dojox/dtl/_base.js +17 -8
- data/dojo/dojox/dtl/tests/context.js +11 -2
- data/dojo/dojox/editor/README +95 -2
- data/dojo/dojox/editor/plugins/Blockquote.js +506 -0
- data/dojo/dojox/editor/plugins/Breadcrumb.js +31 -25
- data/dojo/dojox/editor/plugins/CollapsibleToolbar.js +174 -0
- data/dojo/dojox/editor/plugins/EntityPalette.js +112 -290
- data/dojo/dojox/editor/plugins/FindReplace.js +490 -163
- data/dojo/dojox/editor/plugins/InsertAnchor.js +430 -0
- data/dojo/dojox/editor/plugins/NormalizeIndentOutdent.js +3 -51
- data/dojo/dojox/editor/plugins/NormalizeStyle.js +551 -0
- data/dojo/dojox/editor/plugins/PasteFromWord.js +206 -0
- data/dojo/dojox/editor/plugins/Preview.js +1 -1
- data/dojo/dojox/editor/plugins/Save.js +4 -4
- data/dojo/dojox/editor/plugins/ShowBlockNodes.js +1 -1
- data/dojo/dojox/editor/plugins/Smiley.js +48 -22
- data/dojo/dojox/editor/plugins/StatusBar.js +172 -0
- data/dojo/dojox/editor/plugins/TablePlugins.js +454 -394
- data/dojo/dojox/editor/plugins/TextColor.js +191 -0
- data/dojo/dojox/editor/plugins/ToolbarLineBreak.js +6 -1
- data/dojo/dojox/editor/plugins/_SmileyPalette.js +113 -333
- data/dojo/dojox/editor/plugins/nls/Blockquote.js +3 -0
- data/dojo/dojox/editor/plugins/nls/CollapsibleToolbar.js +4 -0
- data/dojo/dojox/editor/plugins/nls/FindReplace.js +15 -5
- data/dojo/dojox/editor/plugins/nls/InsertAnchor.js +8 -0
- data/dojo/dojox/editor/plugins/nls/PasteFromWord.js +6 -0
- data/dojo/dojox/editor/plugins/nls/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/TextColor.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ar/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ca/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/cs/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/da/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/de/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/el/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/es/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/fi/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/fr/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/he/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/hu/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/it/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ja/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ko/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/nb/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/nl/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/pl/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/pt-pt/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/pt/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ro/Blockquote.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/Breadcrumb.js +10 -0
- data/dojo/dojox/editor/plugins/nls/ro/CollapsibleToolbar.js +5 -0
- data/dojo/dojox/editor/plugins/nls/ro/FindReplace.js +22 -0
- data/dojo/dojox/editor/plugins/nls/ro/InsertAnchor.js +9 -0
- data/dojo/dojox/editor/plugins/nls/ro/InsertEntity.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/PageBreak.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/PasteFromWord.js +7 -0
- data/dojo/dojox/editor/plugins/nls/ro/Preview.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/Save.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/ShowBlockNodes.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/Smiley.js +22 -0
- data/dojo/dojox/editor/plugins/nls/ro/TableDialog.js +30 -0
- data/dojo/dojox/editor/plugins/nls/ro/TextColor.js +5 -0
- data/dojo/dojox/editor/plugins/nls/ro/latinEntities.js +257 -0
- data/dojo/dojox/editor/plugins/nls/ru/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/sk/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/sl/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/sv/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/th/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/tr/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/zh-tw/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/zh/FindReplace.js +14 -4
- data/dojo/dojox/editor/plugins/nls/zh/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/resources/css/Blockquote.css +17 -0
- data/dojo/dojox/editor/plugins/resources/css/CollapsibleToolbar.css +173 -0
- data/dojo/dojox/editor/plugins/resources/css/FindReplace.css +56 -51
- data/dojo/dojox/editor/plugins/resources/css/InsertAnchor.css +17 -0
- data/dojo/dojox/editor/plugins/resources/css/InsertEntity.css +15 -37
- data/dojo/dojox/editor/plugins/resources/css/PasteFromWord.css +30 -0
- data/dojo/dojox/editor/plugins/resources/css/Smiley.css +20 -59
- data/dojo/dojox/editor/plugins/resources/css/StatusBar.css +75 -0
- data/dojo/dojox/editor/plugins/resources/css/TextColor.css +7 -0
- data/dojo/dojox/editor/plugins/resources/editorPlugins.css +1 -1
- data/dojo/dojox/editor/plugins/resources/icons/anchor.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/{findIconDisabled.gif → anchorDisabled.gif} +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/blockquote.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/blockquoteDisabled.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/{replaceIconDisabled.gif → claro/close.gif} +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/editorIconsFindReplaceDisabled.png +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/editorIconsFindReplaceEnabled.png +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/nihilo/close.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/pasteFromWord.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/pasteFromWordDisabled.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/smileyDisabled.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/soria/close.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/tundra/close.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/anchor.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/claro/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/claro/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/nihilo/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/nihilo/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/nihilo/sidebar.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/soria/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/soria/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/soria/sidebar.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/tundra/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/tundra/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/tundra/sidebar.gif +0 -0
- data/dojo/dojox/editor/tests/editorBlockquote.html +118 -0
- data/dojo/dojox/editor/tests/editorCollapsibleToolbar.html +131 -0
- data/dojo/dojox/editor/tests/editorFindReplace.html +7 -3
- data/dojo/dojox/editor/tests/editorInsertAnchor.html +119 -0
- data/dojo/dojox/editor/tests/editorNormalizeStyle.html +163 -0
- data/dojo/dojox/editor/tests/editorPasteFromWord.html +98 -0
- data/dojo/dojox/editor/tests/editorSmileyPlugin.html +66 -8
- data/dojo/dojox/editor/tests/editorStatusBar.html +232 -0
- data/dojo/dojox/editor/tests/editorTablePlugs.html +80 -74
- data/dojo/dojox/editor/tests/editorTextColor.html +97 -0
- data/dojo/dojox/editor/tests/module.js +15 -0
- data/dojo/dojox/editor/tests/robot/Editor_Smiley.html +60 -0
- data/dojo/dojox/editor/tests/runTests.html +9 -0
- data/dojo/dojox/editor/tests/testPluginsAll.html +206 -0
- data/dojo/dojox/embed/Flash.js +94 -77
- data/dojo/dojox/flash/_base.js +3 -3
- data/dojo/dojox/form/BusyButton.js +2 -2
- data/dojo/dojox/form/CheckedMultiSelect.js +3 -16
- data/dojo/dojox/form/FileInput.js +4 -0
- data/dojo/dojox/form/FileInputAuto.js +12 -4
- data/dojo/dojox/form/FilePickerTextBox.js +5 -8
- data/dojo/dojox/form/FileUploader.js +1378 -1331
- data/dojo/dojox/form/ListInput.js +5 -5
- data/dojo/dojox/form/PasswordValidator.js +3 -3
- data/dojo/dojox/form/RangeSlider.js +3 -2
- data/dojo/dojox/form/Rating.js +0 -1
- data/dojo/dojox/form/TimeSpinner.js +1 -2
- data/dojo/dojox/form/manager/_Mixin.js +21 -11
- data/dojo/dojox/form/nls/ro/PasswordValidator.js +5 -0
- data/dojo/dojox/form/resources/CheckedMultiSelect.css +30 -0
- data/dojo/dojox/form/resources/CheckedMultiSelect.html +1 -1
- data/dojo/dojox/form/resources/FileInput.css +30 -0
- data/dojo/dojox/form/resources/FilePickerTextBox.html +2 -2
- data/dojo/dojox/form/resources/FileUploader.css +0 -24
- data/dojo/dojox/form/resources/HorizontalRangeSlider.html +38 -38
- data/dojo/dojox/form/resources/RangeSlider.css +9 -1
- data/dojo/dojox/form/resources/VerticalRangeSlider.html +49 -50
- data/dojo/dojox/form/resources/_CheckedMultiSelectItem.html +1 -1
- data/dojo/dojox/form/resources/uploader.swf +0 -0
- data/dojo/dojox/form/tests/UploadFile.php.disabled +25 -19
- data/dojo/dojox/form/tests/test_FileUploader.html +38 -38
- data/dojo/dojox/form/tests/test_FileUploaderDialog.html +0 -1
- data/dojo/dojox/form/tests/test_FileUploaderForm.html +5 -3
- data/dojo/dojox/form/tests/test_FileUploaderTabs.html +147 -0
- data/dojo/dojox/form/tests/test_MultiComboBox.html +1 -1
- data/dojo/dojox/form/tests/test_RangeSlider.html +1 -2
- data/dojo/dojox/form/tests/test_TimeSpinner.html +3 -30
- data/dojo/dojox/fx/Timeline.js +210 -0
- data/dojo/dojox/fx/ext-dojo/complex.js +169 -0
- data/dojo/dojox/fx/ext-dojo/reverse.js +98 -0
- data/dojo/dojox/fx/scroll.js +13 -6
- data/dojo/dojox/fx/tests/test_Timeline.html +173 -0
- data/dojo/dojox/fx/tests/test_complex.html +87 -0
- data/dojo/dojox/fx/tests/test_reverse.html +100 -0
- data/dojo/dojox/fx/tests/test_transform.html +210 -0
- data/dojo/dojox/fx/text.js +3 -3
- data/dojo/dojox/geo/README +37 -0
- data/dojo/dojox/geo/charting/Map.js +140 -0
- data/dojo/dojox/geo/charting/_Feature.js +169 -0
- data/dojo/dojox/geo/charting/_Marker.js +52 -0
- data/dojo/dojox/geo/charting/_base.js +53 -0
- data/dojo/dojox/geo/charting/resources/Map.css +30 -0
- data/dojo/dojox/geo/charting/resources/data/NOTICES +63 -0
- data/dojo/dojox/geo/charting/resources/data/USStates.json +261 -0
- data/dojo/dojox/geo/charting/resources/img/zoomin.gif +0 -0
- data/dojo/dojox/geo/charting/resources/img/zoomin.png +0 -0
- data/dojo/dojox/geo/charting/resources/img/zoomout.gif +0 -0
- data/dojo/dojox/geo/charting/resources/img/zoomout.png +0 -0
- data/dojo/dojox/geo/charting/resources/markers/USStates.json +1 -0
- data/dojo/dojox/geo/charting/tests/datastore/dataStore.json +1 -0
- data/dojo/dojox/geo/charting/tests/test_mapWithCharting.html +72 -0
- data/dojo/dojox/geo/charting/tests/test_mapWithLegend.html +63 -0
- data/dojo/dojox/geo/charting/tests/test_maps.html +37 -0
- data/dojo/dojox/geo/charting/widget/Legend.js +62 -0
- data/dojo/dojox/gfx/README +9 -2
- data/dojo/dojox/gfx/README-svgweb +98 -0
- data/dojo/dojox/gfx/VectorText.js +3 -3
- data/dojo/dojox/gfx/_base.js +2 -2
- data/dojo/dojox/gfx/arc.js +1 -1
- data/dojo/dojox/gfx/gradient.js +160 -0
- data/dojo/dojox/gfx/gradutils.js +91 -0
- data/dojo/dojox/gfx/path.js +89 -24
- data/dojo/dojox/gfx/resources/svg2gfx.xsl +53 -14
- data/dojo/dojox/gfx/shape.js +14 -7
- data/dojo/dojox/gfx/svg.js +135 -16
- data/dojo/dojox/gfx/tests/svgweb/README +15 -0
- data/dojo/dojox/gfx/tests/svgweb/sample.html +171 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/COPYING.txt +65 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/src/svg.htc +1 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/src/svg.js +1 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/src/svg.swf +0 -0
- data/dojo/dojox/gfx/tests/svgweb/test.roundrect.html +39 -0
- data/dojo/dojox/gfx/tests/svgweb/test_arc.html +66 -0
- data/dojo/dojox/gfx/tests/svgweb/test_bezier.html +81 -0
- data/dojo/dojox/gfx/tests/svgweb/test_destroy.html +58 -0
- data/dojo/dojox/gfx/tests/svgweb/test_fill.html +45 -0
- data/dojo/dojox/gfx/tests/svgweb/test_fx.html +104 -0
- data/dojo/dojox/gfx/tests/svgweb/test_fx_shapes.html +123 -0
- data/dojo/dojox/gfx/tests/svgweb/test_gfx.html +565 -0
- data/dojo/dojox/gfx/tests/svgweb/test_gradient.html +77 -0
- data/dojo/dojox/gfx/tests/svgweb/test_group1.html +70 -0
- data/dojo/dojox/gfx/tests/svgweb/test_group2.html +54 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image1.html +80 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image2.html +52 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image3.html +77 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image4.html +58 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image5.html +67 -0
- data/dojo/dojox/gfx/tests/svgweb/test_linearGradient.html +75 -0
- data/dojo/dojox/gfx/tests/svgweb/test_linestyle.html +43 -0
- data/dojo/dojox/gfx/tests/svgweb/test_pattern.html +43 -0
- data/dojo/dojox/gfx/tests/svgweb/test_poly.html +49 -0
- data/dojo/dojox/gfx/tests/svgweb/test_resize.html +57 -0
- data/dojo/dojox/gfx/tests/svgweb/test_setPath.html +86 -0
- data/dojo/dojox/gfx/tests/svgweb/test_tbbox.html +113 -0
- data/dojo/dojox/gfx/tests/svgweb/test_text.html +80 -0
- data/dojo/dojox/gfx/tests/svgweb/test_textpath.html +77 -0
- data/dojo/dojox/gfx/tests/svgweb/test_transform.html +99 -0
- data/dojo/dojox/gfx/tests/svgweb/test_utils.html +234 -0
- data/dojo/dojox/gfx/tests/svgweb/test_vectortext_draw.html +64 -0
- data/dojo/dojox/gfx/tests/svgweb/test_vectortext_load.html +97 -0
- data/dojo/dojox/gfx/tests/test_image1.html +1 -4
- data/dojo/dojox/gfx/tests/test_image2.html +5 -5
- data/dojo/dojox/gfx/tests/test_image3.html +2 -2
- data/dojo/dojox/gfx/tests/test_image4.html +2 -2
- data/dojo/dojox/gfx/tests/test_linearGradient.html +2 -1
- data/dojo/dojox/gfx/tests/test_pattern.html +4 -3
- data/dojo/dojox/gfx/tests/test_refproj.html +109 -0
- data/dojo/dojox/gfx/vml.js +52 -57
- data/dojo/dojox/grid/DataGrid.js +17 -6
- data/dojo/dojox/grid/EnhancedGrid.js +24 -6
- data/dojo/dojox/grid/README +57 -0
- data/dojo/dojox/grid/_Builder.js +18 -8
- data/dojo/dojox/grid/_Grid.js +10 -20
- data/dojo/dojox/grid/_View.js +5 -2
- data/dojo/dojox/grid/cells/dijit.js +11 -4
- data/dojo/dojox/grid/enhanced/_Events.js +16 -6
- data/dojo/dojox/grid/enhanced/_Plugin.js +15 -20
- data/dojo/dojox/grid/enhanced/dnd/_DndEvents.js +6 -0
- data/dojo/dojox/grid/enhanced/dnd/_DndMovingManager.js +3 -1
- data/dojo/dojox/grid/enhanced/nls/ar/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/ca/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/da/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/el/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/fi/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/he/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/nb/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/nl/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/pt-pt/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/ro/EnhancedGrid.js +9 -0
- data/dojo/dojox/grid/enhanced/nls/sk/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/sl/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/sv/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/th/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/tr/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/plugins/IndirectSelection.js +5 -5
- data/dojo/dojox/grid/enhanced/plugins/Menu.js +22 -6
- data/dojo/dojox/grid/enhanced/plugins/NestedSorting.js +26 -42
- data/dojo/dojox/grid/enhanced/resources/EnhancedGrid.css +31 -32
- data/dojo/dojox/grid/enhanced/resources/EnhancedGrid_rtl.css +16 -7
- data/dojo/dojox/grid/enhanced/resources/claroEnhancedGrid.css +104 -0
- data/dojo/dojox/grid/enhanced/resources/tundraEnhancedGrid.css +8 -17
- data/dojo/dojox/grid/resources/Grid.css +6 -0
- data/dojo/dojox/grid/resources/Grid_rtl.css +10 -2
- data/dojo/dojox/grid/resources/_Grid.html +1 -1
- data/dojo/dojox/grid/resources/claroGrid.css +216 -0
- data/dojo/dojox/grid/resources/images/header.png +0 -0
- data/dojo/dojox/grid/resources/images/header_shadow.png +0 -0
- data/dojo/dojox/grid/resources/images/row_back.png +0 -0
- data/dojo/dojox/grid/resources/images/td_button_down.png +0 -0
- data/dojo/dojox/grid/tests/enhanced/test_enhanced_grid_claro.html +70 -0
- data/dojo/dojox/grid/tests/robot/7815.html +0 -1
- data/dojo/dojox/grid/tests/robot/DataGrid_a11y.html +6 -1
- data/dojo/dojox/grid/tests/robot/DataGrid_mouse.html +50 -18
- data/dojo/dojox/grid/tests/robot/_DataGrid.html +0 -1
- data/dojo/dojox/grid/tests/robot/stores.js +3 -1
- data/dojo/dojox/grid/tests/test_grid_themes.html +27 -2
- data/dojo/dojox/grid/tests/test_treegrid_model.html +6 -6
- data/dojo/dojox/highlight/languages/_dynamic.js +2 -0
- data/dojo/dojox/highlight/languages/_static.js +1 -1
- data/dojo/dojox/highlight/languages/groovy.js +67 -0
- data/dojo/dojox/highlight/languages/java.js +58 -0
- data/dojo/dojox/highlight/languages/xquery.js +56 -0
- data/dojo/dojox/highlight/tests/test_highlight.html +147 -0
- data/dojo/dojox/html/entities.js +7 -7
- data/dojo/dojox/html/ext-dojo/style.js +460 -0
- data/dojo/dojox/html/format.js +5 -0
- data/dojo/dojox/html/metrics.js +31 -12
- data/dojo/dojox/html/tests/test_style-html.html +310 -0
- data/dojo/dojox/html/tests/test_themes.html +2 -2
- data/dojo/dojox/image/Lightbox.js +70 -28
- data/dojo/dojox/image/resources/Lightbox.css +11 -4
- data/dojo/dojox/image/resources/Lightbox.html +3 -3
- data/dojo/dojox/image/tests/Lightbox.html +2 -2
- data/dojo/dojox/image/tests/test_Lightbox.html +36 -2
- data/dojo/dojox/io/proxy/xip_client.html +1 -1
- data/dojo/dojox/io/proxy/xip_server.html +1 -1
- data/dojo/dojox/jq.js +1 -1
- data/dojo/dojox/json/query.js +7 -7
- data/dojo/dojox/json/ref.js +4 -2
- data/dojo/dojox/lang/README +13 -2
- data/dojo/dojox/lang/async.js +199 -0
- data/dojo/dojox/lang/async/event.js +41 -0
- data/dojo/dojox/lang/async/timeout.js +41 -0
- data/dojo/dojox/lang/async/topic.js +41 -0
- data/dojo/dojox/lang/oo/rearrange.js +1 -1
- data/dojo/dojox/lang/tests/async.js +216 -0
- data/dojo/dojox/lang/tests/docs.js +2 -2
- data/dojo/dojox/lang/tests/main.js +1 -1
- data/dojo/dojox/lang/tests/test_oo_decl.html +52 -3
- data/dojo/dojox/lang/utils.js +52 -9
- data/dojo/dojox/layout/ExpandoPane.js +71 -21
- data/dojo/dojox/layout/FloatingPane.js +7 -4
- data/dojo/dojox/layout/GridContainer.js +453 -920
- data/dojo/dojox/layout/GridContainerLite.js +811 -0
- data/dojo/dojox/layout/README +1 -1
- data/dojo/dojox/layout/ResizeHandle.js +6 -3
- data/dojo/dojox/layout/RotatorContainer.js +1 -1
- data/dojo/dojox/layout/TableContainer.js +7 -0
- data/dojo/dojox/layout/ToggleSplitter.js +2 -2
- data/dojo/dojox/layout/resources/ExpandoPane.css +52 -0
- data/dojo/dojox/layout/resources/ExpandoPane.html +2 -2
- data/dojo/dojox/layout/resources/GridContainer.css +49 -69
- data/dojo/dojox/layout/resources/GridContainer.html +9 -5
- data/dojo/dojox/layout/resources/ResizeHandle.css +18 -0
- data/dojo/dojox/layout/resources/icons/gridcontainer_grip.gif +0 -0
- data/dojo/dojox/layout/resources/icons/resizeRtl.png +0 -0
- data/dojo/dojox/layout/tests/resources/script_dnd.js +158 -0
- data/dojo/dojox/layout/tests/resources/set_complete_dnd.css +61 -0
- data/dojo/dojox/layout/tests/test_ExpandoPane.html +7 -1
- data/dojo/dojox/layout/tests/test_ExpandoPane_prog.html +1 -1
- data/dojo/dojox/layout/tests/test_GridContainer.html +24 -76
- data/dojo/dojox/layout/tests/test_GridContainerColWidths.html +31 -19
- data/dojo/dojox/layout/tests/test_GridContainerLite.html +122 -0
- data/dojo/dojox/layout/tests/test_GridContainerLite_doLayout.html +112 -0
- data/dojo/dojox/layout/tests/test_GridContainerLite_dragRestriction.html +148 -0
- data/dojo/dojox/layout/tests/test_GridContainer_ResizableCol.html +93 -0
- data/dojo/dojox/layout/tests/test_GridContainer_TitlePanes.html +85 -0
- data/dojo/dojox/layout/tests/test_GridContainer_complete_solution.html +103 -0
- data/dojo/dojox/layout/tests/test_GridContainer_dragHandle.html +107 -0
- data/dojo/dojox/layout/tests/{test_GridContainerBC.html → test_GridContainer_in_BorderContainer.html} +27 -61
- data/dojo/dojox/layout/tests/{test_GridContainerBC_prog.html → test_GridContainer_in_BorderContainer_prog.html} +142 -50
- data/dojo/dojox/layout/tests/test_TableContainer.html +2 -2
- data/dojo/dojox/math/BigInteger-ext.js +1 -3
- data/dojo/dojox/math/BigInteger.js +3 -3
- data/dojo/dojox/math/README +0 -3
- data/dojo/dojox/math/_base.js +48 -11
- data/dojo/dojox/math/tests/math.js +19 -1
- data/dojo/dojox/mdnd/AreaManager.js +707 -0
- data/dojo/dojox/mdnd/AutoScroll.js +195 -0
- data/dojo/dojox/mdnd/DropIndicator.js +86 -0
- data/dojo/dojox/mdnd/LazyManager.js +68 -0
- data/dojo/dojox/mdnd/Moveable.js +251 -0
- data/dojo/dojox/mdnd/PureSource.js +208 -0
- data/dojo/dojox/mdnd/README +94 -0
- data/dojo/dojox/mdnd/adapter/DndFromDojo.js +366 -0
- data/dojo/dojox/mdnd/adapter/DndToDojo.js +484 -0
- data/dojo/dojox/mdnd/dropMode/DefaultDropMode.js +333 -0
- data/dojo/dojox/mdnd/dropMode/OverDropMode.js +308 -0
- data/dojo/dojox/mdnd/dropMode/VerticalDropMode.js +343 -0
- data/dojo/dojox/mdnd/resources/dnd.css +93 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_acceptance.html +71 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_autoScroll.html +52 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_defaultDropMode.html +55 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_dndFromDojo.html +73 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_dndToDojo.html +93 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_dndToDojo_dndFromDojo.html +70 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_overDropMode.html +57 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_stress.html +83 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_verticalDropMode.html +55 -0
- data/dojo/dojox/mdnd/tests/module.js +16 -0
- data/dojo/dojox/mdnd/tests/resources/test_dnd.css +68 -0
- data/dojo/dojox/mdnd/tests/robot/module.js +16 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_acceptance.html +284 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_defaultDropMode.html +101 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_dndFromDojo.html +322 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_dndToDojo.html +198 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_overDropMode.html +272 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_verticalDropMode.html +101 -0
- data/dojo/dojox/mdnd/tests/runTests.html +9 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/AreaManagerCoverPresence.html +110 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/AreaManagerManagingDragItems.html +149 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/AreaManagerRegistering.html +124 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/module.js +12 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropIndicator/DropIndicatorTest.html +187 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropIndicator/module.js +8 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/DefaultDropModeTest.html +241 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/FixtureLib.js +87 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/OverDropModeTest.html +195 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/VerticalDropModeTest.html +241 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/module.js +10 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/resources/domElement.html +130 -0
- data/dojo/dojox/mdnd/tests/unitTests/module.js +9 -0
- data/dojo/dojox/mobile.js +4 -0
- data/dojo/dojox/mobile/README +55 -0
- data/dojo/dojox/mobile/_base.js +1451 -0
- data/dojo/dojox/mobile/app.js +3 -0
- data/dojo/dojox/mobile/app/AlertDialog.js +182 -0
- data/dojo/dojox/mobile/app/ImageThumbView.js +254 -0
- data/dojo/dojox/mobile/app/ImageView.js +716 -0
- data/dojo/dojox/mobile/app/List.js +577 -0
- data/dojo/dojox/mobile/app/ListSelector.js +218 -0
- data/dojo/dojox/mobile/app/SceneAssistant.js +56 -0
- data/dojo/dojox/mobile/app/SceneController.js +157 -0
- data/dojo/dojox/mobile/app/StageController.js +137 -0
- data/dojo/dojox/mobile/app/TextBox.js +321 -0
- data/dojo/dojox/mobile/app/_FormWidget.js +294 -0
- data/dojo/dojox/mobile/app/_Widget.js +30 -0
- data/dojo/dojox/mobile/app/_base.js +226 -0
- data/dojo/dojox/mobile/app/_event.js +119 -0
- data/dojo/dojox/mobile/app/compat.js +109 -0
- data/dojo/dojox/mobile/build/build.bat +47 -0
- data/dojo/dojox/mobile/build/build.sh +50 -0
- data/dojo/dojox/mobile/build/profiles/mobile-all.profile.js +36 -0
- data/dojo/dojox/mobile/build/profiles/mobile.profile.js +40 -0
- data/dojo/dojox/mobile/compat.js +399 -0
- data/dojo/dojox/mobile/parser.js +80 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/assistants/main-assistant.js +123 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/views/main/emptyTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/views/main/main-scene.html +23 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/views/main/rowTemplate.html +15 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-2.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-3.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-4.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/complexListApp/styles/style.css +38 -0
- data/dojo/dojox/mobile/tests/dialogApp/app/assistants/main-assistant.js +75 -0
- data/dojo/dojox/mobile/tests/dialogApp/app/views/main/main-scene.html +10 -0
- data/dojo/dojox/mobile/tests/dialogApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-image-thumb-view-assistant.js +198 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-image-view-assistant.js +170 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-search-group-assistant.js +123 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-search-selection-assistant.js +54 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-search-text-assistant.js +119 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/image-view-assistant.js +92 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/main-assistant.js +40 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-image-thumb-view/flickr-image-thumb-view-scene.html +17 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-image-view/flickr-image-view-scene.html +10 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-group/emptyTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-group/flickr-search-group-scene.html +19 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-group/rowTemplate.html +8 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-selection/flickr-search-selection-scene.html +7 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-selection/rowTemplate.html +8 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-text/emptyTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-text/flickr-search-group-scene.html +19 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-text/rowTemplate.html +15 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/image-view/image-view-scene.html +23 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/main/main-scene.html +6 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/main/rowTemplate.html +8 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/chris1_lg.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/chris2_lg.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/imageHoriz.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/imageVert.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/square.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/index.html +39 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/styles/styles.css +13 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/view-resources.json +14 -0
- data/dojo/dojox/mobile/tests/images/a-icon-1-41x41.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-10.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-11.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-12.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-13.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-14.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-15.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-16.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-17.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-18.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-2-41x41.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-2.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-3.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-4.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-10.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-2.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-3.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-4.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-5.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-6.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-7.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-8.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-9.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-all.png +0 -0
- data/dojo/dojox/mobile/tests/images/icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/images/not-images.png +0 -0
- data/dojo/dojox/mobile/tests/images/red-button-bg.png +0 -0
- data/dojo/dojox/mobile/tests/images/red-button-sel-bg.png +0 -0
- data/dojo/dojox/mobile/tests/images/widget-bg.png +0 -0
- data/dojo/dojox/mobile/tests/index.html +55 -0
- data/dojo/dojox/mobile/tests/inputApp/app/assistants/text-input-assistant.js +21 -0
- data/dojo/dojox/mobile/tests/inputApp/app/views/text-input/text-input-scene.html +50 -0
- data/dojo/dojox/mobile/tests/inputApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/assistants/main-assistant.js +41 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/assistants/second-assistant.js +32 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/assistants/third-assistant.js +33 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/views/main/main-scene.html +16 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/views/second/second-scene.html +12 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/views/third/third-scene.html +13 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/simpleApp/app/assistants/main-assistant.js +23 -0
- data/dojo/dojox/mobile/tests/simpleApp/app/views/main/main-scene.html +3 -0
- data/dojo/dojox/mobile/tests/simpleApp/index.html +36 -0
- data/dojo/dojox/mobile/tests/simpleListApp/app/assistants/main-assistant.js +66 -0
- data/dojo/dojox/mobile/tests/simpleListApp/app/views/main/main-scene.html +14 -0
- data/dojo/dojox/mobile/tests/simpleListApp/app/views/main/rowTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/simpleListApp/index.html +36 -0
- data/dojo/dojox/mobile/tests/test_Android-ButtonList.html +68 -0
- data/dojo/dojox/mobile/tests/test_Android-EdgeToEdge.html +50 -0
- data/dojo/dojox/mobile/tests/test_Android-EdgeToEdgeCategory.html +46 -0
- data/dojo/dojox/mobile/tests/test_Android-Icon.html +58 -0
- data/dojo/dojox/mobile/tests/test_Android-RoundRectList.html +60 -0
- data/dojo/dojox/mobile/tests/test_Android-Settings.html +104 -0
- data/dojo/dojox/mobile/tests/test_Android-Switch.html +23 -0
- data/dojo/dojox/mobile/tests/test_Android-TabContainer.html +139 -0
- data/dojo/dojox/mobile/tests/test_Android-VariableHeightList.html +100 -0
- data/dojo/dojox/mobile/tests/test_ajax-html.html +34 -0
- data/dojo/dojox/mobile/tests/test_ajax-json.html +34 -0
- data/dojo/dojox/mobile/tests/test_anchor-label.html +74 -0
- data/dojo/dojox/mobile/tests/test_bookmarkable.html +112 -0
- data/dojo/dojox/mobile/tests/test_buttons.html +21 -0
- data/dojo/dojox/mobile/tests/test_dynamic-icons.html +53 -0
- data/dojo/dojox/mobile/tests/test_dynamic-items.html +98 -0
- data/dojo/dojox/mobile/tests/test_dynamic-view.html +58 -0
- data/dojo/dojox/mobile/tests/test_hash-parameter.html +71 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Animation.html +81 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Button.html +41 -0
- data/dojo/dojox/mobile/tests/test_iPhone-ButtonList.html +50 -0
- data/dojo/dojox/mobile/tests/test_iPhone-EdgeToEdge.html +47 -0
- data/dojo/dojox/mobile/tests/test_iPhone-EdgeToEdgeCategory.html +46 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Heading.html +24 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Icon.html +58 -0
- data/dojo/dojox/mobile/tests/test_iPhone-IconMulti.html +36 -0
- data/dojo/dojox/mobile/tests/test_iPhone-IconSingle.html +35 -0
- data/dojo/dojox/mobile/tests/test_iPhone-IconSingleBelow.html +35 -0
- data/dojo/dojox/mobile/tests/test_iPhone-ResultList.html +65 -0
- data/dojo/dojox/mobile/tests/test_iPhone-RoundRect.html +27 -0
- data/dojo/dojox/mobile/tests/test_iPhone-RoundRectList.html +54 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Settings.html +168 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Switch.html +23 -0
- data/dojo/dojox/mobile/tests/test_iPhone-TabContainer.html +169 -0
- data/dojo/dojox/mobile/tests/test_iPhone-VariableHeightList.html +99 -0
- data/dojo/dojox/mobile/tests/test_progress-indicator.html +83 -0
- data/dojo/dojox/mobile/tests/view-sample.html +38 -0
- data/dojo/dojox/mobile/tests/view1.html +14 -0
- data/dojo/dojox/mobile/tests/view1.json +18 -0
- data/dojo/dojox/mobile/tests/view2.html +9 -0
- data/dojo/dojox/mobile/tests/view2.json +31 -0
- data/dojo/dojox/mobile/tests/view3.html +16 -0
- data/dojo/dojox/mobile/tests/view3.json +44 -0
- data/dojo/dojox/mobile/themes/android/android-compat.css +284 -0
- data/dojo/dojox/mobile/themes/android/android.css +738 -0
- data/dojo/dojox/mobile/themes/android/compat/arrow-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/arrow-button-head.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/blue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/blue-button-sel-bg.png +0 -0
- data/dojo/dojox/{editor/plugins/resources/icons/findReplaceDisabled.gif → mobile/themes/android/compat/gray-arrow.png} +0 -0
- data/dojo/dojox/mobile/themes/android/compat/icon-content-heading-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-blue-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-gray-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-green-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-knob-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/tab-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/tab-orange-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/tab-sel-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/buttons-compat.css +30 -0
- data/dojo/dojox/mobile/themes/buttons.css +191 -0
- data/dojo/dojox/mobile/themes/compat/check-off-button.png +0 -0
- data/dojo/dojox/mobile/themes/compat/check-on-button.png +0 -0
- data/dojo/dojox/mobile/themes/compat/small-blue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/compat/small-darkblue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/compat/small-red-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/arrow-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/arrow-button-head.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/blue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/blue-button-sel-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/edge-categ-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/gray-arrow.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/heading-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/icon-content-heading-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/switch-blue-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/switch-gray-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/switch-knob-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/tab-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/tab-sel-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/white-arrow.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/images/thumb-overlay.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/iphone-app-compat.css +24 -0
- data/dojo/dojox/mobile/themes/iphone/iphone-app.css +281 -0
- data/dojo/dojox/mobile/themes/iphone/iphone-compat.css +290 -0
- data/dojo/dojox/mobile/themes/iphone/iphone.css +751 -0
- data/dojo/dojox/rails.js +143 -0
- data/dojo/dojox/rails/README +41 -0
- data/dojo/dojox/rails/tests/module.js +7 -0
- data/dojo/dojox/rails/tests/plugd/trigger.js +187 -0
- data/dojo/dojox/rails/tests/runTests.html +9 -0
- data/dojo/dojox/rails/tests/success_response.html +1 -0
- data/dojo/dojox/rails/tests/test_rails.html +320 -0
- data/dojo/dojox/robot/recorder.js +3 -3
- data/dojo/dojox/rpc/SMDLibrary/wikipedia.smd +49 -49
- data/dojo/dojox/rpc/tests/resources/query +5 -5
- data/dojo/dojox/sketch/Figure.js +2 -2
- data/dojo/dojox/sketch/UndoStack.js +2 -2
- data/dojo/dojox/validate/creditCard.js +1 -1
- data/dojo/dojox/widget/Calendar.js +18 -18
- data/dojo/dojox/widget/CalendarViews.js +2 -2
- data/dojo/dojox/widget/ColorPicker.js +248 -73
- data/dojo/dojox/widget/ColorPicker/ColorPicker.css +32 -19
- data/dojo/dojox/widget/ColorPicker/ColorPicker.html +71 -30
- data/dojo/dojox/widget/ColorPicker/images/hueHandleA11y.png +0 -0
- data/dojo/dojox/widget/DataPresentation.js +126 -60
- data/dojo/dojox/widget/Dialog.js +2 -1
- data/dojo/dojox/widget/Dialog/Dialog.css +7 -0
- data/dojo/dojox/widget/DynamicTooltip.js +3 -3
- data/dojo/dojox/widget/FeedPortlet.js +9 -9
- data/dojo/dojox/widget/FilePicker.js +2 -2
- data/dojo/dojox/widget/Portlet.js +8 -0
- data/dojo/dojox/widget/Portlet/Portlet.css +2 -2
- data/dojo/dojox/widget/RollingList.js +11 -8
- data/dojo/dojox/widget/Rotator.js +7 -1
- data/dojo/dojox/widget/Standby.js +32 -5
- data/dojo/dojox/widget/Toaster.js +3 -1
- data/dojo/dojox/widget/UpgradeBar.js +20 -20
- data/dojo/dojox/widget/Wizard.js +2 -2
- data/dojo/dojox/widget/Wizard/Wizard.css +5 -0
- data/dojo/dojox/widget/gauge/_Gauge.js +2 -2
- data/dojo/dojox/widget/nls/ColorPicker.js +4 -2
- data/dojo/dojox/widget/nls/ar/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/ca/ColorPicker.js +6 -0
- data/dojo/dojox/widget/nls/da/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/el/ColorPicker.js +10 -0
- data/dojo/dojox/widget/nls/fi/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/he/ColorPicker.js +10 -0
- data/dojo/dojox/widget/nls/ko/ColorPicker.js +7 -1
- data/dojo/dojox/widget/nls/nb/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/nl/ColorPicker.js +6 -0
- data/dojo/dojox/widget/nls/pt-pt/ColorPicker.js +8 -0
- data/dojo/dojox/widget/nls/ro/ColorPicker.js +5 -0
- data/dojo/dojox/widget/nls/ro/FilePicker.js +6 -0
- data/dojo/dojox/widget/nls/ro/Wizard.js +6 -0
- data/dojo/dojox/widget/nls/sk/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/sl/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/sv/ColorPicker.js +6 -0
- data/dojo/dojox/widget/nls/tr/ColorPicker.js +10 -0
- data/dojo/dojox/widget/rotator/ThumbnailController.js +96 -0
- data/dojo/dojox/widget/tests/test_ColorPicker.html +10 -1
- data/dojo/dojox/widget/tests/test_DataPresentation.html +7 -3
- data/dojo/dojox/widget/tests/test_PortletInGridContainer.html +27 -37
- data/dojo/dojox/widget/tests/test_PortletInGridContainer.js +2 -1
- data/dojo/dojox/widget/tests/test_PortletInGridContainerColumns.html +10 -8
- data/dojo/dojox/widget/tests/test_Rotator.html +2 -0
- data/dojo/dojox/widget/tests/test_Rotator_ThumbnailController.html +63 -0
- data/dojo/dojox/widget/tests/test_Standby.html +4 -4
- data/dojo/dojox/wire/Wire.js +32 -4
- data/dojo/dojox/wire/demos/markup/demo_ActionChaining.html +1 -1
- data/dojo/dojox/wire/demos/markup/demo_ConditionalActions.html +6 -6
- data/dojo/dojox/wire/demos/markup/demo_TopicWiring.html +1 -1
- data/dojo/dojox/xml/parser.js +2 -2
- data/dojo/util/LICENSE +1 -1
- data/dojo/util/buildscripts/build.bat +3 -3
- data/dojo/util/buildscripts/build.js +4 -2
- data/dojo/util/buildscripts/build_notice.txt +2 -4
- data/dojo/util/buildscripts/build_release.sh +6 -6
- data/dojo/util/buildscripts/cdnBuild.sh +39 -0
- data/dojo/util/buildscripts/cdnBuild.txt +13 -13
- data/dojo/util/buildscripts/cldr/README +1 -1
- data/dojo/util/buildscripts/cldr/build.xml +1 -1
- data/dojo/util/buildscripts/cldr/calendar.xsl +98 -74
- data/dojo/util/buildscripts/cldr/ldml/CatalogManager.properties +16 -16
- data/dojo/util/buildscripts/cldr/ldml/catalog +1 -1
- data/dojo/util/buildscripts/cldr/ldml/core.zip +0 -0
- data/dojo/util/buildscripts/copyright.txt +1 -1
- data/dojo/util/buildscripts/jslib/buildUtil.js +9 -0
- data/dojo/util/buildscripts/jslib/dojoGuardEnd.jsfrag +8 -7
- data/dojo/util/buildscripts/profiles/baseplus.profile.js +21 -0
- data/dojo/util/buildscripts/profiles/demos-all.profile.js +7 -0
- data/dojo/util/buildscripts/tests/conditionalTest.js +1 -1
- data/dojo/util/checkstyle/checkstyle.bat +3 -3
- data/dojo/util/checkstyle/checkstyleUtil.js +68 -4
- data/dojo/util/checkstyle/runCheckstyle.js +24 -2
- data/dojo/util/docscripts/LICENSE +1 -1
- data/dojo/util/docscripts/cheat/lib.js +1 -1
- data/dojo/util/docscripts/lib/parser2/JavaScriptArray.php +2 -2
- data/dojo/util/docscripts/makeCix.php +1 -1
- data/dojo/util/doh/_browserRunner.js +25 -4
- data/dojo/util/doh/_rhinoRunner.js +1 -0
- data/dojo/util/doh/robot/DOHRobot.jar +0 -0
- data/dojo/util/doh/robot/DOHRobot.java +32 -7
- data/dojo/util/doh/runner.html +2 -2
- data/dojo/util/doh/runner.js +14 -5
- data/dojo/util/jsdoc/LICENSE +1 -1
- data/dojo/util/migration/dijitCss14to15.sed +67 -0
- data/dojo/util/shrinksafe/shrinksafe.jar +0 -0
- data/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/resources/Messages.properties +1 -1
- data/dojo/util/shrinksafe/tests/escapeunicode.js +1 -0
- data/dojo/util/shrinksafe/tests/module.js +14 -5
- data/lib/dojo_src.rb +2 -5
- metadata +4940 -4373
- data/dojo/dijit/tests/_base/viewportQuirks.html +0 -5
- data/dojo/dijit/themes/nihilo/form/ComboBox.css +0 -12
- data/dojo/dijit/themes/nihilo/form/Common_rtl.css +0 -7
- data/dojo/dijit/themes/nihilo/images/editor.gif +0 -0
- data/dojo/dijit/themes/nihilo/images/editorDisabled.gif +0 -0
- data/dojo/dijit/themes/nihilo/images/editorDisabled_rtl.gif +0 -0
- data/dojo/dijit/themes/nihilo/images/editor_rtl.gif +0 -0
- data/dojo/dijit/themes/soria/form/ComboBox.css +0 -12
- data/dojo/dijit/themes/soria/form/Common_rtl.css +0 -7
- data/dojo/dijit/themes/soria/images/editor.gif +0 -0
- data/dojo/dijit/themes/soria/images/editorDisabled.gif +0 -0
- data/dojo/dijit/themes/soria/images/editorDisabled_rtl.gif +0 -0
- data/dojo/dijit/themes/soria/images/editor_rtl.gif +0 -0
- data/dojo/dijit/themes/templateThemeTest.html +0 -178
- data/dojo/dijit/themes/tundra/form/Common_rtl.css +0 -6
- data/dojo/dijit/themes/tundra/images/editor.gif +0 -0
- data/dojo/dijit/themes/tundra/images/editorDisabled.gif +0 -0
- data/dojo/dijit/themes/tundra/images/editorDisabled_rtl.gif +0 -0
- data/dojo/dijit/themes/tundra/images/editorMaster.png +0 -0
- data/dojo/dijit/themes/tundra/images/editor_rtl.gif +0 -0
- data/dojo/dojo/cldr/nls/de-de/number.js +0 -4
- data/dojo/dojo/cldr/nls/en-us/currency.js +0 -5
- data/dojo/dojo/cldr/nls/en-us/number.js +0 -4
- data/dojo/dojo/cldr/nls/es-es/gregorian.js +0 -7
- data/dojo/dojo/cldr/nls/es-es/number.js +0 -4
- data/dojo/dojo/cldr/nls/islamic-civil.js +0 -96
- data/dojo/dojo/cldr/nls/it-it/gregorian.js +0 -5
- data/dojo/dojo/cldr/nls/ja-jp/number.js +0 -4
- data/dojo/dojo/cldr/nls/ko-kr/gregorian.js +0 -6
- data/dojo/dojo/cldr/nls/ko-kr/number.js +0 -4
- data/dojo/dojo/cldr/nls/pt-br/gregorian.js +0 -18
- data/dojo/dojo/cldr/nls/zh-cn/gregorian.js +0 -12
- data/dojo/dojo/cldr/nls/zh-cn/number.js +0 -4
- data/dojo/dojo/cldr/nls/zh-tw/number.js +0 -6
- data/dojo/dojox/editor/plugins/resources/icons/findIcon.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/findReplace.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/replaceIcon.gif +0 -0
- data/dojo/dojox/math/LICENSE-BigInteger +0 -40
- data/dojo/util/buildscripts/cldr/ldml/ldml.dtd +0 -1166
- data/dojo/util/docscripts/api.json +0 -202488
- data/dojo/util/docscripts/api.xml +0 -54976
- data/dojo/util/resources/LICENSE +0 -195
- data/dojo/util/resources/api/api.xml +0 -0
- data/dojo/util/resources/api/dojo.cix +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/dojo-styles.css +0 -114
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/bg-content-left.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/bg-content-right.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/body.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/logo.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/mini-dtk.css +0 -34
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/mini-dtk.psd +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/style.css +0 -1092
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/template.html +0 -115
- data/dojo/util/resources/logo/negative/dijit.logo.neg.ai +15 -4118
- data/dojo/util/resources/logo/negative/dijit.logo.neg.eps +0 -5557
- data/dojo/util/resources/logo/negative/dijit.logo.neg.png +0 -0
- data/dojo/util/resources/logo/negative/dijit.logo.neg.svg +0 -987
- data/dojo/util/resources/logo/negative/dojo.logo.neg.ai +0 -0
- data/dojo/util/resources/logo/negative/dojo.logo.neg.big.png +0 -0
- data/dojo/util/resources/logo/negative/dojo.logo.neg.eps +0 -64
- data/dojo/util/resources/logo/negative/dojo.logo.neg.png +0 -0
- data/dojo/util/resources/logo/negative/dojo.logo.neg.svg +0 -36
- data/dojo/util/resources/logo/negative/dojox.logo.neg.ai +8 -4003
- data/dojo/util/resources/logo/negative/dojox.logo.neg.eps +0 -5357
- data/dojo/util/resources/logo/negative/dojox.logo.neg.png +0 -0
- data/dojo/util/resources/logo/negative/dojox.logo.neg.svg +0 -41
- data/dojo/util/resources/logo/positive/dijit.logo.ai +10 -4169
- data/dojo/util/resources/logo/positive/dijit.logo.eps +0 -5562
- data/dojo/util/resources/logo/positive/dijit.logo.png +0 -0
- data/dojo/util/resources/logo/positive/dijit.logo.svg +0 -987
- data/dojo/util/resources/logo/positive/dojo.logo.ai +15 -3719
- data/dojo/util/resources/logo/positive/dojo.logo.big.png +0 -0
- data/dojo/util/resources/logo/positive/dojo.logo.eps +0 -64
- data/dojo/util/resources/logo/positive/dojo.logo.png +0 -0
- data/dojo/util/resources/logo/positive/dojo.logo.svg +0 -36
- data/dojo/util/resources/logo/positive/dojox.logo.ai +13 -4068
- data/dojo/util/resources/logo/positive/dojox.logo.eps +0 -5362
- data/dojo/util/resources/logo/positive/dojox.logo.png +0 -0
- data/dojo/util/resources/logo/positive/dojox.logo.svg +0 -41
- data/dojo/util/resources/themes/nihilo/nihilo.psd +0 -0
- data/dojo/util/resources/themes/soria/soria.psd +0 -0
data/dojo/util/resources/LICENSE
DELETED
@@ -1,195 +0,0 @@
|
|
1
|
-
Dojo is available under *either* the terms of the modified BSD license *or* the
|
2
|
-
Academic Free License version 2.1. As a recipient of Dojo, you may choose which
|
3
|
-
license to receive this code under (except as noted in per-module LICENSE
|
4
|
-
files). Some modules may not be the copyright of the Dojo Foundation. These
|
5
|
-
modules contain explicit declarations of copyright in both the LICENSE files in
|
6
|
-
the directories in which they reside and in the code itself. No external
|
7
|
-
contributions are allowed under licenses which are fundamentally incompatible
|
8
|
-
with the AFL or BSD licenses that Dojo is distributed under.
|
9
|
-
|
10
|
-
The text of the AFL and BSD licenses is reproduced below.
|
11
|
-
|
12
|
-
-------------------------------------------------------------------------------
|
13
|
-
The "New" BSD License:
|
14
|
-
**********************
|
15
|
-
|
16
|
-
Copyright (c) 2005-2009, The Dojo Foundation
|
17
|
-
All rights reserved.
|
18
|
-
|
19
|
-
Redistribution and use in source and binary forms, with or without
|
20
|
-
modification, are permitted provided that the following conditions are met:
|
21
|
-
|
22
|
-
* Redistributions of source code must retain the above copyright notice, this
|
23
|
-
list of conditions and the following disclaimer.
|
24
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
25
|
-
this list of conditions and the following disclaimer in the documentation
|
26
|
-
and/or other materials provided with the distribution.
|
27
|
-
* Neither the name of the Dojo Foundation nor the names of its contributors
|
28
|
-
may be used to endorse or promote products derived from this software
|
29
|
-
without specific prior written permission.
|
30
|
-
|
31
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
32
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
33
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
34
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
35
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
36
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
37
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
38
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
39
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
40
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
41
|
-
|
42
|
-
-------------------------------------------------------------------------------
|
43
|
-
The Academic Free License, v. 2.1:
|
44
|
-
**********************************
|
45
|
-
|
46
|
-
This Academic Free License (the "License") applies to any original work of
|
47
|
-
authorship (the "Original Work") whose owner (the "Licensor") has placed the
|
48
|
-
following notice immediately following the copyright notice for the Original
|
49
|
-
Work:
|
50
|
-
|
51
|
-
Licensed under the Academic Free License version 2.1
|
52
|
-
|
53
|
-
1) Grant of Copyright License. Licensor hereby grants You a world-wide,
|
54
|
-
royalty-free, non-exclusive, perpetual, sublicenseable license to do the
|
55
|
-
following:
|
56
|
-
|
57
|
-
a) to reproduce the Original Work in copies;
|
58
|
-
|
59
|
-
b) to prepare derivative works ("Derivative Works") based upon the Original
|
60
|
-
Work;
|
61
|
-
|
62
|
-
c) to distribute copies of the Original Work and Derivative Works to the
|
63
|
-
public;
|
64
|
-
|
65
|
-
d) to perform the Original Work publicly; and
|
66
|
-
|
67
|
-
e) to display the Original Work publicly.
|
68
|
-
|
69
|
-
2) Grant of Patent License. Licensor hereby grants You a world-wide,
|
70
|
-
royalty-free, non-exclusive, perpetual, sublicenseable license, under patent
|
71
|
-
claims owned or controlled by the Licensor that are embodied in the Original
|
72
|
-
Work as furnished by the Licensor, to make, use, sell and offer for sale the
|
73
|
-
Original Work and Derivative Works.
|
74
|
-
|
75
|
-
3) Grant of Source Code License. The term "Source Code" means the preferred
|
76
|
-
form of the Original Work for making modifications to it and all available
|
77
|
-
documentation describing how to modify the Original Work. Licensor hereby
|
78
|
-
agrees to provide a machine-readable copy of the Source Code of the Original
|
79
|
-
Work along with each copy of the Original Work that Licensor distributes.
|
80
|
-
Licensor reserves the right to satisfy this obligation by placing a
|
81
|
-
machine-readable copy of the Source Code in an information repository
|
82
|
-
reasonably calculated to permit inexpensive and convenient access by You for as
|
83
|
-
long as Licensor continues to distribute the Original Work, and by publishing
|
84
|
-
the address of that information repository in a notice immediately following
|
85
|
-
the copyright notice that applies to the Original Work.
|
86
|
-
|
87
|
-
4) Exclusions From License Grant. Neither the names of Licensor, nor the names
|
88
|
-
of any contributors to the Original Work, nor any of their trademarks or
|
89
|
-
service marks, may be used to endorse or promote products derived from this
|
90
|
-
Original Work without express prior written permission of the Licensor. Nothing
|
91
|
-
in this License shall be deemed to grant any rights to trademarks, copyrights,
|
92
|
-
patents, trade secrets or any other intellectual property of Licensor except as
|
93
|
-
expressly stated herein. No patent license is granted to make, use, sell or
|
94
|
-
offer to sell embodiments of any patent claims other than the licensed claims
|
95
|
-
defined in Section 2. No right is granted to the trademarks of Licensor even if
|
96
|
-
such marks are included in the Original Work. Nothing in this License shall be
|
97
|
-
interpreted to prohibit Licensor from licensing under different terms from this
|
98
|
-
License any Original Work that Licensor otherwise would have a right to
|
99
|
-
license.
|
100
|
-
|
101
|
-
5) This section intentionally omitted.
|
102
|
-
|
103
|
-
6) Attribution Rights. You must retain, in the Source Code of any Derivative
|
104
|
-
Works that You create, all copyright, patent or trademark notices from the
|
105
|
-
Source Code of the Original Work, as well as any notices of licensing and any
|
106
|
-
descriptive text identified therein as an "Attribution Notice." You must cause
|
107
|
-
the Source Code for any Derivative Works that You create to carry a prominent
|
108
|
-
Attribution Notice reasonably calculated to inform recipients that You have
|
109
|
-
modified the Original Work.
|
110
|
-
|
111
|
-
7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that
|
112
|
-
the copyright in and to the Original Work and the patent rights granted herein
|
113
|
-
by Licensor are owned by the Licensor or are sublicensed to You under the terms
|
114
|
-
of this License with the permission of the contributor(s) of those copyrights
|
115
|
-
and patent rights. Except as expressly stated in the immediately proceeding
|
116
|
-
sentence, the Original Work is provided under this License on an "AS IS" BASIS
|
117
|
-
and WITHOUT WARRANTY, either express or implied, including, without limitation,
|
118
|
-
the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
119
|
-
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU.
|
120
|
-
This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No
|
121
|
-
license to Original Work is granted hereunder except under this disclaimer.
|
122
|
-
|
123
|
-
8) Limitation of Liability. Under no circumstances and under no legal theory,
|
124
|
-
whether in tort (including negligence), contract, or otherwise, shall the
|
125
|
-
Licensor be liable to any person for any direct, indirect, special, incidental,
|
126
|
-
or consequential damages of any character arising as a result of this License
|
127
|
-
or the use of the Original Work including, without limitation, damages for loss
|
128
|
-
of goodwill, work stoppage, computer failure or malfunction, or any and all
|
129
|
-
other commercial damages or losses. This limitation of liability shall not
|
130
|
-
apply to liability for death or personal injury resulting from Licensor's
|
131
|
-
negligence to the extent applicable law prohibits such limitation. Some
|
132
|
-
jurisdictions do not allow the exclusion or limitation of incidental or
|
133
|
-
consequential damages, so this exclusion and limitation may not apply to You.
|
134
|
-
|
135
|
-
9) Acceptance and Termination. If You distribute copies of the Original Work or
|
136
|
-
a Derivative Work, You must make a reasonable effort under the circumstances to
|
137
|
-
obtain the express assent of recipients to the terms of this License. Nothing
|
138
|
-
else but this License (or another written agreement between Licensor and You)
|
139
|
-
grants You permission to create Derivative Works based upon the Original Work
|
140
|
-
or to exercise any of the rights granted in Section 1 herein, and any attempt
|
141
|
-
to do so except under the terms of this License (or another written agreement
|
142
|
-
between Licensor and You) is expressly prohibited by U.S. copyright law, the
|
143
|
-
equivalent laws of other countries, and by international treaty. Therefore, by
|
144
|
-
exercising any of the rights granted to You in Section 1 herein, You indicate
|
145
|
-
Your acceptance of this License and all of its terms and conditions.
|
146
|
-
|
147
|
-
10) Termination for Patent Action. This License shall terminate automatically
|
148
|
-
and You may no longer exercise any of the rights granted to You by this License
|
149
|
-
as of the date You commence an action, including a cross-claim or counterclaim,
|
150
|
-
against Licensor or any licensee alleging that the Original Work infringes a
|
151
|
-
patent. This termination provision shall not apply for an action alleging
|
152
|
-
patent infringement by combinations of the Original Work with other software or
|
153
|
-
hardware.
|
154
|
-
|
155
|
-
11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this
|
156
|
-
License may be brought only in the courts of a jurisdiction wherein the
|
157
|
-
Licensor resides or in which Licensor conducts its primary business, and under
|
158
|
-
the laws of that jurisdiction excluding its conflict-of-law provisions. The
|
159
|
-
application of the United Nations Convention on Contracts for the International
|
160
|
-
Sale of Goods is expressly excluded. Any use of the Original Work outside the
|
161
|
-
scope of this License or after its termination shall be subject to the
|
162
|
-
requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et
|
163
|
-
seq., the equivalent laws of other countries, and international treaty. This
|
164
|
-
section shall survive the termination of this License.
|
165
|
-
|
166
|
-
12) Attorneys Fees. In any action to enforce the terms of this License or
|
167
|
-
seeking damages relating thereto, the prevailing party shall be entitled to
|
168
|
-
recover its costs and expenses, including, without limitation, reasonable
|
169
|
-
attorneys' fees and costs incurred in connection with such action, including
|
170
|
-
any appeal of such action. This section shall survive the termination of this
|
171
|
-
License.
|
172
|
-
|
173
|
-
13) Miscellaneous. This License represents the complete agreement concerning
|
174
|
-
the subject matter hereof. If any provision of this License is held to be
|
175
|
-
unenforceable, such provision shall be reformed only to the extent necessary to
|
176
|
-
make it enforceable.
|
177
|
-
|
178
|
-
14) Definition of "You" in This License. "You" throughout this License, whether
|
179
|
-
in upper or lower case, means an individual or a legal entity exercising rights
|
180
|
-
under, and complying with all of the terms of, this License. For legal
|
181
|
-
entities, "You" includes any entity that controls, is controlled by, or is
|
182
|
-
under common control with you. For purposes of this definition, "control" means
|
183
|
-
(i) the power, direct or indirect, to cause the direction or management of such
|
184
|
-
entity, whether by contract or otherwise, or (ii) ownership of fifty percent
|
185
|
-
(50%) or more of the outstanding shares, or (iii) beneficial ownership of such
|
186
|
-
entity.
|
187
|
-
|
188
|
-
15) Right to Use. You may use the Original Work in all ways not otherwise
|
189
|
-
restricted or conditioned by this License or by law, and Licensor promises not
|
190
|
-
to interfere with or be responsible for such uses by You.
|
191
|
-
|
192
|
-
This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved.
|
193
|
-
Permission is hereby granted to copy and distribute this license without
|
194
|
-
modification. This license may not be modified without the express written
|
195
|
-
permission of its copyright owner.
|
File without changes
|
File without changes
|
@@ -1,114 +0,0 @@
|
|
1
|
-
/* undo center align in the text editor in ie */
|
2
|
-
html body {
|
3
|
-
text-align: left;
|
4
|
-
}
|
5
|
-
|
6
|
-
/* fix stupid drupal css bug */
|
7
|
-
fieldset legend {
|
8
|
-
display: block;
|
9
|
-
}
|
10
|
-
|
11
|
-
.DojoEditor {
|
12
|
-
border: solid 1px #999;
|
13
|
-
}
|
14
|
-
|
15
|
-
.DojoEditor table {
|
16
|
-
margin: 0;
|
17
|
-
width: auto;
|
18
|
-
}
|
19
|
-
|
20
|
-
.DojoEditor td, th {
|
21
|
-
padding: 0;
|
22
|
-
}
|
23
|
-
|
24
|
-
table.DojoGoogleMapsKeyTable input {
|
25
|
-
width: 100%;
|
26
|
-
}
|
27
|
-
|
28
|
-
/* undo styles to fix color pickers */
|
29
|
-
span > table {
|
30
|
-
margin: 0;
|
31
|
-
width: auto;
|
32
|
-
}
|
33
|
-
|
34
|
-
.DojoSvnTree {
|
35
|
-
border: solid 1px #666;
|
36
|
-
height: 250px;
|
37
|
-
overflow: auto;
|
38
|
-
}
|
39
|
-
|
40
|
-
.DojoSvnTree table {
|
41
|
-
margin: 0;
|
42
|
-
}
|
43
|
-
|
44
|
-
.DojoSvnOutput {
|
45
|
-
border: solid 1px #666;
|
46
|
-
height: 300px;
|
47
|
-
overflow: auto;
|
48
|
-
white-space: nowrap;
|
49
|
-
}
|
50
|
-
|
51
|
-
.dojoDialog {
|
52
|
-
background: #fff;
|
53
|
-
border: 1px solid #999;
|
54
|
-
-moz-border-radius: 8px;
|
55
|
-
padding: 12px;
|
56
|
-
}
|
57
|
-
|
58
|
-
.dojoDialog span.Indicator {
|
59
|
-
color: #666;
|
60
|
-
background: url(/modules/dojo/indicator.gif) no-repeat left 0;
|
61
|
-
display: block;
|
62
|
-
font-size: 16px;
|
63
|
-
height: 24px;
|
64
|
-
line-height: 26px;
|
65
|
-
padding-left: 30px;
|
66
|
-
overflow: hidden;
|
67
|
-
}
|
68
|
-
|
69
|
-
.CustomizeToolbar:after {
|
70
|
-
clear: both;
|
71
|
-
}
|
72
|
-
|
73
|
-
.CustomizeToolbar div {
|
74
|
-
float: left;
|
75
|
-
margin-right: 10px;
|
76
|
-
}
|
77
|
-
|
78
|
-
.CustomizeToolbar .List {
|
79
|
-
border: solid 1px #999;
|
80
|
-
height: 260px;
|
81
|
-
overflow: auto;
|
82
|
-
width: 175px;
|
83
|
-
}
|
84
|
-
|
85
|
-
.CustomizeToolbar ul {
|
86
|
-
list-style-type: none;
|
87
|
-
margin: 0;
|
88
|
-
padding: 1px;
|
89
|
-
}
|
90
|
-
|
91
|
-
.CustomizeToolbar li {
|
92
|
-
background: none;
|
93
|
-
cursor: pointer;
|
94
|
-
list-style-type: none;
|
95
|
-
list-style-image: none;
|
96
|
-
margin: 0;
|
97
|
-
padding: 1px 1px 1px 5px;
|
98
|
-
}
|
99
|
-
|
100
|
-
.CustomizeToolbar li.Selected {
|
101
|
-
background-color: #3366ff;
|
102
|
-
border: dotted 1px #fff;
|
103
|
-
color: #FFF;
|
104
|
-
padding: 0px 0px 0px 4px;
|
105
|
-
}
|
106
|
-
|
107
|
-
.CustomizeToolbar .ButtonColumn {
|
108
|
-
padding-top: 100px;
|
109
|
-
}
|
110
|
-
|
111
|
-
.CustomizeToolbar .Button {
|
112
|
-
margin-bottom: 10px;
|
113
|
-
width: 90px;
|
114
|
-
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,34 +0,0 @@
|
|
1
|
-
#logo {
|
2
|
-
background:url(images/logo.png);
|
3
|
-
width:157px;
|
4
|
-
height:53px;
|
5
|
-
}
|
6
|
-
|
7
|
-
#wrapper #container #header {
|
8
|
-
height:53px;
|
9
|
-
}
|
10
|
-
|
11
|
-
#wrapper #container #center {
|
12
|
-
position:relative;
|
13
|
-
top:-20px;
|
14
|
-
}
|
15
|
-
|
16
|
-
.sidebar-left-label {
|
17
|
-
float:left;
|
18
|
-
white-space:nowrap;
|
19
|
-
width:4em;
|
20
|
-
padding-right:2px;
|
21
|
-
text-align:right;
|
22
|
-
}
|
23
|
-
|
24
|
-
#wrapper #container #menu {
|
25
|
-
margin-bottom:5px;
|
26
|
-
}
|
27
|
-
|
28
|
-
#menu SELECT {
|
29
|
-
width:95%;
|
30
|
-
}
|
31
|
-
|
32
|
-
#wrapper #container #center .right-corner .left-corner {
|
33
|
-
padding-top:20px;
|
34
|
-
}
|
Binary file
|
@@ -1,1092 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Dojo Toolkit Iterim Design
|
3
|
-
* By Torrey Rice, sitepen.com
|
4
|
-
* based on Garland, for Drupal 5.0
|
5
|
-
* Stefan Nagtegaal, iStyledThis [dot] nl
|
6
|
-
* Steven Wittens, acko [dot] net`
|
7
|
-
*
|
8
|
-
* If you use a customized color scheme, you must regenerate it after
|
9
|
-
* modifying this file.
|
10
|
-
*/
|
11
|
-
|
12
|
-
/**
|
13
|
-
* Generic elements
|
14
|
-
*/
|
15
|
-
body {
|
16
|
-
margin: 0;
|
17
|
-
padding: 0;
|
18
|
-
background: #f4f6f8;
|
19
|
-
font: 12px/170% Verdana;
|
20
|
-
color: #494949;
|
21
|
-
}
|
22
|
-
|
23
|
-
input {
|
24
|
-
font: 12px/100% "Verdana";
|
25
|
-
color: #494949;
|
26
|
-
}
|
27
|
-
|
28
|
-
textarea, select {
|
29
|
-
font: 12px/160% "Verdana";
|
30
|
-
color: #494949;
|
31
|
-
}
|
32
|
-
|
33
|
-
h1, h2, h3, h4, h5, h6 {
|
34
|
-
margin: 0;
|
35
|
-
padding: 0;
|
36
|
-
font-weight: normal;
|
37
|
-
font-family: Georgia, Times, "Times New Roman", serif;
|
38
|
-
}
|
39
|
-
|
40
|
-
h1 {
|
41
|
-
font-size: 185%;
|
42
|
-
}
|
43
|
-
|
44
|
-
h2 {
|
45
|
-
font-size: 170%;
|
46
|
-
line-height: 130%;
|
47
|
-
}
|
48
|
-
|
49
|
-
h3 {
|
50
|
-
font-size: 155%;
|
51
|
-
}
|
52
|
-
|
53
|
-
h4 {
|
54
|
-
font-size: 130%;
|
55
|
-
}
|
56
|
-
|
57
|
-
h5 {
|
58
|
-
font-size: 120%;
|
59
|
-
}
|
60
|
-
|
61
|
-
h6 {
|
62
|
-
font-size: 110%;
|
63
|
-
}
|
64
|
-
|
65
|
-
ul, quote, code, fieldset {
|
66
|
-
margin: .5em 0;
|
67
|
-
}
|
68
|
-
|
69
|
-
p {
|
70
|
-
margin: 0.6em 0 1.2em;
|
71
|
-
padding: 0;
|
72
|
-
}
|
73
|
-
|
74
|
-
a:link, a:visited {
|
75
|
-
color: #027AC6;
|
76
|
-
text-decoration: none;
|
77
|
-
}
|
78
|
-
|
79
|
-
a:hover {
|
80
|
-
color: #0062A0;
|
81
|
-
text-decoration: underline;
|
82
|
-
}
|
83
|
-
|
84
|
-
a:active, a.active {
|
85
|
-
color: #5895be;
|
86
|
-
}
|
87
|
-
|
88
|
-
hr {
|
89
|
-
margin: 0;
|
90
|
-
padding: 0;
|
91
|
-
border: none;
|
92
|
-
height: 1px;
|
93
|
-
background: #5294c1;
|
94
|
-
}
|
95
|
-
|
96
|
-
ul {
|
97
|
-
margin: 0.5em 0 1em;
|
98
|
-
padding: 0;
|
99
|
-
}
|
100
|
-
|
101
|
-
ul li {
|
102
|
-
margin: 0.4em 0 0.4em .5em;
|
103
|
-
}
|
104
|
-
|
105
|
-
ul.menu, .item-list ul {
|
106
|
-
margin: 0.35em 0 0 -0.5em;
|
107
|
-
padding: 0;
|
108
|
-
}
|
109
|
-
|
110
|
-
ul.menu ul, .item-list ul ul {
|
111
|
-
margin-left: 0em;
|
112
|
-
}
|
113
|
-
|
114
|
-
ul li, ul.menu li, .item-list ul li, li.leaf {
|
115
|
-
margin: 0.15em 0 0.15em .5em;
|
116
|
-
}
|
117
|
-
|
118
|
-
ul li, ul.menu li, .item-list ul li, li.leaf {
|
119
|
-
padding: 0 0 .2em 1.5em;
|
120
|
-
list-style-type: none;
|
121
|
-
list-style-image: none;
|
122
|
-
background: transparent url(images/menu-leaf.gif) no-repeat 1px .35em;
|
123
|
-
}
|
124
|
-
|
125
|
-
ul li.expanded {
|
126
|
-
background: transparent url(images/menu-expanded.gif) no-repeat 1px .35em;
|
127
|
-
}
|
128
|
-
|
129
|
-
ul li.collapsed {
|
130
|
-
background: transparent url(images/menu-collapsed.gif) no-repeat 0px .35em;
|
131
|
-
}
|
132
|
-
|
133
|
-
ul li.leaf a, ul li.expanded a, ul li.collapsed a {
|
134
|
-
display: block;
|
135
|
-
}
|
136
|
-
|
137
|
-
ul.inline li {
|
138
|
-
background: none;
|
139
|
-
margin: 0;
|
140
|
-
padding: 0 1em 0 0;
|
141
|
-
}
|
142
|
-
|
143
|
-
fieldset ul.clear-block li {
|
144
|
-
margin: 0;
|
145
|
-
padding: 0;
|
146
|
-
background-image: none;
|
147
|
-
}
|
148
|
-
|
149
|
-
dl {
|
150
|
-
margin: 0.5em 0 1em 1.5em;
|
151
|
-
}
|
152
|
-
|
153
|
-
dl dt {
|
154
|
-
}
|
155
|
-
|
156
|
-
dl dd {
|
157
|
-
margin: 0 0 .5em 1.5em;
|
158
|
-
}
|
159
|
-
|
160
|
-
img, a img {
|
161
|
-
border: none;
|
162
|
-
}
|
163
|
-
|
164
|
-
table {
|
165
|
-
margin: 1em 0;
|
166
|
-
width: 100%;
|
167
|
-
}
|
168
|
-
|
169
|
-
thead th {
|
170
|
-
border-bottom: 2px solid #d3e7f4;
|
171
|
-
color: #494949;
|
172
|
-
font-weight: bold;
|
173
|
-
}
|
174
|
-
|
175
|
-
th a:link, th a:visited {
|
176
|
-
color: #6f9dbd;
|
177
|
-
}
|
178
|
-
|
179
|
-
td, th {
|
180
|
-
padding: .3em .5em;
|
181
|
-
}
|
182
|
-
|
183
|
-
tr.even, tr.odd, tbody th {
|
184
|
-
border: solid #d3e7f4;
|
185
|
-
border-width: 1px 0;
|
186
|
-
}
|
187
|
-
|
188
|
-
tr.odd, tr.info {
|
189
|
-
background-color: #edf5fa;
|
190
|
-
}
|
191
|
-
|
192
|
-
tr.even {
|
193
|
-
background-color: #fff;
|
194
|
-
}
|
195
|
-
|
196
|
-
tr.odd td.active {
|
197
|
-
background-color: #ddecf5;
|
198
|
-
}
|
199
|
-
|
200
|
-
tr.even td.active {
|
201
|
-
background-color: #e6f1f7;
|
202
|
-
}
|
203
|
-
|
204
|
-
td.region, td.module, td.container {
|
205
|
-
border-top: 1.5em solid #fff;
|
206
|
-
border-bottom: 1px solid #b4d7f0;
|
207
|
-
background-color: #d4e7f3;
|
208
|
-
color: #455067;
|
209
|
-
font-weight: bold;
|
210
|
-
}
|
211
|
-
|
212
|
-
tr:first-child td.region, tr:first-child td.module, tr:first-child td.container {
|
213
|
-
border-top-width: 0;
|
214
|
-
}
|
215
|
-
|
216
|
-
span.form-required {
|
217
|
-
color: #ffae00;
|
218
|
-
}
|
219
|
-
|
220
|
-
span.submitted, .description {
|
221
|
-
font-size: 1.15em;
|
222
|
-
color: #898989;
|
223
|
-
font-family:Georgia, Times, "Times New Roman", serif;
|
224
|
-
}
|
225
|
-
|
226
|
-
.description {
|
227
|
-
line-height: 150%;
|
228
|
-
margin-bottom: 0.75em;
|
229
|
-
color: #898989;
|
230
|
-
}
|
231
|
-
|
232
|
-
.messages, .preview {
|
233
|
-
margin: .75em 0 .75em;
|
234
|
-
padding: .5em 1em;
|
235
|
-
}
|
236
|
-
|
237
|
-
.messages ul {
|
238
|
-
margin: 0;
|
239
|
-
}
|
240
|
-
|
241
|
-
.form-checkboxes, .form-radios, .form-checkboxes .form-item, .form-radios .form-item {
|
242
|
-
margin: 0.25em 0;
|
243
|
-
}
|
244
|
-
|
245
|
-
#center form {
|
246
|
-
margin-bottom: 2em;
|
247
|
-
}
|
248
|
-
|
249
|
-
.form-button, .form-submit {
|
250
|
-
margin: 2em 0.5em 1em 0;
|
251
|
-
}
|
252
|
-
|
253
|
-
#watchdog-form-overview .form-submit,
|
254
|
-
.confirmation .form-submit,
|
255
|
-
.search-form .form-submit,
|
256
|
-
.poll .form-submit,
|
257
|
-
fieldset .form-button, fieldset .form-submit,
|
258
|
-
.sidebar .form-button, .sidebar .form-submit,
|
259
|
-
table .form-button, table .form-submit {
|
260
|
-
margin: 0;
|
261
|
-
}
|
262
|
-
|
263
|
-
.box {
|
264
|
-
margin-bottom: 2.5em;
|
265
|
-
}
|
266
|
-
|
267
|
-
/**
|
268
|
-
* Layout
|
269
|
-
*/
|
270
|
-
#header-region {
|
271
|
-
height:0px;
|
272
|
-
|
273
|
-
padding:0;
|
274
|
-
border:0;
|
275
|
-
margin:0;
|
276
|
-
}
|
277
|
-
|
278
|
-
#header-region .block {
|
279
|
-
display: block;
|
280
|
-
margin: 0 1em;
|
281
|
-
}
|
282
|
-
|
283
|
-
#header-region .block-region {
|
284
|
-
display: block;
|
285
|
-
margin: 0 0.5em 1em;
|
286
|
-
padding: 0.5em;
|
287
|
-
position: relative;
|
288
|
-
top: 0.5em;
|
289
|
-
}
|
290
|
-
|
291
|
-
#header-region * {
|
292
|
-
display: inline;
|
293
|
-
line-height: 1.5em;
|
294
|
-
margin-top: 0;
|
295
|
-
margin-bottom: 0;
|
296
|
-
}
|
297
|
-
|
298
|
-
#header-region p, #header-region img {
|
299
|
-
margin-top: 0.5em;
|
300
|
-
}
|
301
|
-
|
302
|
-
#header-region h2 {
|
303
|
-
margin: 0 1em 0 0;
|
304
|
-
}
|
305
|
-
|
306
|
-
#header-region h3, #header-region label, #header-region li {
|
307
|
-
margin: 0 1em;
|
308
|
-
padding: 0;
|
309
|
-
background: none;
|
310
|
-
}
|
311
|
-
|
312
|
-
#wrapper {
|
313
|
-
background: #f3f6f8 url(images/body.png) repeat-x 50% 0;
|
314
|
-
}
|
315
|
-
|
316
|
-
#wrapper #container {
|
317
|
-
margin: 0 auto;
|
318
|
-
padding: 0 20px;
|
319
|
-
max-width: 1270px;
|
320
|
-
background:url("images/dojoWatermark.png") no-repeat top left;
|
321
|
-
}
|
322
|
-
|
323
|
-
#wrapper #container #header {
|
324
|
-
height: 90px;
|
325
|
-
}
|
326
|
-
|
327
|
-
#wrapper #container #header #logo-floater {
|
328
|
-
position: absolute;
|
329
|
-
}
|
330
|
-
|
331
|
-
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
|
332
|
-
line-height: 120px;
|
333
|
-
position: relative;
|
334
|
-
z-index: 2;
|
335
|
-
white-space: nowrap;
|
336
|
-
}
|
337
|
-
|
338
|
-
#wrapper #container #header h1 span {
|
339
|
-
font-weight: bold;
|
340
|
-
}
|
341
|
-
|
342
|
-
#wrapper #container #header h1 img {
|
343
|
-
padding-top: 25px;
|
344
|
-
padding-right: 20px;
|
345
|
-
float: left;
|
346
|
-
}
|
347
|
-
|
348
|
-
/* With 3 columns, require a minimum width of 1000px to ensure there is enough horizontal space. */
|
349
|
-
body.sidebars {
|
350
|
-
min-width: 980px;
|
351
|
-
}
|
352
|
-
/* With 2 columsn, require a minimum width of 800px. */
|
353
|
-
body.sidebar-left, body.sidebar-right {
|
354
|
-
min-width: 780px;
|
355
|
-
}
|
356
|
-
|
357
|
-
/* We must define 100% width to avoid the body being too narrow for near-empty pages */
|
358
|
-
#wrapper #container #center {
|
359
|
-
float: left;
|
360
|
-
width: 100%;
|
361
|
-
}
|
362
|
-
|
363
|
-
/* So we move the #center container over the sidebars to compensate */
|
364
|
-
body.sidebar-left #center {
|
365
|
-
margin-left: -210px;
|
366
|
-
}
|
367
|
-
body.sidebar-right #center {
|
368
|
-
margin-right: -210px;
|
369
|
-
}
|
370
|
-
body.sidebars #center {
|
371
|
-
margin: 0 -210px;
|
372
|
-
}
|
373
|
-
|
374
|
-
/* And add blanks left and right for the sidebars to fill */
|
375
|
-
body.sidebar-left #squeeze {
|
376
|
-
margin-left: 250px;
|
377
|
-
}
|
378
|
-
body.sidebar-right #squeeze {
|
379
|
-
margin-right: 250px;
|
380
|
-
}
|
381
|
-
body.sidebars #squeeze {
|
382
|
-
margin: 0 210px;
|
383
|
-
}
|
384
|
-
|
385
|
-
/* We ensure the sidebars are still clickable using z-index */
|
386
|
-
#wrapper #container .sidebar {
|
387
|
-
margin: 60px 0 5em;
|
388
|
-
width: 210px;
|
389
|
-
float: left;
|
390
|
-
z-index: 2;
|
391
|
-
position: relative;
|
392
|
-
}
|
393
|
-
|
394
|
-
#wrapper #container .sidebar .block {
|
395
|
-
margin: 0 0 1.5em 0;
|
396
|
-
}
|
397
|
-
|
398
|
-
#sidebar-left .block {
|
399
|
-
padding: 0 15px 0 0px;
|
400
|
-
}
|
401
|
-
|
402
|
-
#sidebar-right .block {
|
403
|
-
padding: 0 0px 0 15px;
|
404
|
-
}
|
405
|
-
|
406
|
-
.block .content {
|
407
|
-
margin: 0.5em 0;
|
408
|
-
}
|
409
|
-
|
410
|
-
#sidebar-left .block-region {
|
411
|
-
margin: 0 15px 0 0px;
|
412
|
-
}
|
413
|
-
|
414
|
-
#sidebar-right .block-region {
|
415
|
-
margin: 0 0px 0 15px;
|
416
|
-
}
|
417
|
-
|
418
|
-
.block-region {
|
419
|
-
padding: 1em;
|
420
|
-
background: transparent;
|
421
|
-
border: 2px dashed #b4d7f0;
|
422
|
-
text-align: center;
|
423
|
-
font-size: 1.3em;
|
424
|
-
}
|
425
|
-
|
426
|
-
/* Now we add the backgrounds for the main content shading */
|
427
|
-
#wrapper #container #center #squeeze {
|
428
|
-
/*background: #fff url(images/bg-content.png) repeat-x 50% 0;*/
|
429
|
-
background:#fff;
|
430
|
-
position: relative;
|
431
|
-
}
|
432
|
-
|
433
|
-
#wrapper #container #center .right-corner {
|
434
|
-
background: transparent url(images/bg-content-right.png) no-repeat 100% 0;
|
435
|
-
position: relative;
|
436
|
-
left: 10px;
|
437
|
-
}
|
438
|
-
|
439
|
-
#wrapper #container #center .right-corner .left-corner {
|
440
|
-
padding: 50px 25px 5em 35px;
|
441
|
-
background: transparent url(images/bg-content-left.png) no-repeat 0 0;
|
442
|
-
margin-left: -10px;
|
443
|
-
position: relative;
|
444
|
-
left: -10px;
|
445
|
-
min-height: 400px;
|
446
|
-
}
|
447
|
-
|
448
|
-
#wrapper #container #footer {
|
449
|
-
float: none;
|
450
|
-
clear: both;
|
451
|
-
text-align: center;
|
452
|
-
margin: 4em 0 -3em;
|
453
|
-
color: #898989;
|
454
|
-
}
|
455
|
-
|
456
|
-
#wrapper #container .breadcrumb {
|
457
|
-
position: absolute;
|
458
|
-
top: 15px;
|
459
|
-
left: 35px;
|
460
|
-
z-index: 3;
|
461
|
-
}
|
462
|
-
|
463
|
-
body.sidebar-left #footer {
|
464
|
-
margin-left: -210px;
|
465
|
-
}
|
466
|
-
|
467
|
-
body.sidebar-right #footer {
|
468
|
-
margin-right: -210px;
|
469
|
-
}
|
470
|
-
|
471
|
-
body.sidebars #footer {
|
472
|
-
margin: 0 -210px;
|
473
|
-
}
|
474
|
-
|
475
|
-
/**
|
476
|
-
* Header
|
477
|
-
*/
|
478
|
-
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
|
479
|
-
color: #fff;
|
480
|
-
font-weight: normal;
|
481
|
-
text-shadow: #1659ac 0px 1px 3px;
|
482
|
-
font-size: 1.5em;
|
483
|
-
}
|
484
|
-
|
485
|
-
#wrapper #container #header h1 a:hover {
|
486
|
-
text-decoration: none;
|
487
|
-
}
|
488
|
-
|
489
|
-
#wrapper #container .breadcrumb {
|
490
|
-
font-size: 0.92em;
|
491
|
-
}
|
492
|
-
|
493
|
-
#wrapper #container .breadcrumb, #wrapper #container .breadcrumb a {
|
494
|
-
color: #529ad6;
|
495
|
-
}
|
496
|
-
|
497
|
-
#mission {
|
498
|
-
padding: 1em;
|
499
|
-
background-color: #fff;
|
500
|
-
border: 1px solid #e0e5fb;
|
501
|
-
margin-bottom: 2em;
|
502
|
-
}
|
503
|
-
|
504
|
-
/**
|
505
|
-
* Primary navigation
|
506
|
-
*/
|
507
|
-
ul.primary-links {
|
508
|
-
margin: 0;
|
509
|
-
padding: 0;
|
510
|
-
float: right;
|
511
|
-
position: relative;
|
512
|
-
top:-5px;
|
513
|
-
z-index: 4;
|
514
|
-
}
|
515
|
-
|
516
|
-
ul.primary-links li {
|
517
|
-
margin: 0;
|
518
|
-
padding: 0;
|
519
|
-
float: left;
|
520
|
-
background-image: none;
|
521
|
-
}
|
522
|
-
|
523
|
-
ul.primary-links li a, ul.primary-links li a:link, ul.primary-links li a:visited {
|
524
|
-
display: block;
|
525
|
-
font-size:1.15em;
|
526
|
-
margin: 0.45em 0.8em;
|
527
|
-
padding: .25em 0 0;
|
528
|
-
color: #fff;
|
529
|
-
/*border-top:5px solid #fff;/*
|
530
|
-
/*background: transparent url(images/bg-navigation-item.png) no-repeat 50% 0;*/
|
531
|
-
}
|
532
|
-
|
533
|
-
ul.primary-links li a:hover {
|
534
|
-
color:#cde1f6 !important;
|
535
|
-
}
|
536
|
-
|
537
|
-
ul.primary-links li a:hover, ul.primary-links li a.active {
|
538
|
-
color: #cde1f6;
|
539
|
-
/*background: transparent url(images/bg-navigation-item-hover.png) no-repeat 50% 0;*/
|
540
|
-
}
|
541
|
-
|
542
|
-
ul.primary-links li.menu-1-1-2 a {
|
543
|
-
border-color:#fff;
|
544
|
-
}
|
545
|
-
|
546
|
-
ul.primary-links li.menu-1-2-2 a {
|
547
|
-
border-color:#fff;
|
548
|
-
}
|
549
|
-
|
550
|
-
ul.primary-links li.menu-1-3-2 a {
|
551
|
-
border-color:#fff;
|
552
|
-
}
|
553
|
-
|
554
|
-
ul.primary-links li.menu-1-4-2 a {
|
555
|
-
border-color:#fff;
|
556
|
-
}
|
557
|
-
|
558
|
-
/**
|
559
|
-
* Secondary navigation
|
560
|
-
*/
|
561
|
-
ul.secondary-links {
|
562
|
-
margin: 0;
|
563
|
-
padding: 18px 0 0;
|
564
|
-
float: right;
|
565
|
-
clear: right;
|
566
|
-
position: relative;
|
567
|
-
z-index: 4;
|
568
|
-
}
|
569
|
-
|
570
|
-
ul.secondary-links li {
|
571
|
-
margin: 0;
|
572
|
-
padding: 0;
|
573
|
-
float: left;
|
574
|
-
background-image: none;
|
575
|
-
}
|
576
|
-
|
577
|
-
ul.secondary-links li a, ul.secondary-links li a:link, ul.secondary-links li a:visited {
|
578
|
-
display: block;
|
579
|
-
margin: 0 1em;
|
580
|
-
padding: .75em 0 0;
|
581
|
-
color: #cde3f1;
|
582
|
-
background: transparent;
|
583
|
-
}
|
584
|
-
|
585
|
-
ul.secondary-links li a:hover, ul.secondary-links li a.active {
|
586
|
-
color: #cde3f1;
|
587
|
-
background: transparent;
|
588
|
-
}
|
589
|
-
|
590
|
-
/**
|
591
|
-
* Local tasks
|
592
|
-
*/
|
593
|
-
ul.primary, ul.primary li, ul.secondary, ul.secondary li {
|
594
|
-
border: 0;
|
595
|
-
background: none;
|
596
|
-
margin: 0;
|
597
|
-
padding: 0;
|
598
|
-
}
|
599
|
-
|
600
|
-
#tabs-wrapper {
|
601
|
-
margin: 0 -26px 1em;
|
602
|
-
padding: 0 26px;
|
603
|
-
border-bottom: 1px solid #e9eff3;
|
604
|
-
position: relative;
|
605
|
-
}
|
606
|
-
ul.primary {
|
607
|
-
padding: 0.5em 0 10px;
|
608
|
-
float: left;
|
609
|
-
}
|
610
|
-
ul.secondary {
|
611
|
-
clear: both;
|
612
|
-
text-align: left;
|
613
|
-
border-bottom: 1px solid #e9eff3;
|
614
|
-
margin: -0.2em -26px 1em;
|
615
|
-
padding: 0 26px 0.6em;
|
616
|
-
}
|
617
|
-
h2.with-tabs {
|
618
|
-
float: left;
|
619
|
-
margin: 0 2em 0 0;
|
620
|
-
padding: 0;
|
621
|
-
}
|
622
|
-
|
623
|
-
ul.primary li a, ul.primary li.active a, ul.primary li a:hover, ul.primary li a:visited,
|
624
|
-
ul.secondary li a, ul.secondary li.active a, ul.secondary li a:hover, ul.secondary li a:visited {
|
625
|
-
border: 0;
|
626
|
-
background: transparent;
|
627
|
-
padding: 4px 1em;
|
628
|
-
margin: 0 0 0 1px;
|
629
|
-
height: auto;
|
630
|
-
text-decoration: none;
|
631
|
-
position: relative;
|
632
|
-
top: -1px;
|
633
|
-
}
|
634
|
-
ul.primary li.active a, ul.primary li.active a:link, ul.primary li.active a:visited, ul.primary li a:hover,
|
635
|
-
ul.secondary li.active a, ul.secondary li.active a:link, ul.secondary li.active a:visited, ul.secondary li a:hover {
|
636
|
-
background: url(images/bg-tab.png) repeat-x 0 50%;
|
637
|
-
color: #fff;
|
638
|
-
}
|
639
|
-
ul.primary li.active a,
|
640
|
-
ul.secondary li.active a {
|
641
|
-
font-weight: bold;
|
642
|
-
}
|
643
|
-
|
644
|
-
/**
|
645
|
-
* Nodes & comments
|
646
|
-
*/
|
647
|
-
.node {
|
648
|
-
border-bottom: 1px solid #e9eff3;
|
649
|
-
margin: -1.5em -26px 1.5em;
|
650
|
-
padding: 1.5em 26px;
|
651
|
-
}
|
652
|
-
|
653
|
-
ul.links li, ul.inline li {
|
654
|
-
margin-left: 0;
|
655
|
-
margin-right: 0;
|
656
|
-
padding-left: 0;
|
657
|
-
padding-right: 1em;
|
658
|
-
background-image: none;
|
659
|
-
}
|
660
|
-
|
661
|
-
.node .links, .comment .links {
|
662
|
-
text-align: left;
|
663
|
-
}
|
664
|
-
|
665
|
-
.node .links ul.links li, .comment .links ul.links li {}
|
666
|
-
.terms ul.links li {
|
667
|
-
margin-left: 0;
|
668
|
-
margin-right: 0;
|
669
|
-
padding-right: 0;
|
670
|
-
padding-left: 1em;
|
671
|
-
}
|
672
|
-
|
673
|
-
.picture, .comment .submitted {
|
674
|
-
float: right;
|
675
|
-
clear: right;
|
676
|
-
padding-left: 1em;
|
677
|
-
}
|
678
|
-
|
679
|
-
.new {
|
680
|
-
color: #ffae00;
|
681
|
-
font-size: 0.92em;
|
682
|
-
font-weight: bold;
|
683
|
-
float: right;
|
684
|
-
}
|
685
|
-
|
686
|
-
.terms {
|
687
|
-
float: right;
|
688
|
-
}
|
689
|
-
|
690
|
-
.preview .node, .preview .comment, .sticky {
|
691
|
-
margin: 0;
|
692
|
-
padding: 0.5em 0;
|
693
|
-
border: 0;
|
694
|
-
background: 0;
|
695
|
-
}
|
696
|
-
|
697
|
-
.sticky {
|
698
|
-
padding: 1em;
|
699
|
-
background-color: #fff;
|
700
|
-
border: 1px solid #e0e5fb;
|
701
|
-
margin-bottom: 2em;
|
702
|
-
}
|
703
|
-
|
704
|
-
#comments {
|
705
|
-
position: relative;
|
706
|
-
top: -1px;
|
707
|
-
border-bottom: 1px solid #e9eff3;
|
708
|
-
margin: -1.5em -25px 0;
|
709
|
-
padding: 0 25px;
|
710
|
-
}
|
711
|
-
|
712
|
-
#comments h2.comments {
|
713
|
-
margin: 0 -25px;
|
714
|
-
padding: .5em 25px;
|
715
|
-
background: #fff url(images/gradient-inner.png) repeat-x 0 0;
|
716
|
-
}
|
717
|
-
|
718
|
-
.comment {
|
719
|
-
margin: 0 -25px;
|
720
|
-
padding: 1.5em 25px 1.5em;
|
721
|
-
border-top: 1px solid #e9eff3;
|
722
|
-
}
|
723
|
-
|
724
|
-
.indented {
|
725
|
-
margin-left: 25px;
|
726
|
-
}
|
727
|
-
|
728
|
-
.comment h3 a.active {
|
729
|
-
color: #494949;
|
730
|
-
}
|
731
|
-
|
732
|
-
.node .content, .comment .content {
|
733
|
-
margin: 0.6em 0;
|
734
|
-
}
|
735
|
-
|
736
|
-
/**
|
737
|
-
* Aggregator.module
|
738
|
-
*/
|
739
|
-
#aggregator {
|
740
|
-
margin-top: 1em;
|
741
|
-
}
|
742
|
-
#aggregator .feed-item-title {
|
743
|
-
font-size: 160%;
|
744
|
-
line-height: 130%;
|
745
|
-
}
|
746
|
-
#aggregator .feed-item {
|
747
|
-
border-bottom: 1px solid #e9eff3;
|
748
|
-
margin: -1.5em -31px 1.75em;
|
749
|
-
padding: 1.5em 31px;
|
750
|
-
}
|
751
|
-
#aggregator .feed-item-categories {
|
752
|
-
font-size: 0.92em;
|
753
|
-
}
|
754
|
-
#aggregator .feed-item-meta {
|
755
|
-
font-size: 0.92em;
|
756
|
-
color: #898989;
|
757
|
-
}
|
758
|
-
|
759
|
-
/**
|
760
|
-
* Color.module
|
761
|
-
*/
|
762
|
-
#palette .form-item {
|
763
|
-
border: 1px solid #fff;
|
764
|
-
}
|
765
|
-
#palette .item-selected {
|
766
|
-
background: #fff url(images/gradient-inner.png) repeat-x 0 0;
|
767
|
-
border: 1px solid #d9eaf5;
|
768
|
-
}
|
769
|
-
|
770
|
-
/**
|
771
|
-
* Menu.module
|
772
|
-
*/
|
773
|
-
tr.odd td.menu-disabled {
|
774
|
-
background-color: #edf5fa;
|
775
|
-
}
|
776
|
-
tr.even td.menu-disabled {
|
777
|
-
background-color: #fff;
|
778
|
-
}
|
779
|
-
td.menu-disabled {
|
780
|
-
opacity: 0.5;
|
781
|
-
}
|
782
|
-
|
783
|
-
/**
|
784
|
-
* Poll.module
|
785
|
-
*/
|
786
|
-
.poll .bar {
|
787
|
-
background: #fff url(images/bg-bar-white.png) repeat-x 0 0;
|
788
|
-
border: solid #f0f0f0;
|
789
|
-
border-width: 0 1px 1px;
|
790
|
-
}
|
791
|
-
|
792
|
-
.poll .bar .foreground {
|
793
|
-
background: #71a7cc url(images/bg-bar.png) repeat-x 0 100%;
|
794
|
-
}
|
795
|
-
|
796
|
-
.poll .percent {
|
797
|
-
font-size: .9em;
|
798
|
-
}
|
799
|
-
|
800
|
-
/**
|
801
|
-
* Autocomplete.
|
802
|
-
*/
|
803
|
-
#autocomplete li {
|
804
|
-
cursor: default;
|
805
|
-
padding: 2px;
|
806
|
-
margin: 0;
|
807
|
-
}
|
808
|
-
|
809
|
-
/**
|
810
|
-
* Collapsible fieldsets
|
811
|
-
*/
|
812
|
-
fieldset {
|
813
|
-
margin: 1em 0;
|
814
|
-
padding: 1em;
|
815
|
-
border: 1px solid #d9eaf5;
|
816
|
-
background: #fff url(images/gradient-inner.png) repeat-x 0 0;
|
817
|
-
}
|
818
|
-
|
819
|
-
html.js fieldset.collapsed {
|
820
|
-
background: transparent;
|
821
|
-
padding-top: 0;
|
822
|
-
padding-bottom: .6em;
|
823
|
-
}
|
824
|
-
|
825
|
-
html.js fieldset.collapsible legend a {
|
826
|
-
padding-left: 2em;
|
827
|
-
background: url(images/menu-expanded.gif) no-repeat 0% 50%;
|
828
|
-
}
|
829
|
-
|
830
|
-
html.js fieldset.collapsed legend a {
|
831
|
-
background: url(images/menu-collapsed.gif) no-repeat 0% 50%;
|
832
|
-
}
|
833
|
-
|
834
|
-
/**
|
835
|
-
* Syndication icons and block
|
836
|
-
*/
|
837
|
-
#block-node-0 h2 {
|
838
|
-
float: left;
|
839
|
-
padding-right: 20px;
|
840
|
-
}
|
841
|
-
|
842
|
-
#block-node-0 img, .feed-icon {
|
843
|
-
float: right;
|
844
|
-
padding-top: 4px;
|
845
|
-
}
|
846
|
-
|
847
|
-
#block-node-0 .content {
|
848
|
-
clear: right;
|
849
|
-
}
|
850
|
-
|
851
|
-
/**
|
852
|
-
* Login Block
|
853
|
-
*/
|
854
|
-
#user-login-form {
|
855
|
-
text-align: center;
|
856
|
-
}
|
857
|
-
#user-login-form ul {
|
858
|
-
text-align: left;
|
859
|
-
}
|
860
|
-
|
861
|
-
/**
|
862
|
-
* Admin Styles
|
863
|
-
*/
|
864
|
-
div.admin-panel,
|
865
|
-
div.admin-panel .description,
|
866
|
-
div.admin-panel .body,
|
867
|
-
div.admin,
|
868
|
-
div.admin .left,
|
869
|
-
div.admin .right,
|
870
|
-
div.admin .expert-link,
|
871
|
-
div.item-list,
|
872
|
-
.menu {
|
873
|
-
margin: 0;
|
874
|
-
padding: 0;
|
875
|
-
}
|
876
|
-
|
877
|
-
div.admin .left {
|
878
|
-
float: left;
|
879
|
-
width: 48%;
|
880
|
-
}
|
881
|
-
div.admin .right {
|
882
|
-
float: right;
|
883
|
-
width: 48%;
|
884
|
-
}
|
885
|
-
|
886
|
-
div.admin-panel {
|
887
|
-
background: #fff url(images/gradient-inner.png) repeat-x 0 0;
|
888
|
-
padding: 1em 1em 1.5em;
|
889
|
-
}
|
890
|
-
div.admin-panel .description {
|
891
|
-
margin-bottom: 1.5em;
|
892
|
-
}
|
893
|
-
div.admin-panel dl {
|
894
|
-
margin: 0;
|
895
|
-
}
|
896
|
-
div.admin-panel dd {
|
897
|
-
color: #898989;
|
898
|
-
font-size: 0.92em;
|
899
|
-
line-height: 1.3em;
|
900
|
-
margin-top: -.2em;
|
901
|
-
margin-bottom: .65em;
|
902
|
-
}
|
903
|
-
|
904
|
-
table.system-status-report th {
|
905
|
-
border-color: #d3e7f4;
|
906
|
-
}
|
907
|
-
|
908
|
-
#autocomplete li.selected, tr.selected td, tr.selected td.active {
|
909
|
-
background: #027ac6;
|
910
|
-
color: #fff;
|
911
|
-
}
|
912
|
-
|
913
|
-
tr.selected td a:link, tr.selected td a:visited, tr.selected td a:active {
|
914
|
-
color: #d3e7f4;
|
915
|
-
}
|
916
|
-
|
917
|
-
/**
|
918
|
-
* CSS support
|
919
|
-
*/
|
920
|
-
span.clear {
|
921
|
-
display: block;
|
922
|
-
clear: both;
|
923
|
-
height: 1px;
|
924
|
-
line-height: 0px;
|
925
|
-
font-size: 0px;
|
926
|
-
margin-bottom: -1px;
|
927
|
-
}
|
928
|
-
|
929
|
-
/*******************************************************************
|
930
|
-
* Color Module: Don't touch *
|
931
|
-
*******************************************************************/
|
932
|
-
|
933
|
-
/**
|
934
|
-
* Generic elements.
|
935
|
-
*/
|
936
|
-
.messages {
|
937
|
-
background-color: #fff;
|
938
|
-
border: 1px solid #b8d3e5;
|
939
|
-
}
|
940
|
-
|
941
|
-
.preview {
|
942
|
-
background-color: #fcfce8;
|
943
|
-
border: 1px solid #e5e58f;
|
944
|
-
}
|
945
|
-
|
946
|
-
div.status {
|
947
|
-
color: #3a3;
|
948
|
-
border-color: #c7f2c8;
|
949
|
-
}
|
950
|
-
|
951
|
-
div.error {
|
952
|
-
color: #c52020;
|
953
|
-
}
|
954
|
-
|
955
|
-
.form-item input.error, .form-item textarea.error {
|
956
|
-
border: 1px solid #c52020;
|
957
|
-
color: #494949;
|
958
|
-
}
|
959
|
-
|
960
|
-
/**
|
961
|
-
* Watchdog.module
|
962
|
-
*/
|
963
|
-
tr.watchdog-user {
|
964
|
-
background-color: #fcf9e5;
|
965
|
-
}
|
966
|
-
|
967
|
-
tr.watchdog-user td.active {
|
968
|
-
background-color: #fbf5cf;
|
969
|
-
}
|
970
|
-
|
971
|
-
tr.watchdog-content {
|
972
|
-
background-color: #fefefe;
|
973
|
-
}
|
974
|
-
|
975
|
-
tr.watchdog-content td.active {
|
976
|
-
background-color: #f5f5f5;
|
977
|
-
}
|
978
|
-
|
979
|
-
tr.watchdog-warning {
|
980
|
-
background-color: #fdf5e6;
|
981
|
-
}
|
982
|
-
|
983
|
-
tr.watchdog-warning td.active {
|
984
|
-
background-color: #fdf2de;
|
985
|
-
}
|
986
|
-
|
987
|
-
tr.watchdog-error {
|
988
|
-
background-color: #fbe4e4;
|
989
|
-
}
|
990
|
-
|
991
|
-
tr.watchdog-error td.active {
|
992
|
-
background-color: #fbdbdb;
|
993
|
-
}
|
994
|
-
tr.watchdog-page-not-found, tr.watchdog-access-denied {
|
995
|
-
background: #d7ffd7;
|
996
|
-
}
|
997
|
-
tr.watchdog-page-not-found td.active, tr.watchdog-access-denied td.active {
|
998
|
-
background: #c7eec7;
|
999
|
-
}
|
1000
|
-
|
1001
|
-
/**
|
1002
|
-
* Status report colors.
|
1003
|
-
*/
|
1004
|
-
table.system-status-report tr.error, table.system-status-report tr.error th {
|
1005
|
-
background-color: #fcc;
|
1006
|
-
border-color: #ebb;
|
1007
|
-
color: #200;
|
1008
|
-
}
|
1009
|
-
table.system-status-report tr.warning, table.system-status-report tr.warning th {
|
1010
|
-
background-color: #ffd;
|
1011
|
-
border-color: #eeb;
|
1012
|
-
}
|
1013
|
-
table.system-status-report tr.ok, table.system-status-report tr.ok th {
|
1014
|
-
background-color: #dfd;
|
1015
|
-
border-color: #beb;
|
1016
|
-
}
|
1017
|
-
|
1018
|
-
.dojoPage {
|
1019
|
-
padding-right:3em;
|
1020
|
-
}
|
1021
|
-
|
1022
|
-
.dojoPage h1 {
|
1023
|
-
color:#23578d;
|
1024
|
-
font-size:32px;
|
1025
|
-
margin:0 0 0.65em 0;
|
1026
|
-
}
|
1027
|
-
|
1028
|
-
.dojoPage h4 {
|
1029
|
-
font-size:25px;
|
1030
|
-
font-family:Arial, Verdana, sans-serif;
|
1031
|
-
margin:0.3em 0;
|
1032
|
-
padding:0;
|
1033
|
-
font-weight:normal;
|
1034
|
-
}
|
1035
|
-
|
1036
|
-
.dojoPage h5 {
|
1037
|
-
color:#23578d;
|
1038
|
-
}
|
1039
|
-
|
1040
|
-
.dojoPage .dojoContainer {
|
1041
|
-
border:1px solid #b8b8b8;
|
1042
|
-
margin-bottom:2.55em;
|
1043
|
-
padding:1px;
|
1044
|
-
}
|
1045
|
-
|
1046
|
-
.dojoPage .dojoContainer table {
|
1047
|
-
width:100%;
|
1048
|
-
margin:0;
|
1049
|
-
padding:0;
|
1050
|
-
border-collapse:collapse;
|
1051
|
-
}
|
1052
|
-
|
1053
|
-
.dojoPage .dojoContainer table tbody {
|
1054
|
-
border:0;
|
1055
|
-
}
|
1056
|
-
|
1057
|
-
.dojoPage .dojoContainer table td {
|
1058
|
-
vertical-align:top;
|
1059
|
-
background:#deecf7;
|
1060
|
-
padding:1.5em;
|
1061
|
-
}
|
1062
|
-
|
1063
|
-
.dojoPage .dojoContainer table td.alt {
|
1064
|
-
background:#e8f1f7;
|
1065
|
-
width:40%;
|
1066
|
-
border-left:1px solid #fff;
|
1067
|
-
padding:1em 0.5em 0.5em 1em;
|
1068
|
-
}
|
1069
|
-
|
1070
|
-
.dojoPage .dojoContainer table td.alt ul {
|
1071
|
-
list-style-type:none;
|
1072
|
-
margin:15 0 0 0;
|
1073
|
-
padding:0;
|
1074
|
-
}
|
1075
|
-
|
1076
|
-
.dojoPage .dojoContainer table td.alt ul li {
|
1077
|
-
margin:0 0 0.4em 0;
|
1078
|
-
padding:0;
|
1079
|
-
background:none;
|
1080
|
-
font-size:14px;
|
1081
|
-
}
|
1082
|
-
|
1083
|
-
.dojoPage .dojoContainer table td a:link,
|
1084
|
-
.dojoPage .dojoContainer table td a:visited {
|
1085
|
-
color:#23578d;
|
1086
|
-
}
|
1087
|
-
|
1088
|
-
.dojoPage .dojoContainer table td p {
|
1089
|
-
padding:0;
|
1090
|
-
margin:0.3em 0 0.5em 0;
|
1091
|
-
font-size:16px;
|
1092
|
-
}
|