aboutsummaryrefslogtreecommitdiffstats
path: root/include/jquery_ui/development-bundle/demos/datepicker
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-22 19:46:18 -0700
committerfriendica <info@friendica.com>2012-10-22 19:46:18 -0700
commita7abe24382bac00243fd19ebc2cdde87569eab79 (patch)
tree2e802f3357af5e13407241e1c94a17f5e7962517 /include/jquery_ui/development-bundle/demos/datepicker
parent896ca97330f86afe3ab9c7a07ae6d1676c1a546a (diff)
downloadvolse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.gz
volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.bz2
volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.zip
more file cleanup
Diffstat (limited to 'include/jquery_ui/development-bundle/demos/datepicker')
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/alt-field.html36
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/animation.html58
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/buttonbar.html35
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/date-formats.html47
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/date-range.html51
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/default.html33
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/dropdown-month-year.html36
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/icon-trigger.html37
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/images/calendar.gifbin269 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/index.html31
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/inline.html33
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/localization.html176
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/min-max.html33
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/multiple-calendars.html36
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/other-months.html37
-rw-r--r--include/jquery_ui/development-bundle/demos/datepicker/show-week.html39
16 files changed, 0 insertions, 718 deletions
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/alt-field.html b/include/jquery_ui/development-bundle/demos/datepicker/alt-field.html
deleted file mode 100644
index 6323cf316..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/alt-field.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Populate alternate field</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- altField: "#alternate",
- altFormat: "DD, d MM, yy"
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker">&nbsp;<input type="text" id="alternate" size="30"/></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Populate an alternate field with its own date format whenever a date is selected using the <code>altField</code> and <code>altFormat</code> options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/animation.html b/include/jquery_ui/development-bundle/demos/datepicker/animation.html
deleted file mode 100644
index f2e6452f7..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/animation.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Animations</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.effects.core.js"></script>
- <script src="../../ui/jquery.effects.blind.js"></script>
- <script src="../../ui/jquery.effects.bounce.js"></script>
- <script src="../../ui/jquery.effects.clip.js"></script>
- <script src="../../ui/jquery.effects.drop.js"></script>
- <script src="../../ui/jquery.effects.fold.js"></script>
- <script src="../../ui/jquery.effects.slide.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker();
- $( "#anim" ).change(function() {
- $( "#datepicker" ).datepicker( "option", "showAnim", $( this ).val() );
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker" size="30"/></p>
-
-<p>Animations:<br />
- <select id="anim">
- <option value="show">Show (default)</option>
- <option value="slideDown">Slide down</option>
- <option value="fadeIn">Fade in</option>
- <option value="blind">Blind (UI Effect)</option>
- <option value="bounce">Bounce (UI Effect)</option>
- <option value="clip">Clip (UI Effect)</option>
- <option value="drop">Drop (UI Effect)</option>
- <option value="fold">Fold (UI Effect)</option>
- <option value="slide">Slide (UI Effect)</option>
- <option value="">None</option>
- </select>
-</p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Use different animations when opening or closing the datepicker. Choose an animation from the dropdown, then click on the input to see its effect. You can use one of the three standard animations or any of the UI Effects.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/buttonbar.html b/include/jquery_ui/development-bundle/demos/datepicker/buttonbar.html
deleted file mode 100644
index 20c729266..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/buttonbar.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Display button bar</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- showButtonPanel: true
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Display a button for selecting Today's date and a Done button for closing the calendar with the boolean <code>showButtonPanel</code> option. Each button is enabled by default when the bar is displayed, but can be turned off with additional options. Button text is customizable.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/date-formats.html b/include/jquery_ui/development-bundle/demos/datepicker/date-formats.html
deleted file mode 100644
index 35a5e6bba..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/date-formats.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Format date</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker();
- $( "#format" ).change(function() {
- $( "#datepicker" ).datepicker( "option", "dateFormat", $( this ).val() );
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker" size="30"/></p>
-
-<p>Format options:<br />
- <select id="format">
- <option value="mm/dd/yy">Default - mm/dd/yy</option>
- <option value="yy-mm-dd">ISO 8601 - yy-mm-dd</option>
- <option value="d M, y">Short - d M, y</option>
- <option value="d MM, y">Medium - d MM, y</option>
- <option value="DD, d MM, yy">Full - DD, d MM, yy</option>
- <option value="'day' d 'of' MM 'in the year' yy">With text - 'day' d 'of' MM 'in the year' yy</option>
- </select>
-</p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Display date feedback in a variety of ways. Choose a date format from the dropdown, then click on the input and select a date to see it in that format.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/date-range.html b/include/jquery_ui/development-bundle/demos/datepicker/date-range.html
deleted file mode 100644
index 09ebba842..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/date-range.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Select a Date Range</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#from" ).datepicker({
- defaultDate: "+1w",
- changeMonth: true,
- numberOfMonths: 3,
- onSelect: function( selectedDate ) {
- $( "#to" ).datepicker( "option", "minDate", selectedDate );
- }
- });
- $( "#to" ).datepicker({
- defaultDate: "+1w",
- changeMonth: true,
- numberOfMonths: 3,
- onSelect: function( selectedDate ) {
- $( "#from" ).datepicker( "option", "maxDate", selectedDate );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<label for="from">From</label>
-<input type="text" id="from" name="from"/>
-<label for="to">to</label>
-<input type="text" id="to" name="to"/>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Select the date range to search for.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/default.html b/include/jquery_ui/development-bundle/demos/datepicker/default.html
deleted file mode 100644
index 869c4e99a..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/default.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Default functionality</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker();
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/dropdown-month-year.html b/include/jquery_ui/development-bundle/demos/datepicker/dropdown-month-year.html
deleted file mode 100644
index eed1dfea9..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/dropdown-month-year.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Display month &amp; year menus</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- changeMonth: true,
- changeYear: true
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean <code>changeMonth</code> and <code>changeYear</code> options.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/icon-trigger.html b/include/jquery_ui/development-bundle/demos/datepicker/icon-trigger.html
deleted file mode 100644
index 3ec339ff8..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/icon-trigger.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Icon trigger</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- showOn: "button",
- buttonImage: "images/calendar.gif",
- buttonImageOnly: true
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Click the icon next to the input field to show the datepicker. Set the datepicker to open on focus (default behavior), on icon click, or both.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/images/calendar.gif b/include/jquery_ui/development-bundle/demos/datepicker/images/calendar.gif
deleted file mode 100644
index d0abaa7c0..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/images/calendar.gif
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/index.html b/include/jquery_ui/development-bundle/demos/datepicker/index.html
deleted file mode 100644
index ed2477402..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/index.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker Demos</title>
- <link rel="stylesheet" href="../demos.css">
-</head>
-<body>
-
-<div class="demos-nav">
- <h4>Examples</h4>
- <ul>
- <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
- <li><a href="date-formats.html">Format date</a></li>
- <li><a href="min-max.html">Restrict date range</a></li>
- <li><a href="localization.html">Localize calendar</a></li>
- <li><a href="alt-field.html">Populate alternate field</a></li>
- <li><a href="inline.html">Display inline</a></li>
- <li><a href="buttonbar.html">Display button bar</a></li>
- <li><a href="dropdown-month-year.html">Display month &amp; year menus</a></li>
- <li><a href="other-months.html">Dates in other months</a></li>
- <li><a href="show-week.html">Show week of the year</a></li>
- <li><a href="multiple-calendars.html">Display multiple months</a></li>
- <li><a href="icon-trigger.html">Icon trigger</a></li>
- <li><a href="animation.html">Animations</a></li>
- <li><a href="date-range.html">Date Range</a></li>
- </ul>
-</div>
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/inline.html b/include/jquery_ui/development-bundle/demos/datepicker/inline.html
deleted file mode 100644
index f32915082..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/inline.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Display inline</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker();
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-Date: <div id="datepicker"></div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/localization.html b/include/jquery_ui/development-bundle/demos/datepicker/localization.html
deleted file mode 100644
index e7bb42c16..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/localization.html
+++ /dev/null
@@ -1,176 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Localize calendar</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-af.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ar.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ar-DZ.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-az.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-bg.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-bs.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ca.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-cs.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-cy-GB.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-da.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-de.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-el.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-en-AU.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-en-GB.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-en-NZ.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-eo.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-es.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-et.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-eu.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-fa.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-fi.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-fo.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-fr.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-fr-CH.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-gl.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-he.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-hi.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-hr.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-hu.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-hy.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-id.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-is.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-it.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ja.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ka.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-kk.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-km.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ko.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-lb.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-lt.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-lv.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-mk.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ml.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ms.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-nl.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-nl-BE.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-no.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-pl.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-pt.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-pt-BR.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-rm.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ro.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ru.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-sk.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-sl.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-sq.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-sr.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-sr-SR.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-sv.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-ta.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-th.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-tj.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-tr.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-uk.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-vi.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-zh-CN.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-zh-HK.js"></script>
- <script src="../../ui/i18n/jquery.ui.datepicker-zh-TW.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $.datepicker.setDefaults( $.datepicker.regional[ "" ] );
- $( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] );
- $( "#locale" ).change(function() {
- $( "#datepicker" ).datepicker( "option",
- $.datepicker.regional[ $( this ).val() ] );
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"/>&nbsp;
- <select id="locale">
- <option value="af">Afrikaans</option>
- <option value="sq">Albanian (Gjuha shqipe)</option>
- <option value="ar-DZ">Algerian Arabic</option>
- <option value="ar">Arabic (&#8235;(&#1604;&#1593;&#1585;&#1576;&#1610;</option>
- <option value="hy">Armenian (&#1344;&#1377;&#1397;&#1381;&#1408;&#1381;&#1398;)</option>
- <option value="az">Azerbaijani (Az&#601;rbaycan dili)</option>
- <option value="eu">Basque (Euskara)</option>
- <option value="bs">Bosnian (Bosanski)</option>
- <option value="bg">Bulgarian (&#1073;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; &#1077;&#1079;&#1080;&#1082;)</option>
- <option value="ca">Catalan (Catal&agrave;)</option>
- <option value="zh-HK">Chinese Hong Kong (&#32321;&#39636;&#20013;&#25991;)</option>
- <option value="zh-CN">Chinese Simplified (&#31616;&#20307;&#20013;&#25991;)</option>
- <option value="zh-TW">Chinese Traditional (&#32321;&#39636;&#20013;&#25991;)</option>
- <option value="hr">Croatian (Hrvatski jezik)</option>
- <option value="cs">Czech (&#269;e&#353;tina)</option>
- <option value="da">Danish (Dansk)</option>
- <option value="nl-BE">Dutch (Belgium)</option>
- <option value="nl">Dutch (Nederlands)</option>
- <option value="en-AU">English/Australia</option>
- <option value="en-NZ">English/New Zealand</option>
- <option value="en-GB">English/UK</option>
- <option value="eo">Esperanto</option>
- <option value="et">Estonian (eesti keel)</option>
- <option value="fo">Faroese (f&oslash;royskt)</option>
- <option value="fa">Farsi/Persian (&#8235;(&#1601;&#1575;&#1585;&#1587;&#1740;</option>
- <option value="fi">Finnish (suomi)</option>
- <option value="fr" selected="selected">French (Fran&ccedil;ais)</option>
- <option value="fr-CH">French/Swiss (Fran&ccedil;ais de Suisse)</option>
- <option value="gl">Galician</option>
- <option value="ge">Georgian</option>
- <option value="de">German (Deutsch)</option>
- <option value="el">Greek (&#917;&#955;&#955;&#951;&#957;&#953;&#954;&#940;)</option>
- <option value="he">Hebrew (&#8235;(&#1506;&#1489;&#1512;&#1497;&#1514;</option>
- <option value="hi">Hindi (&#2361;&#2367;&#2306;&#2342;&#2368;)</option>
- <option value="hu">Hungarian (Magyar)</option>
- <option value="is">Icelandic (&Otilde;slenska)</option>
- <option value="id">Indonesian (Bahasa Indonesia)</option>
- <option value="it">Italian (Italiano)</option>
- <option value="ja">Japanese (&#26085;&#26412;&#35486;)</option>
- <option value="kk">Kazakhstan (Kazakh)</option>
- <option value="km">Khmer</option>
- <option value="ko">Korean (&#54620;&#44397;&#50612;)</option>
- <option value="lv">Latvian (Latvie&ouml;u Valoda)</option>
- <option value="lt">Lithuanian (lietuviu kalba)</option>
- <option value="lb">Luxembourgish</option>
- <option value="mk">Macedonian</option>
- <option value="ml">Malayalam</option>
- <option value="ms">Malaysian (Bahasa Malaysia)</option>
- <option value="no">Norwegian (Norsk)</option>
- <option value="pl">Polish (Polski)</option>
- <option value="pt">Portuguese (Portugu&ecirc;s)</option>
- <option value="pt-BR">Portuguese/Brazilian (Portugu&ecirc;s)</option>
- <option value="rm">Rhaeto-Romanic (Romansh)</option>
- <option value="ro">Romanian (Rom&acirc;n&#259;)</option>
- <option value="ru">Russian (&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;)</option>
- <option value="sr">Serbian (&#1089;&#1088;&#1087;&#1089;&#1082;&#1080; &#1112;&#1077;&#1079;&#1080;&#1082;)</option>
- <option value="sr-SR">Serbian (srpski jezik)</option>
- <option value="sk">Slovak (Slovencina)</option>
- <option value="sl">Slovenian (Slovenski Jezik)</option>
- <option value="es">Spanish (Espa&ntilde;ol)</option>
- <option value="sv">Swedish (Svenska)</option>
- <option value="ta">Tamil (&#2980;&#2990;&#3007;&#2996;&#3021;)</option>
- <option value="th">Thai (&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618;)</option>
- <option value="tj">Tajikistan</option>
- <option value="tr">Turkish (T&uuml;rk&ccedil;e)</option>
- <option value="uk">Ukranian (&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072;)</option>
- <option value="vi">Vietnamese (Ti&#7871;ng Vi&#7879;t)</option>
- <option value="cy-GB">Welsh/UK (Cymraeg)</option>
- </select></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Localize the datepicker calendar language and format (English / Western formatting is the default). The datepicker includes built-in support for languages that read right-to-left, such as Arabic and Hebrew.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/min-max.html b/include/jquery_ui/development-bundle/demos/datepicker/min-max.html
deleted file mode 100644
index cc1fbda42..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/min-max.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Restrict date range</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D" });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Restrict the range of selectable dates with the <code>minDate</code> and <code>maxDate</code> options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/multiple-calendars.html b/include/jquery_ui/development-bundle/demos/datepicker/multiple-calendars.html
deleted file mode 100644
index 9ebd63c34..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/multiple-calendars.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Display multiple months</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- numberOfMonths: 3,
- showButtonPanel: true
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Set the <code>numberOfMonths</code> option to an integer of 2 or more to show multiple months in a single datepicker.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/other-months.html b/include/jquery_ui/development-bundle/demos/datepicker/other-months.html
deleted file mode 100644
index e6b035801..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/other-months.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Dates in other months</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- showOtherMonths: true,
- selectOtherMonths: true
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>The datepicker can show dates that come from other than the main month
- being displayed. These other dates can also be made selectable.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/datepicker/show-week.html b/include/jquery_ui/development-bundle/demos/datepicker/show-week.html
deleted file mode 100644
index eee2dd0ac..000000000
--- a/include/jquery_ui/development-bundle/demos/datepicker/show-week.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Datepicker - Show week of the year</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.datepicker.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
- $( "#datepicker" ).datepicker({
- showWeek: true,
- firstDay: 1
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p>Date: <input type="text" id="datepicker"></p>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>The datepicker can show the week of the year. The default calculation follows
- the ISO 8601 definition: the week starts on Monday, the first week of the year
- contains the first Thursday of the year. This means that some days from one
- year may be placed into weeks 'belonging' to another year.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>