├── src ├── history │ ├── tests │ │ └── manual │ │ │ ├── blank.html │ │ │ └── cross-domain-iframe │ │ │ ├── index.html │ │ │ └── index_patch.html │ ├── docs │ │ └── cheatsheets │ │ │ └── History.doc │ ├── build.properties │ └── build.xml ├── treeview │ ├── assets │ │ ├── treeview-core.css │ │ └── skins │ │ │ └── sam │ │ │ ├── check0.gif │ │ │ ├── check1.gif │ │ │ ├── check2.gif │ │ │ ├── loading.gif │ │ │ ├── treeview-loading.gif │ │ │ └── treeview-sprite.gif │ ├── docs │ │ └── cheatsheets │ │ │ └── TreeView.doc │ ├── build.xml │ └── build.properties ├── colorpicker │ ├── assets │ │ ├── colorpicker-core.css │ │ ├── hue_thumb.png │ │ ├── picker_mask.png │ │ ├── picker_thumb.png │ │ └── skins │ │ │ └── sam │ │ │ ├── hue_bg.png │ │ │ └── picker_mask.png │ ├── docs │ │ └── cheatsheets │ │ │ └── colorpicker.doc │ ├── build.properties │ └── build.xml ├── paginator │ ├── assets │ │ └── paginator-core.css │ ├── build.properties │ └── build.xml ├── profilerviewer │ ├── assets │ │ ├── profilerviewer-core.css │ │ └── skins │ │ │ └── sam │ │ │ ├── asc.gif │ │ │ ├── desc.gif │ │ │ ├── wait.gif │ │ │ └── header_background.png │ ├── docs │ │ └── cheatsheets │ │ │ └── ProfilerViewer.doc │ ├── build.xml │ ├── build.properties │ └── README ├── logger │ ├── assets │ │ └── logger-core.css │ ├── docs │ │ └── cheatsheets │ │ │ └── Logger.doc │ ├── build.xml │ └── build.properties ├── tabview │ ├── tests │ │ └── functional │ │ │ ├── html │ │ │ ├── TabViewDataOpera.txt │ │ │ ├── TabViewDataSafari.txt │ │ │ ├── TabViewDataExplorer.txt │ │ │ └── TabViewDataFirefox.txt │ │ │ └── YUI-TabviewTestSpecs.xls │ ├── docs │ │ └── cheatsheets │ │ │ └── TabView.doc │ ├── build.xml │ └── build.properties ├── autocomplete │ ├── assets │ │ └── autocomplete-core.css │ ├── docs │ │ └── cheatsheets │ │ │ └── AutoComplete.doc │ ├── build.xml │ └── build.properties ├── charts │ ├── as │ │ ├── charts.swc │ │ └── com │ │ │ └── yahoo │ │ │ ├── astra │ │ │ ├── fl │ │ │ │ └── charts │ │ │ │ │ ├── series │ │ │ │ │ └── IStackedSeries.as │ │ │ │ │ ├── axes │ │ │ │ │ ├── IRadialAxisRenderer.as │ │ │ │ │ ├── IOriginAxis.as │ │ │ │ │ ├── IGridLinesRenderer.as │ │ │ │ │ ├── ScaleType.as │ │ │ │ │ ├── AxisOrientation.as │ │ │ │ │ └── IClusteringAxis.as │ │ │ │ │ ├── StackedBarChart.as │ │ │ │ │ ├── ICategoryChart.as │ │ │ │ │ └── StackedColumnChart.as │ │ │ ├── utils │ │ │ │ └── GeomUtil.as │ │ │ └── layout │ │ │ │ └── modes │ │ │ │ ├── VerticalAlignment.as │ │ │ │ └── HorizontalAlignment.as │ │ │ └── yui │ │ │ ├── LoggerCategory.as │ │ │ ├── YUILogger.as │ │ │ └── charts │ │ │ └── BackgroundImageMode.as │ ├── docs │ │ └── cheatsheets │ │ │ └── Charts.doc │ └── build.properties ├── slider │ ├── assets │ │ ├── bg-h.gif │ │ ├── bg-v.gif │ │ ├── bg-v-e.gif │ │ ├── bg-fader.gif │ │ ├── thumb-bar.gif │ │ ├── thumb-e.gif │ │ ├── thumb-n.gif │ │ ├── thumb-s.gif │ │ ├── thumb-w.gif │ │ ├── left-thumb.png │ │ ├── right-thumb.png │ │ ├── thumb-fader.gif │ │ ├── skins │ │ │ └── sam │ │ │ │ ├── bg-h.gif │ │ │ │ ├── bg-v.gif │ │ │ │ └── slider-skin.css │ │ └── slider-core.css │ ├── docs │ │ └── cheatsheets │ │ │ ├── slider.doc │ │ │ └── dualslider.doc │ ├── build.properties │ └── build.xml ├── storage │ ├── swf │ │ ├── swfstore.swf │ │ └── storage-whitelist.xml │ ├── tests │ │ └── testvalues.js │ ├── docs │ │ └── cheatsheets │ │ │ └── storage.doc │ ├── README │ ├── build.xml │ └── build.properties ├── progressbar │ ├── tests │ │ ├── bar.gif │ │ ├── mask.gif │ │ └── animbar.gif │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ ├── back-h.png │ │ │ ├── back-v.png │ │ │ ├── bar-h.png │ │ │ └── bar-v.png │ ├── docs │ │ └── cheatsheets │ │ │ └── ProgressBar.doc │ ├── README │ ├── build.xml │ └── build.properties ├── dom │ ├── docs │ │ └── cheatsheets │ │ │ └── Dom.doc │ ├── build.xml │ └── build.properties ├── get │ ├── docs │ │ └── cheatsheets │ │ │ └── Get.doc │ ├── build.xml │ └── build.properties ├── calendar │ ├── assets │ │ └── legacy │ │ │ ├── callt.gif │ │ │ ├── calrt.gif │ │ │ ├── calx.gif │ │ │ └── calgrad.png │ ├── docs │ │ └── cheatsheets │ │ │ └── Calendar.doc │ ├── build.xml │ └── build.properties ├── common │ ├── tests │ │ ├── functional │ │ │ ├── yui.tar │ │ │ └── yui │ │ │ │ ├── src │ │ │ │ └── test │ │ │ │ │ ├── resources │ │ │ │ │ ├── YUI │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── objectdata.dtd │ │ │ │ │ │ │ ├── testdata.dtd │ │ │ │ │ │ │ ├── csvdata │ │ │ │ │ │ │ ├── logindata.csv │ │ │ │ │ │ │ └── us_logindata.csv │ │ │ │ │ │ │ ├── objectdata.xml │ │ │ │ │ │ │ ├── testdata.xml │ │ │ │ │ │ │ └── Maildata.xml │ │ │ │ │ ├── host.properties │ │ │ │ │ └── log4j.properties │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── yahoo │ │ │ │ │ └── test │ │ │ │ │ └── SelNG │ │ │ │ │ └── YUI │ │ │ │ │ ├── library │ │ │ │ │ ├── host.properties │ │ │ │ │ ├── TabViewDataTv.xml │ │ │ │ │ ├── TabViewData.xml │ │ │ │ │ └── TabViewData.txt │ │ │ │ │ └── tests │ │ │ │ │ ├── ContainerTestPanel.java │ │ │ │ │ ├── ButtonTestPushButton.java │ │ │ │ │ ├── ContainerTestModule.java │ │ │ │ │ └── DragAndDropTestShim.java │ │ │ │ ├── yui │ │ │ │ ├── src │ │ │ │ │ └── test │ │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── YUI │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── objectdata.dtd │ │ │ │ │ │ │ │ ├── testdata.dtd │ │ │ │ │ │ │ │ ├── csvdata │ │ │ │ │ │ │ │ ├── logindata.csv │ │ │ │ │ │ │ │ └── us_logindata.csv │ │ │ │ │ │ │ │ ├── objectdata.xml │ │ │ │ │ │ │ │ ├── testdata.xml │ │ │ │ │ │ │ │ └── Maildata.xml │ │ │ │ │ │ ├── host.properties │ │ │ │ │ │ └── log4j.properties │ │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── yahoo │ │ │ │ │ │ └── test │ │ │ │ │ │ └── SelNG │ │ │ │ │ │ └── YUI │ │ │ │ │ │ ├── library │ │ │ │ │ │ ├── host.properties │ │ │ │ │ │ └── TabViewData.txt │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── TabViewTest.java │ │ │ │ │ │ └── ContainerTestPanel.java │ │ │ │ ├── .settings │ │ │ │ │ ├── org.maven.ide.eclipse.prefs │ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ └── .project │ │ │ │ ├── .settings │ │ │ │ ├── org.maven.ide.eclipse.prefs │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ └── .project │ │ └── smoketests.xml │ ├── README.yuiloader-dom-event │ ├── README.reset-fonts │ └── README.reset-fonts-grids ├── event │ ├── docs │ │ └── cheatsheets │ │ │ └── Event.doc │ ├── build.xml │ └── build.properties ├── json │ ├── docs │ │ └── cheatsheets │ │ │ └── json.doc │ ├── build.properties │ └── build.xml ├── menu │ ├── docs │ │ └── cheatsheets │ │ │ └── Menu.doc │ ├── assets │ │ ├── legacy │ │ │ ├── menu_up_arrow.png │ │ │ ├── menu_down_arrow.png │ │ │ ├── menuitem_checkbox.png │ │ │ ├── menu_down_arrow_disabled.png │ │ │ ├── menu_up_arrow_disabled.png │ │ │ ├── menuitem_checkbox_disabled.png │ │ │ ├── menuitem_checkbox_selected.png │ │ │ ├── menuitem_submenuindicator.png │ │ │ ├── menubaritem_submenuindicator.png │ │ │ ├── menuitem_submenuindicator_disabled.png │ │ │ ├── menuitem_submenuindicator_selected.png │ │ │ ├── menubaritem_submenuindicator_disabled.png │ │ │ └── menubaritem_submenuindicator_selected.png │ │ └── skins │ │ │ └── sam │ │ │ ├── menuitem_checkbox.png │ │ │ ├── menuitem_checkbox_disabled.png │ │ │ ├── menuitem_submenuindicator.png │ │ │ ├── menubaritem_submenuindicator.png │ │ │ ├── menuitem_submenuindicator_disabled.png │ │ │ └── menubaritem_submenuindicator_disabled.png │ ├── build.xml │ └── build.properties ├── reset │ ├── docs │ │ └── cheatsheets │ │ │ └── CSS.doc │ ├── build.properties │ └── build.xml ├── swf │ ├── tests │ │ └── YUIBridgeProject.swf │ ├── build.xml │ ├── build.properties │ └── README ├── yahoo │ ├── docs │ │ └── cheatsheets │ │ │ └── YAHOO.doc │ ├── build.xml │ ├── build.properties │ └── tests │ │ └── assets │ │ └── xframe.html ├── button │ ├── docs │ │ └── cheatsheets │ │ │ └── Button.doc │ ├── tests │ │ └── functional │ │ │ └── YUI-Button.xls │ ├── assets │ │ ├── skins │ │ │ └── sam │ │ │ │ ├── menu-button-arrow.png │ │ │ │ ├── split-button-arrow.png │ │ │ │ ├── split-button-arrow-focus.png │ │ │ │ ├── split-button-arrow-hover.png │ │ │ │ ├── menu-button-arrow-disabled.png │ │ │ │ ├── split-button-arrow-active.png │ │ │ │ └── split-button-arrow-disabled.png │ │ └── button-core.css │ ├── build.xml │ └── build.properties ├── cookie │ ├── docs │ │ └── cheatsheets │ │ │ └── Cookie.doc │ ├── build.xml │ └── build.properties ├── resize │ ├── docs │ │ └── cheatsheets │ │ │ └── Resize.doc │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ └── layout_sprite.png │ ├── build.xml │ └── build.properties ├── base │ ├── build.properties │ ├── docs │ │ └── cheatsheets │ │ │ └── README │ └── build.xml ├── container │ ├── assets │ │ └── legacy │ │ │ ├── alrt16_1.gif │ │ │ ├── blck16_1.gif │ │ │ ├── close12_1.gif │ │ │ ├── hlp16_1.gif │ │ │ ├── info16_1.gif │ │ │ ├── tip16_1.gif │ │ │ └── warn16_1.gif │ ├── docs │ │ └── cheatsheets │ │ │ ├── Dialog.doc │ │ │ └── Panel.doc │ ├── tests │ │ └── functional │ │ │ └── YUI-Container.xls │ ├── buildcore.xml │ ├── build.properties │ ├── buildcore.properties │ └── build.xml ├── yuitest │ ├── docs │ │ └── cheatsheets │ │ │ └── YUITest.doc │ ├── js │ │ └── YUITest.js │ ├── buildcore.properties │ ├── buildcore.xml │ ├── build.properties │ ├── assets │ │ └── testlogger.css │ └── build.xml ├── carousel │ ├── docs │ │ └── cheatsheets │ │ │ └── Carousel.doc │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ └── ajax-loader.gif │ ├── build.xml │ └── build.properties ├── editor │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ ├── blankimage.png │ │ │ ├── editor-knob.gif │ │ │ ├── editor-sprite.gif │ │ │ └── editor-sprite-active.gif │ ├── docs │ │ └── cheatsheets │ │ │ └── RichTextEditor.doc │ ├── build.xml │ ├── build.properties │ └── build.simple.properties ├── fonts │ ├── build.properties │ ├── docs │ │ └── cheatsheets │ │ │ └── README │ └── build.xml ├── grids │ ├── build.properties │ ├── docs │ │ └── cheatsheets │ │ │ └── README │ └── build.xml ├── profiler │ ├── docs │ │ └── cheatsheets │ │ │ └── Profiler.doc │ ├── build.xml │ ├── build.properties │ └── README ├── selector │ ├── docs │ │ └── cheatsheets │ │ │ └── Selector.doc │ ├── build.xml │ └── build.properties ├── swfstore │ ├── docs │ │ └── cheatsheets │ │ │ └── SWFStore.doc │ ├── README │ └── build.properties ├── uploader │ ├── docs │ │ └── cheatsheets │ │ │ └── Uploader.doc │ └── build.properties ├── animation │ ├── docs │ │ └── cheatsheets │ │ │ └── Animation.doc │ ├── build.xml │ └── build.properties ├── connection │ ├── docs │ │ └── cheatsheet │ │ │ └── Connection.doc │ ├── tests │ │ └── submitReporter.php │ ├── build.xml │ ├── connection_core.xml │ ├── connection_core.properties │ └── build.properties ├── datasource │ ├── docs │ │ └── cheatsheets │ │ │ └── DataSource.doc │ ├── build.xml │ └── build.properties ├── datatable │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ ├── dt-arrow-dn.png │ │ │ └── dt-arrow-up.png │ ├── docs │ │ └── cheatsheets │ │ │ └── DataTable.doc │ ├── build.xml │ └── build.properties ├── dragdrop │ ├── docs │ │ └── cheatsheets │ │ │ └── DragAndDrop.doc │ ├── tests │ │ └── functional │ │ │ ├── YUI-DragAndDrop.xls │ │ │ └── selenium │ │ │ └── reorder2.html │ ├── build.xml │ └── build.properties ├── layout │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ └── layout_sprite.png │ ├── docs │ │ └── cheatsheets │ │ │ └── LayoutManager.doc │ ├── build.xml │ └── build.properties ├── yuiloader │ ├── docs │ │ └── cheatsheets │ │ │ └── YUILoader.doc │ ├── build.xml │ └── build.properties ├── imageloader │ ├── docs │ │ └── cheatsheets │ │ │ └── ImageLoader.doc │ ├── build.xml │ ├── build.properties │ └── README ├── imagecropper │ ├── docs │ │ └── cheatsheets │ │ │ └── ImageCropper.doc │ ├── build.xml │ ├── assets │ │ ├── skins │ │ │ └── sam │ │ │ │ └── imagecropper-skin.css │ │ └── imagecropper-core.css │ ├── build.properties │ └── README ├── stylesheet │ ├── build.properties │ ├── build.xml │ └── README ├── event-simulate │ ├── README │ ├── build.properties │ └── build.xml ├── swfdetect │ ├── README │ ├── build.xml │ └── build.properties ├── element │ ├── build.xml │ └── build.properties ├── element-delegate │ ├── build.xml │ └── build.properties ├── event-delegate │ ├── build.xml │ └── build.properties ├── event-mouseenter │ ├── build.xml │ └── build.properties └── datemath │ ├── build.xml │ ├── README │ └── build.properties ├── RELEASENOTES ├── api └── assets │ ├── yui.png │ └── bg_hd.gif ├── as-api └── images │ ├── logo.jpg │ ├── expanded.gif │ ├── collapsed.gif │ ├── inherit-arrow.gif │ ├── titleTableTop.jpg │ ├── detailHeaderRule.jpg │ ├── inheritedSummary.gif │ ├── titleTableBottom.jpg │ ├── titleTableMiddle.jpg │ └── detailSectionHeader.jpg ├── sandbox ├── yahoo │ ├── yui.json │ ├── load.js │ ├── e.html │ ├── sprintf.html │ └── later.html ├── dragdrop │ ├── bg-v.gif │ ├── sync.sh │ └── README.textile ├── editor │ ├── gutter.gif │ ├── smiley.gif │ ├── insertdate.gif │ ├── line-numbers.png │ ├── pics │ │ ├── Photo1.jpg │ │ ├── Photo2.jpg │ │ ├── Photo3.jpg │ │ ├── Photo4.jpg │ │ └── Photo5.jpg │ ├── frame.php │ ├── sync.sh │ └── README.textile ├── imagecropper │ ├── yui.jpg │ ├── Palace.jpg │ ├── ClownFish.jpg │ ├── yui-small.jpg │ ├── sync.sh │ └── README.textile ├── layout │ ├── progress.gif │ ├── LayoutSprite.psd │ ├── Layout-Wireframe.psd │ ├── sync.sh │ └── README.textile ├── progressbar │ ├── BnW.gif │ ├── bar.gif │ ├── grid.gif │ ├── mask.gif │ ├── star.png │ ├── animbar.gif │ ├── ruler.gif │ ├── thinbar.gif │ ├── vumeter.png │ ├── diagrama.png │ ├── gradient.png │ ├── hgradient.png │ ├── maskdiag.png │ ├── thinmask.gif │ ├── vgradient.png │ ├── copperbackV.gif │ ├── copperbarV.gif │ └── coppermaskV.gif ├── resize │ ├── pics │ │ ├── Photo1.jpg │ │ ├── Photo2.jpg │ │ ├── Photo3.jpg │ │ ├── Photo4.jpg │ │ └── Photo5.jpg │ ├── sync.sh │ └── README.textile ├── storage │ └── datastore.swf ├── treeview │ ├── img │ │ ├── bullet.gif │ │ ├── greybg.png │ │ ├── header.gif │ │ ├── logo.gif │ │ ├── qtop.png │ │ ├── check │ │ │ ├── lm.gif │ │ │ ├── ln.gif │ │ │ ├── lp.gif │ │ │ ├── tm.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── lmh.gif │ │ │ ├── lph.gif │ │ │ ├── tmh.gif │ │ │ ├── tph.gif │ │ │ ├── vline.gif │ │ │ ├── check0.gif │ │ │ ├── check1.gif │ │ │ ├── check2.gif │ │ │ └── loading.gif │ │ ├── qbottom.png │ │ ├── qmiddle.png │ │ ├── default │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ ├── vline.gif │ │ │ └── loading.gif │ │ ├── folders │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ ├── vline.gif │ │ │ └── loading.gif │ │ ├── menu │ │ │ ├── dash.gif │ │ │ ├── expand.gif │ │ │ ├── collapse.gif │ │ │ ├── expandh.gif │ │ │ ├── expandon.gif │ │ │ ├── loading.gif │ │ │ ├── collapseh.gif │ │ │ └── collapseon.gif │ │ └── navHover2.png │ ├── assets │ │ ├── css │ │ │ ├── loading.gif │ │ │ ├── sprite-menu.gif │ │ │ ├── sprite-orig.gif │ │ │ ├── treeview-loading.gif │ │ │ └── treeview-sprite.gif │ │ └── legacy │ │ │ └── img │ │ │ ├── default.gif │ │ │ ├── check │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ ├── check0.gif │ │ │ ├── check1.gif │ │ │ ├── check2.gif │ │ │ ├── vline.gif │ │ │ └── loading.gif │ │ │ ├── menu │ │ │ ├── dash.gif │ │ │ ├── expand.gif │ │ │ ├── expandh.gif │ │ │ ├── loading.gif │ │ │ ├── collapse.gif │ │ │ ├── collapseh.gif │ │ │ ├── expandon.gif │ │ │ └── collapseon.gif │ │ │ ├── default │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ ├── vline.gif │ │ │ └── loading.gif │ │ │ └── folders │ │ │ ├── lm.gif │ │ │ ├── lmh.gif │ │ │ ├── ln.gif │ │ │ ├── lp.gif │ │ │ ├── lph.gif │ │ │ ├── tm.gif │ │ │ ├── tmh.gif │ │ │ ├── tn.gif │ │ │ ├── tp.gif │ │ │ ├── tph.gif │ │ │ ├── vline.gif │ │ │ └── loading.gif │ └── js │ │ └── log.js ├── rowexpansion │ ├── spinner.gif │ ├── arrow_open.png │ ├── arrow_closed.png │ ├── rowexp_examples │ │ ├── dt_rowexp_contributor.php │ │ ├── dt_rowexp_intro.php │ │ └── dt_rowexp_customheader.php │ ├── rowexp_complex_examples │ │ ├── dt_rowexp_complex_contributor.php │ │ └── dt_rowexp_complex_intro.php │ └── rowexp_basic_examples │ │ ├── dt_rowexp_basic_intro.php │ │ └── dt_rowexp_basic_customheader.php ├── carousel │ └── examples │ │ ├── img │ │ └── logo.gif │ │ ├── css │ │ └── carousel.css │ │ └── titles.inc ├── colorpicker │ └── legacy │ │ └── hue_bg.png ├── datastore │ └── docs │ │ └── cheatsheets │ │ └── SWFStore.doc ├── event │ ├── EventReceiver.js │ ├── iframe-test.html │ ├── iframe-test.js │ ├── iframe-content.html │ ├── simple.html │ ├── focusblur.html │ └── avail.html ├── buttonariaplugin │ ├── build.xml │ ├── build.sh │ └── build.properties ├── carouselariaplugin │ ├── build.xml │ ├── build.sh │ └── build.properties ├── menuariaplugin │ ├── build.sh │ ├── build.xml │ └── build.properties ├── tabviewariaplugin │ ├── build.xml │ ├── build.sh │ └── build.properties ├── containerariaplugin │ ├── build.xml │ ├── build.sh │ └── build.properties ├── base │ └── minify-and-build.sh ├── fonts │ └── minify-and-build.sh ├── grids │ └── minify-and-build.sh ├── reset │ └── minify-and-build.sh ├── imageloader │ └── scrollcascade.js └── datatable │ └── 2528339_editorinit.js └── .gitignore /src/history/tests/manual/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/treeview/assets/treeview-core.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/colorpicker/assets/colorpicker-core.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/paginator/assets/paginator-core.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/profilerviewer/assets/profilerviewer-core.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/RELEASENOTES -------------------------------------------------------------------------------- /src/logger/assets/logger-core.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank */ 2 | -------------------------------------------------------------------------------- /api/assets/yui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/api/assets/yui.png -------------------------------------------------------------------------------- /src/tabview/tests/functional/html/TabViewDataOpera.txt: -------------------------------------------------------------------------------- 1 | This is Opera content 2 | -------------------------------------------------------------------------------- /src/tabview/tests/functional/html/TabViewDataSafari.txt: -------------------------------------------------------------------------------- 1 | This is Safari content 2 | -------------------------------------------------------------------------------- /api/assets/bg_hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/api/assets/bg_hd.gif -------------------------------------------------------------------------------- /src/tabview/tests/functional/html/TabViewDataExplorer.txt: -------------------------------------------------------------------------------- 1 | This is Explorer content 2 | -------------------------------------------------------------------------------- /src/tabview/tests/functional/html/TabViewDataFirefox.txt: -------------------------------------------------------------------------------- 1 | This is Firefox content 2 | -------------------------------------------------------------------------------- /as-api/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/logo.jpg -------------------------------------------------------------------------------- /sandbox/yahoo/yui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/yahoo/yui.json -------------------------------------------------------------------------------- /src/autocomplete/assets/autocomplete-core.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank */ 2 | -------------------------------------------------------------------------------- /as-api/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/expanded.gif -------------------------------------------------------------------------------- /sandbox/dragdrop/bg-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/dragdrop/bg-v.gif -------------------------------------------------------------------------------- /sandbox/editor/gutter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/gutter.gif -------------------------------------------------------------------------------- /sandbox/editor/smiley.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/smiley.gif -------------------------------------------------------------------------------- /src/charts/as/charts.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/charts/as/charts.swc -------------------------------------------------------------------------------- /src/slider/assets/bg-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/bg-h.gif -------------------------------------------------------------------------------- /src/slider/assets/bg-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/bg-v.gif -------------------------------------------------------------------------------- /as-api/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/collapsed.gif -------------------------------------------------------------------------------- /sandbox/imagecropper/yui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/imagecropper/yui.jpg -------------------------------------------------------------------------------- /sandbox/layout/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/layout/progress.gif -------------------------------------------------------------------------------- /sandbox/progressbar/BnW.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/BnW.gif -------------------------------------------------------------------------------- /sandbox/progressbar/bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/bar.gif -------------------------------------------------------------------------------- /sandbox/progressbar/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/grid.gif -------------------------------------------------------------------------------- /sandbox/progressbar/mask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/mask.gif -------------------------------------------------------------------------------- /sandbox/progressbar/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/star.png -------------------------------------------------------------------------------- /src/slider/assets/bg-v-e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/bg-v-e.gif -------------------------------------------------------------------------------- /src/storage/swf/swfstore.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/storage/swf/swfstore.swf -------------------------------------------------------------------------------- /as-api/images/inherit-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/inherit-arrow.gif -------------------------------------------------------------------------------- /as-api/images/titleTableTop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/titleTableTop.jpg -------------------------------------------------------------------------------- /sandbox/editor/insertdate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/insertdate.gif -------------------------------------------------------------------------------- /sandbox/editor/line-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/line-numbers.png -------------------------------------------------------------------------------- /sandbox/editor/pics/Photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/pics/Photo1.jpg -------------------------------------------------------------------------------- /sandbox/editor/pics/Photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/pics/Photo2.jpg -------------------------------------------------------------------------------- /sandbox/editor/pics/Photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/pics/Photo3.jpg -------------------------------------------------------------------------------- /sandbox/editor/pics/Photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/pics/Photo4.jpg -------------------------------------------------------------------------------- /sandbox/editor/pics/Photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/editor/pics/Photo5.jpg -------------------------------------------------------------------------------- /sandbox/imagecropper/Palace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/imagecropper/Palace.jpg -------------------------------------------------------------------------------- /sandbox/layout/LayoutSprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/layout/LayoutSprite.psd -------------------------------------------------------------------------------- /sandbox/progressbar/animbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/animbar.gif -------------------------------------------------------------------------------- /sandbox/progressbar/ruler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/ruler.gif -------------------------------------------------------------------------------- /sandbox/progressbar/thinbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/thinbar.gif -------------------------------------------------------------------------------- /sandbox/progressbar/vumeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/vumeter.png -------------------------------------------------------------------------------- /sandbox/resize/pics/Photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/resize/pics/Photo1.jpg -------------------------------------------------------------------------------- /sandbox/resize/pics/Photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/resize/pics/Photo2.jpg -------------------------------------------------------------------------------- /sandbox/resize/pics/Photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/resize/pics/Photo3.jpg -------------------------------------------------------------------------------- /sandbox/resize/pics/Photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/resize/pics/Photo4.jpg -------------------------------------------------------------------------------- /sandbox/resize/pics/Photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/resize/pics/Photo5.jpg -------------------------------------------------------------------------------- /sandbox/storage/datastore.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/storage/datastore.swf -------------------------------------------------------------------------------- /sandbox/treeview/img/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/bullet.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/greybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/greybg.png -------------------------------------------------------------------------------- /sandbox/treeview/img/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/header.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/logo.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/qtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/qtop.png -------------------------------------------------------------------------------- /src/progressbar/tests/bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/tests/bar.gif -------------------------------------------------------------------------------- /src/progressbar/tests/mask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/tests/mask.gif -------------------------------------------------------------------------------- /src/slider/assets/bg-fader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/bg-fader.gif -------------------------------------------------------------------------------- /src/slider/assets/thumb-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/thumb-bar.gif -------------------------------------------------------------------------------- /src/slider/assets/thumb-e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/thumb-e.gif -------------------------------------------------------------------------------- /src/slider/assets/thumb-n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/thumb-n.gif -------------------------------------------------------------------------------- /src/slider/assets/thumb-s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/thumb-s.gif -------------------------------------------------------------------------------- /src/slider/assets/thumb-w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/thumb-w.gif -------------------------------------------------------------------------------- /src/storage/tests/testvalues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/storage/tests/testvalues.js -------------------------------------------------------------------------------- /sandbox/progressbar/diagrama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/diagrama.png -------------------------------------------------------------------------------- /sandbox/progressbar/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/gradient.png -------------------------------------------------------------------------------- /sandbox/progressbar/hgradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/hgradient.png -------------------------------------------------------------------------------- /sandbox/progressbar/maskdiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/maskdiag.png -------------------------------------------------------------------------------- /sandbox/progressbar/thinmask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/thinmask.gif -------------------------------------------------------------------------------- /sandbox/progressbar/vgradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/vgradient.png -------------------------------------------------------------------------------- /sandbox/rowexpansion/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/rowexpansion/spinner.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/lm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/lm.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/ln.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/lp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/lp.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/tm.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/tn.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/tp.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/qbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/qbottom.png -------------------------------------------------------------------------------- /sandbox/treeview/img/qmiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/qmiddle.png -------------------------------------------------------------------------------- /src/dom/docs/cheatsheets/Dom.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/dom/docs/cheatsheets/Dom.doc -------------------------------------------------------------------------------- /src/get/docs/cheatsheets/Get.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/get/docs/cheatsheets/Get.doc -------------------------------------------------------------------------------- /src/progressbar/tests/animbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/tests/animbar.gif -------------------------------------------------------------------------------- /src/slider/assets/left-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/left-thumb.png -------------------------------------------------------------------------------- /src/slider/assets/right-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/right-thumb.png -------------------------------------------------------------------------------- /src/slider/assets/thumb-fader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/thumb-fader.gif -------------------------------------------------------------------------------- /as-api/images/detailHeaderRule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/detailHeaderRule.jpg -------------------------------------------------------------------------------- /as-api/images/inheritedSummary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/inheritedSummary.gif -------------------------------------------------------------------------------- /as-api/images/titleTableBottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/titleTableBottom.jpg -------------------------------------------------------------------------------- /as-api/images/titleTableMiddle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/titleTableMiddle.jpg -------------------------------------------------------------------------------- /sandbox/imagecropper/ClownFish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/imagecropper/ClownFish.jpg -------------------------------------------------------------------------------- /sandbox/imagecropper/yui-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/imagecropper/yui-small.jpg -------------------------------------------------------------------------------- /sandbox/layout/Layout-Wireframe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/layout/Layout-Wireframe.psd -------------------------------------------------------------------------------- /sandbox/progressbar/copperbackV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/copperbackV.gif -------------------------------------------------------------------------------- /sandbox/progressbar/copperbarV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/copperbarV.gif -------------------------------------------------------------------------------- /sandbox/progressbar/coppermaskV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/progressbar/coppermaskV.gif -------------------------------------------------------------------------------- /sandbox/rowexpansion/arrow_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/rowexpansion/arrow_open.png -------------------------------------------------------------------------------- /sandbox/treeview/img/check/lmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/lmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/lph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/lph.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/tmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/tmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/tph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/tph.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/vline.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/lm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/lm.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/lmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/lmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/ln.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/lp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/lp.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/lph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/lph.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/tm.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/tmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/tmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/tn.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/tp.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/tph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/tph.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/lm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/lm.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/lmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/lmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/ln.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/lp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/lp.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/lph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/lph.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/tm.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/tmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/tmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/tn.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/tp.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/tph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/tph.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/dash.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/expand.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/navHover2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/navHover2.png -------------------------------------------------------------------------------- /src/calendar/assets/legacy/callt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/calendar/assets/legacy/callt.gif -------------------------------------------------------------------------------- /src/calendar/assets/legacy/calrt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/calendar/assets/legacy/calrt.gif -------------------------------------------------------------------------------- /src/calendar/assets/legacy/calx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/calendar/assets/legacy/calx.gif -------------------------------------------------------------------------------- /src/colorpicker/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/colorpicker/assets/hue_thumb.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/common/tests/functional/yui.tar -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/objectdata.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/event/docs/cheatsheets/Event.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/event/docs/cheatsheets/Event.doc -------------------------------------------------------------------------------- /src/json/docs/cheatsheets/json.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/json/docs/cheatsheets/json.doc -------------------------------------------------------------------------------- /src/menu/docs/cheatsheets/Menu.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/docs/cheatsheets/Menu.doc -------------------------------------------------------------------------------- /src/reset/docs/cheatsheets/CSS.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/reset/docs/cheatsheets/CSS.doc -------------------------------------------------------------------------------- /src/slider/assets/skins/sam/bg-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/skins/sam/bg-h.gif -------------------------------------------------------------------------------- /src/slider/assets/skins/sam/bg-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/assets/skins/sam/bg-v.gif -------------------------------------------------------------------------------- /src/swf/tests/YUIBridgeProject.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/swf/tests/YUIBridgeProject.swf -------------------------------------------------------------------------------- /src/yahoo/docs/cheatsheets/YAHOO.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/yahoo/docs/cheatsheets/YAHOO.doc -------------------------------------------------------------------------------- /as-api/images/detailSectionHeader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/as-api/images/detailSectionHeader.jpg -------------------------------------------------------------------------------- /sandbox/carousel/examples/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/carousel/examples/img/logo.gif -------------------------------------------------------------------------------- /sandbox/colorpicker/legacy/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/colorpicker/legacy/hue_bg.png -------------------------------------------------------------------------------- /sandbox/dragdrop/sync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Syncing files" 4 | cp ./js/* ../../src/dragdrop/js/ 5 | echo "Done" 6 | -------------------------------------------------------------------------------- /sandbox/layout/sync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Syncing files" 4 | cp ./js/* ../../src/layout/js/ 5 | echo "Done" 6 | -------------------------------------------------------------------------------- /sandbox/resize/sync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Syncing files" 4 | cp ./js/* ../../src/resize/js/ 5 | echo "Done" 6 | -------------------------------------------------------------------------------- /sandbox/rowexpansion/arrow_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/rowexpansion/arrow_closed.png -------------------------------------------------------------------------------- /sandbox/treeview/img/check/check0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/check0.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/check1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/check1.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/check2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/check2.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/check/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/check/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/vline.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/vline.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/collapse.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/expandh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/expandh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/expandon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/expandon.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/loading.gif -------------------------------------------------------------------------------- /src/button/docs/cheatsheets/Button.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/docs/cheatsheets/Button.doc -------------------------------------------------------------------------------- /src/calendar/assets/legacy/calgrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/calendar/assets/legacy/calgrad.png -------------------------------------------------------------------------------- /src/charts/docs/cheatsheets/Charts.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/charts/docs/cheatsheets/Charts.doc -------------------------------------------------------------------------------- /src/colorpicker/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/colorpicker/assets/picker_mask.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/objectdata.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cookie/docs/cheatsheets/Cookie.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/cookie/docs/cheatsheets/Cookie.doc -------------------------------------------------------------------------------- /src/logger/docs/cheatsheets/Logger.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/logger/docs/cheatsheets/Logger.doc -------------------------------------------------------------------------------- /src/resize/docs/cheatsheets/Resize.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/resize/docs/cheatsheets/Resize.doc -------------------------------------------------------------------------------- /src/slider/docs/cheatsheets/slider.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/docs/cheatsheets/slider.doc -------------------------------------------------------------------------------- /sandbox/treeview/assets/css/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/css/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/default/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/folders/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/folders/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/collapseh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/collapseh.gif -------------------------------------------------------------------------------- /sandbox/treeview/img/menu/collapseon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/img/menu/collapseon.gif -------------------------------------------------------------------------------- /src/base/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=base 4 | component.cssfiles=base.css 5 | -------------------------------------------------------------------------------- /src/colorpicker/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/colorpicker/assets/picker_thumb.png -------------------------------------------------------------------------------- /src/container/assets/legacy/alrt16_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/alrt16_1.gif -------------------------------------------------------------------------------- /src/container/assets/legacy/blck16_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/blck16_1.gif -------------------------------------------------------------------------------- /src/container/assets/legacy/close12_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/close12_1.gif -------------------------------------------------------------------------------- /src/container/assets/legacy/hlp16_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/hlp16_1.gif -------------------------------------------------------------------------------- /src/container/assets/legacy/info16_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/info16_1.gif -------------------------------------------------------------------------------- /src/container/assets/legacy/tip16_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/tip16_1.gif -------------------------------------------------------------------------------- /src/container/assets/legacy/warn16_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/assets/legacy/warn16_1.gif -------------------------------------------------------------------------------- /src/container/docs/cheatsheets/Dialog.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/docs/cheatsheets/Dialog.doc -------------------------------------------------------------------------------- /src/container/docs/cheatsheets/Panel.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/docs/cheatsheets/Panel.doc -------------------------------------------------------------------------------- /src/history/docs/cheatsheets/History.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/history/docs/cheatsheets/History.doc -------------------------------------------------------------------------------- /src/menu/assets/legacy/menu_up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menu_up_arrow.png -------------------------------------------------------------------------------- /src/storage/docs/cheatsheets/storage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/storage/docs/cheatsheets/storage.doc -------------------------------------------------------------------------------- /src/tabview/docs/cheatsheets/TabView.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/tabview/docs/cheatsheets/TabView.doc -------------------------------------------------------------------------------- /src/treeview/assets/skins/sam/check0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/assets/skins/sam/check0.gif -------------------------------------------------------------------------------- /src/treeview/assets/skins/sam/check1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/assets/skins/sam/check1.gif -------------------------------------------------------------------------------- /src/treeview/assets/skins/sam/check2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/assets/skins/sam/check2.gif -------------------------------------------------------------------------------- /src/treeview/assets/skins/sam/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/assets/skins/sam/loading.gif -------------------------------------------------------------------------------- /src/yuitest/docs/cheatsheets/YUITest.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/yuitest/docs/cheatsheets/YUITest.doc -------------------------------------------------------------------------------- /sandbox/imagecropper/sync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Syncing files" 4 | cp ./js/* ../../src/imagecropper/js/ 5 | echo "Done" 6 | -------------------------------------------------------------------------------- /sandbox/treeview/assets/css/sprite-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/css/sprite-menu.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/css/sprite-orig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/css/sprite-orig.gif -------------------------------------------------------------------------------- /src/button/tests/functional/YUI-Button.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/tests/functional/YUI-Button.xls -------------------------------------------------------------------------------- /src/calendar/docs/cheatsheets/Calendar.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/calendar/docs/cheatsheets/Calendar.doc -------------------------------------------------------------------------------- /src/carousel/docs/cheatsheets/Carousel.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/carousel/docs/cheatsheets/Carousel.doc -------------------------------------------------------------------------------- /src/colorpicker/assets/skins/sam/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/colorpicker/assets/skins/sam/hue_bg.png -------------------------------------------------------------------------------- /src/editor/assets/skins/sam/blankimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/editor/assets/skins/sam/blankimage.png -------------------------------------------------------------------------------- /src/editor/assets/skins/sam/editor-knob.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/editor/assets/skins/sam/editor-knob.gif -------------------------------------------------------------------------------- /src/fonts/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=fonts 4 | component.cssfiles=fonts.css 5 | -------------------------------------------------------------------------------- /src/grids/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=grids 4 | component.cssfiles=grids.css 5 | -------------------------------------------------------------------------------- /src/menu/assets/legacy/menu_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menu_down_arrow.png -------------------------------------------------------------------------------- /src/profiler/docs/cheatsheets/Profiler.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/profiler/docs/cheatsheets/Profiler.doc -------------------------------------------------------------------------------- /src/profilerviewer/assets/skins/sam/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/profilerviewer/assets/skins/sam/asc.gif -------------------------------------------------------------------------------- /src/progressbar/assets/skins/sam/back-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/assets/skins/sam/back-h.png -------------------------------------------------------------------------------- /src/progressbar/assets/skins/sam/back-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/assets/skins/sam/back-v.png -------------------------------------------------------------------------------- /src/progressbar/assets/skins/sam/bar-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/assets/skins/sam/bar-h.png -------------------------------------------------------------------------------- /src/progressbar/assets/skins/sam/bar-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/assets/skins/sam/bar-v.png -------------------------------------------------------------------------------- /src/reset/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=reset 4 | component.cssfiles=reset.css 5 | -------------------------------------------------------------------------------- /src/selector/docs/cheatsheets/Selector.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/selector/docs/cheatsheets/Selector.doc -------------------------------------------------------------------------------- /src/slider/docs/cheatsheets/dualslider.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/slider/docs/cheatsheets/dualslider.doc -------------------------------------------------------------------------------- /src/swfstore/docs/cheatsheets/SWFStore.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/swfstore/docs/cheatsheets/SWFStore.doc -------------------------------------------------------------------------------- /src/treeview/docs/cheatsheets/TreeView.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/docs/cheatsheets/TreeView.doc -------------------------------------------------------------------------------- /src/uploader/docs/cheatsheets/Uploader.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/uploader/docs/cheatsheets/Uploader.doc -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default.gif -------------------------------------------------------------------------------- /src/animation/docs/cheatsheets/Animation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/animation/docs/cheatsheets/Animation.doc -------------------------------------------------------------------------------- /src/carousel/assets/skins/sam/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/carousel/assets/skins/sam/ajax-loader.gif -------------------------------------------------------------------------------- /src/connection/docs/cheatsheet/Connection.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/connection/docs/cheatsheet/Connection.doc -------------------------------------------------------------------------------- /src/datasource/docs/cheatsheets/DataSource.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/datasource/docs/cheatsheets/DataSource.doc -------------------------------------------------------------------------------- /src/datatable/assets/skins/sam/dt-arrow-dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/datatable/assets/skins/sam/dt-arrow-dn.png -------------------------------------------------------------------------------- /src/datatable/assets/skins/sam/dt-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/datatable/assets/skins/sam/dt-arrow-up.png -------------------------------------------------------------------------------- /src/datatable/docs/cheatsheets/DataTable.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/datatable/docs/cheatsheets/DataTable.doc -------------------------------------------------------------------------------- /src/dragdrop/docs/cheatsheets/DragAndDrop.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/dragdrop/docs/cheatsheets/DragAndDrop.doc -------------------------------------------------------------------------------- /src/editor/assets/skins/sam/editor-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/editor/assets/skins/sam/editor-sprite.gif -------------------------------------------------------------------------------- /src/editor/docs/cheatsheets/RichTextEditor.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/editor/docs/cheatsheets/RichTextEditor.doc -------------------------------------------------------------------------------- /src/layout/assets/skins/sam/layout_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/layout/assets/skins/sam/layout_sprite.png -------------------------------------------------------------------------------- /src/layout/docs/cheatsheets/LayoutManager.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/layout/docs/cheatsheets/LayoutManager.doc -------------------------------------------------------------------------------- /src/menu/assets/legacy/menuitem_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menuitem_checkbox.png -------------------------------------------------------------------------------- /src/profilerviewer/assets/skins/sam/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/profilerviewer/assets/skins/sam/desc.gif -------------------------------------------------------------------------------- /src/profilerviewer/assets/skins/sam/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/profilerviewer/assets/skins/sam/wait.gif -------------------------------------------------------------------------------- /src/resize/assets/skins/sam/layout_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/resize/assets/skins/sam/layout_sprite.png -------------------------------------------------------------------------------- /src/yuiloader/docs/cheatsheets/YUILoader.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/yuiloader/docs/cheatsheets/YUILoader.doc -------------------------------------------------------------------------------- /sandbox/datastore/docs/cheatsheets/SWFStore.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/datastore/docs/cheatsheets/SWFStore.doc -------------------------------------------------------------------------------- /sandbox/treeview/assets/css/treeview-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/css/treeview-loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/css/treeview-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/css/treeview-sprite.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/lm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/lm.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/lmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/lmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/ln.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/lp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/lp.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/lph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/lph.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/tm.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/tmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/tmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/tn.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/tp.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/tph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/tph.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/dash.gif -------------------------------------------------------------------------------- /src/colorpicker/assets/skins/sam/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/colorpicker/assets/skins/sam/picker_mask.png -------------------------------------------------------------------------------- /src/colorpicker/docs/cheatsheets/colorpicker.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/colorpicker/docs/cheatsheets/colorpicker.doc -------------------------------------------------------------------------------- /src/container/tests/functional/YUI-Container.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/container/tests/functional/YUI-Container.xls -------------------------------------------------------------------------------- /src/imageloader/docs/cheatsheets/ImageLoader.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/imageloader/docs/cheatsheets/ImageLoader.doc -------------------------------------------------------------------------------- /src/menu/assets/skins/sam/menuitem_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/skins/sam/menuitem_checkbox.png -------------------------------------------------------------------------------- /src/progressbar/docs/cheatsheets/ProgressBar.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/progressbar/docs/cheatsheets/ProgressBar.doc -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/check0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/check0.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/check1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/check1.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/check2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/check2.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/vline.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/lm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/lm.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/lmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/lmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/ln.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/lp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/lp.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/lph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/lph.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/tm.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/tmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/tmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/tn.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/tp.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/tph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/tph.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/lm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/lm.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/lmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/lmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/ln.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/ln.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/lp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/lp.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/lph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/lph.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/tm.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/tmh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/tmh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/tn.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/tp.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/tph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/tph.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/expand.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/expandh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/expandh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/loading.gif -------------------------------------------------------------------------------- /src/autocomplete/docs/cheatsheets/AutoComplete.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/autocomplete/docs/cheatsheets/AutoComplete.doc -------------------------------------------------------------------------------- /src/base/docs/cheatsheets/README: -------------------------------------------------------------------------------- 1 | Note: YUI's four CSS Tools share a single cheatsheet. It lives in 2 | Reset's directory structure. 3 | 4 | -------------------------------------------------------------------------------- /src/button/assets/skins/sam/menu-button-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/menu-button-arrow.png -------------------------------------------------------------------------------- /src/button/assets/skins/sam/split-button-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/split-button-arrow.png -------------------------------------------------------------------------------- /src/dragdrop/tests/functional/YUI-DragAndDrop.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/dragdrop/tests/functional/YUI-DragAndDrop.xls -------------------------------------------------------------------------------- /src/fonts/docs/cheatsheets/README: -------------------------------------------------------------------------------- 1 | Note: YUI's four CSS Tools share a single cheatsheet. It lives in 2 | Reset's directory structure. 3 | 4 | -------------------------------------------------------------------------------- /src/grids/docs/cheatsheets/README: -------------------------------------------------------------------------------- 1 | Note: YUI's four CSS Tools share a single cheatsheet. It lives in 2 | Reset's directory structure. 3 | 4 | -------------------------------------------------------------------------------- /src/imagecropper/docs/cheatsheets/ImageCropper.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/imagecropper/docs/cheatsheets/ImageCropper.doc -------------------------------------------------------------------------------- /src/menu/assets/legacy/menu_down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menu_down_arrow_disabled.png -------------------------------------------------------------------------------- /src/menu/assets/legacy/menu_up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menu_up_arrow_disabled.png -------------------------------------------------------------------------------- /src/treeview/assets/skins/sam/treeview-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/assets/skins/sam/treeview-loading.gif -------------------------------------------------------------------------------- /src/treeview/assets/skins/sam/treeview-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/treeview/assets/skins/sam/treeview-sprite.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/check/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/check/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/vline.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/vline.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/collapse.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/collapseh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/collapseh.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/expandon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/expandon.gif -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/testdata.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/editor/assets/skins/sam/editor-sprite-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/editor/assets/skins/sam/editor-sprite-active.gif -------------------------------------------------------------------------------- /src/menu/assets/legacy/menuitem_checkbox_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menuitem_checkbox_disabled.png -------------------------------------------------------------------------------- /src/menu/assets/legacy/menuitem_checkbox_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menuitem_checkbox_selected.png -------------------------------------------------------------------------------- /src/menu/assets/legacy/menuitem_submenuindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menuitem_submenuindicator.png -------------------------------------------------------------------------------- /src/tabview/tests/functional/YUI-TabviewTestSpecs.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/tabview/tests/functional/YUI-TabviewTestSpecs.xls -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/default/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/folders/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/folders/loading.gif -------------------------------------------------------------------------------- /sandbox/treeview/assets/legacy/img/menu/collapseon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/sandbox/treeview/assets/legacy/img/menu/collapseon.gif -------------------------------------------------------------------------------- /src/button/assets/skins/sam/split-button-arrow-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/split-button-arrow-focus.png -------------------------------------------------------------------------------- /src/button/assets/skins/sam/split-button-arrow-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/split-button-arrow-hover.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/testdata.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/menu/assets/legacy/menubaritem_submenuindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menubaritem_submenuindicator.png -------------------------------------------------------------------------------- /src/menu/assets/skins/sam/menuitem_checkbox_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/skins/sam/menuitem_checkbox_disabled.png -------------------------------------------------------------------------------- /src/menu/assets/skins/sam/menuitem_submenuindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/skins/sam/menuitem_submenuindicator.png -------------------------------------------------------------------------------- /src/profilerviewer/docs/cheatsheets/ProfilerViewer.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/profilerviewer/docs/cheatsheets/ProfilerViewer.doc -------------------------------------------------------------------------------- /src/button/assets/skins/sam/menu-button-arrow-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/menu-button-arrow-disabled.png -------------------------------------------------------------------------------- /src/button/assets/skins/sam/split-button-arrow-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/split-button-arrow-active.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/host.properties: -------------------------------------------------------------------------------- 1 | # Domain to prepend to page URIs. No / at end 2 | DOMAIN=http\://presentbright.corp.yahoo.com -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/host.properties: -------------------------------------------------------------------------------- 1 | # Domain to prepend to page URIs. No / at end 2 | DOMAIN=http\://presentbright.corp.yahoo.com -------------------------------------------------------------------------------- /src/menu/assets/skins/sam/menubaritem_submenuindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/skins/sam/menubaritem_submenuindicator.png -------------------------------------------------------------------------------- /src/profilerviewer/assets/skins/sam/header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/profilerviewer/assets/skins/sam/header_background.png -------------------------------------------------------------------------------- /src/button/assets/skins/sam/split-button-arrow-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/button/assets/skins/sam/split-button-arrow-disabled.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/csvdata/logindata.csv: -------------------------------------------------------------------------------- 1 | username,password 2 | testuser1testuser,123456 3 | testuser2testuser,123456 4 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/csvdata/us_logindata.csv: -------------------------------------------------------------------------------- 1 | username,password 2 | testuser1testuser,123456 3 | testuser2testuser,123456 4 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/csvdata/logindata.csv: -------------------------------------------------------------------------------- 1 | username,password 2 | testuser1testuser,123456 3 | testuser2testuser,123456 4 | -------------------------------------------------------------------------------- /src/json/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=json 4 | component.mainclass=YAHOO.lang.JSON 5 | component.jsfiles=JSON.js 6 | -------------------------------------------------------------------------------- /src/menu/assets/legacy/menuitem_submenuindicator_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menuitem_submenuindicator_disabled.png -------------------------------------------------------------------------------- /src/menu/assets/legacy/menuitem_submenuindicator_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menuitem_submenuindicator_selected.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/csvdata/us_logindata.csv: -------------------------------------------------------------------------------- 1 | username,password 2 | testuser1testuser,123456 3 | testuser2testuser,123456 4 | -------------------------------------------------------------------------------- /src/menu/assets/legacy/menubaritem_submenuindicator_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menubaritem_submenuindicator_disabled.png -------------------------------------------------------------------------------- /src/menu/assets/legacy/menubaritem_submenuindicator_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/legacy/menubaritem_submenuindicator_selected.png -------------------------------------------------------------------------------- /src/menu/assets/skins/sam/menuitem_submenuindicator_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/skins/sam/menuitem_submenuindicator_disabled.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build_tmp/ 2 | build_rollup_tmp/ 3 | .DS_Store 4 | .*.swp 5 | .svn 6 | CVS/ 7 | # Ignore all backup files 8 | *~ 9 | # Ignore Emacs auto saved files 10 | *#*# 11 | -------------------------------------------------------------------------------- /sandbox/event/EventReceiver.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | YAHOO.example.EventReceiver = function() { 4 | 5 | } 6 | YAHOO.augment(YAHOO.example.EventReceiver, YAHOO.util.EventProvider); 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/menu/assets/skins/sam/menubaritem_submenuindicator_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apm/yui2/master/src/menu/assets/skins/sam/menubaritem_submenuindicator_disabled.png -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/host.properties: -------------------------------------------------------------------------------- 1 | # Domain to prepend to page URIs. No / at end 2 | DOMAIN=http\://presentbright.corp.yahoo.com -------------------------------------------------------------------------------- /src/stylesheet/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=stylesheet 4 | component.mainclass=YAHOO.util.StyleSheet 5 | component.jsfiles=stylesheet.js 6 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/host.properties: -------------------------------------------------------------------------------- 1 | # Domain to prepend to page URIs. No / at end 2 | DOMAIN=http\://presentbright.corp.yahoo.com -------------------------------------------------------------------------------- /src/colorpicker/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=colorpicker 4 | component.mainclass=YAHOO.widget.ColorPicker 5 | component.jsfiles=Color.js, ColorPicker.js 6 | -------------------------------------------------------------------------------- /src/event-simulate/README: -------------------------------------------------------------------------------- 1 | YUI Library - event-simulate - Release Notes 2 | 3 | 2.9.0 4 | * IE9 fix 5 | 6 | 2.8.1 7 | 8 | * No changes 9 | 10 | 2.8.0 11 | 12 | * Relocated from yuitest 13 | -------------------------------------------------------------------------------- /src/slider/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=slider 4 | component.mainclass=YAHOO.widget.Slider 5 | component.jsfiles=Slider.js, SliderThumb.js, DualSlider.js 6 | -------------------------------------------------------------------------------- /src/storage/README: -------------------------------------------------------------------------------- 1 | Storage Utility - Release Notes 2 | 2.9.0 3 | * Fixed bug 2529271, to allow LOCATION_LOCAL data to persist across restarts 4 | 5 | 2.8.1 6 | * No change 7 | 8 | 2.8.0 9 | * Initial Release -------------------------------------------------------------------------------- /src/connection/tests/submitReporter.php: -------------------------------------------------------------------------------- 1 | $_POST, 6 | GET => $_GET 7 | ))); 8 | ?> 9 | -------------------------------------------------------------------------------- /src/yuitest/js/YUITest.js: -------------------------------------------------------------------------------- 1 | /*Stub for future compatibility*/ 2 | YUITest = { 3 | TestRunner: YAHOO.tool.TestRunner, 4 | ResultsFormat: YAHOO.tool.TestFormat, 5 | CoverageFormat: YAHOO.tool.CoverageFormat 6 | }; -------------------------------------------------------------------------------- /src/event-simulate/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=event-simulate 4 | component.mainclass=YAHOO.util.UserAction 5 | component.jsfiles=UserAction.js 6 | component.logger.regex.skip=true 7 | -------------------------------------------------------------------------------- /src/swfdetect/README: -------------------------------------------------------------------------------- 1 | SWF Detect - Release Notes 2 | 3 | 2.9.0 4 | * Fixed a regression bug that caused the absence of Flash to cause an error. 5 | 6 | 2.8.1 7 | * No change 8 | 9 | 2.8.0 10 | * Initial Release -------------------------------------------------------------------------------- /src/progressbar/README: -------------------------------------------------------------------------------- 1 | ProgressBar - Release Notes 2 | 2.9.0 3 | * Added animAcceleration configuration attribute 4 | 5 | 2.8.1 6 | * No changes 7 | 8 | 2.8.0 9 | * No changes 10 | 11 | 2.8.0 12 | * First release -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/objectdata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | &Maildataxml; 5 | 6 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/objectdata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | &Maildataxml; 5 | 6 | -------------------------------------------------------------------------------- /src/swfstore/README: -------------------------------------------------------------------------------- 1 | SWFStore - Release Notes 2 | 3 | 2.9.0 4 | * Fixed a regression bug that caused an incorrect error about a domain name mismatch to be thrown. 5 | 6 | 2.8.1 7 | * No change 8 | 9 | 2.8.0 10 | * Initial Release -------------------------------------------------------------------------------- /src/dom/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/swf/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2.x SWF Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/tabview/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/animation/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/element/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI 2.x Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/selector/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /sandbox/buttonariaplugin/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /sandbox/carouselariaplugin/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /sandbox/editor/frame.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI Editor Example - Frameset 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sandbox/menuariaplugin/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Build the JavaScript, images and CSS 4 | 5 | ant all 6 | 7 | cp build_tmp/menuariaplugin.js ../../../yui2-docs/templates/examples/menu/assets/ 8 | cp build_tmp/menuariaplugin-min.js ../../../yui2-docs/templates/examples/menu/assets/ -------------------------------------------------------------------------------- /sandbox/menuariaplugin/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /sandbox/tabviewariaplugin/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/cookie/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Cookie Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/imagecropper/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Crop Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/layout/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Layout Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /sandbox/containerariaplugin/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI2 Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/dragdrop/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DragDrop Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/profiler/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Profiler Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/resize/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Resize Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/swfdetect/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUI 2.x SWFDetect Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /sandbox/buttonariaplugin/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Build the JavaScript, images and CSS 4 | 5 | ant all 6 | 7 | cp build_tmp/buttonariaplugin.js ../../../yui2-docs/templates/examples/button/assets/ 8 | cp build_tmp/buttonariaplugin-min.js ../../../yui2-docs/templates/examples/button/assets/ -------------------------------------------------------------------------------- /sandbox/carousel/examples/css/carousel.css: -------------------------------------------------------------------------------- 1 | .yui-carousel-container, 2 | .yui-carousel-vertical-container { 3 | margin: 0 auto; 4 | } 5 | 6 | .yui-carousel-element li { 7 | height: 75px; 8 | } 9 | 10 | .yui-carousel-vertical .yui-carousel-element li { 11 | width: 75px; 12 | } 13 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/series/IStackedSeries.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.series 2 | { 3 | /** 4 | * A type of series that supports stacking. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public interface IStackedSeries extends ISeries 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /src/imagecropper/assets/skins/sam/imagecropper-skin.css: -------------------------------------------------------------------------------- 1 | .yui-skin-sam .yui-crop .yui-crop-mask { 2 | background-color: #000; 3 | opacity: .5; 4 | filter: alpha(opacity=50); 5 | } 6 | 7 | .yui-skin-sam .yui-crop .yui-resize { 8 | border: 1px dashed #fff; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /src/imageloader/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ImageLoader Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /sandbox/tabviewariaplugin/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Build the JavaScript, images and CSS 4 | 5 | ant all 6 | 7 | cp build_tmp/tabviewariaplugin.js ../../../yui2-docs/templates/examples/tabview/assets/ 8 | cp build_tmp/tabviewariaplugin-min.js ../../../yui2-docs/templates/examples/tabview/assets/ 9 | -------------------------------------------------------------------------------- /sandbox/carouselariaplugin/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Build the JavaScript, images and CSS 4 | 5 | ant all 6 | 7 | cp build_tmp/carouselariaplugin.js ../../../yui2-docs/templates/examples/carousel/assets/ 8 | cp build_tmp/carouselariaplugin-min.js ../../../yui2-docs/templates/examples/carousel/assets/ 9 | -------------------------------------------------------------------------------- /sandbox/containerariaplugin/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Build the JavaScript, images and CSS 4 | 5 | ant all 6 | 7 | cp build_tmp/containerariaplugin.js ../../../yui2-docs/templates/examples/container/assets/ 8 | cp build_tmp/containerariaplugin-min.js ../../../yui2-docs/templates/examples/container/assets/ -------------------------------------------------------------------------------- /sandbox/event/iframe-test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | onDOMReady testcase 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_examples/dt_rowexp_contributor.php: -------------------------------------------------------------------------------- 1 | 2 |

DataTable Row Expansion was developed by Eric Gelinas. This was originally a concept for Yahoo! Apt by Ryan Leffel with designs by Edward Zee.

3 | -------------------------------------------------------------------------------- /src/get/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Get Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/slider/assets/slider-core.css: -------------------------------------------------------------------------------- 1 | .yui-h-slider, 2 | .yui-v-slider, 3 | .yui-region-slider { 4 | position: relative; 5 | } 6 | .yui-h-slider .yui-slider-thumb, 7 | .yui-v-slider .yui-slider-thumb, 8 | .yui-region-slider .yui-slider-thumb { 9 | position: absolute; 10 | cursor: default; 11 | } 12 | -------------------------------------------------------------------------------- /src/yuitest/buildcore.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=yuitest_core 4 | component.mainclass=YAHOO.tool.TestRunner 5 | 6 | component.jsfiles=TestCase.js,TestSuite.js,TestRunner.js,Assert.js,ArrayAssert.js,ObjectAssert.js,DateAssert.js 7 | 8 | component.logger.regex.skip=true 9 | -------------------------------------------------------------------------------- /sandbox/editor/sync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Syncing files" 4 | cp ./js/editor.js ../../src/editor/js/ 5 | wait 6 | cp ./js/simple-editor.js ../../src/editor/js/ 7 | wait 8 | cp ./js/toolbar-button.js ../../src/editor/js/ 9 | wait 10 | cp ./js/toolbar.js ../../src/editor/js/ 11 | wait 12 | echo "Done" 13 | -------------------------------------------------------------------------------- /src/event/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Get Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_complex_examples/dt_rowexp_complex_contributor.php: -------------------------------------------------------------------------------- 1 | 2 |

DataTable Row Expansion was developed by Eric Gelinas. This was originally a concept for Yahoo! Apt by Ryan Leffel with designs by Edward Zee.

3 | -------------------------------------------------------------------------------- /src/json/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | JSON Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/yahoo/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YAHOO Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/base/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Base Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/axes/IRadialAxisRenderer.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.axes 2 | { 3 | /** 4 | * Interface for a chart's axis renderers. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public interface IRadialAxisRenderer extends IAxisRenderer 9 | { 10 | //nothing yet! 11 | } 12 | } -------------------------------------------------------------------------------- /src/element-delegate/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Get Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/event-delegate/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Get Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/event-mouseenter/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Get Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/event-simulate/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Get Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/fonts/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Fonts Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/grids/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Grids Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/reset/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reset Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/slider/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Slider Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_complex_examples/dt_rowexp_complex_intro.php: -------------------------------------------------------------------------------- 1 | 2 |

A demonstration of the DataTable's row expansion feature, using a function based template. This is a list of popular items bookmarked on Delicious. Expand the each row to see comments and tags associated with this bookmark

3 | -------------------------------------------------------------------------------- /src/connection/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Connection Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/logger/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Logger Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/menu/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Component Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/paginator/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=paginator 4 | component.mainclass=YAHOO.widget.Paginator 5 | component.jsfiles=Paginator.js,CurrentPageReport.js,PageLinks.js,FirstPageLink.js,LastPageLink.js,NextPageLink.js,PreviousPageLink.js,RowsPerPageDropDown.js,JumpToPageDropdown.js 6 | -------------------------------------------------------------------------------- /src/storage/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Storage Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/stylesheet/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | StyleSheet Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/treeview/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TreeView Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/yuiloader/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YUILoader Build File 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/button/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Component Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/calendar/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Calendar Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/carousel/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Carousel Build File 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/datemath/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DateMath Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/paginator/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Paginator Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/datasource/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DataSource Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/datatable/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DataTable Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/get/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Get Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=get 7 | component.mainclass=YAHOO.util.Get 8 | component.jsfiles=Get.js 9 | -------------------------------------------------------------------------------- /src/progressbar/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ProgressBar Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sandbox/dragdrop/README.textile: -------------------------------------------------------------------------------- 1 | h2. Sandbox 2 | 3 | This sandbox is where I (Dav) keep all my dev files while working on this component. 4 | 5 | The @sync.sh@ script copies my dev files to @/src/[modulename]/js@ 6 | 7 | If the component requires CSS, the CSS is edited in @/src/[modulename]/assets@ 8 | 9 | -------------------------------------------------------------------------------- /sandbox/editor/README.textile: -------------------------------------------------------------------------------- 1 | h2. Sandbox 2 | 3 | This sandbox is where I (Dav) keep all my dev files while working on this component. 4 | 5 | The @sync.sh@ script copies my dev files to @/src/[modulename]/js@ 6 | 7 | If the component requires CSS, the CSS is edited in @/src/[modulename]/assets@ 8 | 9 | -------------------------------------------------------------------------------- /sandbox/layout/README.textile: -------------------------------------------------------------------------------- 1 | h2. Sandbox 2 | 3 | This sandbox is where I (Dav) keep all my dev files while working on this component. 4 | 5 | The @sync.sh@ script copies my dev files to @/src/[modulename]/js@ 6 | 7 | If the component requires CSS, the CSS is edited in @/src/[modulename]/assets@ 8 | 9 | -------------------------------------------------------------------------------- /sandbox/resize/README.textile: -------------------------------------------------------------------------------- 1 | h2. Sandbox 2 | 3 | This sandbox is where I (Dav) keep all my dev files while working on this component. 4 | 5 | The @sync.sh@ script copies my dev files to @/src/[modulename]/js@ 6 | 7 | If the component requires CSS, the CSS is edited in @/src/[modulename]/assets@ 8 | 9 | -------------------------------------------------------------------------------- /sandbox/yahoo/load.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Use YAHOO_config 4 | If (listener) cache and replace 5 | 6 | Script nodes to insert YAHOO, optionally we just expect it --> callback 7 | 8 | Sandbox requires eval, so script node insert connection? Optionally we 9 | just expect yahoo and connection to be included on the page. 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/autocomplete/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AutoComplete Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/colorpicker/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ColorPicker Build File 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/history/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | component=history 6 | component.mainclass=YAHOO.util.History 7 | component.jsfiles=history.js 8 | -------------------------------------------------------------------------------- /sandbox/imagecropper/README.textile: -------------------------------------------------------------------------------- 1 | h2. Sandbox 2 | 3 | This sandbox is where I (Dav) keep all my dev files while working on this component. 4 | 5 | The @sync.sh@ script copies my dev files to @/src/[modulename]/js@ 6 | 7 | If the component requires CSS, the CSS is edited in @/src/[modulename]/assets@ 8 | 9 | -------------------------------------------------------------------------------- /src/connection/connection_core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Connection Build File 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/history/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | History Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_examples/dt_rowexp_intro.php: -------------------------------------------------------------------------------- 1 | 2 |

A demonstration of the DataTable's row expansion feature, using a string based template. This is a list of "Interestingness" from Flickr. The list shows the images title and the photo can be seen in the expansion along with a link to the Flickr users photo-stream.

3 | -------------------------------------------------------------------------------- /src/profilerviewer/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ProfilerViewer Build File 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/TabViewData.txt: -------------------------------------------------------------------------------- 1 | tabData = { 2 | containers : [ 3 | locator : "LocatorId", 4 | container : { 5 | locator : "containerId", 6 | tabs : [ 7 | tabLocator : "tabId", 8 | contentLocator : "contentId" 9 | ] 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /src/carousel/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Carousel Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=carousel 7 | component.mainclass=YAHOO.widget.Carousel 8 | component.jsfiles=Carousel.js 9 | -------------------------------------------------------------------------------- /src/datemath/README: -------------------------------------------------------------------------------- 1 | DateMath Release Notes 2 | 3 | *** version 2.9.0 *** 4 | 5 | + No changes 6 | 7 | *** version 2.8.2 *** 8 | 9 | + No changes 10 | 11 | *** version 2.8.1 *** 12 | 13 | + No changes 14 | 15 | 16 | *** version 2.8.0 *** 17 | 18 | + Extracted DateMath into a standalone module. In prior 19 | versions it was included with "calendar" 20 | -------------------------------------------------------------------------------- /src/datemath/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # DateMath Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=datemath 7 | component.mainclass=YAHOO.widget.DateMath 8 | component.jsfiles=DateMath.js 9 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 28 13:37:53 PDT 2009 2 | activeProfiles= 3 | eclipse.preferences.version=1 4 | fullBuildGoals=process-test-resources 5 | includeModules=false 6 | resolveWorkspaceProjects=true 7 | resourceFilterGoals=process-resources resources\:testResources 8 | skipCompilerPlugin=true 9 | version=1 10 | -------------------------------------------------------------------------------- /src/event-delegate/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Event Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=event-delegate 7 | component.mainclass=YAHOO.util.Event 8 | component.jsfiles=Delegate.js 9 | -------------------------------------------------------------------------------- /src/swf/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # SWF Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=swf 8 | component.mainclass=YAHOO.widget.SWF 9 | 10 | component.jsfiles=swf.js -------------------------------------------------------------------------------- /src/yuitest/buildcore.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Component Build File 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/yui/LoggerCategory.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.yui 2 | { 3 | public class LoggerCategory 4 | { 5 | public static const INFO:String = "info"; 6 | public static const WARN:String = "warn"; 7 | public static const ERROR:String = "error"; 8 | public static const TIME:String = "time"; 9 | public static const WINDOW:String = "window"; 10 | } 11 | } -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 28 13:37:53 PDT 2009 2 | activeProfiles= 3 | eclipse.preferences.version=1 4 | fullBuildGoals=process-test-resources 5 | includeModules=false 6 | resolveWorkspaceProjects=true 7 | resourceFilterGoals=process-resources resources\:testResources 8 | skipCompilerPlugin=true 9 | version=1 10 | -------------------------------------------------------------------------------- /src/event-mouseenter/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Event Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=event-mouseenter 7 | component.mainclass=YAHOO.util.Event 8 | component.jsfiles=MouseEnter.js 9 | -------------------------------------------------------------------------------- /src/progressbar/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # TreeView Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=progressbar 7 | component.mainclass=YAHOO.widget.ProgressBar 8 | component.jsfiles=ProgressBar.js 9 | -------------------------------------------------------------------------------- /src/autocomplete/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # AutoComplete Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=autocomplete 7 | component.mainclass=YAHOO.widget.AutoComplete 8 | component.jsfiles=AutoComplete.js 9 | -------------------------------------------------------------------------------- /src/datasource/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # DataSource Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=datasource 7 | component.mainclass=YAHOO.util.DataSource 8 | component.jsfiles=DataSource.js, Type.js 9 | -------------------------------------------------------------------------------- /src/element-delegate/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Event Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=element-delegate 7 | component.mainclass=YAHOO.util.Element 8 | component.jsfiles=Element-Delegate.js 9 | -------------------------------------------------------------------------------- /src/yuitest/build.properties: -------------------------------------------------------------------------------- 1 | builddir=../../../builder/componentbuild 2 | 3 | component=yuitest 4 | component.mainclass=YAHOO.tool.TestRunner 5 | component.jsfiles=TestCase.js,TestSuite.js,TestRunner.js,Assert.js,ArrayAssert.js,ObjectAssert.js,DateAssert.js,TestManager.js,TestLogger.js,TestFormat.js,CoverageFormat.js,TestReporter.js,YUITest.js 6 | 7 | component.logger.regex.skip=true 8 | -------------------------------------------------------------------------------- /src/common/README.yuiloader-dom-event: -------------------------------------------------------------------------------- 1 | yuiloader-event-dom.js Release Notes 2 | 3 | *** NOTE *** 4 | 5 | This document is not updated with each release. Changes to 6 | the yuiloader-dom-event.js source are noted in the README 7 | file for each component that comprises this aggregate: 8 | 9 | README.yahoo 10 | README.dom 11 | README.event 12 | README.get 13 | README.yuiloader 14 | -------------------------------------------------------------------------------- /src/profiler/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=profiler 8 | component.mainclass=YAHOO.tool.Profiler 9 | 10 | component.jsfiles=Profiler.js 11 | -------------------------------------------------------------------------------- /src/event/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Event Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=event 7 | component.mainclass=YAHOO.util.Event 8 | component.jsfiles=CustomEvent.js,Event.js,EventProvider.js,KeyListener.js 9 | -------------------------------------------------------------------------------- /src/profilerviewer/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # ProfilerViewer Build Properties 3 | ########################################################################## 4 | builddir=/Sites/builder/componentbuild 5 | 6 | component=profilerviewer 7 | component.mainclass=YAHOO.widget.ProfilerViewer 8 | component.jsfiles=ProfilerViewer.js 9 | -------------------------------------------------------------------------------- /src/cookie/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Calendar Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | 8 | component=cookie 9 | component.mainclass=YAHOO.util.Cookie 10 | 11 | component.jsfiles=Cookie.js 12 | -------------------------------------------------------------------------------- /src/swfdetect/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # SWFDetect Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=swfdetect 8 | component.mainclass=YAHOO.util.SWFDetect 9 | 10 | component.jsfiles=swfdetect.js -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/testdata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &testuser; 7 | &testuserpassword; 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/imageloader/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | 8 | component=imageloader 9 | component.mainclass=YAHOO.util.ImageLoader 10 | 11 | component.jsfiles=ImageLoader.js 12 | -------------------------------------------------------------------------------- /src/yahoo/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # YUILoader Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=yahoo 7 | component.mainclass=YAHOO 8 | component.jsfiles=YAHOO.js,Env.js,Lang.js 9 | 10 | component.logger.regex.skip=true 11 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/testdata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &testuser; 7 | &testuserpassword; 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/imagecropper/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=imagecropper 8 | component.mainclass=YAHOO.widget.ImageCropper 9 | 10 | 11 | component.jsfiles=crop.js 12 | 13 | -------------------------------------------------------------------------------- /src/connection/connection_core.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Connection Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=connection_core 8 | component.mainclass=YAHOO.util.Connect 9 | component.jsfiles=connection_core.js 10 | -------------------------------------------------------------------------------- /src/container/buildcore.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Component Build File 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/element/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=element 8 | component.mainclass=YAHOO.util.Element 9 | 10 | component.jsfiles=Attribute.js,AttributeProvider.js,Element.js 11 | -------------------------------------------------------------------------------- /sandbox/treeview/js/log.js: -------------------------------------------------------------------------------- 1 | // Adapter for YAHOO.widget.Logger 2 | 3 | var ygLogger = function(module) { 4 | return new YAHOO.widget.LogWriter(module); 5 | }; 6 | 7 | YAHOO.widget.LogWriter.prototype.debug = function() { 8 | this.log.apply(this, arguments); 9 | }; 10 | 11 | ygLogger.init = function(div) { 12 | new YAHOO.widget.LogReader(div, { 13 | height: "400px" 14 | }); 15 | }; 16 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/yui/YUILogger.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.yui 2 | { 3 | import flash.external.ExternalInterface; 4 | 5 | public class YUILogger 6 | { 7 | public static function log(message:Object, category:String = "info"):void 8 | { 9 | if(ExternalInterface.available) 10 | { 11 | ExternalInterface.call("YAHOO.log", message.toString(), category); 12 | } 13 | } 14 | 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /src/swf/README: -------------------------------------------------------------------------------- 1 | SWF Utility - Release Notes 2 | 3 | 2.9.0 4 | * Bug fixes 5 | * Added escapes to all non-HTML text written to innerHTML. 6 | * Fixed regression that causes absence of Flash to cause an error. 7 | * Updated the list of possible attributes to include all standard parameters allowed for the Flash Player object. 8 | 9 | 2.8.1 10 | * No change 11 | 12 | 2.8.0 13 | * Initial Release -------------------------------------------------------------------------------- /src/connection/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Connection Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | component=connection 8 | component.mainclass=YAHOO.util.Connect 9 | component.jsfiles=connection_core.js,connection_xdr.js,connectionx.js 10 | -------------------------------------------------------------------------------- /src/history/tests/manual/cross-domain-iframe/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | History Frame Test 4 | 5 | 6 |

Load this page via http://localhost. The following content is framed on another domain:

7 | 8 | 9 | -------------------------------------------------------------------------------- /src/stylesheet/README: -------------------------------------------------------------------------------- 1 | Development master 2 | 3 | 2.9.0 4 | * Add fix for IE 9 throwing an error from set() 5 | "Invalid this pointer used as target for method call". Best guess 6 | is that the style collection used for off-DOM calculations was getting 7 | corrupted. 8 | 9 | 2.8.1 10 | * No change 11 | 12 | 2.8.0 13 | * Added support for set(selector, cssTextString) 14 | 15 | 2.7.0 16 | * Initial beta release 17 | -------------------------------------------------------------------------------- /src/datatable/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # DataTable Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=datatable 7 | component.mainclass=YAHOO.widget.DataTable 8 | component.jsfiles=Chain.js, EventDelegate.js, ColumnSet.js, RecordSet.js, DataTable.js, ScrollingDataTable.js, CellEditor.js 9 | -------------------------------------------------------------------------------- /src/history/tests/manual/cross-domain-iframe/index_patch.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | History Frame Test 4 | 5 | 6 |

PATCH: Load this page via http://localhost. The following content is framed on another domain (patched):

7 | 8 | 9 | -------------------------------------------------------------------------------- /src/logger/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Logger Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=logger 7 | component.mainclass=YAHOO.widget.Logger 8 | component.jsfiles=LogMsg.js, LogWriter.js, Logger.js, LogReader.js 9 | 10 | # Don't strip log statements 11 | component.logger.regex.skip=true 12 | -------------------------------------------------------------------------------- /src/container/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Container Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=container 7 | component.mainclass=YAHOO.widget.Module 8 | 9 | component.jsfiles=Config.js, Module.js, Overlay.js, OverlayManager.js, Tooltip.js, Panel.js, Dialog.js, SimpleDialog.js, ContainerEffect.js 10 | -------------------------------------------------------------------------------- /src/calendar/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Calendar Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=calendar 7 | component.mainclass=YAHOO.widget.Calendar 8 | component.prependfiles=../container/js/Config.js, ../datemath/js/DateMath.js 9 | component.jsfiles=Calendar.js, CalendarGroup.js, CalendarNavigator.js 10 | -------------------------------------------------------------------------------- /src/slider/assets/skins/sam/slider-skin.css: -------------------------------------------------------------------------------- 1 | .yui-skin-sam .yui-h-slider { 2 | background: url(bg-h.gif) no-repeat 5px 0; 3 | height: 28px; 4 | width: 228px; 5 | } 6 | .yui-skin-sam .yui-h-slider .yui-slider-thumb { 7 | top: 4px; 8 | } 9 | 10 | .yui-skin-sam .yui-v-slider { 11 | background: url(bg-v.gif) no-repeat 12px 0; 12 | height: 228px; 13 | width: 48px; 14 | } 15 | .yui-skin-sam .yui-region-slider { 16 | height: 228px; 17 | width: 228px; 18 | } 19 | -------------------------------------------------------------------------------- /src/storage/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Storage Utility Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=storage 7 | component.mainclass=YAHOO.util.Storage 8 | component.jsfiles=Storage.js,StorageManager.js,StorageEvent.js,StorageEngineKeyed.js,StorageEngineHTML5.js,StorageEngineGears.js,StorageEngineSWF.js 9 | 10 | -------------------------------------------------------------------------------- /src/container/buildcore.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # ContainerCore Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=../.. 6 | 7 | component=container_core 8 | component.module=containercore 9 | component.mainclass=YAHOO.widget.Module 10 | 11 | component.jsfiles=Config.js, Module.js, Overlay.js, OverlayManager.js, ContainerEffect.js 12 | -------------------------------------------------------------------------------- /src/treeview/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # TreeView Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=treeview 7 | component.mainclass=YAHOO.widget.TreeView 8 | component.jsfiles=TreeView.js, Node.js, RootNode.js, TextNode.js, MenuNode.js, HTMLNode.js, DateNode.js, TreeViewEd.js, anim/TVAnim.js, anim/TVFadeIn.js, anim/TVFadeOut.js 9 | -------------------------------------------------------------------------------- /sandbox/event/iframe-test.js: -------------------------------------------------------------------------------- 1 | for (var i = 0; i < 1000000; i++) ; // Simulate a whole bunch of JavaScript parsing and execution to help exaggerate the problem. 2 | 3 | YAHOO.util.Event.onDOMReady( 4 | function() { 5 | var div = document.createElement('div'); 6 | div.innerHTML = 'onDOMReady successfully fired after the DOM was ready :)'; 7 | try { 8 | document.body.appendChild(div); 9 | } catch (e) { 10 | alert('onDOMReady fired before the DOM was ready :('); 11 | } 12 | } 13 | ); -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_basic_examples/dt_rowexp_basic_intro.php: -------------------------------------------------------------------------------- 1 | 2 |

A demonstration of the DataTable's row expansion feature to display a list of "Interestingness" from Flickr. When the table first loads, it displays a list of image titles. When a row is expanded the photo is displayed in the expansion area along with a link to the Flickr user's photostream. This example uses a simple string-based template to format the row expansion area.

3 | -------------------------------------------------------------------------------- /src/common/README.reset-fonts: -------------------------------------------------------------------------------- 1 | YUI Library - Reset+Fonts (RF) - Release Notes 2 | 3 | *** NOTE *** 4 | 5 | This document is not updated with each release. Changes to 6 | the reset-fonts.css source are noted in the README 7 | file for each component that comprises this aggregate: 8 | 9 | README.reset 10 | README.fonts 11 | 12 | ************ 13 | 14 | Version 2.4.0 15 | 16 | * Initial release. 17 | 18 | * This file is a convenience file containing an in-order 19 | concatenation of Reset and Fonts. 20 | -------------------------------------------------------------------------------- /src/container/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Container Build File 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/storage/swf/storage-whitelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/swfstore/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # SWFStore Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | component=swfstore 6 | 7 | component.mainclass=YAHOO.util.SWFStore 8 | 9 | component.jsfiles=swfstore.js 10 | 11 | #flexbin: you will need to change the source of this property to match the location of the flex bin directory on your machine 12 | flexbin=/flex_sdk_3.4/bin 13 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/yui/charts/BackgroundImageMode.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.yui.charts 2 | { 3 | 4 | public class BackgroundImageMode 5 | { 6 | public static const STRETCH:String = "stretch"; 7 | public static const STRETCH_AND_MAINTAIN_ASPECT_RATIO:String = "stretchMaintainAspectRatio"; 8 | public static const REPEAT:String = "repeat"; 9 | public static const REPEAT_X:String = "repeat-y"; 10 | public static const REPEAT_Y:String = "repeat-x"; 11 | public static const NO_REPEAT:String = "no-repeat"; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/.project: -------------------------------------------------------------------------------- 1 | 2 | YUI 3 | 4 | 5 | 6 | 7 | org.eclipse.jdt.core.javabuilder 8 | 9 | 10 | org.maven.ide.eclipse.maven2Builder 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Nature 15 | org.eclipse.jdt.core.javanature 16 | 17 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/.project: -------------------------------------------------------------------------------- 1 | 2 | YUI 3 | 4 | 5 | 6 | 7 | org.eclipse.jdt.core.javabuilder 8 | 9 | 10 | org.maven.ide.eclipse.maven2Builder 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Nature 15 | org.eclipse.jdt.core.javanature 16 | 17 | -------------------------------------------------------------------------------- /sandbox/event/iframe-content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sandbox/base/minify-and-build.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | cp ~/Documents/git/yui2/sandbox/base/README ~/Documents/git/yui2/src/base/README 4 | cp ~/Documents/git/yui2/sandbox/base/README ~/Documents/git/yui2/build/base/README 5 | 6 | cp ~/Documents/git/yui2/sandbox/base/base.css ~/Documents/git/yui2/src/base/css/base.css 7 | 8 | java -jar ~/Documents/git/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar --type css --line-break 8000 ~/Documents/git/yui2/src/base/css/base.css -o ~/Documents/git/yui2/build/base/base-min.css 9 | 10 | 11 | echo "Finished." 12 | 13 | 14 | -------------------------------------------------------------------------------- /sandbox/event/simple.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Empty array 5 | 6 | 7 | 8 |
I am div number 1
9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/profilerviewer/README: -------------------------------------------------------------------------------- 1 | ProfilerViewer Control -- Release Notes 2 | 3 | 2.9.0 4 | 5 | * No changes. 6 | 7 | 2.8.2 8 | 9 | * No changes. 10 | 11 | 2.8.1 12 | 13 | * No changes. 14 | 15 | 2.8.0 16 | 17 | * No changes. 18 | 19 | 2.7.0 20 | 21 | * Minor changes to account for updates made in DataSource, DataTable, 22 | and Charts over the past few releases. No feature/function changes 23 | to ProfilerViewer. 24 | * ProfilerViewer promoted to GA from Beta. 25 | 26 | 2.5.1-2.6.0 27 | 28 | * No changes. 29 | 30 | 2.5.0 31 | 32 | * Beta release -------------------------------------------------------------------------------- /sandbox/carousel/examples/titles.inc: -------------------------------------------------------------------------------- 1 | 'A spotlight example', 4 | 'circular.html' => 'A circular Carousel example', 5 | 'reveal.html' => 'Revealing previous and next items example', 6 | 'imagentext.html' => 'Using both images and text within an item example', 7 | 'dynload2.html' => 'Using Ajax for deferred loading of items example' 8 | ); 9 | 10 | $myself = basename(getenv('PHP_SELF')); 11 | 12 | function writeTitle() { 13 | global $myself; 14 | 15 | echo "Example: {$examples[$myself]} (YUI Library)"; 16 | } 17 | ?> -------------------------------------------------------------------------------- /sandbox/fonts/minify-and-build.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | cp ~/Documents/git/yui2/sandbox/fonts/README ~/Documents/git/yui2/src/fonts/README 4 | cp ~/Documents/git/yui2/sandbox/fonts/README ~/Documents/git/yui2/build/fonts/README 5 | 6 | cp ~/Documents/git/yui2/sandbox/fonts/fonts.css ~/Documents/git/yui2/src/fonts/css/fonts.css 7 | 8 | java -jar ~/Documents/git/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar --type css --line-break 8000 ~/Documents/git/yui2/src/fonts/css/fonts.css -o ~/Documents/git/yui2/build/fonts/fonts-min.css 9 | 10 | 11 | echo "Finished." 12 | 13 | 14 | -------------------------------------------------------------------------------- /sandbox/grids/minify-and-build.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | cp ~/Documents/git/yui2/sandbox/grids/README ~/Documents/git/yui2/src/grids/README 4 | cp ~/Documents/git/yui2/sandbox/grids/README ~/Documents/git/yui2/build/grids/README 5 | 6 | cp ~/Documents/git/yui2/sandbox/grids/grids.css ~/Documents/git/yui2/src/grids/css/grids.css 7 | 8 | java -jar ~/Documents/git/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar --type css --line-break 8000 ~/Documents/git/yui2/src/grids/css/grids.css -o ~/Documents/git/yui2/build/grids/grids-min.css 9 | 10 | 11 | echo "Finished." 12 | 13 | 14 | -------------------------------------------------------------------------------- /sandbox/reset/minify-and-build.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | cp ~/Documents/git/yui2/sandbox/reset/README ~/Documents/git/yui2/src/reset/README 4 | cp ~/Documents/git/yui2/sandbox/reset/README ~/Documents/git/yui2/build/reset/README 5 | 6 | cp ~/Documents/git/yui2/sandbox/reset/reset.css ~/Documents/git/yui2/src/reset/css/reset.css 7 | 8 | java -jar ~/Documents/git/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar --type css --line-break 8000 ~/Documents/git/yui2/src/reset/css/reset.css -o ~/Documents/git/yui2/build/reset/reset-min.css 9 | 10 | 11 | echo "Finished." 12 | 13 | 14 | -------------------------------------------------------------------------------- /sandbox/event/focusblur.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

testing addFocusListener

9 | 10 | 11 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/imagecropper/assets/imagecropper-core.css: -------------------------------------------------------------------------------- 1 | .yui-crop { 2 | position: relative; 3 | } 4 | .yui-crop .yui-crop-mask { 5 | position: absolute; 6 | top: 0; 7 | left: 0; 8 | height: 100%; 9 | width: 100%; 10 | } 11 | 12 | .yui-crop .yui-resize { 13 | position: absolute; 14 | top: 10px; 15 | left: 10px; 16 | border: 0; 17 | } 18 | 19 | .yui-crop .yui-crop-resize-mask { 20 | position: absolute; 21 | top: 0; 22 | left: 0; 23 | height: 100%; 24 | width: 100%; 25 | background-position: -10px -10px; 26 | overflow: hidden; 27 | } 28 | -------------------------------------------------------------------------------- /sandbox/event/avail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Loading Examples 5 | 6 | 7 | 8 | 9 |
I am div number 1
10 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/TabViewDataTv.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/yuiloader/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # YUILoader Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | 6 | component=yuiloader 7 | component.mainclass=YAHOO.util.YUILoader 8 | # component.jsfiles=../../../build/yahoo/yahoo-debug.js, ../../../build/get/get-debug.js, yuiloader.js 9 | component.jsfiles=yuiloader.js 10 | 11 | component.prependfiles=../../build/yahoo/yahoo-debug.js,../../build/get/get-debug.js 12 | 13 | component.logger.regex.skip=true 14 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/axes/IOriginAxis.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.axes 2 | { 3 | /** 4 | * An axis with an origin. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public interface IOriginAxis extends IAxis 9 | { 10 | /** 11 | * Returns the value of the origin. This is not the position of the 12 | * origin. To get the origin's position, pass the origin value to 13 | * valueToLocal(). 14 | * 15 | * Note: This value may not be the true origin value. It may be a 16 | * minimum or maximum value if the actual origin is not visible. 17 | * 18 | * @see IAxis#valueToLocal() 19 | */ 20 | function get origin():Object; 21 | } 22 | } -------------------------------------------------------------------------------- /src/resize/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | 8 | component=resize 9 | component.mainclass=YAHOO.util.Resize 10 | 11 | component.jsfiles=resize.js 12 | 13 | # Backslashes need to be escaped (using double-blackslash) in order to parse correctly as properties. If included in the XML, backslashes do not need escaping 14 | #component.logger.regex=^.*?(?:logger|YAHOO.log).*?(?:;|\\).*;|(?:\\r?\\n.*?)*?\\).*;).*;?.*?\\r?\\n 15 | #component.logger.regex.byline=false 16 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/axes/IGridLinesRenderer.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.axes 2 | { 3 | /** 4 | * A renderer for grid lines appearing on a chart's axis. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public interface IGridLinesRenderer 9 | { 10 | 11 | //-------------------------------------- 12 | // Properties 13 | //-------------------------------------- 14 | 15 | /** 16 | * The axis renderer from which the grid lines receive their 17 | * major and minor unit data. 18 | */ 19 | function get axisRenderer():IAxisRenderer; 20 | 21 | /** 22 | * @private 23 | */ 24 | function set axisRenderer(value:IAxisRenderer):void; 25 | } 26 | } -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/StackedBarChart.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts 2 | { 3 | import com.yahoo.astra.fl.charts.series.StackedBarSeries; 4 | 5 | /** 6 | * A chart that displays its data points with horizontal bars 7 | * that are stacked horizontally. 8 | * 9 | * @author Josh Tynjala 10 | */ 11 | public class StackedBarChart extends BarChart 12 | { 13 | 14 | //-------------------------------------- 15 | // Constructor 16 | //-------------------------------------- 17 | 18 | /** 19 | * Constructor. 20 | */ 21 | public function StackedBarChart() 22 | { 23 | super(); 24 | this.defaultSeriesType = StackedBarSeries; 25 | } 26 | 27 | } 28 | } -------------------------------------------------------------------------------- /src/editor/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Editor Build File 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/button/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | 11 | builddir=../../../builder/componentbuild 12 | component=button 13 | component.mainclass=YAHOO.widget.Button 14 | component.jsfiles=button.js, buttongroup.js -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/ICategoryChart.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts 2 | { 3 | /** 4 | * A type of chart that displays its data in categories. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public interface ICategoryChart 9 | { 10 | 11 | //-------------------------------------- 12 | // Properties 13 | //-------------------------------------- 14 | 15 | /** 16 | * The names of the categories displayed on the category axis. If the 17 | * chart does not have a category axis, this value will be ignored. 18 | */ 19 | function get categoryNames():Array 20 | 21 | /** 22 | * @private 23 | */ 24 | function set categoryNames(value:Array):void 25 | } 26 | } -------------------------------------------------------------------------------- /src/layout/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | 5 | builddir=../../../builder/componentbuild 6 | srcdir=./../../ 7 | 8 | component=layout 9 | component.mainclass=YAHOO.widget.Layout 10 | 11 | component.jsfiles=layout.js layoutunit.js 12 | 13 | # Backslashes need to be escaped (using double-blackslash) in order to parse correctly as properties. If included in the XML, backslashes do not need escaping 14 | #component.logger.regex=^.*?(?:logger|YAHOO.log).*?(?:;|\\).*;|(?:\\r?\\n.*?)*?\\).*;).*;?.*?\\r?\\n 15 | #component.logger.regex.byline=false 16 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/StackedColumnChart.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts 2 | { 3 | import com.yahoo.astra.fl.charts.series.StackedColumnSeries; 4 | 5 | /** 6 | * A chart that displays its data points with vertical columns 7 | * that are stacked vertically. 8 | * 9 | * @author Josh Tynjala 10 | */ 11 | public class StackedColumnChart extends CartesianChart 12 | { 13 | 14 | //-------------------------------------- 15 | // Constructor 16 | //-------------------------------------- 17 | 18 | /** 19 | * Constructor. 20 | */ 21 | public function StackedColumnChart() 22 | { 23 | super(); 24 | this.defaultSeriesType = StackedColumnSeries; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /sandbox/imageloader/scrollcascade.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | // scrolling, mix of registerd images and class-name images 4 | var downGroup = new YAHOO.util.ImageLoader.group(window, 'scroll', null); 5 | downGroup.foldConditional = true; 6 | downGroup.registerBgImage('waydown', 'http://us.i1.yimg.com/us.yimg.com/i/ar/sp/fifa/rooney77x42.jpg'); 7 | downGroup.registerBgImage('waydown2', 'http://us.i1.yimg.com/us.yimg.com/i/ar/sp/fifa/rooney77x42.jpg'); 8 | downGroup.registerBgImage('waydown3', 'http://us.i1.yimg.com/us.yimg.com/i/ar/sp/fifa/rooney77x42.jpg'); 9 | downGroup.className = 'waydownCF'; 10 | downGroup.addTrigger(window, 'resize'); 11 | downGroup.name = 'conditional'; 12 | 13 | downGroup.fetch = function() { this._foldCheck(); } 14 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 28 13:51:10 PDT 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.6 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.6 13 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/TabViewData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 28 13:51:10 PDT 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.6 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.6 13 | -------------------------------------------------------------------------------- /src/editor/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | 5 | builddir=../../../builder/componentbuild 6 | srcdir=./../../ 7 | 8 | component=editor 9 | component.mainclass=YAHOO.widget.Editor 10 | 11 | component.jsfiles=toolbar-button.js toolbar.js, simple-editor.js, editor.js 12 | 13 | # Backslashes need to be escaped (using double-blackslash) in order to parse correctly as properties. If included in the XML, backslashes do not need escaping 14 | #component.logger.regex=^.*?(?:logger|YAHOO.log).*?(?:;|\\).*;|(?:\\r?\\n.*?)*?\\).*;).*;?.*?\\r?\\n 15 | #component.logger.regex.byline=false 16 | -------------------------------------------------------------------------------- /sandbox/menuariaplugin/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=menuariaplugin 14 | component.mainclass=YAHOO.widget.Menu 15 | 16 | component.jsfiles=menuariaplugin.js -------------------------------------------------------------------------------- /src/imagecropper/README: -------------------------------------------------------------------------------- 1 | **** version 2.9.0 *** 2 | 3 | * Promoted to GA due to Release. 4 | * No Code Changes 5 | 6 | **** version 2.8.1 *** 7 | 8 | * No Changes 9 | 10 | **** version 2.8.0 *** 11 | 12 | * No Changes 13 | 14 | **** version 2.7.0 *** 15 | 16 | * No Changes 17 | 18 | **** version 2.6.0 *** 19 | 20 | * No Changes 21 | 22 | **** version 2.5.1 *** 23 | Fixed Issues dealing with mask resize and keeping crop interface inside of crop region 24 | 25 | Bug Fixes: 26 | * 1900953 Ratio doesn't work 27 | * 1903193 Several issues with the crop window 28 | * 1904258 Initial CSS size isn't checked 29 | 30 | 31 | **** version 2.5.0 *** 32 | 33 | Initial Release 34 | -------------------------------------------------------------------------------- /src/uploader/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | 11 | builddir=../../../builder/componentbuild 12 | component=uploader 13 | 14 | component.mainclass=YAHOO.widget.Uploader 15 | 16 | component.jsfiles=swfobject.js,FlashAdapter.js,Uploader.js -------------------------------------------------------------------------------- /sandbox/datatable/2528339_editorinit.js: -------------------------------------------------------------------------------- 1 | YAHOO.widget.DataTable.prototype.initCellEditor = function(editor) { 2 | editor.subscribe("showEvent", this._onEditorShowEvent, this, true); 3 | editor.subscribe("keydownEvent", this._onEditorKeydownEvent, this, true); 4 | editor.subscribe("revertEvent", this._onEditorRevertEvent, this, true); 5 | editor.subscribe("saveEvent", this._onEditorSaveEvent, this, true); 6 | editor.subscribe("cancelEvent", this._onEditorCancelEvent, this, true); 7 | editor.subscribe("blurEvent", this._onEditorBlurEvent, this, true); 8 | editor.subscribe("blockEvent", this._onEditorBlockEvent, this, true); 9 | editor.subscribe("unblockEvent", this._onEditorUnblockEvent, this, true); 10 | }; 11 | -------------------------------------------------------------------------------- /src/dom/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=dom 14 | component.mainclass=YAHOO.util.Dom 15 | 16 | component.jsfiles=Dom.js, Region.js, IEStyle.js, Color.js 17 | 18 | -------------------------------------------------------------------------------- /sandbox/buttonariaplugin/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=buttonariaplugin 14 | component.mainclass=YAHOO.widget.Button 15 | 16 | component.jsfiles=buttonariaplugin.js -------------------------------------------------------------------------------- /src/dragdrop/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | srcdir=./../../ 6 | 7 | 8 | 9 | component=dragdrop 10 | component.mainclass=YAHOO.util.DragDropMgr 11 | 12 | component.jsfiles=DragDropMgr.js,DragDrop.js,DD.js,DDProxy.js,DDTarget.js 13 | 14 | # Backslashes need to be escaped (using double-blackslash) in order to parse correctly as properties. If included in the XML, backslashes do not need escaping 15 | #component.logger.regex=^.*?(?:logger|YAHOO.log).*?(?:;|\\).*;|(?:\\r?\\n.*?)*?\\).*;).*;?.*?\\r?\\n 16 | #component.logger.regex.byline=false 17 | -------------------------------------------------------------------------------- /sandbox/tabviewariaplugin/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=tabviewariaplugin 14 | component.mainclass=YAHOO.widget.TabView 15 | 16 | component.jsfiles=tabviewariaplugin.js -------------------------------------------------------------------------------- /sandbox/carouselariaplugin/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=carouselariaplugin 14 | component.mainclass=YAHOO.widget.Carousel 15 | 16 | component.jsfiles=carouselariaplugin.js -------------------------------------------------------------------------------- /sandbox/containerariaplugin/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=containerariaplugin 14 | component.mainclass=YAHOO.widget.Module 15 | 16 | component.jsfiles=containerariaplugin.js -------------------------------------------------------------------------------- /src/button/assets/button-core.css: -------------------------------------------------------------------------------- 1 | .yui-button { 2 | 3 | display: -moz-inline-box; /* Gecko */ 4 | display: inline-block; /* IE, Opera and Safari */ 5 | vertical-align: text-bottom; 6 | 7 | } 8 | 9 | .yui-button .first-child { 10 | 11 | display: block; 12 | *display: inline-block; /* IE */ 13 | 14 | } 15 | 16 | .yui-button button, 17 | .yui-button a { 18 | 19 | display: block; 20 | *display: inline-block; /* IE */ 21 | border: none; 22 | margin: 0; 23 | 24 | } 25 | 26 | .yui-button button { 27 | 28 | background-color: transparent; 29 | *overflow: visible; /* Remove superfluous padding for IE */ 30 | cursor: pointer; 31 | 32 | } 33 | 34 | .yui-button a { 35 | 36 | text-decoration: none; 37 | 38 | } -------------------------------------------------------------------------------- /src/common/README.reset-fonts-grids: -------------------------------------------------------------------------------- 1 | YUI Library - Reset+Fonts+Grids (RFG) - Release Notes 2 | 3 | *** NOTE *** 4 | 5 | This document is not updated with each release. Changes to 6 | the reset-fonts-grids.css source are noted in the README 7 | file for each component that comprises this aggregate: 8 | 9 | README.reset 10 | README.fonts 11 | README.grids 12 | 13 | ************ 14 | 15 | Version 2.3.1 16 | 17 | * Fixed bug in Grids. See Grids 2.3.1 README for info. 18 | 19 | Version 2.3.0 20 | 21 | * Changes to all three components. 22 | 23 | Version 2.2.0 - 2.2.2 24 | 25 | * No changes. 26 | 27 | Version 0.12.0 28 | 29 | * Initial release. 30 | 31 | * This file is a convenience file containing an in-order 32 | concatenation of Reset, Fonts, and Grids. 33 | -------------------------------------------------------------------------------- /src/yuitest/assets/testlogger.css: -------------------------------------------------------------------------------- 1 | .yui-log {padding-top:3em;} 2 | /* 3 | .yui-log-container {position:relative;width:60em} 4 | .yui-log .yui-log-bd {height:auto; overflow:visible;} 5 | */ 6 | .yui-log-container {width:40em} 7 | .yui-log .yui-log-bd {height:60em} 8 | .yui-log .yui-log-btns {display:none;} 9 | .yui-log .yui-log-ft .yui-log-sourcefilters {visibility:hidden;} 10 | .yui-log .yui-log-hd {display:none;} 11 | .yui-log .yui-log-ft {position:absolute;top:0em;} 12 | 13 | .pass { 14 | background-color: green; 15 | font-weight: bold; 16 | color: white; 17 | } 18 | .fail { 19 | background-color: red; 20 | font-weight: bold; 21 | color: white; 22 | } 23 | .ignore { 24 | background-color: #666; 25 | font-weight: bold; 26 | color: white; 27 | } 28 | -------------------------------------------------------------------------------- /src/animation/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=animation 14 | component.mainclass=YAHOO.util.Anim 15 | 16 | component.jsfiles=Anim.js, AnimMgr.js, Bezier.js, ColorAnim.js, Easing.js, Motion.js, Scroll.js 17 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/YUI/data/Maildata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | username 5 | passwd 6 | 7 | 8 | xpath=//input[@value='Sign In'] 9 | 10 | 11 | 12 | 13 | link=&ZhMsg_UH_SignOut; 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/YUI/data/Maildata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | username 5 | passwd 6 | 7 | 8 | xpath=//input[@value='Sign In'] 9 | 10 | 11 | 12 | 13 | link=&ZhMsg_UH_SignOut; 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/imageloader/README: -------------------------------------------------------------------------------- 1 | ImageLoader - Release Notes 2 | 3 | Development Master 4 | 5 | 2.9.0 6 | * Time limit setting and first fold check done via onDOMReady instead of window load 7 | * fix #2527646 - Time limits work with Loader 8 | 9 | 2.8.1 10 | * No Change 11 | 12 | 2.8.0 13 | * @requires for module 14 | * No functional changes 15 | 16 | 2.7.0 17 | * No Change 18 | 19 | 2.6.0 20 | * No Change 21 | 22 | 2.5.2 23 | * No Change 24 | 25 | 2.5.1 26 | * No Change 27 | 28 | 2.5.0 29 | * Group object has an addCustomTrigger() function for adding custom event triggers 30 | * PNG background images now support custom properties for AlphaImageLoader 31 | 32 | 2.4.0 33 | * No Change 34 | 35 | 2.3.1 36 | * No Change 37 | 38 | 2.3.0 39 | * Initial release 40 | -------------------------------------------------------------------------------- /src/menu/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | 11 | builddir=../../../builder/componentbuild 12 | component=menu 13 | component.mainclass=YAHOO.widget.Menu 14 | component.jsfiles=menumanager.js, menu.js, menuitem.js, contextmenu.js, contextmenuitem.js, menubar.js, menubaritem.js 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/common/tests/smoketests.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | autocomplete/tests/autocomplete.html 5 | calendar/tests/calendar.html 6 | container/tests/config.html 7 | container/tests/module.html 8 | datasource/tests/datasource.html 9 | datatable/tests/datatable.html 10 | dom/tests/dom.html 11 | event/tests/focusin-focusout.html 12 | event-delegate/tests/delegation.html 13 | selector/tests/selector.html 14 | yahoo/tests/yahoo.html 15 | yuiloader/tests/yuiloader.html 16 | 17 | 18 | -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_examples/dt_rowexp_customheader.php: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/axes/ScaleType.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.axes 2 | { 3 | /** 4 | * Scale types available to IAxis objects. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public class ScaleType 9 | { 10 | 11 | //-------------------------------------- 12 | // Constants 13 | //-------------------------------------- 14 | 15 | /** 16 | * The ScaleType.LINEAR constant specifies that chart axis objects 17 | * should be displayed on a linear scale. 18 | */ 19 | public static const LINEAR:String = "linear"; 20 | 21 | /** 22 | * The ScaleType.LOGARITHMIC constant specifies that chart axis objects 23 | * should be displayed on a logarithmic scale. 24 | */ 25 | public static const LOGARITHMIC:String = "logarithmic"; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/axes/AxisOrientation.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.axes 2 | { 3 | /** 4 | * Orientation values available to IAxis objects. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public class AxisOrientation 9 | { 10 | 11 | //-------------------------------------- 12 | // Constants 13 | //-------------------------------------- 14 | 15 | /** 16 | * The AxisOrientation.VERTICAL constant specifies that a chart axis 17 | * should be displayed vertically. 18 | */ 19 | public static const VERTICAL:String = "vertical"; 20 | 21 | /** 22 | * The AxisOrientation.VERTICAL constant specifies that a chart axis 23 | * should be displayed horizontally. 24 | */ 25 | public static const HORIZONTAL:String = "horizontal"; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/charts/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Charts Build Properties 3 | ########################################################################## 4 | builddir=../../../builder/componentbuild 5 | component=charts 6 | 7 | component.mainclass=YAHOO.widget.Chart 8 | 9 | component.jsfiles=Chart.js,PieChart.js,CartesianChart.js,ChartTypes.js,Axis.js,NumericAxis.js,TimeAxis.js,CategoryAxis.js,Series.js 10 | 11 | #flexbin: you will need to change the source of this property to match the location of the flex bin directory on your machine 12 | flexbin=/Users/trippb/bin/flex_sdk_3/bin 13 | 14 | #flashbin: you will need to change the source of this property to match the location of your Adobe Flash CS3 files 15 | flashbin=/Applications/Adobe\ Flash\ CS3 16 | 17 | -------------------------------------------------------------------------------- /src/yuitest/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Component Build File 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/fl/charts/axes/IClusteringAxis.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.fl.charts.axes 2 | { 3 | /** 4 | * An axis that supports clustering. When combined with a series that 5 | * supports clustering, the number of clusters will allow the series to 6 | * determine the optimal positioning of markers. 7 | * 8 | * @author Josh Tynjala 9 | */ 10 | public interface IClusteringAxis extends IAxis 11 | { 12 | 13 | //-------------------------------------- 14 | // Properties 15 | //-------------------------------------- 16 | 17 | /** 18 | * The number of clusters available on the axis. In the case of the 19 | * CategoryAxis, this is the number of category names displayed on the 20 | * axis. 21 | * 22 | * @see CategoryAxis 23 | */ 24 | function get clusterCount():int; 25 | } 26 | } -------------------------------------------------------------------------------- /sandbox/rowexpansion/rowexp_basic_examples/dt_rowexp_basic_customheader.php: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /src/editor/build.simple.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | global.build.component=${srcdir}/build/editor 14 | 15 | component=simpleeditor 16 | component.mainclass=YAHOO.widget.SimpleEditor 17 | 18 | component.jsfiles=toolbar-button.js toolbar.js, simple-editor.js 19 | -------------------------------------------------------------------------------- /src/selector/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=selector 14 | component.mainclass=YAHOO.util.Selector 15 | 16 | component.jsfiles=selector-mapping.js, selector-native.js, selector-css2.js, selector-css3.js 17 | #component.jsfiles=Selector.js 18 | 19 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/utils/GeomUtil.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.utils 2 | { 3 | /** 4 | * Utility functions for common geometric operations. 5 | * 6 | * @author Josh Tynjala 7 | */ 8 | public class GeomUtil 9 | { 10 | /** 11 | * Converts an angle from radians to degrees. 12 | * 13 | * @param radians The angle in radians 14 | * @return The angle in degrees 15 | */ 16 | public static function radiansToDegrees(radians:Number):Number 17 | { 18 | return radians * 180 / Math.PI; 19 | } 20 | 21 | /** 22 | * Converts an angle from degrees to radians. 23 | * 24 | * @param degrees The angle in degrees 25 | * @return The angle in radians 26 | */ 27 | public static function degreesToRadians(degrees:Number):Number 28 | { 29 | return degrees * Math.PI / 180; 30 | } 31 | 32 | } 33 | } -------------------------------------------------------------------------------- /src/tabview/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################################## 2 | # Common Build Properties 3 | # 4 | # This file contains the most common set of properties which you probably need to configure to get a build up and going 5 | # Use it along with build.common.xml as a starting point to customize your build process. 6 | # 7 | # See build.example.properties and build.example.xml for the complete list of configurable variables 8 | # 9 | ########################################################################## 10 | builddir=../../../builder/componentbuild 11 | srcdir=./../../ 12 | 13 | component=tabview 14 | component.mainclass=YAHOO.widget.TabView 15 | 16 | component.jsfiles=TabView.js, Tab.js 17 | 18 | # You can delete this line, if you have no assets to deploy 19 | #component.assetfiles=assets/css/* 20 | 21 | -------------------------------------------------------------------------------- /sandbox/yahoo/e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/library/TabViewData.txt: -------------------------------------------------------------------------------- 1 | tabData = { 2 | containers : [ { 3 | container : { 4 | locator : "containerId", 5 | tabs : [ { 6 | tabLocator : "tabId", 7 | contentLocator : "contentId", 8 | selected : false 9 | } ] 10 | } 11 | } ] 12 | } 13 | 14 | 15 | tabDataTv = 16 | containers : [ { 17 | container : { 18 | locator : "update-tab", 19 | tabs : [ 20 | { 21 | tabLocator : "[a@href='updates-con']", 22 | contentLocator : "updates-con", 23 | selected : false; 24 | } 25 | { 26 | tabLocator : "[a@href='updates-everyone']", 27 | contentLocator : "updates-everyone", 28 | selected : true; 29 | } 30 | ] 31 | } 32 | } ] 33 | } 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Set root logger level to INFO and its only appender to CONS. 2 | # If you want to see more information on SelNG change INFO TO DEBUG below 3 | log4j.rootLogger=INFO, CONS 4 | 5 | 6 | # CONS is set to be a ConsoleAppender. 7 | log4j.appender.CONS=org.apache.log4j.ConsoleAppender 8 | 9 | # CONS uses PatternLayout. 10 | log4j.appender.CONS.layout=org.apache.log4j.PatternLayout 11 | log4j.appender.CONS.layout.ConversionPattern=%-4r [%t] %-5p %c %x %F %L - %m%n 12 | 13 | 14 | 15 | # Print only messages of level INFO or above for selenium stuff 16 | # If you want to see more information on selenium calls change INFO TO DEBUG below 17 | # If you want to see less information on selenium calls change INFO TO WARN below 18 | log4j.logger.org.openqa.selenium=INFO 19 | log4j.logger.org.mortbay=INFO 20 | 21 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Set root logger level to INFO and its only appender to CONS. 2 | # If you want to see more information on SelNG change INFO TO DEBUG below 3 | log4j.rootLogger=INFO, CONS 4 | 5 | 6 | # CONS is set to be a ConsoleAppender. 7 | log4j.appender.CONS=org.apache.log4j.ConsoleAppender 8 | 9 | # CONS uses PatternLayout. 10 | log4j.appender.CONS.layout=org.apache.log4j.PatternLayout 11 | log4j.appender.CONS.layout.ConversionPattern=%-4r [%t] %-5p %c %x %F %L - %m%n 12 | 13 | 14 | 15 | # Print only messages of level INFO or above for selenium stuff 16 | # If you want to see more information on selenium calls change INFO TO DEBUG below 17 | # If you want to see less information on selenium calls change INFO TO WARN below 18 | log4j.logger.org.openqa.selenium=INFO 19 | log4j.logger.org.mortbay=INFO 20 | 21 | -------------------------------------------------------------------------------- /src/dragdrop/tests/functional/selenium/reorder2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reorder2 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
reorder2
dragAndDropli1_1+0,+150
pause3000
26 | 27 | 28 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/layout/modes/VerticalAlignment.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.layout.modes 2 | { 3 | /** 4 | * A set of constants for vertical alignment values used by 5 | * the layout engine. 6 | * 7 | * @author Josh Tynjala 8 | */ 9 | public class VerticalAlignment 10 | { 11 | 12 | //-------------------------------------- 13 | // Static Properties 14 | //-------------------------------------- 15 | 16 | /** 17 | * Items will be aligned to the top of the available bounds. 18 | */ 19 | public static const TOP:String = "top"; 20 | 21 | /** 22 | * Items will be aligned to the middle of the available bounds. 23 | */ 24 | public static const MIDDLE:String = "middle"; 25 | 26 | /** 27 | * Items will be aligned to the bottom of the available bounds. 28 | */ 29 | public static const BOTTOM:String = "bottom"; 30 | } 31 | } -------------------------------------------------------------------------------- /src/yahoo/tests/assets/xframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | xframe tester 4 | 27 | 28 | 29 |

30 | 31 | 32 | -------------------------------------------------------------------------------- /src/charts/as/com/yahoo/astra/layout/modes/HorizontalAlignment.as: -------------------------------------------------------------------------------- 1 | package com.yahoo.astra.layout.modes 2 | { 3 | /** 4 | * A set of constants for horizontal alignment values used by 5 | * the layout engine. 6 | * 7 | * @author Josh Tynjala 8 | */ 9 | public class HorizontalAlignment 10 | { 11 | 12 | //-------------------------------------- 13 | // Static Properties 14 | //-------------------------------------- 15 | 16 | /** 17 | * Items will be aligned to the left of the available bounds. 18 | */ 19 | public static const LEFT:String = "left"; 20 | 21 | /** 22 | * Items will be aligned to the center of the available bounds. 23 | */ 24 | public static const CENTER:String = "center"; 25 | 26 | /** 27 | * Items will be aligned to the right of the available bounds. 28 | */ 29 | public static const RIGHT:String = "right"; 30 | } 31 | } -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/java/com/yahoo/test/SelNG/YUI/tests/TabViewTest.java: -------------------------------------------------------------------------------- 1 | package com.yahoo.test.SelNG.YUI.tests; 2 | 3 | import static org.testng.Assert.fail; 4 | 5 | import org.apache.log4j.Logger; 6 | import org.testng.annotations.Test; 7 | 8 | import com.yahoo.test.SelNG.YUI.library.TabView; 9 | import com.yahoo.test.SelNG.framework.util.SelNGRetryAnalyzer; 10 | 11 | public class TabViewTest extends CommonTest{ 12 | 13 | public static Logger logger = Logger.getLogger(TabViewTest.class.getName()); 14 | 15 | @Test(groups = {"demo"}, retryAnalyzer = SelNGRetryAnalyzer.class) 16 | public void TabView() { 17 | logger.info("Invoked Tabview Method"); 18 | try { 19 | TabView.tabTest(); 20 | } catch (Throwable t) { 21 | t.printStackTrace(System.out); 22 | logger.error(t); 23 | fail(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /sandbox/yahoo/sprintf.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Event 5 | 6 | 15 | 23 | 24 | 25 | Does nothing 26 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/profiler/README: -------------------------------------------------------------------------------- 1 | YUI Library - Profiler - Release Notes 2 | 3 | 2.9.0 4 | 5 | * No changes 6 | 7 | 2.8.2 8 | 9 | * No changes 10 | 11 | 2.8.1 12 | 13 | * No changes 14 | 15 | 2.8.0 16 | 17 | * Changed profiler so that unregistering a function/object no longer deletes all recorded data. 18 | * Added clear() method to remove profiler data. 19 | * Added instrument() method to profile anonymous functions. 20 | * Added getReport() method and deprecated getFunctionReport(). 21 | * Added getOriginal() method to retrieve uninstrumented versions of functions. 22 | * Implemented stopwatch functionality. 23 | 24 | 2.7.0 25 | 26 | * No changes 27 | 28 | 2.6.0 29 | 30 | * Fixed issue with leaking global "object" variable. 31 | * Out of beta 32 | 33 | 2.5.0 34 | 35 | * No changes 36 | 37 | 2.4.0 38 | 39 | * Beta release 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /sandbox/yahoo/later.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/tests/ContainerTestPanel.java: -------------------------------------------------------------------------------- 1 | package com.yahoo.test.SelNG.YUI.tests; 2 | 3 | import static org.testng.Assert.fail; 4 | 5 | import org.apache.log4j.Logger; 6 | import org.testng.annotations.Test; 7 | 8 | import com.yahoo.test.SelNG.YUI.library.ContainerPanel; 9 | import com.yahoo.test.SelNG.framework.util.SelNGRetryAnalyzer; 10 | 11 | public class ContainerTestPanel extends CommonTest{ 12 | 13 | public static Logger logger = Logger.getLogger(ContainerTestPanel.class.getName()); 14 | 15 | @Test(groups = {"demo"}, retryAnalyzer = SelNGRetryAnalyzer.class) 16 | public void TabView() { 17 | logger.info("Invoked Tabview Method"); 18 | try { 19 | ContainerPanel.containerTest(); 20 | } catch (Throwable t) { 21 | t.printStackTrace(System.out); 22 | logger.error(t); 23 | fail(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/tests/ButtonTestPushButton.java: -------------------------------------------------------------------------------- 1 | package com.yahoo.test.SelNG.YUI.tests; 2 | 3 | import static org.testng.Assert.fail; 4 | 5 | import org.apache.log4j.Logger; 6 | import org.testng.annotations.Test; 7 | 8 | import com.yahoo.test.SelNG.YUI.library.ButtonPushButton; 9 | import com.yahoo.test.SelNG.framework.util.SelNGRetryAnalyzer; 10 | 11 | public class ButtonTestPushButton extends CommonTest{ 12 | 13 | public static Logger logger = Logger.getLogger(ButtonTestPushButton.class.getName()); 14 | 15 | @Test(groups = {"demo"}, retryAnalyzer = SelNGRetryAnalyzer.class) 16 | public void TabView() { 17 | logger.info("Invoked Tabview Method"); 18 | try { 19 | ButtonPushButton.buttonTest(); 20 | } catch (Throwable t) { 21 | t.printStackTrace(System.out); 22 | logger.error(t); 23 | fail(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/tests/ContainerTestModule.java: -------------------------------------------------------------------------------- 1 | package com.yahoo.test.SelNG.YUI.tests; 2 | 3 | import static org.testng.Assert.fail; 4 | 5 | import org.apache.log4j.Logger; 6 | import org.testng.annotations.Test; 7 | 8 | import com.yahoo.test.SelNG.YUI.library.ContainerModule; 9 | import com.yahoo.test.SelNG.framework.util.SelNGRetryAnalyzer; 10 | 11 | public class ContainerTestModule extends CommonTest{ 12 | 13 | public static Logger logger = Logger.getLogger(ContainerTestModule.class.getName()); 14 | 15 | @Test(groups = {"demo"}, retryAnalyzer = SelNGRetryAnalyzer.class) 16 | public void TabView() { 17 | logger.info("Invoked Tabview Method"); 18 | try { 19 | ContainerModule.containerTest(); 20 | } catch (Throwable t) { 21 | t.printStackTrace(System.out); 22 | logger.error(t); 23 | fail(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /src/common/tests/functional/yui/src/test/java/com/yahoo/test/SelNG/YUI/tests/DragAndDropTestShim.java: -------------------------------------------------------------------------------- 1 | package com.yahoo.test.SelNG.YUI.tests; 2 | 3 | import static org.testng.Assert.fail; 4 | 5 | import org.apache.log4j.Logger; 6 | import org.testng.annotations.Test; 7 | 8 | import com.yahoo.test.SelNG.YUI.library.DragAndDropShim; 9 | import com.yahoo.test.SelNG.framework.util.SelNGRetryAnalyzer; 10 | 11 | public class DragAndDropTestShim extends CommonTest{ 12 | 13 | public static Logger logger = Logger.getLogger(DragAndDropTestShim.class.getName()); 14 | 15 | @Test(groups = {"demo"}, retryAnalyzer = SelNGRetryAnalyzer.class) 16 | public void DragAndDropShim() { 17 | logger.info("Invoked Tabview Method"); 18 | try { 19 | DragAndDropShim.ddTest(); 20 | } catch (Throwable t) { 21 | t.printStackTrace(System.out); 22 | logger.error(t); 23 | fail(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /src/common/tests/functional/yui/yui/src/test/java/com/yahoo/test/SelNG/YUI/tests/ContainerTestPanel.java: -------------------------------------------------------------------------------- 1 | package com.yahoo.test.SelNG.YUI.tests; 2 | 3 | import static org.testng.Assert.fail; 4 | 5 | import org.apache.log4j.Logger; 6 | import org.testng.annotations.Test; 7 | 8 | import com.yahoo.test.SelNG.YUI.library.ContainerPanel; 9 | import com.yahoo.test.SelNG.framework.util.SelNGRetryAnalyzer; 10 | 11 | public class ContainerTestPanel extends CommonTest{ 12 | 13 | public static Logger logger = Logger.getLogger(ContainerTestPanel.class.getName()); 14 | 15 | @Test(groups = {"demo"}, retryAnalyzer = SelNGRetryAnalyzer.class) 16 | public void TabView() { 17 | logger.info("Invoked Tabview Method"); 18 | try { 19 | ContainerPanel.containerTest(); 20 | } catch (Throwable t) { 21 | t.printStackTrace(System.out); 22 | logger.error(t); 23 | fail(); 24 | } 25 | } 26 | } --------------------------------------------------------------------------------