From cec2d32af25d07a3f9314eb9a293db2c5221325f Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Sat, 24 Jan 2009 12:07:26 +0000 Subject: eol-style and mime-type --- jquery-1.3.1.js | 288 +++++++++++++++++----------------- tests/static/accordion/default.html | 94 +++++------ tests/static/datepicker/default.html | 170 ++++++++++---------- tests/static/dialog/default.html | 74 ++++----- tests/static/draggable/default.html | 34 ++-- tests/static/droppable/default.html | 34 ++-- tests/static/progressbar/default.html | 36 ++--- tests/static/resizable/default.html | 40 ++--- tests/static/selectable/default.html | 40 ++--- tests/static/slider/default.html | 36 ++--- tests/static/sortable/default.html | 40 ++--- tests/static/static.css | 2 +- tests/static/tabs/default.html | 64 ++++---- tests/visual/accordion/default.html | 80 +++++----- tests/visual/dialog/default.html | 46 +++--- tests/visual/draggable/default.html | 42 ++--- tests/visual/droppable/default.html | 50 +++--- tests/visual/index.html | 72 ++++----- tests/visual/progressbar/default.html | 42 ++--- tests/visual/resizable/default.html | 42 ++--- tests/visual/selectable/default.html | 52 +++--- tests/visual/slider/default.html | 42 ++--- tests/visual/sortable/default.html | 52 +++--- tests/visual/tabs/default.html | 60 +++---- tests/visual/visual.css | 2 +- 25 files changed, 767 insertions(+), 767 deletions(-) diff --git a/jquery-1.3.1.js b/jquery-1.3.1.js index 94e9c1755..3a4badd04 100644 --- a/jquery-1.3.1.js +++ b/jquery-1.3.1.js @@ -1250,150 +1250,150 @@ jQuery.each({ 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 diff --git a/tests/static/accordion/default.html b/tests/static/accordion/default.html index 471dce737..aba29dcec 100644 --- a/tests/static/accordion/default.html +++ b/tests/static/accordion/default.html @@ -1,47 +1,47 @@ - - - - Accordion Static Test : Default - - - - - - - - -
-
-

First

-
-
-
-

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.

-
-
-
-
-
-

Second

-
- -
-
-
-

Third

-
- -
-
-
- - - + + + + Accordion Static Test : Default + + + + + + + + +
+
+

First

+
+
+
+

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.

+
+
+
+
+
+

Second

+
+ +
+
+
+

Third

+
+ +
+
+
+ + + diff --git a/tests/static/datepicker/default.html b/tests/static/datepicker/default.html index 15c765d6a..12546b9c7 100644 --- a/tests/static/datepicker/default.html +++ b/tests/static/datepicker/default.html @@ -1,85 +1,85 @@ - - - - Datepicker Static Test : Default - - - - - - - - -
-
- Prev - Next -
- December - 2008 -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SuMoTuWeThFrSa
- 123456
78910111213
14151617181920
21222324252627
28293031 - - -
-
- - - + + + + Datepicker Static Test : Default + + + + + + + + +
+
+ Prev + Next +
+ December + 2008 +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SuMoTuWeThFrSa
+ 123456
78910111213
14151617181920
21222324252627
28293031 + + +
+
+ + + diff --git a/tests/static/dialog/default.html b/tests/static/dialog/default.html index 36dbbb2bf..71006b4fa 100644 --- a/tests/static/dialog/default.html +++ b/tests/static/dialog/default.html @@ -1,37 +1,37 @@ - - - - Dialog Static Test : Default - - - - - - - - - - - - + + + + Dialog Static Test : Default + + + + + + + + + + + + diff --git a/tests/static/draggable/default.html b/tests/static/draggable/default.html index 56bd39bb0..58c529d13 100644 --- a/tests/static/draggable/default.html +++ b/tests/static/draggable/default.html @@ -1,17 +1,17 @@ - - - - Draggable Static Test : Default - - - - - - - - -
-
- - - + + + + Draggable Static Test : Default + + + + + + + + +
+
+ + + diff --git a/tests/static/droppable/default.html b/tests/static/droppable/default.html index eda58b8bd..78eb0f6cf 100644 --- a/tests/static/droppable/default.html +++ b/tests/static/droppable/default.html @@ -1,17 +1,17 @@ - - - - Droppable Static Test : Default - - - - - - - - -
-
- - - + + + + Droppable Static Test : Default + + + + + + + + +
+
+ + + diff --git a/tests/static/progressbar/default.html b/tests/static/progressbar/default.html index b613745b7..44a8cdea5 100644 --- a/tests/static/progressbar/default.html +++ b/tests/static/progressbar/default.html @@ -1,18 +1,18 @@ - - - - Progressbar Static Test : Default - - - - - - - - -
-
-
- - - + + + + Progressbar Static Test : Default + + + + + + + + +
+
+
+ + + diff --git a/tests/static/resizable/default.html b/tests/static/resizable/default.html index 2cafdc7c2..5e23e020b 100644 --- a/tests/static/resizable/default.html +++ b/tests/static/resizable/default.html @@ -1,20 +1,20 @@ - - - - Resizable Static Test : Default - - - - - - - - -
-
-
-
-
- - - + + + + Resizable Static Test : Default + + + + + + + + +
+
+
+
+
+ + + diff --git a/tests/static/selectable/default.html b/tests/static/selectable/default.html index 913522c63..a8fcf2122 100644 --- a/tests/static/selectable/default.html +++ b/tests/static/selectable/default.html @@ -1,20 +1,20 @@ - - - - Selectable Static Test : Default - - - - - - - - -
-
First
-
Second
-
Third
-
- - - + + + + Selectable Static Test : Default + + + + + + + + +
+
First
+
Second
+
Third
+
+ + + diff --git a/tests/static/slider/default.html b/tests/static/slider/default.html index 406d20500..a397c0414 100644 --- a/tests/static/slider/default.html +++ b/tests/static/slider/default.html @@ -1,18 +1,18 @@ - - - - Slider Static Test : Default - - - - - - - - -
- -
- - - + + + + Slider Static Test : Default + + + + + + + + +
+ +
+ + + diff --git a/tests/static/sortable/default.html b/tests/static/sortable/default.html index 019f5e83c..2009563eb 100644 --- a/tests/static/sortable/default.html +++ b/tests/static/sortable/default.html @@ -1,20 +1,20 @@ - - - - Sortable Static Test : Default - - - - - - - - -
-
First
-
Second
-
Third
-
- - - + + + + Sortable Static Test : Default + + + + + + + + +
+
First
+
Second
+
Third
+
+ + + diff --git a/tests/static/static.css b/tests/static/static.css index 16da76aa8..60f25b59a 100644 --- a/tests/static/static.css +++ b/tests/static/static.css @@ -1 +1 @@ -body { font-size: 62.5%; } +body { font-size: 62.5%; } diff --git a/tests/static/tabs/default.html b/tests/static/tabs/default.html index 96a2a959a..3aebf36ae 100644 --- a/tests/static/tabs/default.html +++ b/tests/static/tabs/default.html @@ -1,32 +1,32 @@ - - - - jQuery UI Tabs Static Markup Test Page - - - - - - - - -
- -
- 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. -
-
- 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. -
-
- Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue. -
-
- - - + + + + jQuery UI Tabs Static Markup Test Page + + + + + + + + +
+ +
+ 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. +
+
+ 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. +
+
+ Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue. +
+
+ + + diff --git a/tests/visual/accordion/default.html b/tests/visual/accordion/default.html index d8aeb59a3..6c8372f54 100644 --- a/tests/visual/accordion/default.html +++ b/tests/visual/accordion/default.html @@ -1,40 +1,40 @@ - - - - Accordion Visual Test : Default - - - - - - - - - -
-
-

First

-
- 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. -
-
-
-

Second

-
- 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. -
-
-
-

Third

-
- Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue. -
-
-
- - - + + + + Accordion Visual Test : Default + + + + + + + + + +
+
+

First

+
+ 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. +
+
+
+

Second

+
+ 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. +
+
+
+

Third

+
+ Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue. +
+
+
+ + + diff --git a/tests/visual/dialog/default.html b/tests/visual/dialog/default.html index 347e9a55c..e3165d759 100644 --- a/tests/visual/dialog/default.html +++ b/tests/visual/dialog/default.html @@ -1,23 +1,23 @@ - - - - Dialog Visual Test : Default - - - - - - - - - - - -
- - - + + + + Dialog Visual Test : Default + + + + + + + + + + + +
+ + + diff --git a/tests/visual/draggable/default.html b/tests/visual/draggable/default.html index 3092737a5..4d868b756 100644 --- a/tests/visual/draggable/default.html +++ b/tests/visual/draggable/default.html @@ -1,21 +1,21 @@ - - - - Draggable Visual Test : Default - - - - - - - - - -
Draggable
- - - + + + + Draggable Visual Test : Default + + + + + + + + + +
Draggable
+ + + diff --git a/tests/visual/droppable/default.html b/tests/visual/droppable/default.html index 27436b688..3f12c3571 100644 --- a/tests/visual/droppable/default.html +++ b/tests/visual/droppable/default.html @@ -1,25 +1,25 @@ - - - - Droppable Visual Test : Default - - - - - - - - - - -
Draggable
- -
Droppable
- - - + + + + Droppable Visual Test : Default + + + + + + + + + + +
Draggable
+ +
Droppable
+ + + diff --git a/tests/visual/index.html b/tests/visual/index.html index 5b852f71c..0ee372eb0 100644 --- a/tests/visual/index.html +++ b/tests/visual/index.html @@ -1,36 +1,36 @@ - - - - Visual Tests - - - - - - - -

Interactions

- - -

Widgets

- - - - + + + + Visual Tests + + + + + + + +

Interactions

+ + +

Widgets

+ + + + diff --git a/tests/visual/progressbar/default.html b/tests/visual/progressbar/default.html index 7a0e6acd0..f1fa48f82 100644 --- a/tests/visual/progressbar/default.html +++ b/tests/visual/progressbar/default.html @@ -1,21 +1,21 @@ - - - - Progressbar Visual Test : Default - - - - - - - - - -
- - - + + + + Progressbar Visual Test : Default + + + + + + + + + +
+ + + diff --git a/tests/visual/resizable/default.html b/tests/visual/resizable/default.html index bd9ee1ee0..3e2a7334a 100644 --- a/tests/visual/resizable/default.html +++ b/tests/visual/resizable/default.html @@ -1,21 +1,21 @@ - - - - Resizable Visual Test : Default - - - - - - - - - -
Resizable
- - - + + + + Resizable Visual Test : Default + + + + + + + + + +
Resizable
+ + + diff --git a/tests/visual/selectable/default.html b/tests/visual/selectable/default.html index e33884ca1..69f145933 100644 --- a/tests/visual/selectable/default.html +++ b/tests/visual/selectable/default.html @@ -1,26 +1,26 @@ - - - - Selectable Visual Test : Default - - - - - - - - - - -
-
First
-
Second
-
Third
-
- - - + + + + Selectable Visual Test : Default + + + + + + + + + + +
+
First
+
Second
+
Third
+
+ + + diff --git a/tests/visual/slider/default.html b/tests/visual/slider/default.html index af5f6acb2..15bdb0939 100644 --- a/tests/visual/slider/default.html +++ b/tests/visual/slider/default.html @@ -1,21 +1,21 @@ - - - - Slider Visual Test : Default - - - - - - - - - -
- - - + + + + Slider Visual Test : Default + + + + + + + + + +
+ + + diff --git a/tests/visual/sortable/default.html b/tests/visual/sortable/default.html index 0d7f58357..8747e0b64 100644 --- a/tests/visual/sortable/default.html +++ b/tests/visual/sortable/default.html @@ -1,26 +1,26 @@ - - - - Sortable Visual Test : Default - - - - - - - - - - -
-
First
-
Second
-
Third
-
- - - + + + + Sortable Visual Test : Default + + + + + + + + + + +
+
First
+
Second
+
Third
+
+ + + diff --git a/tests/visual/tabs/default.html b/tests/visual/tabs/default.html index 5a8ee39b5..a7dd63a91 100644 --- a/tests/visual/tabs/default.html +++ b/tests/visual/tabs/default.html @@ -1,30 +1,30 @@ - - - - Tabs Visual Test : Default - - - - - - - - - -
- -
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.
-
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.
-
Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue.
-
- - - + + + + Tabs Visual Test : Default + + + + + + + + + +
+ +
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.
+
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.
+
Nam dui erat, auctor a, dignissim quis, sollicitudin eu, felis. Pellentesque nisi urna, interdum eget, sagittis et, consequat vestibulum, lacus. Mauris porttitor ullamcorper augue.
+
+ + + diff --git a/tests/visual/visual.css b/tests/visual/visual.css index 16da76aa8..60f25b59a 100644 --- a/tests/visual/visual.css +++ b/tests/visual/visual.css @@ -1 +1 @@ -body { font-size: 62.5%; } +body { font-size: 62.5%; } -- cgit v1.2.3