r983 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:40:23 2008 New Revision: 983 Modified: trunk/ui/ui.slider.js Log: slider: formatting changes - moved some things around for consistency. _init and destroy at the top, then _mouse methods. plugins, ui last. Sorted defaults alphabetically. Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Thu Nov 20 20:40:23 2008 @@ -19,55 +19,6 @@ };
r982 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:17:19 2008 New Revision: 982 Modified: trunk/ui/ui.dialog.js Log: dialog: formatting changes Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Thu Nov 20 20:17:19 2008 @@ -28,6 +28,7 @@ }; $.widget("ui.dialog", { + _init: function() { this.originalTitle = this.element.attr('title'); this.options.title = this.options.title
r981 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:12:18 2008 New Revision: 981 Modified: trunk/ui/ui.progressbar.js Log: progressbar: formatting changes Modified: trunk/ui/ui.progressbar.js ============================================================================== --- trunk/ui/ui.progressbar.js (original) +++ trunk/ui/ui.progressbar.js Thu Nov 20 20:12:18 2008 @@ -13,6 +13,7 @@ (function($) { $.widget("ui.progressbar", { + _init: function() { this._interval = this.options.interval; @@ -66,6
r980 - in trunk: tests ui
Author: rdworth Date: Thu Nov 20 20:05:27 2008 New Revision: 980 Modified: trunk/tests/selectable.js trunk/ui/ui.selectable.js Log: selectable: removed toggle method as widget factory provides enable/disable methods. Modified: trunk/tests/selectable.js ============================================================================== --- trunk/tests/selectable.js (original) +++ trunk/tests/selectable.js Thu Nov 20 20:05:27 2008 @@ -165,18 +165,6 @@ el.selectable("destroy"); }); -test("toggle",
r979 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:04:36 2008 New Revision: 979 Modified: trunk/ui/ui.droppable.js Log: droppable: removed disabled default as it's provided by widget factory Modified: trunk/ui/ui.droppable.js ============================================================================== --- trunk/ui/ui.droppable.js (original) +++ trunk/ui/ui.droppable.js Thu Nov 20 20:04:36 2008 @@ -143,7 +143,6 @@ defaults: { activeClass: null, cssNamespace: 'ui', - disabled: false,
r978 - trunk/ui
Author: rdworth Date: Thu Nov 20 20:01:33 2008 New Revision: 978 Modified: trunk/ui/ui.draggable.js trunk/ui/ui.droppable.js trunk/ui/ui.resizable.js trunk/ui/ui.selectable.js trunk/ui/ui.sortable.js Log: draggable, droppable, resizable, selectable, sortable: formatting changes - moved some things around for consistency. _init and destroy at the top, then _mouse methods. plugins, ui last. Sorted defaults and plugins alphabetically. Modified: trunk/ui/ui.draggable.js ==============================================================================
r977 - in trunk: . ui
Author: rdworth Date: Thu Nov 20 18:14:03 2008 New Revision: 977 Added: trunk/AUTHORS.txt Modified: trunk/MIT-LICENSE.txt trunk/ui/effects.blind.js trunk/ui/effects.bounce.js trunk/ui/effects.clip.js trunk/ui/effects.core.js trunk/ui/effects.drop.js trunk/ui/effects.explode.js trunk/ui/effects.fold.js trunk/ui/effects.highlight.js trunk/ui/effects.pulsate.js trunk/ui/effects.scale.js trunk/ui/effects.shake.js trunk/ui/effects.slide.js trunk/ui/effects.transfer.js trunk/ui/ui.accordion.js trunk/ui/ui.core.js
r976 - trunk/release
Author: eduardolundgren Date: Thu Nov 20 05:42:56 2008 New Revision: 976 Modified: trunk/release/build.xml Log: build.xml - Added zip task. Modified: trunk/release/build.xml ============================================================================== --- trunk/release/build.xml (original) +++ trunk/release/build.xml Thu Nov 20 05:42:56 2008 @@ -11,15 +11,18 @@ <project name="jquery-ui" default="deploy-release" basedir="."> - <target name="deploy-release" depends="load.properties, concatenate,
r975 - trunk/release/build
Author: eduardolundgren Date: Thu Nov 20 05:18:19 2008 New Revision: 975 Added: trunk/release/build/class.JavaScriptPacker.php (contents, props changed) trunk/release/build/pack.php (contents, props changed) Log: build.xml - Pack task now using PHP packer. Added: trunk/release/build/class.JavaScriptPacker.php ============================================================================== --- (empty file) +++ trunk/release/build/class.JavaScriptPacker.php Thu Nov 20 05:18:19 2008 @@ -0,0 +1,741
Wiki pages for xxxables
I just tried to go to /UI/Draggable just to find a non-existing page. Its easy enough to create redirect pages, though I think the primary page should be UI/Draggable, to match the name of the plugin method. The same applies to all other Xables. The old pages would still be available, they just redirect to the new one. What do you think? Jörn
r972 - trunk/release
Author: eduardolundgren Date: Wed Nov 19 21:07:42 2008 New Revision: 972 Modified: trunk/release/build.xml Log: build.xml - Added replace-version task. Pack task now using PHP packer. i18n minify and pack support. Modified: trunk/release/build.xml ============================================================================== --- trunk/release/build.xml (original) +++ trunk/release/build.xml Wed Nov 19 21:07:42 2008 @@ -2,44 +2,52 @@ <!-- jQuery UI Release! - + Call task called 'deploy-release'
r974 - trunk/ui
Author: eduardolundgren Date: Wed Nov 19 21:51:19 2008 New Revision: 974 Modified: trunk/ui/build.xml Log: Added a build.xml file to help us removing trailing spaces when needed. Modified: trunk/ui/build.xml ============================================================================== --- trunk/ui/build.xml (original) +++ trunk/ui/build.xml Wed Nov 19 21:51:19 2008 @@ -9,7 +9,6 @@ <target name="load.properties"> <property file="ant.properties" /> - <property name="version"
r973 - trunk/ui
Author: eduardolundgren Date: Wed Nov 19 21:18:26 2008 New Revision: 973 Added: trunk/ui/build.xml (contents, props changed) Log: Added a build.xml file to help us removing trailing spaces when needed. Added: trunk/ui/build.xml ============================================================================== --- (empty file) +++ trunk/ui/build.xml Wed Nov 19 21:18:26 2008 @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="iso-8859-1"?> + +<!-- + jQuery UI Tasks + @author Eduardo Lundgren (eduardolundgren@gmail.com)
r971 - in trunk/ui: . i18n
Author: eduardolundgren Date: Wed Nov 19 20:10:34 2008 New Revision: 971 Modified: trunk/ui/effects.blind.js trunk/ui/effects.bounce.js trunk/ui/effects.clip.js trunk/ui/effects.core.js trunk/ui/effects.drop.js trunk/ui/effects.explode.js trunk/ui/effects.fold.js trunk/ui/effects.highlight.js trunk/ui/effects.pulsate.js trunk/ui/effects.scale.js trunk/ui/effects.shake.js trunk/ui/effects.slide.js trunk/ui/effects.transfer.js trunk/ui/i18n/ui.datepicker-ar.js trunk/ui/i18n/ui.datepicker-ca.js trunk/ui/i18n/ui.datepicker-cs.js
trunk updates with themeroller
After talking with Richard about it, FG will begin making some commits to trunk for the next version of ThemeRoller today. This will include the new framework classes, CSS sprite support for icons, and animated animated gif theming, among other things. This will all need to be matched with updates to all the widget markup so they use framework classes, as well as additional elements wherever needed for icons. These changes will be incompatible with the live ThemeRoller site, so if you need to make
Design wiki now has a page for every item
I'm happy to report that there is now a page for all 50+ widgets and utilities in the matrix. Some of the pages a just a placeholder, but I've tried to at least fill out a brief description, links to plug-ins and documentation and images for all the design mockups. Woo hoo. http://jqueryui.pbwiki.com/ This is just a start, but at least we'll have a home for capturing notes and ideas for each item. I encourage people to start linking to wiki pages from your posts here on dev, your personal blogs and
1.6rc3 Release
Hey guys, specially Richard. I know we still have some issues to fix, but we need put a new version out, for instance, a lot of bug fixes were done on sortable/draggable the same for other components. I suggest in release the 1.6rc3 asap. Let me know what do you guys think about it. <br clear="all"> -- Eduardo Lundgren Software Engineer Liferay, Inc. Enterprise. Open Source. For Life.
Dynamic Report: open tickets for each plugin
The other day I started creating separate Trac reports for each plugin, to show the open tickets, with the 1.6 blockers and criticals at the top. That got old quick, so I created a dynamic report: <a href="http://ui.jquery.com/bugs/report/10">http://ui.jquery.com/bugs/report/10</a> (note: you'll get an error message if you access this url without a ?P parameter value) Just pass the plugin name as the parameter upper-case P, like so <a href="http://ui.jquery.com/bugs/report/10?P=core">http://ui.jquery.com/bugs/report/10?P=core</a>
Design items
Hi all - I'm currently going through wiki pages to merge in comments and standardize pages into the tweaked template. My plan is to build out a bunch of new pages, even if they just have a brief description and wireframe design for now. Right now, the high priority items in the grid are: spinner, progress indicator, position to, menu and color picker. 1. I'd like to suggest that we de-prioritize the color picker and bump up the tree, slider re-factor and maybe the html > data to be high priority
r970 - trunk/ui
Author: paul.bakaus Date: Wed Nov 19 07:20:36 2008 New Revision: 970 Modified: trunk/ui/ui.core.js Log: core: this fixes the Safari issue that select options can't be selected if the mouse widget is used, since the mousedown returns false which calls preventDefault. Returning true causes text to be selectable in FF/Opera though, so this needs to be Safari only for now. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original)
r969 - trunk/ui
Author: paul.bakaus Date: Wed Nov 19 07:08:02 2008 New Revision: 969 Modified: trunk/ui/ui.sortable.js Log: sortable: removing ui.options caused plugins not to work anymore - fixed all regressions Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Wed Nov 19 07:08:02 2008 @@ -857,41 +857,43 @@ $.ui.plugin.add("sortable", "cursor", { start: function(event, ui)
r968 - trunk/ui
Author: paul.bakaus Date: Wed Nov 19 06:49:55 2008 New Revision: 968 Modified: trunk/ui/ui.resizable.js Log: resizable: Fixed preserveCursor, if the cursor is overriden in the stylesheet for the axes, it's maintained (fixes #3480) Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Wed Nov 19 06:49:55 2008 @@ -314,8 +314,10 @@ //Aspect Ratio o.aspectRatio
r967 - trunk/ui
Author: paul.bakaus Date: Wed Nov 19 06:38:48 2008 New Revision: 967 Modified: trunk/ui/ui.slider.js Log: slider: defered all parseInt / Math.round calls for values to this._round, implemented option 'round' (bool), that is enabled on default (old behaviour), can be disabled to return floating values (fixes 3489) Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Nov
Progressbar Callback Data
Why are any of the following necessary to be passed to the progressbar callbacks? identifier element textElement pixelState percentState
r966 - trunk/demos/functional
Author: rdworth Date: Wed Nov 19 03:15:32 2008 New Revision: 966 Modified: trunk/demos/functional/index.html Log: removed unused conditional comments for ie5, ie6, ie7 Modified: trunk/demos/functional/index.html ============================================================================== --- trunk/demos/functional/index.html (original) +++ trunk/demos/functional/index.html Wed Nov 19 03:15:32 2008 @@ -1,4 +1,4 @@ -<!doctype html> +<!doctype html> <html lang="en"> <head> <title>jQuery
1.8 Merge Tree Widget with jsTree Plugin
One of my favorite website Ajaxian, http://ajaxian.com/, released an article on jsTree, http://ajaxian.com/archives/jstree-nears-10-solicits-feedback I don't if it's too late or if guys already know about "jsTree". Please check it out and invite the developers of "jsTree" to help with jQuery UI Tree widget because I know it's a complex widget by itself. jsTree Official Website: http://www.jstree.com/ Sincerely, Will
r965 - trunk/ui
Author: paul.bakaus Date: Wed Nov 19 01:54:53 2008 New Revision: 965 Modified: trunk/ui/ui.sortable.js Log: sortable: removed ui.element and ui.options from the UI object, corrected the callback for the items option, now includes event if applicable Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Wed Nov 19 01:54:53 2008 @@ -40,8 +40,6 @@ placeholder:
Implementation of the menu widget
Hey everyone, I've invested quite a few days now into the implementation of both the menu widget and the new positionAround method. Please feel free to play around with the source and the visual tests at branches/experimental/ . Also, I've updated the menu page in the wiki - Interaction Design team members, please review it and comment - I'd like to hear your thoughts. One of the most important changes is the following: 1) Previous way the widget worked: $(<ul>).menu() creates a menu using the selected
Progressbar range Option
Progressbar's range option desperately needs a new name.
Design Wiki Comments
I'd like to propose that comments on the design wiki be deleted after they have been fully dealt with. This means that once the wiki page has been updated to reflect the comment or the comment has been deemed invalid, the comment would be removed. This will keep the wiki pages up-to-date and will prevent stale content.
Progressbar description option
The design for O1 in the progress indicator design page ( <a href="http://jqueryui.pbwiki.com/ProgressIndicator">http://jqueryui.pbwiki.com/ProgressIndicator</a> ) has support for displaying additional information about the progress bar. Is this something that we're going to support? This could also be useful for accessibility. If we're going to support this, we need at least one new option and new markup.
r964 - in branches/dev/menu: tests/visual/menu ui
Author: rdworth Date: Tue Nov 18 22:12:59 2008 New Revision: 964 Added: branches/dev/menu/ui/ui.core.position.js - copied unchanged from r963, /branches/dev/position/ui/ui.core.position.js Modified: branches/dev/menu/tests/visual/menu/menu.html Log: branches/dev/menu: corrected relative file urls Modified: branches/dev/menu/tests/visual/menu/menu.html ============================================================================== --- branches/dev/menu/tests/visual/menu/menu.html (original) +++
r963 - branches/dev/autocomplete/demos/functional/templates branches/dev/autocomplete/tests branc...
Author: rdworth Date: Tue Nov 18 22:09:48 2008 New Revision: 963 Modified: branches/dev/autocomplete/demos/functional/templates/ui.effects.easing.ex2.html (contents, props changed) branches/dev/autocomplete/tests/droppable.html (contents, props changed) branches/dev/autocomplete/tests/droppable.js (contents, props changed) branches/dev/autocomplete/tests/ui.html (contents, props changed) branches/dev/autocomplete/tests/ui.js (contents, props changed) branches/dev/autocomplete/ui/i18n/ui.datepicker-fa.js
r962 - in branches: dev/autocomplete/demos/functional/templates dev/autocomplete/tests dev/autoco...
Author: rdworth Date: Tue Nov 18 21:58:42 2008 New Revision: 962 Added: branches/dev/autocomplete/demos/functional/templates/ui.autocomplete.html (props changed) - copied unchanged from r960, /branches/experimental/demos/functional/templates/ui.autocomplete.html branches/dev/autocomplete/tests/autocomplete.html (props changed) - copied unchanged from r960, /branches/experimental/tests/autocomplete.html branches/dev/autocomplete/tests/autocomplete.js (props changed) - copied unchanged from r960, /branches/experimental/tests/autocomplete.js
r961 - branches/dev/autocomplete
Author: rdworth Date: Tue Nov 18 21:52:14 2008 New Revision: 961 Added: branches/dev/autocomplete/ - copied from r956, /trunk/ Log: Created dev/autocomplete branch as of trunk rev956
r960 - branches/dev/grid
Author: rdworth Date: Tue Nov 18 21:39:13 2008 New Revision: 960 Added: branches/dev/grid/ - copied from r956, /trunk/ Log: CrCreated dev/grid branch as of trunk rev956
r959 - branches/dev/colorpicker
Author: rdworth Date: Tue Nov 18 21:38:47 2008 New Revision: 959 Added: branches/dev/colorpicker/ - copied from r956, /trunk/ Log: CrCreated dev/colorpicker branch as of trunk rev956
r958 - branches/dev/position
Author: rdworth Date: Tue Nov 18 21:38:17 2008 New Revision: 958 Added: branches/dev/position/ - copied from r956, /trunk/ Log: CrCreated dev/position branch as of trunk rev956
r957 - branches/dev/menu
Author: rdworth Date: Tue Nov 18 21:37:52 2008 New Revision: 957 Added: branches/dev/menu/ - copied from r956, /trunk/ Log: CrCreated dev/menu branch as of trunk rev956
r956 - in trunk: demos/functional demos/functional/templates tests tests/visual themes/default ui
Author: rdworth Date: Tue Nov 18 18:34:05 2008 New Revision: 956 Removed: trunk/demos/functional/templates/ui.spinner.html trunk/tests/spinner.html trunk/tests/spinner.js trunk/tests/visual/spinner.html trunk/ui/ui.spinner.js Modified: trunk/demos/functional/index.html trunk/tests/all.html trunk/tests/all_2.html trunk/tests/ui.html trunk/tests/ui.js trunk/themes/default/ui.all.css Log: Removed spinner from trunk. See /branches/dev/spinner Modified: trunk/demos/functional/index.html ==============================================================================
Next Page