r774 - trunk/ui
Author: pazu2k@gmail.com Date: Sun Oct 5 03:44:15 2008 New Revision: 774 Modified: trunk/ui/ui.spinner.js Log: Spinner: spinner casing now sets itself a unique id based on the id of the original input textbox. If no id exists in the original then no id is set to the casing. Modified: trunk/ui/ui.spinner.js ============================================================================== --- trunk/ui/ui.spinner.js (original) +++ trunk/ui/ui.spinner.js Sun Oct 5 03:44:15 2008 @@ -138,6 +138,14 @@
r773 - trunk/tests
Author: kbwood.au Date: Sat Oct 4 23:59:56 2008 New Revision: 773 Modified: trunk/tests/datepicker.js Log: 'change' command is now 'option' command Modified: trunk/tests/datepicker.js ============================================================================== --- trunk/tests/datepicker.js (original) +++ trunk/tests/datepicker.js Sat Oct 4 23:59:56 2008 @@ -108,6 +108,26 @@ ok(inl.next().length == 0 || inl.next().is('p'), 'Inline - button absent'); }); +test('option', function() { + var
r772 - trunk/ui/i18n
Author: kbwood.au Date: Sat Oct 4 23:48:22 2008 New Revision: 772 Modified: trunk/ui/i18n/ui.datepicker-sl.js Log: Add prev/next big texts Modified: trunk/ui/i18n/ui.datepicker-sl.js ============================================================================== --- trunk/ui/i18n/ui.datepicker-sl.js (original) +++ trunk/ui/i18n/ui.datepicker-sl.js Sat Oct 4 23:48:22 2008 @@ -2,10 +2,13 @@ /* Written by Jaka Jancar (jaka@kubje.org). */ /* c = č, s = š z = ž C = Č S = Š
r771 - trunk/ui
Author: kbwood.au Date: Sat Oct 4 23:43:24 2008 New Revision: 771 Modified: trunk/ui/ui.datepicker.js Log: Correct keystroke handled for Mac Correct date determination - no hours/mins/secs/ms Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Sat Oct 4 23:43:24 2008 @@ -499,13 +499,13 @@ +$.datepicker._get(inst, 'stepMonths')), 'M');
r770 - trunk/ui
Author: kbwood.au Date: Sat Oct 4 23:41:11 2008 New Revision: 770 Modified: trunk/ui/ui.datepicker.js Log: Factor out class names for day hover and week hover Call _optionDatepicker from _changeDatepicker Don't recalculate default date and cell over Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Sat Oct 4 23:41:11 2008 @@ -38,6 +38,8 @@ this._disableClass
r769 - in branches/1.7: . tests tests/visual/autocomplete
Author: pazu2k@gmail.com Date: Sat Oct 4 21:37:16 2008 New Revision: 769 Modified: branches/1.7/tests/autocomplete.html branches/1.7/tests/visual/autocomplete/index.html branches/1.7/ui.autocomplete.js Log: Autocomplete: refactored code (unstable). Note: this is only a start - more refactoring planned. Modified: branches/1.7/tests/autocomplete.html ============================================================================== --- branches/1.7/tests/autocomplete.html (original) +++ branches/1.7/tests/autocomplete.html Sat
r768 - trunk/tests
Author: joern.zaefferer Date: Sat Oct 4 18:00:51 2008 New Revision: 768 Modified: trunk/tests/all.html Log: Finishing move of autocomplete from trunk to 1.7 branch Modified: trunk/tests/all.html ============================================================================== --- trunk/tests/all.html (original) +++ trunk/tests/all.html Sat Oct 4 18:00:51 2008 @@ -195,8 +195,6 @@ <input type="text" id="inp"/><input type="text" id="alt"/><div id="inl"></div> - <input type="text" name="autocomplete"
r767 - branches/1.7 branches/1.7/demos branches/1.7/demos/functional branches/1.7/demos/functiona...
Author: joern.zaefferer Date: Sat Oct 4 17:57:59 2008 New Revision: 767 Added: branches/1.7/demos/ branches/1.7/demos/functional/ branches/1.7/demos/functional/templates/ branches/1.7/demos/functional/templates/ui.autocomplete.html - copied unchanged from r731, /trunk/demos/functional/templates/ui.autocomplete.html branches/1.7/tests/autocomplete.html - copied unchanged from r766, /trunk/tests/autocomplete.html branches/1.7/tests/autocomplete.js - copied unchanged from r766, /trunk/tests/autocomplete.js
r759 - in trunk: demos/real-world/accordion-drawers ui
Author: eduardolundgren Date: Mon Sep 29 19:50:23 2008 New Revision: 759 Modified: trunk/demos/real-world/accordion-drawers/index.html trunk/ui/ui.accordion.js Log: Accordion: added support for effects.core ease equations Modified: trunk/demos/real-world/accordion-drawers/index.html ============================================================================== --- trunk/demos/real-world/accordion-drawers/index.html (original) +++ trunk/demos/real-world/accordion-drawers/index.html Mon Sep 29
r766 - in trunk: tests ui
Author: klaus.hartl Date: Sat Oct 4 04:25:28 2008 New Revision: 766 Modified: trunk/tests/tabs.js trunk/ui/ui.tabs.js Log: UI Tabs: unselect class was attached inconsistently Modified: trunk/tests/tabs.js ============================================================================== --- trunk/tests/tabs.js (original) +++ trunk/tests/tabs.js Sat Oct 4 04:25:28 2008 @@ -2,12 +2,8 @@ * tabs unit tests */ (function($) { -// -// Tabs Test Helper Functions -// -// Tabs Tests module('tabs'); test('init',
r765 - trunk/tests
Author: rdworth Date: Fri Oct 3 17:57:02 2008 New Revision: 765 Modified: trunk/tests/tabs.html (props changed) trunk/tests/tabs.js (props changed) Log: set svn:eol-style to native
r764 - trunk/ui
Author: pazu2k@gmail.com Date: Thu Oct 2 21:08:08 2008 New Revision: 764 Modified: trunk/ui/ui.spinner.js Log: Spinner: further refactored number formatter. 3 lines! Modified: trunk/ui/ui.spinner.js ============================================================================== --- trunk/ui/ui.spinner.js (original) +++ trunk/ui/ui.spinner.js Thu Oct 2 21:08:08 2008 @@ -399,18 +399,9 @@ return (num !== Math.abs(num) ? '-' : '') + sym + this.number(Math.abs(num), 2); }, number:
r763 - trunk/ui
Author: pazu2k@gmail.com Date: Thu Oct 2 11:49:42 2008 New Revision: 763 Modified: trunk/ui/ui.spinner.js Log: Spinner: fixed IE6 bugs with spinner height for data lists. Modified: trunk/ui/ui.spinner.js ============================================================================== --- trunk/ui/ui.spinner.js (original) +++ trunk/ui/ui.spinner.js Thu Oct 2 11:49:42 2008 @@ -142,16 +142,17 @@ // Manipulate height of spinner. this._items = this.element.children().length; if
r762 - in trunk: tests ui
Author: pazu2k@gmail.com Date: Thu Oct 2 11:06:30 2008 New Revision: 762 Modified: trunk/tests/spinner.js trunk/ui/ui.spinner.js Log: Spinner: added thousand separator format to numbers and refactored code. Modified: trunk/tests/spinner.js ============================================================================== --- trunk/tests/spinner.js (original) +++ trunk/tests/spinner.js Thu Oct 2 11:06:30 2008 @@ -240,7 +240,7 @@ el.simulate("keyup",{keyCode:$.simulate.VK_DOWN}); - equals(el.val(),
r761 - in trunk: tests tests/plugins ui
Author: klaus.hartl Date: Thu Oct 2 07:20:35 2008 New Revision: 761 Added: trunk/tests/plugins/ (props changed) Modified: trunk/tests/tabs.html trunk/tests/tabs.js trunk/ui/ui.tabs.js Log: UI Tabs: fixed "colon in id bug", wrote more unit tests and refactored stuff afterwards Modified: trunk/tests/tabs.html ============================================================================== --- trunk/tests/tabs.html (original) +++ trunk/tests/tabs.html Thu Oct 2 07:20:35 2008 @@ -11,13 +11,14 @@
r760 - trunk/ui
Author: rdworth Date: Wed Oct 1 04:52:39 2008 New Revision: 760 Modified: trunk/ui/effects.core.js Log: added missing semicolon Modified: trunk/ui/effects.core.js ============================================================================== --- trunk/ui/effects.core.js (original) +++ trunk/ui/effects.core.js Wed Oct 1 04:52:39 2008 @@ -1,4 +1,4 @@ -/* +/* * jQuery UI Effects @VERSION * * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com) @@ -227,7 +227,7 @@ // Look for rgba(0,
r758 - trunk/ui
Author: grabanski Date: Mon Sep 29 16:04:12 2008 New Revision: 758 Modified: trunk/ui/ui.datepicker.js Log: Datepicker: Default date cell shows over-state when nothing is selected, next months do not show over state unless keyboard is activated. Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Mon Sep 29 16:04:12 2008 @@ -25,6 +25,7 @@ function Datepicker()
r757 - trunk/ui
Author: grabanski Date: Mon Sep 29 12:20:25 2008 New Revision: 757 Modified: trunk/ui/ui.datepicker.js Log: Datepicker: Updated Mac keyboard commands Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Mon Sep 29 12:20:25 2008 @@ -474,8 +474,9 @@ switch (e.keyCode) { case 9: $.datepicker._hideDatepicker(null, ''); break;
r756 - trunk/ui
Author: scott.gonzalez Date: Mon Sep 29 06:08:14 2008 New Revision: 756 Modified: trunk/ui/ui.dialog.js Log: Dialog: Made moveToTop public. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Mon Sep 29 06:08:14 2008 @@ -83,7 +83,7 @@ .ariaRole("dialog") .ariaState("labelledby", titleId) .mousedown(function() { - self._moveToTop();
r753 - trunk/ui
Author: grabanski Date: Sun Sep 28 09:20:11 2008 New Revision: 753 Modified: trunk/ui/ui.datepicker.js Log: Datepicker: Created "option" method, deprecated "change" method. Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Sun Sep 28 09:20:11 2008 @@ -405,7 +405,7 @@ @param name object - the new settings to update or string - the name of the setting
r755 - trunk/ui
Author: grabanski Date: Sun Sep 28 14:30:22 2008 New Revision: 755 Modified: trunk/ui/ui.datepicker.js Log: Datepicker: Added option, "constrainInput" to restrict input text to the current date format. Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Sun Sep 28 14:30:22 2008 @@ -124,7 +124,8 @@ rangeSelect: false, // Allows for selecting a date range
r754 - trunk/ui
Author: scott.gonzalez Date: Sun Sep 28 10:58:08 2008 New Revision: 754 Modified: trunk/ui/ui.core.js Log: $.widget: Create namespace if it doesn't already exist. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Sun Sep 28 10:58:08 2008 @@ -175,6 +175,7 @@ }; // create widget constructor + $[namespace] = $[namespace] || {}; $[namespace][name] = function(element,
r752 - trunk/tests
Author: klaus.hartl Date: Sun Sep 28 04:47:07 2008 New Revision: 752 Added: trunk/tests/tabs.html trunk/tests/tabs.js Log: UI Tabs: started with writing tests Added: trunk/tests/tabs.html ============================================================================== --- (empty file) +++ trunk/tests/tabs.html Sun Sep 28 04:47:07 2008 @@ -0,0 +1,57 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Tabs Test Suite</title> + + <link rel="stylesheet" href="qunit/testsuite.css"
Themeroller + Tabs Bug (#3447)
<div dir="ltr">Can someone with access to Themeroller fix #3447 before the 1.6 release? </div>
r751 - trunk/tests
Author: scott.gonzalez Date: Sat Sep 27 18:43:12 2008 New Revision: 751 Modified: trunk/tests/dialog.js Log: Dialog: Added more tests. Modified: trunk/tests/dialog.js ============================================================================== --- trunk/tests/dialog.js (original) +++ trunk/tests/dialog.js Sat Sep 27 18:43:12 2008 @@ -531,7 +531,8 @@ module("dialog: Callbacks"); test("open", function() { - expect(4); + expect(6); + el = $("<div/>"); el.dialog({ open:
r750 - trunk/ui
Author: scott.gonzalez Date: Sat Sep 27 18:17:32 2008 New Revision: 750 Modified: trunk/ui/ui.dialog.js Log: Dialog: Removed functionality for copying classes from the main element to the wrapper div. This was used for themes, but this method of theming is no longer encouraged. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Sat Sep 27 18:17:32 2008 @@ -67,10 +67,6 @@
r749 - trunk/themes/flora
Author: klaus.hartl Date: Sat Sep 27 16:40:06 2008 New Revision: 749 Modified: trunk/themes/flora/flora.tabs.css Log: UI Tabs: in IE the first tab was moved to upper left corner for tabs used in dialog, fixes #3470 Modified: trunk/themes/flora/flora.tabs.css ============================================================================== --- trunk/themes/flora/flora.tabs.css (original) +++ trunk/themes/flora/flora.tabs.css Sat Sep 27 16:40:06 2008 @@ -24,6 +24,9 @@ margin: 0; padding: 0 0 0 3px;
r748 - trunk/tests
Author: rdworth Date: Sat Sep 27 09:10:43 2008 New Revision: 748 Modified: trunk/tests/draggable.js Log: Updated draggable defaults unit test Modified: trunk/tests/draggable.js ============================================================================== --- trunk/tests/draggable.js (original) +++ trunk/tests/draggable.js Sat Sep 27 09:10:43 2008 @@ -138,14 +138,42 @@ }); test("defaults", function() { + + var expected = { + appendTo: "parent", + axis: false, + cancel:
r747 - in tags: 1.0 1.0.1a 1.0.1a/demos 1.0.1a/demos/css 1.0/themes/dark 1.0/themes/flora 1.0/the...
Author: rdworth Date: Sat Sep 27 03:30:20 2008 New Revision: 747 Modified: tags/1.0.1a/GPL-LICENSE.txt (contents, props changed) tags/1.0.1a/MIT-LICENSE.txt (contents, props changed) tags/1.0.1a/demos/css/style.css (contents, props changed) tags/1.0.1a/demos/index.html (contents, props changed) tags/1.0.1a/demos/ui.accordion.html (contents, props changed) tags/1.0.1a/demos/ui.calendar.html (contents, props changed) tags/1.0.1a/demos/ui.datepicker.html (contents, props changed) tags/1.0.1a/demos/ui.dialog.html
Accordion jump
<div dir="ltr">We have to figure out the jquery animation problem (accordion) that is jumping at the end. Any idea?<br clear="all"> -- Eduardo Lundgren Software Engineer Liferay, Inc. Enterprise. Open Source. For Life. </div>
r746 - trunk/demos/real-world/accordion-drawers
Author: pazu2k@gmail.com Date: Fri Sep 26 21:23:14 2008 New Revision: 746 Modified: trunk/demos/real-world/accordion-drawers/index.html Log: Accordion: fixed accordion drawers demo for IE6 and 7. Tested in FF2, FF3, Safari 3, Opera 9.5, IE6, IE7 & Chrome on WinXP. All look pretty good. However, IE6 still has slightly darker side borders caused by the .drawer-handle.open clause which is not properly supported by IE6. Modified: trunk/demos/real-world/accordion-drawers/index.html ==============================================================================
r745 - trunk/ui
Author: pazu2k@gmail.com Date: Fri Sep 26 20:36:13 2008 New Revision: 745 Modified: trunk/ui/ui.spinner.js Log: Spinner: reduced mousewheel timer from 500ms to 400ms (thanks cloudream) Modified: trunk/ui/ui.spinner.js ============================================================================== --- trunk/ui/ui.spinner.js (original) +++ trunk/ui/ui.spinner.js Fri Sep 26 20:36:13 2008 @@ -270,7 +270,7 @@ window.clearTimeout(self.timeout); self.timeout = 0; } - self.timeout
r744 - trunk/tests/visual
Author: pazu2k@gmail.com Date: Fri Sep 26 00:26:20 2008 New Revision: 744 Modified: trunk/tests/visual/spinner.html Log: Spinner: Removed external jquery.mousewheel.js call from visual test. Modified: trunk/tests/visual/spinner.html ============================================================================== --- trunk/tests/visual/spinner.html (original) +++ trunk/tests/visual/spinner.html Fri Sep 26 00:26:20 2008 @@ -6,7 +6,6 @@ <script type="text/javascript" src="../../jquery-1.2.6.js"></script>
r743 - in trunk: tests tests/visual ui
Author: pazu2k@gmail.com Date: Fri Sep 26 00:21:56 2008 New Revision: 743 Modified: trunk/tests/spinner.js trunk/tests/visual/spinner.html trunk/ui/ui.spinner.js Log: Spinner: added a timer to mousewheel interaction which fires a change event when the mousewheel stops spinning. Added a few missing options to test case. Modified: trunk/tests/spinner.js ============================================================================== --- trunk/tests/spinner.js (original) +++ trunk/tests/spinner.js Fri
r740 - trunk/ui
Author: pazu2k@gmail.com Date: Thu Sep 25 11:50:11 2008 New Revision: 740 Modified: trunk/ui/ui.accordion.js Log: Accordion: fixed jump in accordion when expander div has padding. Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Thu Sep 25 11:50:11 2008 @@ -253,8 +253,9 @@ } var hideHeight = options.toHide.height(), showHeight
r742 - trunk/ui
Author: pazu2k@gmail.com Date: Thu Sep 25 19:31:38 2008 New Revision: 742 Modified: trunk/ui/ui.accordion.js Log: Accordion: fix user-defined style issue when margin is set on expander Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Thu Sep 25 19:31:38 2008 @@ -254,8 +254,10 @@ var hideHeight = options.toHide.height(), showHeight
r741 - trunk/ui
Author: eduardolundgren Date: Thu Sep 25 19:29:46 2008 New Revision: 741 Modified: trunk/ui/ui.draggable.js Log: Draggable cancelHelperRemoval when is not over Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Thu Sep 25 19:29:46 2008 @@ -572,6 +572,7 @@ this.instance.options.helper = this.instance.options._helper; }
Themeroller
<div dir="ltr">Themeroller is fixed.<br clear="all"> -- Eduardo Lundgren Software Engineer Liferay, Inc. Enterprise. Open Source. For Life. </div>
Trac is up
<div dir="ltr">Hi Guys, The trac is up, let me know if this becomes unstable again.<br clear="all"> -- Eduardo Lundgren Software Engineer Liferay, Inc. Enterprise. Open Source. For Life. </div>
Docs Spreadsheet for database layout
<div dir="ltr">Hey guys, Richard, oddly enough, I cannot open the spreadsheet we created anymore. Could you give it a try? I'm just seeing a blank page. Also, could you please invite every other teammember to it so they can take a peek? Richard and I have been using the database layout for the project tool that I sent out to you and created a google docs spreadsheet out of it to better discuss it before doing SQL. Anything you would like to add/remove/change, please do so and discuss it here. Thanks,
Next Page