r1781 - in trunk: . tests/static tests/static/accordion tests/static/datepicker tests/static/dial...

r1781 - in trunk: . tests/static tests/static/accordion tests/static/datepicker tests/static/dial...


Author: rdworth
Date: Sat Jan 24 04:07:26 2009
New Revision: 1781
Modified:
trunk/jquery-1.3.1.js (contents, props changed)
trunk/tests/static/accordion/default.html (contents, props changed)
trunk/tests/static/datepicker/default.html (contents, props changed)
trunk/tests/static/dialog/default.html (contents, props changed)
trunk/tests/static/draggable/default.html (contents, props changed)
trunk/tests/static/droppable/default.html (contents, props changed)
trunk/tests/static/progressbar/default.html (contents, props changed)
trunk/tests/static/resizable/default.html (contents, props changed)
trunk/tests/static/selectable/default.html (contents, props changed)
trunk/tests/static/slider/default.html (contents, props changed)
trunk/tests/static/sortable/default.html (contents, props changed)
trunk/tests/static/static.css (contents, props changed)
trunk/tests/static/tabs/default.html (contents, props changed)
trunk/tests/unit/core/selector.js (props changed)
trunk/tests/unit/dialog/dialog.js (props changed)
trunk/tests/unit/testsuite.js (props changed)
trunk/tests/visual/accordion/default.html (contents, props changed)
trunk/tests/visual/dialog/default.html (contents, props changed)
trunk/tests/visual/draggable/default.html (contents, props changed)
trunk/tests/visual/droppable/default.html (contents, props changed)
trunk/tests/visual/index.html (contents, props changed)
trunk/tests/visual/progressbar/default.html (contents, props changed)
trunk/tests/visual/resizable/default.html (contents, props changed)
trunk/tests/visual/selectable/default.html (contents, props changed)
trunk/tests/visual/slider/default.html (contents, props changed)
trunk/tests/visual/sortable/default.html (contents, props changed)
trunk/tests/visual/tabs/default.html (contents, props changed)
trunk/tests/visual/visual.css (contents, props changed)
trunk/ui/i18n/ui.datepicker-el.js (props changed)
trunk/ui/i18n/ui.datepicker-ms.js (props changed)
Log:
eol-style and mime-type
Modified: trunk/jquery-1.3.1.js
==============================================================================
--- trunk/jquery-1.3.1.js    (original)
+++ trunk/jquery-1.3.1.js    Sat Jan 24 04:07:26 2009
@@ -1250,150 +1250,150 @@
function num(elem, prop) {
    return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
}
-var expando = "jQuery" + now(), uuid = 0, windowData = {};
-
-jQuery.extend({
-    cache: {},
-
-    data: function( elem, name, data ) {
-        elem = elem == window ?
-            windowData :
-            elem;
-
-        var id = elem[ expando ];
-
-        // Compute a unique ID for the element
-        if ( !id )
-            id = elem[ expando ] = ++uuid;
-
-        // Only generate the data cache if we're
-        // trying to access or manipulate it
-        if ( name && !jQuery.cache[ id ] )
-            jQuery.cache[ id ] = {};
-
-        // Prevent overriding the named cache with undefined values
-        if ( data !== undefined )
-            jQuery.cache[ id ][ name ] = data;
-
-        // Return the named cache data, or the ID for the element
-        return name ?
-            jQuery.cache[ id ][ name ] :
-            id;
-    },
-
-    removeData: function( elem, name ) {
-        elem = elem == window ?
-            windowData :
-            elem;
-
-        var id = elem[ expando ];
-
-        // If we want to remove a specific section of the element's data
-        if ( name ) {
-            if ( jQuery.cache[ id ] ) {
-                // Remove the section of cache data
-                delete jQuery.cache[ id ][ name ];
-
-                // If we've removed all the data, remove the element's cache
-                name = "";
-
-                for ( name in jQuery.cache[ id ] )
-                    break;
-
-                if ( !name )
-                    jQuery.removeData( elem );
-            }
-
-        // Otherwise, we want to remove all of the element's data
-        } else {
-            // Clean up the element expando
-            try {
-                delete elem[ expando ];
-            } catch(e){
-                // IE has trouble directly removing the expando
-                // but it's ok with using removeAttribute
-                if ( elem.removeAttribute )
-                    elem.removeAttribute( expando );
-            }
-
-            // Completely remove the data cache
-            delete jQuery.cache[ id ];
-        }
-    },
-    queue: function( elem, type, data ) {
-        if ( elem ){
-    
-            type = (type || "fx") + "queue";
-    
-            var q = jQuery.data( elem, type );
-    
-            if ( !q || jQuery.isArray(data) )
-                q = jQuery.data( elem, type, jQuery.makeArray(data) );
-            else if( data )
-                q.push( data );
-    
-        }
-        return q;
-    },
-
-    dequeue: function( elem, type ){
-        var queue = jQuery.queue( elem, type ),
-            fn = queue.shift();
-        
-        if( !type || type === "fx" )
-            fn = queue[0];
-            
-        if( fn !== undefined )
-            fn.call(elem);
-    }
-});
-
-jQuery.fn.extend({
-    data: function( key, value ){
-        var parts = key.split(".");
-        parts[1] = parts[1] ? "." + parts[1] : "";
-
-        if ( value === undefined ) {
-            var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);
-
-            if ( data === undefined && this.length )
-                data = jQuery.data( this[0], key );
-
-            return data === undefined && parts[1] ?
-                this.data( parts[0] ) :
-                data;
-        } else
-            return this.trigger("setData" + parts[1] + "!", [parts[0],
value]).each(function(){
-                jQuery.data( this, key, value );
-            });
-    },
-
-    removeData: function( key ){
-        return this.each(function(){
-            jQuery.removeData( this, key );
-        });
-    },
-    queue: function(type, data){
-        if ( typeof type !== "string" ) {
-            data = type;
-            type = "fx";
-        }
-
-        if ( data === undefined )
-            return jQuery.queue( this[0], type );
-
-        return this.each(function(){
-            var queue = jQuery.queue( this, type, data );
-            
-             if( type == "fx" && queue.length == 1 )
-                queue[0].call(this);
-        });
-    },
-    dequeue: function(type){
-        return this.each(function(){
-            jQuery.dequeue( this, type );
-        });
-    }
+var expando = "jQuery" + now(), uuid = 0, windowData = {};
+
+jQuery.extend({
+    cache: {},
+
+    data: function( elem, name, data ) {
+        elem = elem == window ?
+            windowData :
+            elem;
+
+        var id = elem[ expando ];
+
+        // Compute a unique ID for the element
+        if ( !id )
+            id = elem[ expando ] = ++uuid;
+
+        // Only generate the data cache if we're
+        // trying to access or manipulate it
+        if ( name && !jQuery.cache[ id ] )
+            jQuery.cache[ id ] = {};
+
+        // Prevent overriding the named cache with undefined values
+        if ( data !== undefined )
+            jQuery.cache[ id ][ name ] = data;
+
+        // Return the named cache data, or the ID for the element
+        return name ?
+            jQuery.cache[ id ][ name ] :
+            id;
+    },
+
+    removeData: function( elem, name ) {
+        elem = elem == window ?
+            windowData :
+            elem;
+
+        var id = elem[ expando ];
+
+        // If we want to remove a specific section of the element's data
+        if ( name ) {
+            if ( jQuery.cache[ id ] ) {
+                // Remove the section of cache data
+                delete jQuery.cache[ id ][ name ];
+
+                // If we've removed all the data, remove the element's cache
+                name = "";
+
+                for ( name in jQuery.cache[ id ] )
+                    break;
+
+                if ( !name )
+                    jQuery.removeData( elem );
+            }
+
+        // Otherwise, we want to remove all of the element's data
+        } else {
+            // Clean up the element expando
+            try {
+                delete elem[ expando ];
+            } catch(e){
+                // IE has trouble directly removing the expando
+                // but it's ok with using removeAttribute
+                if ( elem.removeAttribute )
+                    elem.removeAttribute( expando );
+            }
+
+            // Completely remove the data cache
+            delete jQuery.cache[ id ];
+        }
+    },
+    queue: function( elem, type, data ) {
+        if ( elem ){
+    
+            type = (type || "fx") + "queue";
+    
+            var q = jQuery.data( elem, type );
+    
+            if ( !q || jQuery.isArray(data) )
+                q = jQuery.data( elem, type, jQuery.makeArray(data) );
+            else if( data )
+                q.push( data );
+    
+        }
+        return q;
+    },
+
+    dequeue: function( elem, type ){
+        var queue = jQuery.queue( elem, type ),
+            fn = queue.shift();
+        
+        if( !type || type === "fx" )
+            fn = queue[0];
+            
+        if( fn !== undefined )
+            fn.call(elem);
+    }
+});
+
+jQuery.fn.extend({
+    data: function( key, value ){
+        var parts = key.split(".");
+        parts[1] = parts[1] ? "." + parts[1] : "";
+
+        if ( value === undefined ) {
+            var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);
+
+            if ( data === undefined && this.length )
+                data = jQuery.data( this[0], key );
+
+            return data === undefined && parts[1] ?
+                this.data( parts[0] ) :
+                data;
+        } else
+            return this.trigger("setData" + parts[1] + "!", [parts[0],
value]).each(function(){
+                jQuery.data( this, key, value );
+            });
+    },
+
+    removeData: function( key ){
+        return this.each(function(){
+            jQuery.removeData( this, key );
+        });
+    },
+    queue: function(type, data){
+        if ( typeof type !== "string" ) {
+            data = type;
+            type = "fx";
+        }
+
+        if ( data === undefined )
+            return jQuery.queue( this[0], type );
+
+        return this.each(function(){
+            var queue = jQuery.queue( this, type, data );
+            
+             if( type == "fx" && queue.length == 1 )
+                queue[0].call(this);
+        });
+    },
+    dequeue: function(type){
+        return this.each(function(){
+            jQuery.dequeue( this, type );
+        });
+    }
});/*!
* Sizzle CSS Selector Engine - v0.9.3
* Copyright 2009, The Dojo Foundation
Modified: trunk/tests/static/accordion/default.html
==============================================================================
--- trunk/tests/static/accordion/default.html    (original)
+++ trunk/tests/static/accordion/default.html    Sat Jan 24 04:07:26 2009
@@ -1,47 +1,47 @@
-<!doctype html>
-<html>
-<head>
-    <title>Accordion Static Test : Default</title>
-    <link rel="stylesheet" href="../static.css" type="text/css" />
-    <link rel="stylesheet" href="../../../themes/base/ui.base.css"
type="text/css" />
-    <link rel="stylesheet" href="../../../themes/base/ui.theme.css"
type="text/css" title="ui-theme" />
-    <script type="text/javascript" src="../../../jquery-1.3.1.js"></script>
-    <script type="text/javascript" src="../static.js"></script>
-</head>
-<body>
-
-<div class="ui-accordion ui-widget ui-helper-reset">
-    <div class="ui-accordion-group ui-accordion-selected">
-        <h3 class="ui-accordion-header ui-helper-reset ui-state-active
ui-corner-top" tabindex="0"><span class="ui-icon
ui-icon-triangle-1-s"></span><a href="#">First</a></h3>
-        <div>
-            <div class="ui-accordion-content-wrap ui-helper-reset ui-widget-content
ui-corner-bottom">
-                <div class="ui-accordion-content">
-                    

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
ea commodo consequat.



-                </div>
-            </div>
-        </div>
-    </div>
-    <div class="ui-accordion-group">
-        <h3 class="ui-accordion-header ui-helper-reset ui-state-default
ui-corner-all" tabindex="0"><span class="ui-icon
ui-icon-triangle-1-e"></span><a href="#">Second</a></h3>
-        <div>
-            <div class="ui-accordion-content-wrap ui-helper-reset ui-widget-content
ui-corner-bottom" style="height: 95px; display: none;">
-                <div class="ui-accordion-content">
-                    

Phasellus mattis tincidunt nibh. Cras orci urna, blandit id,
pretium vel, aliquet ornare, felis. Maecenas scelerisque sem non nisl.
Fusce sed lorem in enim dictum bibendum.


-                </div>
-            </div>
-        </div>
-    </div>
-    <div class="ui-accordion-group">
-        <h3 class="ui-accordion-header ui-helper-reset ui-state-default
ui-corner-all" tabindex="0"><span class="ui-icon
ui-icon-triangle-1-e"></span><a href="#">Third</a></h3>
-        <div>
-            <div class="ui-accordion-content-wrap ui-helper-reset ui-widget-content
ui-corner-bottom" style="height: 95px; display: none;">
-                <div class="ui-accordion-content">
-                    

Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis.
Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum,
lacus. Mauris porttitor ullamcorper augue.


-                </div>
-            </div>
-        </div>
-    </div>
-</div>
-
-</body>
-</html>
+<!doctype html>
+<html>
+<head>
+    <title>Accordion Static Test : Default</title>
+    <link rel="stylesheet" href="../static.css" type="text/css" />
+    <link rel="stylesheet" href="../../../themes/base/ui.base.css"
type="text/css" />
+    <link rel="stylesheet" href="../../../themes/base/ui.theme.css"
type="text/css" title="ui-theme" />
+    <script type="text/javascript" src="../../../jquery-1.3.1.js"></script>
+    <script type="text/javascript" src="../static.js"></script>
+</head>
+<body>
+
+<div class="ui-accordion ui-widget ui-helper-reset">
+    <div class="ui-accordion-group ui-accordion-selected">
+        <h3 class="ui-accordion-header ui-helper-reset ui-state-active
ui-corner-top" tabindex="0"><span class="ui-icon
ui-icon-triangle-1-s"></span><a href="#">First</a></h3>
+        <div>
+            <div class="ui-accordion-content-wrap ui-helper-reset ui-widget-content
ui-corner-bottom">
+                <div class="ui-accordion-content">
+                    

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
ea commodo consequat.



+                </div>
+            </div>
+        </div>
+    </div>
+    <div class="ui-accordion-group">
+        <h3 class="ui-accordion-header ui-helper-reset ui-state-default
ui-corner-all" tabindex="0"><span class="ui-icon
ui-icon-triangle-1-e"></span><a href="#">Second</a></h3>
+        <div>
+            <div class="ui-accordion-content-wrap ui-helper-reset ui-widget-content
ui-corner-bottom" style="height: 95px; display: none;">
+                <div class="ui-accordion-content">
+                    

Phasellus mattis tincidunt nibh. Cras orci urna, blandit id,
pretium vel, aliquet ornare, felis. Maecenas scelerisque sem non nisl.
Fusce sed lorem in enim dictum bibendum.


+                </div>
+            </div>
+        </div>
+    </div>
+    <div class="ui-accordion-group">
+        <h3 class="ui-accordion-header ui-helper-reset ui-state-default
ui-corner-all" tabindex="0"><span class="ui-icon
ui-icon-triangle-1-e"></span><a href="#">Third</a></h3>
+        <div>
+            <div class="ui-accordion-content-wrap ui-helper-reset ui-widget-content
ui-corner-bottom" style="height: 95px; display: none;">
+                <div class="ui-accordion-content">
+                    

Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis.
Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum,
lacus. Mauris porttitor ullamcorper augue.


+                </div>
+            </div>
+        </div>
+    </div>
+</div>
+
+</body>
+</html>
Modified: trunk/tests/static/datepicker/default.html
==============================================================================
--- trunk/tests/static/datepicker/default.html    (original)
+++ trunk/tests/static/datepicker/default.html    Sat Jan 24 04:07:26 2009
@@ -1,85 +1,85 @@
-<!doctype html>
-<html>
-<head>
-    <title>Datepicker Static Test : Default</title>
-    <link rel="stylesheet" href="../static.css" type="text/css" />
-    <link rel="stylesheet" href="../../../themes/base/ui.base.css"
type="text/css" />
-    <link rel="stylesheet" href="../../../themes/base/ui.theme.css"
type="text/css" title="ui-theme" />
-    <script type="text/javascript" src="../../../jquery-1.3.1.js"></script>
-    <script type="text/javascript" src="../static.js"></script>
-</head>
-<body>
-
-<div class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix
ui-corner-all">
-    <div class="ui-datepicker-header ui-widget-header ui-helper-clearfix
ui-corner-all">
-        <a title="Prev" class="ui-datepicker-prev ui-corner-all" href="#"><span
class="ui-icon ui-icon-circle-triangle-w">Prev</span></a>
-        <a title="Next" class="ui-datepicker-next ui-corner-all" href="#"><span
class="ui-icon ui-icon-circle-triangle-e">Next</span></a>
-        <div class="ui-datepicker-title">
-            <span class="ui-datepicker-month">December</span>
-            <span class="ui-datepicker-year">2008</span>
-        </div>
-    </div>
-    <table class="ui-datepicker-calendar">
-        <thead>
-            <tr>
-                <th class="ui-datepicker-week-end"><span title="Sunday">Su</span></th>
-                <th><span title="Monday">Mo</span></th>
-                <th><span title="Tuesday">Tu</span></th>
-                <th><span title="Wednesday">We</span></th>
-                <th><span title="Thursday">Th</span></th>
-                <th><span title="Friday">Fr</span></th>
-                <th class="ui-datepicker-week-end"><span
title="Saturday">Sa</span></th>
-            </tr>
-        </thead>
-        <tbody>
-            <tr>
-                <td class="ui-datepicker-week-end ui-datepicker