Ãremove some old unused javascript libraries
(cherry picked from commit 971e7eef9c415a2ce82eb0cd22eaabee12ae719c)
This commit is contained in:
parent
478014f02a
commit
61eef68ff3
@ -910,8 +910,6 @@ class Cdav extends Controller {
|
|||||||
|
|
||||||
require_once 'vendor/autoload.php';
|
require_once 'vendor/autoload.php';
|
||||||
|
|
||||||
head_add_css('cdav.css');
|
|
||||||
|
|
||||||
if(!cdav_principal($principalUri)) {
|
if(!cdav_principal($principalUri)) {
|
||||||
$this->activate($pdo, $channel);
|
$this->activate($pdo, $channel);
|
||||||
if(!cdav_principal($principalUri)) {
|
if(!cdav_principal($principalUri)) {
|
||||||
|
2
library/jquery.i18n/.gitignore
vendored
2
library/jquery.i18n/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
build/compiler.jar
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
Copyright (c) 2010 Dave Perrett, http://recursive-design.com/
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
@ -1,152 +0,0 @@
|
|||||||
|
|
||||||
About
|
|
||||||
-----
|
|
||||||
|
|
||||||
_jQuery-i18n_ is a jQuery plugin for doing client-side translations in javascript. It is based heavily on [javascript i18n that almost doesn't suck](http://markos.gaivo.net/blog/?p=100) by Marko Samastur, and is licensed under the [MIT license](http://www.opensource.org/licenses/mit-license.php).
|
|
||||||
|
|
||||||
Installation
|
|
||||||
------------
|
|
||||||
|
|
||||||
You'll need to download the [jQuery library](http://docs.jquery.com/Downloading_jQuery#Current_Release), and include it before _jquery.i18n.js_ in your HTML source. See the _examples_ folder for examples.
|
|
||||||
|
|
||||||
Usage
|
|
||||||
-----
|
|
||||||
|
|
||||||
Before you can do any translation you have to initialise the plugin with a 'dictionary' (basically a property list mapping keys to their translations).
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
var my_dictionary = {
|
|
||||||
'some text': 'a translation',
|
|
||||||
'some more text': 'another translation'
|
|
||||||
}
|
|
||||||
$.i18n.setDictionary(my_dictionary);
|
|
||||||
```
|
|
||||||
|
|
||||||
Once you've initialised it with a dictionary, you can translate strings using the $.i18n._() function, for example:
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
$('div#example').text($.i18n._('some text'));
|
|
||||||
```
|
|
||||||
|
|
||||||
or using $('selector')._t() function
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
$('div#example')._t('some text');
|
|
||||||
```
|
|
||||||
|
|
||||||
Wildcards
|
|
||||||
---------
|
|
||||||
|
|
||||||
It's straightforward to pass dynamic data into your translations. First, add _%s_ in the translation for each variable you want to swap in :
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
var my_dictionary = {
|
|
||||||
"wildcard example" : "We have been passed two values : %s and %s."
|
|
||||||
}
|
|
||||||
$.i18n.setDictionary(my_dictionary);
|
|
||||||
```
|
|
||||||
|
|
||||||
Next, pass an array of values in as the second argument when you perform the translation :
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
$('div#example').text($.i18n._('wildcard example', [100, 200]));
|
|
||||||
```
|
|
||||||
|
|
||||||
or
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
$('div#example')._t('wildcard example', [100, 200]);
|
|
||||||
```
|
|
||||||
|
|
||||||
This will output _We have been passed two values : 100 and 200._
|
|
||||||
|
|
||||||
Because some languages will need to order arguments differently to english, you can also specify the order in which the variables appear :
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
var my_dictionary = {
|
|
||||||
"wildcard example" : "We have been passed two values : %2$s and %1$s."
|
|
||||||
}
|
|
||||||
$.i18n.setDictionary(my_dictionary);
|
|
||||||
|
|
||||||
$('div#example').text($.i18n._('wildcard example', [100, 200]));
|
|
||||||
```
|
|
||||||
|
|
||||||
This will output: _We have been passed two values: 200 and 100._
|
|
||||||
|
|
||||||
Building From Scratch
|
|
||||||
---------------------
|
|
||||||
|
|
||||||
You can build the regular, un-minified version simply by running _ant_:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ ant
|
|
||||||
Buildfile: build.xml
|
|
||||||
|
|
||||||
jquery.i18n:
|
|
||||||
[echo] Building ./jquery.i18n.js
|
|
||||||
[echo] ./jquery.i18n.js built.
|
|
||||||
|
|
||||||
BUILD SUCCESSFUL
|
|
||||||
Total time: 0 seconds
|
|
||||||
```
|
|
||||||
|
|
||||||
Before you can build the minified version yourself, you'll need to download the [Google Closure Compiler](http://closure-compiler.googlecode.com/files/compiler-latest.zip) and put it in a folder called _build_:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ mkdir build
|
|
||||||
$ cd build
|
|
||||||
$ wget http://closure-compiler.googlecode.com/files/compiler-latest.zip
|
|
||||||
$ unzip compiler-latest.zip
|
|
||||||
```
|
|
||||||
|
|
||||||
Once you have the compiler, you can build the minified version by running _ant min_:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ ant min
|
|
||||||
Buildfile: build.xml
|
|
||||||
|
|
||||||
jquery.i18n:
|
|
||||||
[echo] Building ./jquery.i18n.js
|
|
||||||
[echo] ./jquery.i18n.js built.
|
|
||||||
|
|
||||||
min:
|
|
||||||
[echo] Building ./jquery.i18n.min.js
|
|
||||||
[apply] Applied java to 1 file and 0 directories.
|
|
||||||
[delete] Deleting: /Users/dave/Documents/Code/jquery/jquery-i18n/tmpmin
|
|
||||||
[echo] ./jquery.i18n.min.js built.
|
|
||||||
|
|
||||||
BUILD SUCCESSFUL
|
|
||||||
Total time: 1 second
|
|
||||||
```
|
|
||||||
|
|
||||||
Bug Reports
|
|
||||||
-----------
|
|
||||||
|
|
||||||
If you come across any problems, please [create a ticket](https://github.com/recurser/jquery-i18n/issues) and we'll try to get it fixed as soon as possible.
|
|
||||||
|
|
||||||
|
|
||||||
Contributing
|
|
||||||
------------
|
|
||||||
|
|
||||||
Once you've made your commits:
|
|
||||||
|
|
||||||
1. [Fork](http://help.github.com/fork-a-repo/) jquery-i18n
|
|
||||||
2. Create a topic branch - `git checkout -b my_branch`
|
|
||||||
3. Push to your branch - `git push origin my_branch`
|
|
||||||
4. Create a [Pull Request](http://help.github.com/pull-requests/) from your branch
|
|
||||||
5. That's it!
|
|
||||||
|
|
||||||
|
|
||||||
Author
|
|
||||||
------
|
|
||||||
|
|
||||||
Dave Perrett :: mail@recursive-design.com :: [@recurser](http://twitter.com/recurser)
|
|
||||||
|
|
||||||
|
|
||||||
Copyright
|
|
||||||
---------
|
|
||||||
|
|
||||||
Copyright (c) 2010 Dave Perrett. See [License](https://github.com/recurser/jquery-i18n/blob/master/LICENSE) for details.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
0.9.2
|
|
@ -1,55 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project name="jquery.i18n" default="jquery.i18n" basedir=".">
|
|
||||||
|
|
||||||
<tstamp />
|
|
||||||
|
|
||||||
<loadfile property="version" srcfile="VERSION"/>
|
|
||||||
|
|
||||||
<property description="Folder for jquery.i18n and min target" name="dist" value="."/>
|
|
||||||
<property name="JQI" value="${dist}/jquery.i18n.js"/>
|
|
||||||
<property name="JQI_MIN" value="${dist}/jquery.i18n.min.js"/>
|
|
||||||
|
|
||||||
<target name="jquery.i18n" description="Main jquery.i18n build, concatenates source files and replaces @VERSION">
|
|
||||||
<echo message="Building ${JQI}"/>
|
|
||||||
<mkdir dir="${dist}"/>
|
|
||||||
<concat destfile="${JQI}">
|
|
||||||
<fileset file="src/jquery.i18n.js"/>
|
|
||||||
</concat>
|
|
||||||
<replaceregexp match="@VERSION" replace="${version}" flags="g" byline="true" file="${JQI}"/>
|
|
||||||
<replaceregexp match="@DATE" replace="${DSTAMP}${TSTAMP}" file="${JQI}"/>
|
|
||||||
<echo message="${JQI} built."/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="min" depends="jquery.i18n" description="Remove all comments and whitespace, no compression, great in combination with GZip">
|
|
||||||
<echo message="Building ${JQI_MIN}"/>
|
|
||||||
<apply executable="java" parallel="false" verbose="true" dest="${dist}">
|
|
||||||
<fileset dir="${dist}">
|
|
||||||
<include name="jquery.i18n.js"/>
|
|
||||||
</fileset>
|
|
||||||
<arg line="-jar"/>
|
|
||||||
<arg path="build/compiler.jar"/>
|
|
||||||
<arg value="--warning_level"/>
|
|
||||||
<arg value="QUIET"/>
|
|
||||||
<arg value="--js_output_file"/>
|
|
||||||
<targetfile/>
|
|
||||||
<arg value="--js"/>
|
|
||||||
<mapper type="glob" from="jquery.i18n.js" to="tmpmin"/>
|
|
||||||
</apply>
|
|
||||||
<concat destfile="${JQI_MIN}">
|
|
||||||
<filelist files="${JQI}, tmpmin"/>
|
|
||||||
<filterchain>
|
|
||||||
<headfilter lines="11"/>
|
|
||||||
</filterchain>
|
|
||||||
</concat>
|
|
||||||
<concat destfile="${JQI_MIN}" append="yes">
|
|
||||||
<filelist files="tmpmin"/>
|
|
||||||
</concat>
|
|
||||||
<delete file="tmpmin"/>
|
|
||||||
<echo message="${JQI_MIN} built."/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="clean">
|
|
||||||
<delete dir="tmpmin"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
</project>
|
|
@ -1,78 +0,0 @@
|
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
|
|
||||||
<title>jQuery i18n Plugin</title>
|
|
||||||
<script type="text/javascript" src="jquery-1.4.2.js"></script>
|
|
||||||
<script type="text/javascript" src="../jquery.i18n.min.js"></script>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(document).ready(function(){
|
|
||||||
i18n_dict = {
|
|
||||||
"Example 1" : "teiän veen",
|
|
||||||
"Example 2" : "tei'än ve'en",
|
|
||||||
"Example 3" : "teiä vede",
|
|
||||||
"Example 4" : "teirän veren",
|
|
||||||
"Example 5" : "teilän velen",
|
|
||||||
"Example 6" : "teijjän vejen",
|
|
||||||
"Example 7" : "teidän veden",
|
|
||||||
"Example 8" : "teitän veten",
|
|
||||||
"Example 9" : "teiðän veðen",
|
|
||||||
"Example 10" : "teidhän vethen",
|
|
||||||
"Dynamic Content" : "Your browser window is %s x %s",
|
|
||||||
"Ordered Dynamic Content": "%2$s is the height of your browser window, and %1$s is the width."
|
|
||||||
};
|
|
||||||
|
|
||||||
$.i18n.setDictionary(i18n_dict);
|
|
||||||
|
|
||||||
$('input#translate_button').click( function(event) {
|
|
||||||
$('div#example1').text($.i18n._('Example 1'));
|
|
||||||
$('div#example2').text($.i18n._('Example 2'));
|
|
||||||
$('div#example3').text($.i18n._('Example 3'));
|
|
||||||
$('div#example4').text($.i18n._('Example 4'));
|
|
||||||
$('div#example5').text($.i18n._('Example 5'));
|
|
||||||
$('div#example6').text($.i18n._('Example 6'));
|
|
||||||
$('div#example7').text($.i18n._('Example 7'));
|
|
||||||
$('div#example8').text($.i18n._('Example 8'));
|
|
||||||
$('div#example9').text($.i18n._('Example 9'));
|
|
||||||
$('div#example10').text($.i18n._('Example 10'));
|
|
||||||
$('div#dynamic').text($.i18n._('Dynamic Content', [$(document).width(), $(document).height()]));
|
|
||||||
$('div#orderedDynamic').text($.i18n._('Ordered Dynamic Content', [$(document).width(), $(document).height()]));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<style type="text/css">
|
|
||||||
body {
|
|
||||||
font-size: 30px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
input {
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
font-size: 17px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<p>
|
|
||||||
Click the button to translate the following text into some random Finnish from the
|
|
||||||
<a href='http://en.wikipedia.org/wiki/Finnish_phonology'>Wikipedia Finnish Phonology Article</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div id='example1'>Example 1</div>
|
|
||||||
<div id='example2'>Example 2</div>
|
|
||||||
<div id='example3'>Example 3</div>
|
|
||||||
<div id='example4'>Example 4</div>
|
|
||||||
<div id='example5'>Example 5</div>
|
|
||||||
<div id='example6'>Example 6</div>
|
|
||||||
<div id='example7'>Example 7</div>
|
|
||||||
<div id='example8'>Example 8</div>
|
|
||||||
<div id='example9'>Example 9</div>
|
|
||||||
<div id='example10'>Example 10</div>
|
|
||||||
<div id='dynamic'>Dynamic Content</div>
|
|
||||||
<div id='orderedDynamic'>Ordered Dynamic Content</div>
|
|
||||||
|
|
||||||
<input type='button' id='translate_button' value='Internationalize!' />
|
|
||||||
</body>
|
|
||||||
</html>
|
|
6240
library/jquery.i18n/examples/jquery-1.4.2.js
vendored
6240
library/jquery.i18n/examples/jquery-1.4.2.js
vendored
File diff suppressed because it is too large
Load Diff
@ -1,154 +0,0 @@
|
|||||||
/*
|
|
||||||
* jQuery i18n plugin
|
|
||||||
* @requires jQuery v1.1 or later
|
|
||||||
*
|
|
||||||
* See http://recursive-design.com/projects/jquery-i18n/
|
|
||||||
*
|
|
||||||
* Licensed under the MIT license:
|
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
|
||||||
*
|
|
||||||
* Version: 0.9.2 (201204070102)
|
|
||||||
*/
|
|
||||||
(function($) {
|
|
||||||
/**
|
|
||||||
* i18n provides a mechanism for translating strings using a jscript dictionary.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* i18n property list
|
|
||||||
*/
|
|
||||||
$.i18n = {
|
|
||||||
|
|
||||||
dict: null,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* setDictionary()
|
|
||||||
* Initialise the dictionary and translate nodes
|
|
||||||
*
|
|
||||||
* @param property_list i18n_dict : The dictionary to use for translation
|
|
||||||
*/
|
|
||||||
setDictionary: function(i18n_dict) {
|
|
||||||
this.dict = i18n_dict;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* _()
|
|
||||||
* The actual translation function. Looks the given string up in the
|
|
||||||
* dictionary and returns the translation if one exists. If a translation
|
|
||||||
* is not found, returns the original word
|
|
||||||
*
|
|
||||||
* @param string str : The string to translate
|
|
||||||
* @param property_list params : params for using printf() on the string
|
|
||||||
* @return string : Translated word
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
_: function (str, params) {
|
|
||||||
var transl = str;
|
|
||||||
if (this.dict && this.dict[str]) {
|
|
||||||
transl = this.dict[str];
|
|
||||||
}
|
|
||||||
return this.printf(transl, params);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* toEntity()
|
|
||||||
* Change non-ASCII characters to entity representation
|
|
||||||
*
|
|
||||||
* @param string str : The string to transform
|
|
||||||
* @return string result : Original string with non-ASCII content converted to entities
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
toEntity: function (str) {
|
|
||||||
var result = '';
|
|
||||||
for (var i=0;i<str.length; i++) {
|
|
||||||
if (str.charCodeAt(i) > 128)
|
|
||||||
result += "&#"+str.charCodeAt(i)+";";
|
|
||||||
else
|
|
||||||
result += str.charAt(i);
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* stripStr()
|
|
||||||
*
|
|
||||||
* @param string str : The string to strip
|
|
||||||
* @return string result : Stripped string
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
stripStr: function(str) {
|
|
||||||
return str.replace(/^\s*/, "").replace(/\s*$/, "");
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* stripStrML()
|
|
||||||
*
|
|
||||||
* @param string str : The multi-line string to strip
|
|
||||||
* @return string result : Stripped string
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
stripStrML: function(str) {
|
|
||||||
// Split because m flag doesn't exist before JS1.5 and we need to
|
|
||||||
// strip newlines anyway
|
|
||||||
var parts = str.split('\n');
|
|
||||||
for (var i=0; i<parts.length; i++)
|
|
||||||
parts[i] = stripStr(parts[i]);
|
|
||||||
|
|
||||||
// Don't join with empty strings, because it "concats" words
|
|
||||||
// And strip again
|
|
||||||
return stripStr(parts.join(" "));
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* printf()
|
|
||||||
* C-printf like function, which substitutes %s with parameters
|
|
||||||
* given in list. %%s is used to escape %s.
|
|
||||||
*
|
|
||||||
* Doesn't work in IE5.0 (splice)
|
|
||||||
*
|
|
||||||
* @param string S : string to perform printf on.
|
|
||||||
* @param string L : Array of arguments for printf()
|
|
||||||
*/
|
|
||||||
printf: function(S, L) {
|
|
||||||
if (!L) return S;
|
|
||||||
|
|
||||||
var nS = "";
|
|
||||||
var search = /%(\d+)\$s/g;
|
|
||||||
// replace %n1$ where n is a number
|
|
||||||
while (result = search.exec(S)) {
|
|
||||||
var index = parseInt(result[1], 10) - 1;
|
|
||||||
S = S.replace('%' + result[1] + '\$s', (L[index]));
|
|
||||||
L.splice(index, 1);
|
|
||||||
}
|
|
||||||
var tS = S.split("%s");
|
|
||||||
|
|
||||||
if (tS.length > 1) {
|
|
||||||
for(var i=0; i<L.length; i++) {
|
|
||||||
if (tS[i].lastIndexOf('%') == tS[i].length-1 && i != L.length-1)
|
|
||||||
tS[i] += "s"+tS.splice(i+1,1)[0];
|
|
||||||
nS += tS[i] + L[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nS + tS[tS.length-1];
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* _t
|
|
||||||
* Allows you to translate a jQuery selector
|
|
||||||
*
|
|
||||||
* eg $('h1')._t('some text')
|
|
||||||
*
|
|
||||||
* @param string str : The string to translate
|
|
||||||
* @param property_list params : params for using printf() on the string
|
|
||||||
* @return element : chained and translated element(s)
|
|
||||||
*/
|
|
||||||
$.fn._t = function(str, params) {
|
|
||||||
return $(this).text($.i18n._(str, params));
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
})(jQuery);
|
|
13
library/jquery.i18n/jquery.i18n.min.js
vendored
13
library/jquery.i18n/jquery.i18n.min.js
vendored
@ -1,13 +0,0 @@
|
|||||||
/*
|
|
||||||
* jQuery i18n plugin
|
|
||||||
* @requires jQuery v1.1 or later
|
|
||||||
*
|
|
||||||
* See http://recursive-design.com/projects/jquery-i18n/
|
|
||||||
*
|
|
||||||
* Licensed under the MIT license:
|
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
|
||||||
*
|
|
||||||
* Version: 0.9.2 (201204070102)
|
|
||||||
*/
|
|
||||||
(function(f){f.i18n={dict:null,setDictionary:function(a){this.dict=a},_:function(a,b){var d=a;if(this.dict&&this.dict[a])d=this.dict[a];return this.printf(d,b)},toEntity:function(a){for(var b="",d=0;d<a.length;d++)b+=a.charCodeAt(d)>128?"&#"+a.charCodeAt(d)+";":a.charAt(d);return b},stripStr:function(a){return a.replace(/^\s*/,"").replace(/\s*$/,"")},stripStrML:function(a){a=a.split("\n");for(var b=0;b<a.length;b++)a[b]=stripStr(a[b]);return stripStr(a.join(" "))},printf:function(a,b){if(!b)return a;
|
|
||||||
for(var d="",e=/%(\d+)\$s/g;result=e.exec(a);){var c=parseInt(result[1],10)-1;a=a.replace("%"+result[1]+"$s",b[c]);b.splice(c,1)}e=a.split("%s");if(e.length>1)for(c=0;c<b.length;c++){if(e[c].lastIndexOf("%")==e[c].length-1&&c!=b.length-1)e[c]+="s"+e.splice(c+1,1)[0];d+=e[c]+b[c]}return d+e[e.length-1]}};f.fn._t=function(a,b){return f(this).text(f.i18n._(a,b))}})(jQuery);
|
|
@ -1,154 +0,0 @@
|
|||||||
/*
|
|
||||||
* jQuery i18n plugin
|
|
||||||
* @requires jQuery v1.1 or later
|
|
||||||
*
|
|
||||||
* See http://recursive-design.com/projects/jquery-i18n/
|
|
||||||
*
|
|
||||||
* Licensed under the MIT license:
|
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
|
||||||
*
|
|
||||||
* Version: @VERSION (@DATE)
|
|
||||||
*/
|
|
||||||
(function($) {
|
|
||||||
/**
|
|
||||||
* i18n provides a mechanism for translating strings using a jscript dictionary.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* i18n property list
|
|
||||||
*/
|
|
||||||
$.i18n = {
|
|
||||||
|
|
||||||
dict: null,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* setDictionary()
|
|
||||||
* Initialise the dictionary and translate nodes
|
|
||||||
*
|
|
||||||
* @param property_list i18n_dict : The dictionary to use for translation
|
|
||||||
*/
|
|
||||||
setDictionary: function(i18n_dict) {
|
|
||||||
this.dict = i18n_dict;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* _()
|
|
||||||
* The actual translation function. Looks the given string up in the
|
|
||||||
* dictionary and returns the translation if one exists. If a translation
|
|
||||||
* is not found, returns the original word
|
|
||||||
*
|
|
||||||
* @param string str : The string to translate
|
|
||||||
* @param property_list params : params for using printf() on the string
|
|
||||||
* @return string : Translated word
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
_: function (str, params) {
|
|
||||||
var transl = str;
|
|
||||||
if (this.dict && this.dict[str]) {
|
|
||||||
transl = this.dict[str];
|
|
||||||
}
|
|
||||||
return this.printf(transl, params);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* toEntity()
|
|
||||||
* Change non-ASCII characters to entity representation
|
|
||||||
*
|
|
||||||
* @param string str : The string to transform
|
|
||||||
* @return string result : Original string with non-ASCII content converted to entities
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
toEntity: function (str) {
|
|
||||||
var result = '';
|
|
||||||
for (var i=0;i<str.length; i++) {
|
|
||||||
if (str.charCodeAt(i) > 128)
|
|
||||||
result += "&#"+str.charCodeAt(i)+";";
|
|
||||||
else
|
|
||||||
result += str.charAt(i);
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* stripStr()
|
|
||||||
*
|
|
||||||
* @param string str : The string to strip
|
|
||||||
* @return string result : Stripped string
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
stripStr: function(str) {
|
|
||||||
return str.replace(/^\s*/, "").replace(/\s*$/, "");
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* stripStrML()
|
|
||||||
*
|
|
||||||
* @param string str : The multi-line string to strip
|
|
||||||
* @return string result : Stripped string
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
stripStrML: function(str) {
|
|
||||||
// Split because m flag doesn't exist before JS1.5 and we need to
|
|
||||||
// strip newlines anyway
|
|
||||||
var parts = str.split('\n');
|
|
||||||
for (var i=0; i<parts.length; i++)
|
|
||||||
parts[i] = stripStr(parts[i]);
|
|
||||||
|
|
||||||
// Don't join with empty strings, because it "concats" words
|
|
||||||
// And strip again
|
|
||||||
return stripStr(parts.join(" "));
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* printf()
|
|
||||||
* C-printf like function, which substitutes %s with parameters
|
|
||||||
* given in list. %%s is used to escape %s.
|
|
||||||
*
|
|
||||||
* Doesn't work in IE5.0 (splice)
|
|
||||||
*
|
|
||||||
* @param string S : string to perform printf on.
|
|
||||||
* @param string L : Array of arguments for printf()
|
|
||||||
*/
|
|
||||||
printf: function(S, L) {
|
|
||||||
if (!L) return S;
|
|
||||||
|
|
||||||
var nS = "";
|
|
||||||
var search = /%(\d+)\$s/g;
|
|
||||||
// replace %n1$ where n is a number
|
|
||||||
while (result = search.exec(S)) {
|
|
||||||
var index = parseInt(result[1], 10) - 1;
|
|
||||||
S = S.replace('%' + result[1] + '\$s', (L[index]));
|
|
||||||
L.splice(index, 1);
|
|
||||||
}
|
|
||||||
var tS = S.split("%s");
|
|
||||||
|
|
||||||
if (tS.length > 1) {
|
|
||||||
for(var i=0; i<L.length; i++) {
|
|
||||||
if (tS[i].lastIndexOf('%') == tS[i].length-1 && i != L.length-1)
|
|
||||||
tS[i] += "s"+tS.splice(i+1,1)[0];
|
|
||||||
nS += tS[i] + L[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nS + tS[tS.length-1];
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* _t
|
|
||||||
* Allows you to translate a jQuery selector
|
|
||||||
*
|
|
||||||
* eg $('h1')._t('some text')
|
|
||||||
*
|
|
||||||
* @param string str : The string to translate
|
|
||||||
* @param property_list params : params for using printf() on the string
|
|
||||||
* @return element : chained and translated element(s)
|
|
||||||
*/
|
|
||||||
$.fn._t = function(str, params) {
|
|
||||||
return $(this).text($.i18n._(str, params));
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
})(jQuery);
|
|
@ -1,4 +0,0 @@
|
|||||||
This is jquery.autocomplete from
|
|
||||||
|
|
||||||
http://www.devbridge.com/projects/autocomplete/jquery/
|
|
||||||
|
|
@ -1,400 +0,0 @@
|
|||||||
/**
|
|
||||||
* Ajax Autocomplete for jQuery, version 1.1.3
|
|
||||||
* (c) 2010 Tomas Kirda
|
|
||||||
*
|
|
||||||
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
|
|
||||||
* For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/
|
|
||||||
*
|
|
||||||
* Last Review: 04/19/2010
|
|
||||||
* Heavily modified for contact completion in Friendica (add photos, hover tips. etc.) 11-May-2012 mike@macgirvin.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*jslint onevar: true, evil: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */
|
|
||||||
/*global window: true, document: true, clearInterval: true, setInterval: true, jQuery: true */
|
|
||||||
|
|
||||||
(function($) {
|
|
||||||
|
|
||||||
var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g');
|
|
||||||
|
|
||||||
function fnFormatResult(value, data, currentValue) {
|
|
||||||
var pattern = '(' + currentValue.replace(reEscape, '\\$1') + ')';
|
|
||||||
return value.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>');
|
|
||||||
}
|
|
||||||
|
|
||||||
function Autocomplete(el, options) {
|
|
||||||
this.el = $(el);
|
|
||||||
this.el.attr('autocomplete', 'off');
|
|
||||||
this.suggestions = [];
|
|
||||||
this.data = [];
|
|
||||||
this.badQueries = [];
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
this.currentValue = this.el.val();
|
|
||||||
this.intervalId = 0;
|
|
||||||
this.cachedResponse = [];
|
|
||||||
this.onChangeInterval = null;
|
|
||||||
this.ignoreValueChange = false;
|
|
||||||
this.serviceUrl = options.serviceUrl;
|
|
||||||
this.isLocal = false;
|
|
||||||
this.id = options.id;
|
|
||||||
this.options = {
|
|
||||||
autoSubmit: false,
|
|
||||||
minChars: 1,
|
|
||||||
maxHeight: 300,
|
|
||||||
deferRequestBy: 0,
|
|
||||||
width: 0,
|
|
||||||
highlight: true,
|
|
||||||
params: {},
|
|
||||||
fnFormatResult: fnFormatResult,
|
|
||||||
delimiter: null,
|
|
||||||
zIndex: 999
|
|
||||||
};
|
|
||||||
this.initialize();
|
|
||||||
this.setOptions(options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.autocomplete = function(options) {
|
|
||||||
return new Autocomplete(this.get(0)||$('<input />'), options);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
Autocomplete.prototype = {
|
|
||||||
|
|
||||||
killerFn: null,
|
|
||||||
|
|
||||||
initialize: function() {
|
|
||||||
|
|
||||||
var me, uid, autocompleteElId;
|
|
||||||
me = this;
|
|
||||||
uid = Math.floor(Math.random()*0x100000).toString(16);
|
|
||||||
autocompleteElId = 'Autocomplete_' + uid;
|
|
||||||
|
|
||||||
this.killerFn = function(e) {
|
|
||||||
if ($(e.target).parents('.autocomplete').size() === 0) {
|
|
||||||
me.killSuggestions();
|
|
||||||
me.disableKillerFn();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!this.options.width) { this.options.width = this.el.width(); }
|
|
||||||
this.mainContainerId = 'AutocompleteContainter_' + uid;
|
|
||||||
|
|
||||||
$('<div id="' + this.mainContainerId + '" style="position:absolute;z-index:999;"><div class="autocomplete-w1" id="'+this.id+'"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:300px;"></div></div></div>').appendTo('body');
|
|
||||||
|
|
||||||
this.container = $('#' + autocompleteElId);
|
|
||||||
this.fixPosition();
|
|
||||||
if (window.opera) {
|
|
||||||
this.el.keypress(function(e) { me.onKeyPress(e); });
|
|
||||||
} else {
|
|
||||||
this.el.keydown(function(e) { me.onKeyPress(e); });
|
|
||||||
}
|
|
||||||
this.el.keyup(function(e) { me.onKeyUp(e); });
|
|
||||||
this.el.blur(function() { me.enableKillerFn(); });
|
|
||||||
this.el.focus(function() { me.fixPosition(); });
|
|
||||||
},
|
|
||||||
|
|
||||||
setOptions: function(options){
|
|
||||||
var o = this.options;
|
|
||||||
$.extend(o, options);
|
|
||||||
if(o.lookup){
|
|
||||||
this.isLocal = true;
|
|
||||||
if($.isArray(o.lookup)){ o.lookup = { suggestions:o.lookup, data:[] }; }
|
|
||||||
}
|
|
||||||
$('#'+this.mainContainerId).css({ zIndex:o.zIndex });
|
|
||||||
this.container.css({ maxHeight: o.maxHeight + 'px', width:o.width });
|
|
||||||
},
|
|
||||||
|
|
||||||
clearCache: function(){
|
|
||||||
this.cachedResponse = [];
|
|
||||||
this.badQueries = [];
|
|
||||||
},
|
|
||||||
|
|
||||||
disable: function(){
|
|
||||||
this.disabled = true;
|
|
||||||
},
|
|
||||||
|
|
||||||
enable: function(){
|
|
||||||
this.disabled = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
fixPosition: function() {
|
|
||||||
var offset = this.el.offset();
|
|
||||||
$('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' });
|
|
||||||
},
|
|
||||||
|
|
||||||
enableKillerFn: function() {
|
|
||||||
var me = this;
|
|
||||||
$(document).bind('click', me.killerFn);
|
|
||||||
},
|
|
||||||
|
|
||||||
disableKillerFn: function() {
|
|
||||||
var me = this;
|
|
||||||
$(document).unbind('click', me.killerFn);
|
|
||||||
},
|
|
||||||
|
|
||||||
killSuggestions: function() {
|
|
||||||
var me = this;
|
|
||||||
this.stopKillSuggestions();
|
|
||||||
this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300);
|
|
||||||
},
|
|
||||||
|
|
||||||
stopKillSuggestions: function() {
|
|
||||||
window.clearInterval(this.intervalId);
|
|
||||||
},
|
|
||||||
|
|
||||||
onKeyPress: function(e) {
|
|
||||||
if (this.disabled || !this.enabled) { return; }
|
|
||||||
// return will exit the function
|
|
||||||
// and event will not be prevented
|
|
||||||
switch (e.keyCode) {
|
|
||||||
case 27: //KEY_ESC:
|
|
||||||
this.el.val(this.currentValue);
|
|
||||||
this.hide();
|
|
||||||
break;
|
|
||||||
case 9: //KEY_TAB:
|
|
||||||
case 13: //KEY_RETURN:
|
|
||||||
if (this.selectedIndex === -1) {
|
|
||||||
this.hide();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.select(this.selectedIndex);
|
|
||||||
if(e.keyCode === 9){ return; }
|
|
||||||
break;
|
|
||||||
case 38: //KEY_UP:
|
|
||||||
this.moveUp();
|
|
||||||
break;
|
|
||||||
case 40: //KEY_DOWN:
|
|
||||||
this.moveDown();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// if(e.keyCode != 13) {
|
|
||||||
e.stopImmediatePropagation();
|
|
||||||
e.preventDefault();
|
|
||||||
//}
|
|
||||||
},
|
|
||||||
|
|
||||||
onKeyUp: function(e) {
|
|
||||||
if(this.disabled){ return; }
|
|
||||||
switch (e.keyCode) {
|
|
||||||
case 38: //KEY_UP:
|
|
||||||
case 40: //KEY_DOWN:
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
clearInterval(this.onChangeInterval);
|
|
||||||
if (this.currentValue !== this.el.val()) {
|
|
||||||
if (this.options.deferRequestBy > 0) {
|
|
||||||
// Defer lookup in case when value changes very quickly:
|
|
||||||
var me = this;
|
|
||||||
this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy);
|
|
||||||
} else {
|
|
||||||
this.onValueChange();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
onValueChange: function() {
|
|
||||||
clearInterval(this.onChangeInterval);
|
|
||||||
this.currentValue = this.el.val();
|
|
||||||
var q = this.getQuery(this.currentValue);
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
if (this.ignoreValueChange) {
|
|
||||||
this.ignoreValueChange = false;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (q === '' || q.length < this.options.minChars) {
|
|
||||||
this.hide();
|
|
||||||
} else {
|
|
||||||
this.getSuggestions(q);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getQuery: function(val) {
|
|
||||||
var d, arr;
|
|
||||||
d = this.options.delimiter;
|
|
||||||
if (!d) { return $.trim(val); }
|
|
||||||
arr = val.split(d);
|
|
||||||
return $.trim(arr[arr.length - 1]);
|
|
||||||
},
|
|
||||||
|
|
||||||
getSuggestionsLocal: function(q) {
|
|
||||||
var ret, arr, len, val, i;
|
|
||||||
arr = this.options.lookup;
|
|
||||||
len = arr.suggestions.length;
|
|
||||||
ret = { suggestions:[], data:[] };
|
|
||||||
q = q.toLowerCase();
|
|
||||||
for(i=0; i< len; i++){
|
|
||||||
val = arr.suggestions[i];
|
|
||||||
if(val.toLowerCase().indexOf(q) === 0){
|
|
||||||
ret.suggestions.push(val);
|
|
||||||
ret.data.push(arr.data[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
},
|
|
||||||
|
|
||||||
getSuggestions: function(q) {
|
|
||||||
var cr, me;
|
|
||||||
cr = this.isLocal ? this.getSuggestionsLocal(q) : this.cachedResponse[q];
|
|
||||||
if (cr && $.isArray(cr.suggestions)) {
|
|
||||||
this.suggestions = cr.suggestions;
|
|
||||||
this.data = cr.data;
|
|
||||||
this.suggest();
|
|
||||||
} else if (!this.isBadQuery(q)) {
|
|
||||||
me = this;
|
|
||||||
me.options.params.query = q;
|
|
||||||
$('#nav-search-spinner').show();
|
|
||||||
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
isBadQuery: function(q) {
|
|
||||||
var i = this.badQueries.length;
|
|
||||||
while (i--) {
|
|
||||||
if (q.indexOf(this.badQueries[i]) === 0) { return true; }
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
|
|
||||||
hide: function() {
|
|
||||||
this.enabled = false;
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
this.container.hide();
|
|
||||||
},
|
|
||||||
|
|
||||||
suggest: function() {
|
|
||||||
if (this.suggestions.length === 0) {
|
|
||||||
this.hide();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var me, len, div, f, v, i, s, mOver, mClick, l, img;
|
|
||||||
me = this;
|
|
||||||
len = this.suggestions.length;
|
|
||||||
f = this.options.fnFormatResult;
|
|
||||||
v = this.getQuery(this.currentValue);
|
|
||||||
mOver = function(xi) { return function() { me.activate(xi); }; };
|
|
||||||
mClick = function(xi) { return function() { me.select(xi); }; };
|
|
||||||
this.container.hide().empty();
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
s = this.suggestions[i];
|
|
||||||
l = this.links[i];
|
|
||||||
img = '<img height="24" width="24" src="' + this.photos[i] + '" alt="' + s + '" /> ';
|
|
||||||
div = $((me.selectedIndex === i ? '<div class="selected"' : '<div') + ' title="' + l + '">' + img + f(s, this.data[i], v) + '</div>');
|
|
||||||
div.mouseover(mOver(i));
|
|
||||||
div.click(mClick(i));
|
|
||||||
this.container.append(div);
|
|
||||||
}
|
|
||||||
this.enabled = true;
|
|
||||||
this.container.show();
|
|
||||||
},
|
|
||||||
|
|
||||||
processResponse: function(text) {
|
|
||||||
var response;
|
|
||||||
try {
|
|
||||||
response = eval('(' + text + ')');
|
|
||||||
} catch (err) { return; }
|
|
||||||
if (!$.isArray(response.data)) { response.data = []; }
|
|
||||||
if(!this.options.noCache){
|
|
||||||
this.cachedResponse[response.query] = response;
|
|
||||||
if (response.suggestions.length === 0) { this.badQueries.push(response.query); }
|
|
||||||
}
|
|
||||||
if (response.query === this.getQuery(this.currentValue)) {
|
|
||||||
this.photos = response.photos;
|
|
||||||
this.links = response.links;
|
|
||||||
this.suggestions = response.suggestions;
|
|
||||||
this.data = response.data;
|
|
||||||
this.suggest();
|
|
||||||
}
|
|
||||||
$('#nav-search-spinner').hide();
|
|
||||||
},
|
|
||||||
|
|
||||||
activate: function(index) {
|
|
||||||
var divs, activeItem;
|
|
||||||
divs = this.container.children();
|
|
||||||
// Clear previous selection:
|
|
||||||
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
|
|
||||||
$(divs.get(this.selectedIndex)).removeClass();
|
|
||||||
}
|
|
||||||
this.selectedIndex = index;
|
|
||||||
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
|
|
||||||
activeItem = divs.get(this.selectedIndex);
|
|
||||||
$(activeItem).addClass('selected');
|
|
||||||
}
|
|
||||||
return activeItem;
|
|
||||||
},
|
|
||||||
|
|
||||||
deactivate: function(div, index) {
|
|
||||||
div.className = '';
|
|
||||||
if (this.selectedIndex === index) { this.selectedIndex = -1; }
|
|
||||||
},
|
|
||||||
|
|
||||||
select: function(i) {
|
|
||||||
var selectedValue, f;
|
|
||||||
selectedValue = this.suggestions[i];
|
|
||||||
if (selectedValue) {
|
|
||||||
this.el.val(selectedValue);
|
|
||||||
if (this.options.autoSubmit) {
|
|
||||||
f = this.el.parents('form');
|
|
||||||
if (f.length > 0) { f.get(0).submit(); }
|
|
||||||
}
|
|
||||||
this.ignoreValueChange = true;
|
|
||||||
this.hide();
|
|
||||||
this.onSelect(i);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
moveUp: function() {
|
|
||||||
if (this.selectedIndex === -1) { return; }
|
|
||||||
if (this.selectedIndex === 0) {
|
|
||||||
this.container.children().get(0).className = '';
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
this.el.val(this.currentValue);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.adjustScroll(this.selectedIndex - 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
moveDown: function() {
|
|
||||||
if (this.selectedIndex === (this.suggestions.length - 1)) { return; }
|
|
||||||
this.adjustScroll(this.selectedIndex + 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
adjustScroll: function(i) {
|
|
||||||
var activeItem, offsetTop, upperBound, lowerBound;
|
|
||||||
activeItem = this.activate(i);
|
|
||||||
offsetTop = activeItem.offsetTop;
|
|
||||||
upperBound = this.container.scrollTop();
|
|
||||||
lowerBound = upperBound + this.options.maxHeight - 25;
|
|
||||||
if (offsetTop < upperBound) {
|
|
||||||
this.container.scrollTop(offsetTop);
|
|
||||||
} else if (offsetTop > lowerBound) {
|
|
||||||
this.container.scrollTop(offsetTop - this.options.maxHeight + 25);
|
|
||||||
}
|
|
||||||
this.el.val(this.getValue(this.suggestions[i]));
|
|
||||||
},
|
|
||||||
|
|
||||||
onSelect: function(i) {
|
|
||||||
var me, fn, s, d;
|
|
||||||
me = this;
|
|
||||||
fn = me.options.onSelect;
|
|
||||||
s = me.suggestions[i];
|
|
||||||
d = me.data[i];
|
|
||||||
me.el.val(me.getValue(s));
|
|
||||||
if ($.isFunction(fn)) { fn(s, d, me.el); }
|
|
||||||
},
|
|
||||||
|
|
||||||
getValue: function(value){
|
|
||||||
var del, currVal, arr, me;
|
|
||||||
me = this;
|
|
||||||
del = me.options.delimiter;
|
|
||||||
if (!del) { return value; }
|
|
||||||
currVal = me.currentValue;
|
|
||||||
arr = currVal.split(del);
|
|
||||||
if (arr.length === 1) { return value; }
|
|
||||||
return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value;
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
}(jQuery));
|
|
19
library/jquery_ac/jquery-1.3.2.min.js
vendored
19
library/jquery_ac/jquery-1.3.2.min.js
vendored
File diff suppressed because one or more lines are too long
11
library/jquery_ac/jquery.autocomplete-min.js
vendored
11
library/jquery_ac/jquery.autocomplete-min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,390 +0,0 @@
|
|||||||
/**
|
|
||||||
* Ajax Autocomplete for jQuery, version 1.1.3
|
|
||||||
* (c) 2010 Tomas Kirda
|
|
||||||
*
|
|
||||||
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
|
|
||||||
* For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/
|
|
||||||
*
|
|
||||||
* Last Review: 04/19/2010
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*jslint onevar: true, evil: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */
|
|
||||||
/*global window: true, document: true, clearInterval: true, setInterval: true, jQuery: true */
|
|
||||||
|
|
||||||
(function($) {
|
|
||||||
|
|
||||||
var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g');
|
|
||||||
|
|
||||||
function fnFormatResult(value, data, currentValue) {
|
|
||||||
var pattern = '(' + currentValue.replace(reEscape, '\\$1') + ')';
|
|
||||||
return value.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>');
|
|
||||||
}
|
|
||||||
|
|
||||||
function Autocomplete(el, options) {
|
|
||||||
this.el = $(el);
|
|
||||||
this.el.attr('autocomplete', 'off');
|
|
||||||
this.suggestions = [];
|
|
||||||
this.data = [];
|
|
||||||
this.badQueries = [];
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
this.currentValue = this.el.val();
|
|
||||||
this.intervalId = 0;
|
|
||||||
this.cachedResponse = [];
|
|
||||||
this.onChangeInterval = null;
|
|
||||||
this.ignoreValueChange = false;
|
|
||||||
this.serviceUrl = options.serviceUrl;
|
|
||||||
this.isLocal = false;
|
|
||||||
this.options = {
|
|
||||||
autoSubmit: false,
|
|
||||||
minChars: 1,
|
|
||||||
maxHeight: 300,
|
|
||||||
deferRequestBy: 0,
|
|
||||||
width: 0,
|
|
||||||
highlight: true,
|
|
||||||
params: {},
|
|
||||||
fnFormatResult: fnFormatResult,
|
|
||||||
delimiter: null,
|
|
||||||
zIndex: 9999
|
|
||||||
};
|
|
||||||
this.initialize();
|
|
||||||
this.setOptions(options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.autocomplete = function(options) {
|
|
||||||
return new Autocomplete(this.get(0)||$('<input />'), options);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
Autocomplete.prototype = {
|
|
||||||
|
|
||||||
killerFn: null,
|
|
||||||
|
|
||||||
initialize: function() {
|
|
||||||
|
|
||||||
var me, uid, autocompleteElId;
|
|
||||||
me = this;
|
|
||||||
uid = Math.floor(Math.random()*0x100000).toString(16);
|
|
||||||
autocompleteElId = 'Autocomplete_' + uid;
|
|
||||||
|
|
||||||
this.killerFn = function(e) {
|
|
||||||
if ($(e.target).parents('.autocomplete').size() === 0) {
|
|
||||||
me.killSuggestions();
|
|
||||||
me.disableKillerFn();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!this.options.width) { this.options.width = this.el.width(); }
|
|
||||||
this.mainContainerId = 'AutocompleteContainter_' + uid;
|
|
||||||
|
|
||||||
$('<div id="' + this.mainContainerId + '" style="position:absolute;z-index:9999;"><div class="autocomplete-w1"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:300px;"></div></div></div>').appendTo('body');
|
|
||||||
|
|
||||||
this.container = $('#' + autocompleteElId);
|
|
||||||
this.fixPosition();
|
|
||||||
if (window.opera) {
|
|
||||||
this.el.keypress(function(e) { me.onKeyPress(e); });
|
|
||||||
} else {
|
|
||||||
this.el.keydown(function(e) { me.onKeyPress(e); });
|
|
||||||
}
|
|
||||||
this.el.keyup(function(e) { me.onKeyUp(e); });
|
|
||||||
this.el.blur(function() { me.enableKillerFn(); });
|
|
||||||
this.el.focus(function() { me.fixPosition(); });
|
|
||||||
},
|
|
||||||
|
|
||||||
setOptions: function(options){
|
|
||||||
var o = this.options;
|
|
||||||
$.extend(o, options);
|
|
||||||
if(o.lookup){
|
|
||||||
this.isLocal = true;
|
|
||||||
if($.isArray(o.lookup)){ o.lookup = { suggestions:o.lookup, data:[] }; }
|
|
||||||
}
|
|
||||||
$('#'+this.mainContainerId).css({ zIndex:o.zIndex });
|
|
||||||
this.container.css({ maxHeight: o.maxHeight + 'px', width:o.width });
|
|
||||||
},
|
|
||||||
|
|
||||||
clearCache: function(){
|
|
||||||
this.cachedResponse = [];
|
|
||||||
this.badQueries = [];
|
|
||||||
},
|
|
||||||
|
|
||||||
disable: function(){
|
|
||||||
this.disabled = true;
|
|
||||||
},
|
|
||||||
|
|
||||||
enable: function(){
|
|
||||||
this.disabled = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
fixPosition: function() {
|
|
||||||
var offset = this.el.offset();
|
|
||||||
$('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' });
|
|
||||||
},
|
|
||||||
|
|
||||||
enableKillerFn: function() {
|
|
||||||
var me = this;
|
|
||||||
$(document).bind('click', me.killerFn);
|
|
||||||
},
|
|
||||||
|
|
||||||
disableKillerFn: function() {
|
|
||||||
var me = this;
|
|
||||||
$(document).unbind('click', me.killerFn);
|
|
||||||
},
|
|
||||||
|
|
||||||
killSuggestions: function() {
|
|
||||||
var me = this;
|
|
||||||
this.stopKillSuggestions();
|
|
||||||
this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300);
|
|
||||||
},
|
|
||||||
|
|
||||||
stopKillSuggestions: function() {
|
|
||||||
window.clearInterval(this.intervalId);
|
|
||||||
},
|
|
||||||
|
|
||||||
onKeyPress: function(e) {
|
|
||||||
if (this.disabled || !this.enabled) { return; }
|
|
||||||
// return will exit the function
|
|
||||||
// and event will not be prevented
|
|
||||||
switch (e.keyCode) {
|
|
||||||
case 27: //KEY_ESC:
|
|
||||||
this.el.val(this.currentValue);
|
|
||||||
this.hide();
|
|
||||||
break;
|
|
||||||
case 9: //KEY_TAB:
|
|
||||||
case 13: //KEY_RETURN:
|
|
||||||
if (this.selectedIndex === -1) {
|
|
||||||
this.hide();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.select(this.selectedIndex);
|
|
||||||
if(e.keyCode === 9){ return; }
|
|
||||||
break;
|
|
||||||
case 38: //KEY_UP:
|
|
||||||
this.moveUp();
|
|
||||||
break;
|
|
||||||
case 40: //KEY_DOWN:
|
|
||||||
this.moveDown();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
e.stopImmediatePropagation();
|
|
||||||
e.preventDefault();
|
|
||||||
},
|
|
||||||
|
|
||||||
onKeyUp: function(e) {
|
|
||||||
if(this.disabled){ return; }
|
|
||||||
switch (e.keyCode) {
|
|
||||||
case 38: //KEY_UP:
|
|
||||||
case 40: //KEY_DOWN:
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
clearInterval(this.onChangeInterval);
|
|
||||||
if (this.currentValue !== this.el.val()) {
|
|
||||||
if (this.options.deferRequestBy > 0) {
|
|
||||||
// Defer lookup in case when value changes very quickly:
|
|
||||||
var me = this;
|
|
||||||
this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy);
|
|
||||||
} else {
|
|
||||||
this.onValueChange();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
onValueChange: function() {
|
|
||||||
clearInterval(this.onChangeInterval);
|
|
||||||
this.currentValue = this.el.val();
|
|
||||||
var q = this.getQuery(this.currentValue);
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
if (this.ignoreValueChange) {
|
|
||||||
this.ignoreValueChange = false;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (q === '' || q.length < this.options.minChars) {
|
|
||||||
this.hide();
|
|
||||||
} else {
|
|
||||||
this.getSuggestions(q);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getQuery: function(val) {
|
|
||||||
var d, arr;
|
|
||||||
d = this.options.delimiter;
|
|
||||||
if (!d) { return $.trim(val); }
|
|
||||||
arr = val.split(d);
|
|
||||||
return $.trim(arr[arr.length - 1]);
|
|
||||||
},
|
|
||||||
|
|
||||||
getSuggestionsLocal: function(q) {
|
|
||||||
var ret, arr, len, val, i;
|
|
||||||
arr = this.options.lookup;
|
|
||||||
len = arr.suggestions.length;
|
|
||||||
ret = { suggestions:[], data:[] };
|
|
||||||
q = q.toLowerCase();
|
|
||||||
for(i=0; i< len; i++){
|
|
||||||
val = arr.suggestions[i];
|
|
||||||
if(val.toLowerCase().indexOf(q) === 0){
|
|
||||||
ret.suggestions.push(val);
|
|
||||||
ret.data.push(arr.data[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
},
|
|
||||||
|
|
||||||
getSuggestions: function(q) {
|
|
||||||
var cr, me;
|
|
||||||
cr = this.isLocal ? this.getSuggestionsLocal(q) : this.cachedResponse[q];
|
|
||||||
if (cr && $.isArray(cr.suggestions)) {
|
|
||||||
this.suggestions = cr.suggestions;
|
|
||||||
this.data = cr.data;
|
|
||||||
this.suggest();
|
|
||||||
} else if (!this.isBadQuery(q)) {
|
|
||||||
me = this;
|
|
||||||
me.options.params.query = q;
|
|
||||||
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
isBadQuery: function(q) {
|
|
||||||
var i = this.badQueries.length;
|
|
||||||
while (i--) {
|
|
||||||
if (q.indexOf(this.badQueries[i]) === 0) { return true; }
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
|
|
||||||
hide: function() {
|
|
||||||
this.enabled = false;
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
this.container.hide();
|
|
||||||
},
|
|
||||||
|
|
||||||
suggest: function() {
|
|
||||||
if (this.suggestions.length === 0) {
|
|
||||||
this.hide();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var me, len, div, f, v, i, s, mOver, mClick;
|
|
||||||
me = this;
|
|
||||||
len = this.suggestions.length;
|
|
||||||
f = this.options.fnFormatResult;
|
|
||||||
v = this.getQuery(this.currentValue);
|
|
||||||
mOver = function(xi) { return function() { me.activate(xi); }; };
|
|
||||||
mClick = function(xi) { return function() { me.select(xi); }; };
|
|
||||||
this.container.hide().empty();
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
s = this.suggestions[i];
|
|
||||||
div = $((me.selectedIndex === i ? '<div class="selected"' : '<div') + ' title="' + s + '">' + f(s, this.data[i], v) + '</div>');
|
|
||||||
div.mouseover(mOver(i));
|
|
||||||
div.click(mClick(i));
|
|
||||||
this.container.append(div);
|
|
||||||
}
|
|
||||||
this.enabled = true;
|
|
||||||
this.container.show();
|
|
||||||
},
|
|
||||||
|
|
||||||
processResponse: function(text) {
|
|
||||||
var response;
|
|
||||||
try {
|
|
||||||
response = eval('(' + text + ')');
|
|
||||||
} catch (err) { return; }
|
|
||||||
if (!$.isArray(response.data)) { response.data = []; }
|
|
||||||
if(!this.options.noCache){
|
|
||||||
this.cachedResponse[response.query] = response;
|
|
||||||
if (response.suggestions.length === 0) { this.badQueries.push(response.query); }
|
|
||||||
}
|
|
||||||
if (response.query === this.getQuery(this.currentValue)) {
|
|
||||||
this.suggestions = response.suggestions;
|
|
||||||
this.data = response.data;
|
|
||||||
this.suggest();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
activate: function(index) {
|
|
||||||
var divs, activeItem;
|
|
||||||
divs = this.container.children();
|
|
||||||
// Clear previous selection:
|
|
||||||
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
|
|
||||||
$(divs.get(this.selectedIndex)).removeClass();
|
|
||||||
}
|
|
||||||
this.selectedIndex = index;
|
|
||||||
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
|
|
||||||
activeItem = divs.get(this.selectedIndex);
|
|
||||||
$(activeItem).addClass('selected');
|
|
||||||
}
|
|
||||||
return activeItem;
|
|
||||||
},
|
|
||||||
|
|
||||||
deactivate: function(div, index) {
|
|
||||||
div.className = '';
|
|
||||||
if (this.selectedIndex === index) { this.selectedIndex = -1; }
|
|
||||||
},
|
|
||||||
|
|
||||||
select: function(i) {
|
|
||||||
var selectedValue, f;
|
|
||||||
selectedValue = this.suggestions[i];
|
|
||||||
if (selectedValue) {
|
|
||||||
this.el.val(selectedValue);
|
|
||||||
if (this.options.autoSubmit) {
|
|
||||||
f = this.el.parents('form');
|
|
||||||
if (f.length > 0) { f.get(0).submit(); }
|
|
||||||
}
|
|
||||||
this.ignoreValueChange = true;
|
|
||||||
this.hide();
|
|
||||||
this.onSelect(i);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
moveUp: function() {
|
|
||||||
if (this.selectedIndex === -1) { return; }
|
|
||||||
if (this.selectedIndex === 0) {
|
|
||||||
this.container.children().get(0).className = '';
|
|
||||||
this.selectedIndex = -1;
|
|
||||||
this.el.val(this.currentValue);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.adjustScroll(this.selectedIndex - 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
moveDown: function() {
|
|
||||||
if (this.selectedIndex === (this.suggestions.length - 1)) { return; }
|
|
||||||
this.adjustScroll(this.selectedIndex + 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
adjustScroll: function(i) {
|
|
||||||
var activeItem, offsetTop, upperBound, lowerBound;
|
|
||||||
activeItem = this.activate(i);
|
|
||||||
offsetTop = activeItem.offsetTop;
|
|
||||||
upperBound = this.container.scrollTop();
|
|
||||||
lowerBound = upperBound + this.options.maxHeight - 25;
|
|
||||||
if (offsetTop < upperBound) {
|
|
||||||
this.container.scrollTop(offsetTop);
|
|
||||||
} else if (offsetTop > lowerBound) {
|
|
||||||
this.container.scrollTop(offsetTop - this.options.maxHeight + 25);
|
|
||||||
}
|
|
||||||
this.el.val(this.getValue(this.suggestions[i]));
|
|
||||||
},
|
|
||||||
|
|
||||||
onSelect: function(i) {
|
|
||||||
var me, fn, s, d;
|
|
||||||
me = this;
|
|
||||||
fn = me.options.onSelect;
|
|
||||||
s = me.suggestions[i];
|
|
||||||
d = me.data[i];
|
|
||||||
me.el.val(me.getValue(s));
|
|
||||||
if ($.isFunction(fn)) { fn(s, d, me.el); }
|
|
||||||
},
|
|
||||||
|
|
||||||
getValue: function(value){
|
|
||||||
var del, currVal, arr, me;
|
|
||||||
me = this;
|
|
||||||
del = me.options.delimiter;
|
|
||||||
if (!del) { return value; }
|
|
||||||
currVal = me.currentValue;
|
|
||||||
arr = currVal.split(del);
|
|
||||||
if (arr.length === 1) { return value; }
|
|
||||||
return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value;
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
}(jQuery));
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.3 KiB |
@ -1,6 +0,0 @@
|
|||||||
|
|
||||||
.autocomplete-w1 { background:url(img/shadow.png) no-repeat bottom right; position:absolute; top:0px; left:0px; margin:8px 0 0 6px; /* IE6 fix: */ _background:none; _margin:0; }
|
|
||||||
.autocomplete { border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; }
|
|
||||||
.autocomplete .selected { background:#F0F0F0; }
|
|
||||||
.autocomplete div { padding:2px 5px; white-space:nowrap; }
|
|
||||||
.autocomplete strong { font-weight:normal; color:#3399FF; }
|
|
@ -1,535 +0,0 @@
|
|||||||
Changelog
|
|
||||||
=========
|
|
||||||
|
|
||||||
### 2.13.0 [See full changelog](https://gist.github.com/ichernev/0132fcf5b61f7fc140b0bb0090480d49)
|
|
||||||
|
|
||||||
## Enhancements:
|
|
||||||
* [#2982](https://github.com/moment/moment/pull/2982) Add 'date' as alias to 'day' for startOf() and endOf().
|
|
||||||
* [#2955](https://github.com/moment/moment/pull/2955) Add parsing negative components in durations when ISO 8601
|
|
||||||
* [#2991](https://github.com/moment/moment/pull/2991) isBetween support for both open and closed intervals
|
|
||||||
* [#3105](https://github.com/moment/moment/pull/3105) Add localeSorted argument to weekday listers
|
|
||||||
* [#3102](https://github.com/moment/moment/pull/3102) Add k and kk formatting tokens
|
|
||||||
|
|
||||||
## Bugfixes
|
|
||||||
* [#3109](https://github.com/moment/moment/pull/3109) Fix [#1756](https://github.com/moment/moment/issues/1756) Resolved thread-safe issue on server side.
|
|
||||||
* [#3078](https://github.com/moment/moment/pull/3078) Fix parsing for months/weekdays with weird characters
|
|
||||||
* [#3098](https://github.com/moment/moment/pull/3098) Use Z suffix when in UTC mode ([#3020](https://github.com/moment/moment/issues/3020))
|
|
||||||
* [#2995](https://github.com/moment/moment/pull/2995) Fix floating point rounding errors in durations
|
|
||||||
* [#3059](https://github.com/moment/moment/pull/3059) fix bug where diff returns -0 in month-related diffs
|
|
||||||
* [#3045](https://github.com/moment/moment/pull/3045) Fix mistaking any input for 'a' token
|
|
||||||
* [#2877](https://github.com/moment/moment/pull/2877) Use explicit .valueOf() calls instead of coercion
|
|
||||||
* [#3036](https://github.com/moment/moment/pull/3036) Year setter should keep time when DST changes
|
|
||||||
|
|
||||||
Plus 3 new locales and locale fixes.
|
|
||||||
|
|
||||||
### 2.12.0 [See full changelog](https://gist.github.com/ichernev/6e5bfdf8d6522fc4ac73)
|
|
||||||
|
|
||||||
## Enhancements:
|
|
||||||
* [#2932](https://github.com/moment/moment/pull/2932) List loaded locales
|
|
||||||
* [#2818](https://github.com/moment/moment/pull/2818) Parse ISO-8061 duration containing both day and week values
|
|
||||||
* [#2774](https://github.com/moment/moment/pull/2774) Implement locale inheritance and locale updating
|
|
||||||
|
|
||||||
## Bugfixes:
|
|
||||||
* [#2970](https://github.com/moment/moment/pull/2970) change add subtract to handle decimal values by rounding
|
|
||||||
* [#2887](https://github.com/moment/moment/pull/2887) Fix toJSON casting of invalid moment
|
|
||||||
* [#2897](https://github.com/moment/moment/pull/2897) parse string arguments for month() correctly, closes #2884
|
|
||||||
* [#2946](https://github.com/moment/moment/pull/2946) Fix usage suggestions for min and max
|
|
||||||
|
|
||||||
## New locales:
|
|
||||||
* [#2917](https://github.com/moment/moment/pull/2917) Locale Punjabi(Gurmukhi) India format conversion
|
|
||||||
|
|
||||||
And more
|
|
||||||
|
|
||||||
### 2.11.2 (Fix ReDoS attack vector)
|
|
||||||
|
|
||||||
* [#2939](https://github.com/moment/moment/pull/2939) use full-string match to speed up aspnet regex match
|
|
||||||
|
|
||||||
### 2.11.1 [See full changelog](https://gist.github.com/ichernev/8ec3ee25b749b4cff3c2)
|
|
||||||
|
|
||||||
## Bugfixes:
|
|
||||||
* [#2881](https://github.com/moment/moment/pull/2881) Revert "Merge pull request #2746 from mbad0la:develop" Sep->Sept
|
|
||||||
* [#2868](https://github.com/moment/moment/pull/2868) Add format and parse token Y, so it actually works
|
|
||||||
* [#2865](https://github.com/moment/moment/pull/2865) Use typeof checks for undefined for global variables
|
|
||||||
* [#2858](https://github.com/moment/moment/pull/2858) Fix Date mocking regression introduced in 2.11.0
|
|
||||||
* [#2864](https://github.com/moment/moment/pull/2864) Include changelog in npm release
|
|
||||||
* [#2830](https://github.com/moment/moment/pull/2830) dep: add grunt-cli
|
|
||||||
* [#2869](https://github.com/moment/moment/pull/2869) Fix months parsing for some locales
|
|
||||||
|
|
||||||
### 2.11.0 [See full changelog](https://gist.github.com/ichernev/6594bc29719dde6b2f66)
|
|
||||||
|
|
||||||
* [#2624](https://github.com/moment/moment/pull/2624) Proper handling of invalid moments
|
|
||||||
* [#2634](https://github.com/moment/moment/pull/2634) Fix strict month parsing issue in cs,ru,sk
|
|
||||||
* [#2735](https://github.com/moment/moment/pull/2735) Reset the locale back to 'en' after defining all locales in min/locales.js
|
|
||||||
* [#2702](https://github.com/moment/moment/pull/2702) Week rework
|
|
||||||
* [#2746](https://github.com/moment/moment/pull/2746) Changed September Abbreviation to "Sept" in locale-specific english
|
|
||||||
files and default locale file
|
|
||||||
* [#2646](https://github.com/moment/moment/pull/2646) Fix [#2645](https://github.com/moment/moment/pull/2645) - invalid dates pre-1970
|
|
||||||
|
|
||||||
* [#2641](https://github.com/moment/moment/pull/2641) Implement basic format and comma as ms separator in ISO 8601
|
|
||||||
* [#2665](https://github.com/moment/moment/pull/2665) Implement stricter weekday parsing
|
|
||||||
* [#2700](https://github.com/moment/moment/pull/2700) Add [Hh]mm and [Hh]mmss formatting tokens, so you can parse 123 with
|
|
||||||
hmm for example
|
|
||||||
* [#2565](https://github.com/moment/moment/pull/2565) [#2835](https://github.com/moment/moment/pull/2835) Expose arguments used for moment creation with creationData
|
|
||||||
(fix [#2443](https://github.com/moment/moment/pull/2443))
|
|
||||||
* [#2648](https://github.com/moment/moment/pull/2648) fix issue [#2640](https://github.com/moment/moment/pull/2640): support instanceof operator
|
|
||||||
* [#2709](https://github.com/moment/moment/pull/2709) Add isSameOrAfter and isSameOrBefore comparison methods
|
|
||||||
* [#2721](https://github.com/moment/moment/pull/2721) Fix moment creation from object with strings values
|
|
||||||
* [#2740](https://github.com/moment/moment/pull/2740) Enable 'd hh:mm:ss.sss' format for durations
|
|
||||||
* [#2766](https://github.com/moment/moment/pull/2766) [#2833](https://github.com/moment/moment/pull/2833) Alternate Clock Source Support
|
|
||||||
|
|
||||||
### 2.10.6
|
|
||||||
|
|
||||||
[#2515](https://github.com/moment/moment/pull/2515) Fix regression introduced
|
|
||||||
in `2.10.5` related to `moment.ISO_8601` parsing.
|
|
||||||
|
|
||||||
### 2.10.5 [See full changelog](https://gist.github.com/ichernev/6ec13ac7efc396da44b2)
|
|
||||||
|
|
||||||
Important changes:
|
|
||||||
* [#2357](https://github.com/moment/moment/pull/2357) Improve unit bubbling for ISO dates
|
|
||||||
this fixes day to year conversions to work around end-of-year (~365 days). As
|
|
||||||
a side effect 365 days is 11 months and 30 days, and 366 days is one year.
|
|
||||||
* [#2438](https://github.com/moment/moment/pull/2438) Fix inconsistent moment.min and moment.max results
|
|
||||||
Return invalid result if any of the inputs is invalid
|
|
||||||
* [#2494](https://github.com/moment/moment/pull/2494) Fix two digit year parsing with YYYY format
|
|
||||||
This brings the benefits of YY to YYYY
|
|
||||||
* [#2368](https://github.com/moment/moment/pull/2368) perf: use faster form of copying dates, across the board improvement
|
|
||||||
|
|
||||||
|
|
||||||
### 2.10.3 [See full changelog](https://gist.github.com/ichernev/f264b9bed5b00f8b1b7f)
|
|
||||||
|
|
||||||
* add `moment.fn.to` and `moment.fn.toNow` (similar to `from` and `fromNow`)
|
|
||||||
* new locales (Sinhalese (si), Montenegrin (me), Javanese (ja))
|
|
||||||
* performance improvements
|
|
||||||
|
|
||||||
### 2.10.2
|
|
||||||
|
|
||||||
* fixed moment-with-locales in browser env caused by esperanto change
|
|
||||||
|
|
||||||
### 2.10.1
|
|
||||||
|
|
||||||
* regression: Add moment.duration.fn back
|
|
||||||
|
|
||||||
### 2.10.0
|
|
||||||
|
|
||||||
Ported code to es6 modules.
|
|
||||||
|
|
||||||
### 2.9.0 [See full changelog](https://gist.github.com/ichernev/0c9a9b49951111a27ce7)
|
|
||||||
|
|
||||||
languages:
|
|
||||||
* [2104](https://github.com/moment/moment/issues/2104) Frisian (fy) language file with unit test
|
|
||||||
* [2097](https://github.com/moment/moment/issues/2097) add ar-tn locale
|
|
||||||
|
|
||||||
deprecations:
|
|
||||||
* [2074](https://github.com/moment/moment/issues/2074) Implement `moment.fn.utcOffset`, deprecate `moment.fn.zone`
|
|
||||||
|
|
||||||
features:
|
|
||||||
* [2088](https://github.com/moment/moment/issues/2088) add moment.fn.isBetween
|
|
||||||
* [2054](https://github.com/moment/moment/issues/2054) Call updateOffset when creating moment (needed for default timezone in
|
|
||||||
moment-timezone)
|
|
||||||
* [1893](https://github.com/moment/moment/issues/1893) Add moment.isDate method
|
|
||||||
* [1825](https://github.com/moment/moment/issues/1825) Implement toJSON function on Duration
|
|
||||||
* [1809](https://github.com/moment/moment/issues/1809) Allowing moment.set() to accept a hash of units
|
|
||||||
* [2128](https://github.com/moment/moment/issues/2128) Add firstDayOfWeek, firstDayOfYear locale getters
|
|
||||||
* [2131](https://github.com/moment/moment/issues/2131) Add quarter diff support
|
|
||||||
|
|
||||||
Some bugfixes and language improvements -- [full changelog](https://gist.github.com/ichernev/0c9a9b49951111a27ce7)
|
|
||||||
|
|
||||||
### 2.8.4 [See full changelog](https://gist.github.com/ichernev/a4fcb0a46d74e4b9b996)
|
|
||||||
|
|
||||||
Features:
|
|
||||||
|
|
||||||
* [#2000](https://github.com/moment/moment/issues/2000) Add LTS localised format that includes seconds
|
|
||||||
* [#1960](https://github.com/moment/moment/issues/1960) added formatToken 'x' for unix offset in milliseconds #1938
|
|
||||||
* [#1965](https://github.com/moment/moment/issues/1965) Support 24:00:00.000 to mean next day, at midnight.
|
|
||||||
* [#2002](https://github.com/moment/moment/issues/2002) Accept 'date' key when creating moment with object
|
|
||||||
* [#2009](https://github.com/moment/moment/issues/2009) Use native toISOString when we can
|
|
||||||
|
|
||||||
Some bugfixes and language improvements -- [full changelog](https://gist.github.com/ichernev/a4fcb0a46d74e4b9b996)
|
|
||||||
|
|
||||||
### 2.8.3
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
|
|
||||||
* [#1801](https://github.com/moment/moment/issues/1801) proper pluralization for Arabic
|
|
||||||
* [#1833](https://github.com/moment/moment/issues/1833) improve spm integration
|
|
||||||
* [#1871](https://github.com/moment/moment/issues/1871) fix zone bug caused by Firefox 24
|
|
||||||
* [#1882](https://github.com/moment/moment/issues/1882) Use hh:mm in Czech
|
|
||||||
* [#1883](https://github.com/moment/moment/issues/1883) Fix 2.8.0 regression in duration as conversions
|
|
||||||
* [#1890](https://github.com/moment/moment/issues/1890) Faster travis builds
|
|
||||||
* [#1892](https://github.com/moment/moment/issues/1892) Faster isBefore/After/Same
|
|
||||||
* [#1848](https://github.com/moment/moment/issues/1848) Fix flaky month diffs
|
|
||||||
* [#1895](https://github.com/moment/moment/issues/1895) Fix 2.8.0 regression in moment.utc with format array
|
|
||||||
* [#1896](https://github.com/moment/moment/issues/1896) Support setting invalid instance locale (noop)
|
|
||||||
* [#1897](https://github.com/moment/moment/issues/1897) Support moment([str]) in addition to moment([int])
|
|
||||||
|
|
||||||
### 2.8.2
|
|
||||||
|
|
||||||
Minor bugfixes:
|
|
||||||
|
|
||||||
* [#1874](https://github.com/moment/moment/issues/1874) use `Object.prototype.hasOwnProperty`
|
|
||||||
instead of `obj.hasOwnProperty` (ie8 bug)
|
|
||||||
* [#1873](https://github.com/moment/moment/issues/1873) add `duration#toString()`
|
|
||||||
* [#1859](https://github.com/moment/moment/issues/1859) better month/weekday names in norwegian
|
|
||||||
* [#1812](https://github.com/moment/moment/issues/1812) meridiem parsing for greek
|
|
||||||
* [#1804](https://github.com/moment/moment/issues/1804) spanish del -> de
|
|
||||||
* [#1800](https://github.com/moment/moment/issues/1800) korean LT improvement
|
|
||||||
|
|
||||||
### 2.8.1
|
|
||||||
|
|
||||||
* bugfix [#1813](https://github.com/moment/moment/issues/1813): fix moment().lang([key]) incompatibility
|
|
||||||
|
|
||||||
### 2.8.0 [See changelog](https://gist.github.com/ichernev/ac3899324a5fa6c8c9b4)
|
|
||||||
|
|
||||||
* incompatible changes
|
|
||||||
* [#1761](https://github.com/moment/moment/issues/1761): moments created without a language are no longer following the global language, in case it changes. Only newly created moments take the global language by default. In case you're affected by this, wait, comment on [#1797](https://github.com/moment/moment/issues/1797) and wait for a proper reimplementation
|
|
||||||
* [#1642](https://github.com/moment/moment/issues/1642): 45 days is no longer "a month" according to humanize, cutoffs for month, and year have changed. Hopefully your code does not depend on a particular answer from humanize (which it shouldn't anyway)
|
|
||||||
* [#1784](https://github.com/moment/moment/issues/1784): if you use the human readable English datetime format in a weird way (like storing them in a database) that would break when the format changes you're at risk.
|
|
||||||
|
|
||||||
* deprecations (old behavior will be dropped in 3.0)
|
|
||||||
* [#1761](https://github.com/moment/moment/issues/1761) `lang` is renamed to `locale`, `langData` -> `localeData`. Also there is now `defineLocale` that should be used when creating new locales
|
|
||||||
* [#1763](https://github.com/moment/moment/issues/1763) `add(unit, value)` and `subtract(unit, value)` are now deprecated. Use `add(value, unit)` and `subtract(value, unit)` instead.
|
|
||||||
* [#1759](https://github.com/moment/moment/issues/1759) rename `duration.toIsoString` to `duration.toISOString`. The js standard library and moment's `toISOString` follow that convention.
|
|
||||||
|
|
||||||
* new locales
|
|
||||||
* [#1789](https://github.com/moment/moment/issues/1789) Tibetan (bo)
|
|
||||||
* [#1786](https://github.com/moment/moment/issues/1786) Africaans (af)
|
|
||||||
* [#1778](https://github.com/moment/moment/issues/1778) Burmese (my)
|
|
||||||
* [#1727](https://github.com/moment/moment/issues/1727) Belarusian (be)
|
|
||||||
|
|
||||||
* bugfixes, locale bugfixes, performance improvements, features
|
|
||||||
|
|
||||||
### 2.7.0 [See changelog](https://gist.github.com/ichernev/b0a3d456d5a84c9901d7)
|
|
||||||
|
|
||||||
* new languages
|
|
||||||
|
|
||||||
* [#1678](https://github.com/moment/moment/issues/1678) Bengali (bn)
|
|
||||||
* [#1628](https://github.com/moment/moment/issues/1628) Azerbaijani (az)
|
|
||||||
* [#1633](https://github.com/moment/moment/issues/1633) Arabic, Saudi Arabia (ar-sa)
|
|
||||||
* [#1648](https://github.com/moment/moment/issues/1648) Austrian German (de-at)
|
|
||||||
|
|
||||||
* features
|
|
||||||
|
|
||||||
* [#1663](https://github.com/moment/moment/issues/1663) configurable relative time thresholds
|
|
||||||
* [#1554](https://github.com/moment/moment/issues/1554) support anchor time in moment.calendar
|
|
||||||
* [#1693](https://github.com/moment/moment/issues/1693) support moment.ISO_8601 as parsing format
|
|
||||||
* [#1637](https://github.com/moment/moment/issues/1637) add moment.min and moment.max and deprecate min/max instance methods
|
|
||||||
* [#1704](https://github.com/moment/moment/issues/1704) support string value in add/subtract
|
|
||||||
* [#1647](https://github.com/moment/moment/issues/1647) add spm support (package manager)
|
|
||||||
|
|
||||||
* bugfixes
|
|
||||||
|
|
||||||
### 2.6.0 [See changelog](https://gist.github.com/ichernev/10544682)
|
|
||||||
|
|
||||||
* languages
|
|
||||||
* [#1529](https://github.com/moment/moment/issues/1529) Serbian-Cyrillic (sr-cyr)
|
|
||||||
* [#1544](https://github.com/moment/moment/issues/1544), [#1546](https://github.com/moment/moment/issues/1546) Khmer Cambodia (km)
|
|
||||||
|
|
||||||
* features
|
|
||||||
* [#1419](https://github.com/moment/moment/issues/1419), [#1468](https://github.com/moment/moment/issues/1468), [#1467](https://github.com/moment/moment/issues/1467), [#1546](https://github.com/moment/moment/issues/1546) better handling of timezone-d moments around DST
|
|
||||||
* [#1462](https://github.com/moment/moment/issues/1462) add weeksInYear and isoWeeksInYear
|
|
||||||
* [#1475](https://github.com/moment/moment/issues/1475) support ordinal parsing
|
|
||||||
* [#1499](https://github.com/moment/moment/issues/1499) composer support
|
|
||||||
* [#1577](https://github.com/moment/moment/issues/1577), [#1604](https://github.com/moment/moment/issues/1604) put Date parsing in moment.createFromInputFallback so it can be properly deprecated and controlled in the future
|
|
||||||
* [#1545](https://github.com/moment/moment/issues/1545) extract two-digit year parsing in moment.parseTwoDigitYear, so it can be overwritten
|
|
||||||
* [#1590](https://github.com/moment/moment/issues/1590) (see [#1574](https://github.com/moment/moment/issues/1574)) set AMD global before module definition to better support non AMD module dependencies used in AMD environment
|
|
||||||
* [#1589](https://github.com/moment/moment/issues/1589) remove global in Node.JS environment (was not working before, nobody complained, was scheduled for removal anyway)
|
|
||||||
* [#1586](https://github.com/moment/moment/issues/1586) support quarter setting and parsing
|
|
||||||
|
|
||||||
* 18 bugs fixed
|
|
||||||
|
|
||||||
### 2.5.1
|
|
||||||
|
|
||||||
* languages
|
|
||||||
* [#1392](https://github.com/moment/moment/issues/1392) Armenian (hy-am)
|
|
||||||
|
|
||||||
* bugfixes
|
|
||||||
* [#1429](https://github.com/moment/moment/issues/1429) fixes [#1423](https://github.com/moment/moment/issues/1423) weird chrome-32 bug with js object creation
|
|
||||||
* [#1421](https://github.com/moment/moment/issues/1421) remove html entities from Welsh
|
|
||||||
* [#1418](https://github.com/moment/moment/issues/1418) fixes [#1401](https://github.com/moment/moment/issues/1401) improved non-padded tokens in strict matching
|
|
||||||
* [#1417](https://github.com/moment/moment/issues/1417) fixes [#1404](https://github.com/moment/moment/issues/1404) handle buggy moment object created by property cloning
|
|
||||||
* [#1398](https://github.com/moment/moment/issues/1398) fixes [#1397](https://github.com/moment/moment/issues/1397) fix Arabic-like week number parsing
|
|
||||||
* [#1396](https://github.com/moment/moment/issues/1396) add leftZeroFill(4) to GGGG and gggg formats
|
|
||||||
* [#1373](https://github.com/moment/moment/issues/1373) use lowercase for months and days in Catalan
|
|
||||||
|
|
||||||
* testing
|
|
||||||
* [#1374](https://github.com/moment/moment/issues/1374) run tests on multiple browser/os combos via SauceLabs and Travis
|
|
||||||
|
|
||||||
### 2.5.0 [See changelog](https://gist.github.com/ichernev/8104451)
|
|
||||||
|
|
||||||
* New languages
|
|
||||||
* Luxemburish (lb) [1247](https://github.com/moment/moment/issues/1247)
|
|
||||||
* Serbian (rs) [1319](https://github.com/moment/moment/issues/1319)
|
|
||||||
* Tamil (ta) [1324](https://github.com/moment/moment/issues/1324)
|
|
||||||
* Macedonian (mk) [1337](https://github.com/moment/moment/issues/1337)
|
|
||||||
|
|
||||||
* Features
|
|
||||||
* [1311](https://github.com/moment/moment/issues/1311) Add quarter getter and format token `Q`
|
|
||||||
* [1303](https://github.com/moment/moment/issues/1303) strict parsing now respects number of digits per token (fix [1196](https://github.com/moment/moment/issues/1196))
|
|
||||||
* 0d30bb7 add jspm support
|
|
||||||
* [1347](https://github.com/moment/moment/issues/1347) improve zone parsing
|
|
||||||
* [1362](https://github.com/moment/moment/issues/1362) support merideam parsing in Korean
|
|
||||||
|
|
||||||
* 22 bugfixes
|
|
||||||
|
|
||||||
### 2.4.0
|
|
||||||
|
|
||||||
* **Deprecate** globally exported moment, will be removed in next major
|
|
||||||
* New languages
|
|
||||||
* Farose (fo) [#1206](https://github.com/moment/moment/issues/1206)
|
|
||||||
* Tagalog/Filipino (tl-ph) [#1197](https://github.com/moment/moment/issues/1197)
|
|
||||||
* Welsh (cy) [#1215](https://github.com/moment/moment/issues/1215)
|
|
||||||
* Bugfixes
|
|
||||||
* properly handle Z at the end of iso RegExp [#1187](https://github.com/moment/moment/issues/1187)
|
|
||||||
* chinese meridian time improvements [#1076](https://github.com/moment/moment/issues/1076)
|
|
||||||
* fix language tests [#1177](https://github.com/moment/moment/issues/1177)
|
|
||||||
* remove some failing tests (that should have never existed :))
|
|
||||||
[#1185](https://github.com/moment/moment/issues/1185)
|
|
||||||
[#1183](https://github.com/moment/moment/issues/1183)
|
|
||||||
* handle russian noun cases in weird cases [#1195](https://github.com/moment/moment/issues/1195)
|
|
||||||
|
|
||||||
### 2.3.1
|
|
||||||
|
|
||||||
Removed a trailing comma [1169] and fixed a bug with `months`, `weekdays` getters [#1171](https://github.com/moment/moment/issues/1171).
|
|
||||||
|
|
||||||
### 2.3.0 [See changelog](https://gist.github.com/ichernev/6864354)
|
|
||||||
|
|
||||||
Changed isValid, added strict parsing.
|
|
||||||
Week tokens parsing.
|
|
||||||
|
|
||||||
### 2.2.1
|
|
||||||
|
|
||||||
Fixed bug in string prototype test.
|
|
||||||
Updated authors and contributors.
|
|
||||||
|
|
||||||
### 2.2.0 [See changelog](https://gist.github.com/ichernev/00f837a9baf46a3565e4)
|
|
||||||
|
|
||||||
Added bower support.
|
|
||||||
|
|
||||||
Language files now use UMD.
|
|
||||||
|
|
||||||
Creating moment defaults to current date/month/year.
|
|
||||||
|
|
||||||
Added a bundle of moment and all language files.
|
|
||||||
|
|
||||||
### 2.1.0 [See changelog](https://gist.github.com/timrwood/b8c2d90d528eddb53ab5)
|
|
||||||
|
|
||||||
Added better week support.
|
|
||||||
|
|
||||||
Added ability to set offset with `moment#zone`.
|
|
||||||
|
|
||||||
Added ability to set month or weekday from a string.
|
|
||||||
|
|
||||||
Added `moment#min` and `moment#max`
|
|
||||||
|
|
||||||
### 2.0.0 [See changelog](https://gist.github.com/timrwood/e72f2eef320ed9e37c51)
|
|
||||||
|
|
||||||
Added short form localized tokens.
|
|
||||||
|
|
||||||
Added ability to define language a string should be parsed in.
|
|
||||||
|
|
||||||
Added support for reversed add/subtract arguments.
|
|
||||||
|
|
||||||
Added support for `endOf('week')` and `startOf('week')`.
|
|
||||||
|
|
||||||
Fixed the logic for `moment#diff(Moment, 'months')` and `moment#diff(Moment, 'years')`
|
|
||||||
|
|
||||||
`moment#diff` now floors instead of rounds.
|
|
||||||
|
|
||||||
Normalized `moment#toString`.
|
|
||||||
|
|
||||||
Added `isSame`, `isAfter`, and `isBefore` methods.
|
|
||||||
|
|
||||||
Added better week support.
|
|
||||||
|
|
||||||
Added `moment#toJSON`
|
|
||||||
|
|
||||||
Bugfix: Fixed parsing of first century dates
|
|
||||||
|
|
||||||
Bugfix: Parsing 10Sep2001 should work as expected
|
|
||||||
|
|
||||||
Bugfix: Fixed weirdness with `moment.utc()` parsing.
|
|
||||||
|
|
||||||
Changed language ordinal method to return the number + ordinal instead of just the ordinal.
|
|
||||||
|
|
||||||
Changed two digit year parsing cutoff to match strptime.
|
|
||||||
|
|
||||||
Removed `moment#sod` and `moment#eod` in favor of `moment#startOf` and `moment#endOf`.
|
|
||||||
|
|
||||||
Removed `moment.humanizeDuration()` in favor of `moment.duration().humanize()`.
|
|
||||||
|
|
||||||
Removed the lang data objects from the top level namespace.
|
|
||||||
|
|
||||||
Duplicate `Date` passed to `moment()` instead of referencing it.
|
|
||||||
|
|
||||||
### 1.7.2 [See discussion](https://github.com/timrwood/moment/issues/456)
|
|
||||||
|
|
||||||
Bugfixes
|
|
||||||
|
|
||||||
### 1.7.1 [See discussion](https://github.com/timrwood/moment/issues/384)
|
|
||||||
|
|
||||||
Bugfixes
|
|
||||||
|
|
||||||
### 1.7.0 [See discussion](https://github.com/timrwood/moment/issues/288)
|
|
||||||
|
|
||||||
Added `moment.fn.endOf()` and `moment.fn.startOf()`.
|
|
||||||
|
|
||||||
Added validation via `moment.fn.isValid()`.
|
|
||||||
|
|
||||||
Made formatting method 3x faster. http://jsperf.com/momentjs-cached-format-functions
|
|
||||||
|
|
||||||
Add support for month/weekday callbacks in `moment.fn.format()`
|
|
||||||
|
|
||||||
Added instance specific languages.
|
|
||||||
|
|
||||||
Added two letter weekday abbreviations with the formatting token `dd`.
|
|
||||||
|
|
||||||
Various language updates.
|
|
||||||
|
|
||||||
Various bugfixes.
|
|
||||||
|
|
||||||
### 1.6.0 [See discussion](https://github.com/timrwood/moment/pull/268)
|
|
||||||
|
|
||||||
Added Durations.
|
|
||||||
|
|
||||||
Revamped parser to support parsing non-separated strings (YYYYMMDD vs YYYY-MM-DD).
|
|
||||||
|
|
||||||
Added support for millisecond parsing and formatting tokens (S SS SSS)
|
|
||||||
|
|
||||||
Added a getter for `moment.lang()`
|
|
||||||
|
|
||||||
Various bugfixes.
|
|
||||||
|
|
||||||
There are a few things deprecated in the 1.6.0 release.
|
|
||||||
|
|
||||||
1. The format tokens `z` and `zz` (timezone abbreviations like EST CST MST etc) will no longer be supported. Due to inconsistent browser support, we are unable to consistently produce this value. See [this issue](https://github.com/timrwood/moment/issues/162) for more background.
|
|
||||||
|
|
||||||
2. The method `moment.fn.native` is deprecated in favor of `moment.fn.toDate`. There continue to be issues with Google Closure Compiler throwing errors when using `native`, even in valid instances.
|
|
||||||
|
|
||||||
3. The way to customize am/pm strings is being changed. This would only affect you if you created a custom language file. For more information, see [this issue](https://github.com/timrwood/moment/pull/222).
|
|
||||||
|
|
||||||
### 1.5.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=10&page=1&state=closed)
|
|
||||||
|
|
||||||
Added UTC mode.
|
|
||||||
|
|
||||||
Added automatic ISO8601 parsing.
|
|
||||||
|
|
||||||
Various bugfixes.
|
|
||||||
|
|
||||||
### 1.4.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=8&state=closed)
|
|
||||||
|
|
||||||
Added `moment.fn.toDate` as a replacement for `moment.fn.native`.
|
|
||||||
|
|
||||||
Added `moment.fn.sod` and `moment.fn.eod` to get the start and end of day.
|
|
||||||
|
|
||||||
Various bugfixes.
|
|
||||||
|
|
||||||
### 1.3.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=7&state=closed)
|
|
||||||
|
|
||||||
Added support for parsing month names in the current language.
|
|
||||||
|
|
||||||
Added escape blocks for parsing tokens.
|
|
||||||
|
|
||||||
Added `moment.fn.calendar` to format strings like 'Today 2:30 PM', 'Tomorrow 1:25 AM', and 'Last Sunday 4:30 AM'.
|
|
||||||
|
|
||||||
Added `moment.fn.day` as a setter.
|
|
||||||
|
|
||||||
Various bugfixes
|
|
||||||
|
|
||||||
### 1.2.0 [See milestone](https://github.com/timrwood/moment/issues?milestone=4&state=closed)
|
|
||||||
|
|
||||||
Added timezones to parser and formatter.
|
|
||||||
|
|
||||||
Added `moment.fn.isDST`.
|
|
||||||
|
|
||||||
Added `moment.fn.zone` to get the timezone offset in minutes.
|
|
||||||
|
|
||||||
### 1.1.2 [See milestone](https://github.com/timrwood/moment/issues?milestone=6&state=closed)
|
|
||||||
|
|
||||||
Various bugfixes
|
|
||||||
|
|
||||||
### 1.1.1 [See milestone](https://github.com/timrwood/moment/issues?milestone=5&state=closed)
|
|
||||||
|
|
||||||
Added time specific diffs (months, days, hours, etc)
|
|
||||||
|
|
||||||
### 1.1.0
|
|
||||||
|
|
||||||
Added `moment.fn.format` localized masks. 'L LL LLL LLLL' [issue 29](https://github.com/timrwood/moment/pull/29)
|
|
||||||
|
|
||||||
Fixed [issue 31](https://github.com/timrwood/moment/pull/31).
|
|
||||||
|
|
||||||
### 1.0.1
|
|
||||||
|
|
||||||
Added `moment.version` to get the current version.
|
|
||||||
|
|
||||||
Removed `window !== undefined` when checking if module exists to support browserify. [issue 25](https://github.com/timrwood/moment/pull/25)
|
|
||||||
|
|
||||||
### 1.0.0
|
|
||||||
|
|
||||||
Added convenience methods for getting and setting date parts.
|
|
||||||
|
|
||||||
Added better support for `moment.add()`.
|
|
||||||
|
|
||||||
Added better lang support in NodeJS.
|
|
||||||
|
|
||||||
Renamed library from underscore.date to Moment.js
|
|
||||||
|
|
||||||
### 0.6.1
|
|
||||||
|
|
||||||
Added Portuguese, Italian, and French language support
|
|
||||||
|
|
||||||
### 0.6.0
|
|
||||||
|
|
||||||
Added _date.lang() support.
|
|
||||||
Added support for passing multiple formats to try to parse a date. _date("07-10-1986", ["MM-DD-YYYY", "YYYY-MM-DD"]);
|
|
||||||
Made parse from string and single format 25% faster.
|
|
||||||
|
|
||||||
### 0.5.2
|
|
||||||
|
|
||||||
Bugfix for [issue 8](https://github.com/timrwood/underscore.date/pull/8) and [issue 9](https://github.com/timrwood/underscore.date/pull/9).
|
|
||||||
|
|
||||||
### 0.5.1
|
|
||||||
|
|
||||||
Bugfix for [issue 5](https://github.com/timrwood/underscore.date/pull/5).
|
|
||||||
|
|
||||||
### 0.5.0
|
|
||||||
|
|
||||||
Dropped the redundant `_date.date()` in favor of `_date()`.
|
|
||||||
Removed `_date.now()`, as it is a duplicate of `_date()` with no parameters.
|
|
||||||
Removed `_date.isLeapYear(yearNumber)`. Use `_date([yearNumber]).isLeapYear()` instead.
|
|
||||||
Exposed customization options through the `_date.relativeTime`, `_date.weekdays`, `_date.weekdaysShort`, `_date.months`, `_date.monthsShort`, and `_date.ordinal` variables instead of the `_date.customize()` function.
|
|
||||||
|
|
||||||
### 0.4.1
|
|
||||||
|
|
||||||
Added date input formats for input strings.
|
|
||||||
|
|
||||||
### 0.4.0
|
|
||||||
|
|
||||||
Added underscore.date to npm. Removed dependencies on underscore.
|
|
||||||
|
|
||||||
### 0.3.2
|
|
||||||
|
|
||||||
Added `'z'` and `'zz'` to `_.date().format()`. Cleaned up some redundant code to trim off some bytes.
|
|
||||||
|
|
||||||
### 0.3.1
|
|
||||||
|
|
||||||
Cleaned up the namespace. Moved all date manipulation and display functions to the _.date() object.
|
|
||||||
|
|
||||||
### 0.3.0
|
|
||||||
|
|
||||||
Switched to the Underscore methodology of not mucking with the native objects' prototypes.
|
|
||||||
Made chaining possible.
|
|
||||||
|
|
||||||
### 0.2.1
|
|
||||||
|
|
||||||
Changed date names to be a more pseudo standardized 'dddd, MMMM Do YYYY, h:mm:ss a'.
|
|
||||||
Added `Date.prototype` functions `add`, `subtract`, `isdst`, and `isleapyear`.
|
|
||||||
|
|
||||||
### 0.2.0
|
|
||||||
|
|
||||||
Changed function names to be more concise.
|
|
||||||
Changed date format from php date format to custom format.
|
|
||||||
|
|
||||||
### 0.1.0
|
|
||||||
|
|
||||||
Initial release
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
Copyright (c) 2011-2016 Tim Wood, Iskren Chernev, Moment.js contributors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person
|
|
||||||
obtaining a copy of this software and associated documentation
|
|
||||||
files (the "Software"), to deal in the Software without
|
|
||||||
restriction, including without limitation the rights to use,
|
|
||||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the
|
|
||||||
Software is furnished to do so, subject to the following
|
|
||||||
conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
||||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
||||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
||||||
OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -1,58 +0,0 @@
|
|||||||
[](https://gitter.im/moment/moment?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
||||||
|
|
||||||
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![MIT License][license-image]][license-url] [![Build Status][travis-image]][travis-url]
|
|
||||||
[](https://coveralls.io/r/moment/moment?branch=develop)
|
|
||||||
|
|
||||||
A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.
|
|
||||||
|
|
||||||
**[Documentation](http://momentjs.com/docs/)**
|
|
||||||
|
|
||||||
## Port to ECMAScript 6 (version 2.10.0)
|
|
||||||
|
|
||||||
Moment 2.10.0 does not bring any new features, but the code is now written in
|
|
||||||
ECMAScript 6 modules and placed inside `src/`. Previously `moment.js`, `locale/*.js` and
|
|
||||||
`test/moment/*.js`, `test/locale/*.js` contained the source of the project. Now
|
|
||||||
the source is in `src/`, temporary build (ECMAScript 5) files are placed under
|
|
||||||
`build/umd/` (for running tests during development), and the `moment.js` and
|
|
||||||
`locale/*.js` files are updated only on release.
|
|
||||||
|
|
||||||
If you want to use a particular revision of the code, make sure to run
|
|
||||||
`grunt transpile update-index`, so `moment.js` and `locales/*.js` are synced
|
|
||||||
with `src/*`. We might place that in a commit hook in the future.
|
|
||||||
|
|
||||||
## Upgrading to 2.0.0
|
|
||||||
|
|
||||||
There are a number of small backwards incompatible changes with version 2.0.0. [See the full descriptions here](https://gist.github.com/timrwood/e72f2eef320ed9e37c51#backwards-incompatible-changes)
|
|
||||||
|
|
||||||
* Changed language ordinal method to return the number + ordinal instead of just the ordinal.
|
|
||||||
|
|
||||||
* Changed two digit year parsing cutoff to match strptime.
|
|
||||||
|
|
||||||
* Removed `moment#sod` and `moment#eod` in favor of `moment#startOf` and `moment#endOf`.
|
|
||||||
|
|
||||||
* Removed `moment.humanizeDuration()` in favor of `moment.duration().humanize()`.
|
|
||||||
|
|
||||||
* Removed the lang data objects from the top level namespace.
|
|
||||||
|
|
||||||
* Duplicate `Date` passed to `moment()` instead of referencing it.
|
|
||||||
|
|
||||||
## [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
|
|
||||||
|
|
||||||
## [Contributing](https://github.com/moment/moment/blob/develop/CONTRIBUTING.md)
|
|
||||||
|
|
||||||
We're looking for co-maintainers! If you want to become a master of time please
|
|
||||||
write to [ichernev](https://github.com/ichernev).
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
Moment.js is freely distributable under the terms of the [MIT license](https://github.com/moment/moment/blob/develop/LICENSE).
|
|
||||||
|
|
||||||
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
|
|
||||||
[license-url]: LICENSE
|
|
||||||
|
|
||||||
[npm-url]: https://npmjs.org/package/moment
|
|
||||||
[npm-version-image]: http://img.shields.io/npm/v/moment.svg?style=flat
|
|
||||||
[npm-downloads-image]: http://img.shields.io/npm/dm/moment.svg?style=flat
|
|
||||||
|
|
||||||
[travis-url]: http://travis-ci.org/moment/moment
|
|
||||||
[travis-image]: http://img.shields.io/travis/moment/moment/develop.svg?style=flat
|
|
File diff suppressed because it is too large
Load Diff
7
library/moment/moment.min.js
vendored
7
library/moment/moment.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,724 +0,0 @@
|
|||||||
/**
|
|
||||||
* AJAX Upload ( http://valums.com/ajax-upload/ )
|
|
||||||
* Copyright (c) Andris Valums
|
|
||||||
* Licensed under the MIT license ( http://valums.com/mit-license/ )
|
|
||||||
* Thanks to Gary Haran, David Mark, Corey Burns and others for contributions.
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function () {
|
|
||||||
/* global window */
|
|
||||||
/* jslint browser: true, devel: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wrapper for FireBug's console.log
|
|
||||||
*/
|
|
||||||
function log(){
|
|
||||||
if (typeof(console) != 'undefined' && typeof(console.log) == 'function'){
|
|
||||||
Array.prototype.unshift.call(arguments, '[Ajax Upload]');
|
|
||||||
console.log( Array.prototype.join.call(arguments, ' '));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attaches event to a dom element.
|
|
||||||
* @param {Element} el
|
|
||||||
* @param type event name
|
|
||||||
* @param fn callback This refers to the passed element
|
|
||||||
*/
|
|
||||||
function addEvent(el, type, fn){
|
|
||||||
if (el.addEventListener) {
|
|
||||||
el.addEventListener(type, fn, false);
|
|
||||||
} else if (el.attachEvent) {
|
|
||||||
el.attachEvent('on' + type, function(){
|
|
||||||
fn.call(el);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
throw new Error('not supported or DOM not loaded');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attaches resize event to a window, limiting
|
|
||||||
* number of event fired. Fires only when encounteres
|
|
||||||
* delay of 100 after series of events.
|
|
||||||
*
|
|
||||||
* Some browsers fire event multiple times when resizing
|
|
||||||
* http://www.quirksmode.org/dom/events/resize.html
|
|
||||||
*
|
|
||||||
* @param fn callback This refers to the passed element
|
|
||||||
*/
|
|
||||||
function addResizeEvent(fn){
|
|
||||||
var timeout;
|
|
||||||
|
|
||||||
addEvent(window, 'resize', function(){
|
|
||||||
if (timeout){
|
|
||||||
clearTimeout(timeout);
|
|
||||||
}
|
|
||||||
timeout = setTimeout(fn, 100);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get offset adding all offsets, slow fall-back method
|
|
||||||
var getOffsetSlow = function(el){
|
|
||||||
var top = 0, left = 0;
|
|
||||||
do {
|
|
||||||
top += el.offsetTop || 0;
|
|
||||||
left += el.offsetLeft || 0;
|
|
||||||
el = el.offsetParent;
|
|
||||||
} while (el);
|
|
||||||
|
|
||||||
return {
|
|
||||||
left: left,
|
|
||||||
top: top
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Needs more testing, will be rewriten for next version
|
|
||||||
// getOffset function copied from jQuery lib (http://jquery.com/)
|
|
||||||
if (document.documentElement.getBoundingClientRect){
|
|
||||||
// Get Offset using getBoundingClientRect
|
|
||||||
// http://ejohn.org/blog/getboundingclientrect-is-awesome/
|
|
||||||
var getOffset = function(el){
|
|
||||||
var box = el.getBoundingClientRect();
|
|
||||||
var doc = el.ownerDocument;
|
|
||||||
var body = doc.body;
|
|
||||||
var docElem = doc.documentElement; // for ie
|
|
||||||
var clientTop = docElem.clientTop || body.clientTop || 0;
|
|
||||||
var clientLeft = docElem.clientLeft || body.clientLeft || 0;
|
|
||||||
|
|
||||||
// In Internet Explorer 7 getBoundingClientRect property is treated as physical,
|
|
||||||
// while others are logical. Make all logical, like in IE8.
|
|
||||||
var zoom = 1;
|
|
||||||
if (body.getBoundingClientRect) {
|
|
||||||
var bound = body.getBoundingClientRect();
|
|
||||||
zoom = (bound.right - bound.left) / body.clientWidth;
|
|
||||||
}
|
|
||||||
|
|
||||||
// some CSS layouts gives 0 width and/or bounding boxes
|
|
||||||
// in this case we fall back to the slow method
|
|
||||||
if (zoom == 0 || body.clientWidth == 0)
|
|
||||||
return getOffsetSlow(el);
|
|
||||||
|
|
||||||
if (zoom > 1) {
|
|
||||||
clientTop = 0;
|
|
||||||
clientLeft = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
var top = box.top / zoom + (window.pageYOffset || docElem && docElem.scrollTop / zoom || body.scrollTop / zoom) - clientTop, left = box.left / zoom + (window.pageXOffset || docElem && docElem.scrollLeft / zoom || body.scrollLeft / zoom) - clientLeft;
|
|
||||||
|
|
||||||
return {
|
|
||||||
top: top,
|
|
||||||
left: left
|
|
||||||
};
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
// // Get offset adding all offsets
|
|
||||||
// var getOffset = function(el){
|
|
||||||
// var top = 0, left = 0;
|
|
||||||
// do {
|
|
||||||
// top += el.offsetTop || 0;
|
|
||||||
// left += el.offsetLeft || 0;
|
|
||||||
// el = el.offsetParent;
|
|
||||||
// } while (el);
|
|
||||||
|
|
||||||
// return {
|
|
||||||
// left: left,
|
|
||||||
// top: top
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
var getOffset = getOffsetSlowl
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns left, top, right and bottom properties describing the border-box,
|
|
||||||
* in pixels, with the top-left relative to the body
|
|
||||||
* @param {Element} el
|
|
||||||
* @return {Object} Contains left, top, right,bottom
|
|
||||||
*/
|
|
||||||
function getBox(el){
|
|
||||||
var left, right, top, bottom;
|
|
||||||
var offset = getOffset(el);
|
|
||||||
left = offset.left;
|
|
||||||
top = offset.top;
|
|
||||||
|
|
||||||
right = left + el.offsetWidth;
|
|
||||||
bottom = top + el.offsetHeight;
|
|
||||||
|
|
||||||
return {
|
|
||||||
left: left,
|
|
||||||
right: right,
|
|
||||||
top: top,
|
|
||||||
bottom: bottom
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Helper that takes object literal
|
|
||||||
* and add all properties to element.style
|
|
||||||
* @param {Element} el
|
|
||||||
* @param {Object} styles
|
|
||||||
*/
|
|
||||||
function addStyles(el, styles){
|
|
||||||
for (var name in styles) {
|
|
||||||
if (styles.hasOwnProperty(name)) {
|
|
||||||
el.style[name] = styles[name];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Function places an absolutely positioned
|
|
||||||
* element on top of the specified element
|
|
||||||
* copying position and dimentions.
|
|
||||||
* @param {Element} from
|
|
||||||
* @param {Element} to
|
|
||||||
*/
|
|
||||||
function copyLayout(from, to){
|
|
||||||
var box = getBox(from);
|
|
||||||
|
|
||||||
addStyles(to, {
|
|
||||||
position: 'absolute',
|
|
||||||
left : box.left + 'px',
|
|
||||||
top : box.top + 'px',
|
|
||||||
width : from.offsetWidth + 'px',
|
|
||||||
height : from.offsetHeight + 'px'
|
|
||||||
});
|
|
||||||
to.title = from.title;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates and returns element from html chunk
|
|
||||||
* Uses innerHTML to create an element
|
|
||||||
*/
|
|
||||||
var toElement = (function(){
|
|
||||||
var div = document.createElement('div');
|
|
||||||
return function(html){
|
|
||||||
div.innerHTML = html;
|
|
||||||
var el = div.firstChild;
|
|
||||||
return div.removeChild(el);
|
|
||||||
};
|
|
||||||
})();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Function generates unique id
|
|
||||||
* @return unique id
|
|
||||||
*/
|
|
||||||
var getUID = (function(){
|
|
||||||
var id = 0;
|
|
||||||
return function(){
|
|
||||||
return 'ValumsAjaxUpload' + id++;
|
|
||||||
};
|
|
||||||
})();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get file name from path
|
|
||||||
* @param {String} file path to file
|
|
||||||
* @return filename
|
|
||||||
*/
|
|
||||||
function fileFromPath(file){
|
|
||||||
return file.replace(/.*(\/|\\)/, "");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get file extension lowercase
|
|
||||||
* @param {String} file name
|
|
||||||
* @return file extenstion
|
|
||||||
*/
|
|
||||||
function getExt(file){
|
|
||||||
return (-1 !== file.indexOf('.')) ? file.replace(/.*[.]/, '') : '';
|
|
||||||
}
|
|
||||||
|
|
||||||
function hasClass(el, name){
|
|
||||||
var re = new RegExp('\\b' + name + '\\b');
|
|
||||||
return re.test(el.className);
|
|
||||||
}
|
|
||||||
function addClass(el, name){
|
|
||||||
if ( ! hasClass(el, name)){
|
|
||||||
el.className += ' ' + name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function removeClass(el, name){
|
|
||||||
var re = new RegExp('\\b' + name + '\\b');
|
|
||||||
el.className = el.className.replace(re, '');
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeNode(el){
|
|
||||||
el.parentNode.removeChild(el);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Easy styling and uploading
|
|
||||||
* @constructor
|
|
||||||
* @param button An element you want convert to
|
|
||||||
* upload button. Tested dimentions up to 500x500px
|
|
||||||
* @param {Object} options See defaults below.
|
|
||||||
*/
|
|
||||||
window.AjaxUpload = function(button, options){
|
|
||||||
this._settings = {
|
|
||||||
// Location of the server-side upload script
|
|
||||||
action: 'upload.php',
|
|
||||||
// File upload name
|
|
||||||
name: 'userfile',
|
|
||||||
|
|
||||||
title: 'Upload',
|
|
||||||
|
|
||||||
// Additional data to send
|
|
||||||
data: {},
|
|
||||||
// Submit file as soon as it's selected
|
|
||||||
autoSubmit: true,
|
|
||||||
// The type of data that you're expecting back from the server.
|
|
||||||
// html and xml are detected automatically.
|
|
||||||
// Only useful when you are using json data as a response.
|
|
||||||
// Set to "json" in that case.
|
|
||||||
responseType: false,
|
|
||||||
// Class applied to button when mouse is hovered
|
|
||||||
hoverClass: 'hover',
|
|
||||||
// Class applied to button when button is focused
|
|
||||||
focusClass: 'focus',
|
|
||||||
// Class applied to button when AU is disabled
|
|
||||||
disabledClass: 'disabled',
|
|
||||||
// When user selects a file, useful with autoSubmit disabled
|
|
||||||
// You can return false to cancel upload
|
|
||||||
onChange: function(file, extension){
|
|
||||||
},
|
|
||||||
// Callback to fire before file is uploaded
|
|
||||||
// You can return false to cancel upload
|
|
||||||
onSubmit: function(file, extension){
|
|
||||||
},
|
|
||||||
// Fired when file upload is completed
|
|
||||||
// WARNING! DO NOT USE "FALSE" STRING AS A RESPONSE!
|
|
||||||
onComplete: function(file, response){
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Merge the users options with our defaults
|
|
||||||
for (var i in options) {
|
|
||||||
if (options.hasOwnProperty(i)){
|
|
||||||
this._settings[i] = options[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// button isn't necessary a dom element
|
|
||||||
if (button.jquery){
|
|
||||||
// jQuery object was passed
|
|
||||||
button = button[0];
|
|
||||||
} else if (typeof button == "string") {
|
|
||||||
if (/^#.*/.test(button)){
|
|
||||||
// If jQuery user passes #elementId don't break it
|
|
||||||
button = button.slice(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
button = document.getElementById(button);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ! button || button.nodeType !== 1){
|
|
||||||
throw new Error("Please make sure that you're passing a valid element");
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( button.nodeName.toUpperCase() == 'A'){
|
|
||||||
// disable link
|
|
||||||
addEvent(button, 'click', function(e){
|
|
||||||
if (e && e.preventDefault){
|
|
||||||
e.preventDefault();
|
|
||||||
} else if (window.event){
|
|
||||||
window.event.returnValue = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// DOM element
|
|
||||||
this._button = button;
|
|
||||||
// DOM element
|
|
||||||
this._input = null;
|
|
||||||
// If disabled clicking on button won't do anything
|
|
||||||
this._disabled = false;
|
|
||||||
|
|
||||||
// if the button was disabled before refresh if will remain
|
|
||||||
// disabled in FireFox, let's fix it
|
|
||||||
this.enable();
|
|
||||||
|
|
||||||
this._rerouteClicks();
|
|
||||||
};
|
|
||||||
|
|
||||||
// assigning methods to our class
|
|
||||||
AjaxUpload.prototype = {
|
|
||||||
setData: function(data){
|
|
||||||
this._settings.data = data;
|
|
||||||
},
|
|
||||||
disable: function(){
|
|
||||||
addClass(this._button, this._settings.disabledClass);
|
|
||||||
this._disabled = true;
|
|
||||||
|
|
||||||
var nodeName = this._button.nodeName.toUpperCase();
|
|
||||||
if (nodeName == 'INPUT' || nodeName == 'BUTTON'){
|
|
||||||
this._button.setAttribute('disabled', 'disabled');
|
|
||||||
}
|
|
||||||
|
|
||||||
// hide input
|
|
||||||
if (this._input){
|
|
||||||
// We use visibility instead of display to fix problem with Safari 4
|
|
||||||
// The problem is that the value of input doesn't change if it
|
|
||||||
// has display none when user selects a file
|
|
||||||
this._input.parentNode.style.visibility = 'hidden';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
enable: function(){
|
|
||||||
removeClass(this._button, this._settings.disabledClass);
|
|
||||||
this._button.removeAttribute('disabled');
|
|
||||||
this._disabled = false;
|
|
||||||
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Creates invisible file input
|
|
||||||
* that will hover above the button
|
|
||||||
* <div><input type='file' /></div>
|
|
||||||
*/
|
|
||||||
_createInput: function(){
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
var input = document.createElement("input");
|
|
||||||
input.setAttribute('type', 'file');
|
|
||||||
input.setAttribute('title',this._settings.title);
|
|
||||||
input.setAttribute('name', this._settings.name);
|
|
||||||
|
|
||||||
addStyles(input, {
|
|
||||||
'position' : 'absolute',
|
|
||||||
// in Opera only 'browse' button
|
|
||||||
// is clickable and it is located at
|
|
||||||
// the right side of the input
|
|
||||||
'right' : 0,
|
|
||||||
'margin' : 0,
|
|
||||||
'padding' : 0,
|
|
||||||
'fontSize' : '480px',
|
|
||||||
// in Firefox if font-family is set to
|
|
||||||
// 'inherit' the input doesn't work
|
|
||||||
'fontFamily' : 'sans-serif',
|
|
||||||
'cursor' : 'pointer'
|
|
||||||
});
|
|
||||||
|
|
||||||
var div = document.createElement("div");
|
|
||||||
addStyles(div, {
|
|
||||||
'display' : 'block',
|
|
||||||
'position' : 'absolute',
|
|
||||||
'overflow' : 'hidden',
|
|
||||||
'margin' : 0,
|
|
||||||
'padding' : 0,
|
|
||||||
'opacity' : 0,
|
|
||||||
// Make sure browse button is in the right side
|
|
||||||
// in Internet Explorer
|
|
||||||
'direction' : 'ltr',
|
|
||||||
//Max zIndex supported by Opera 9.0-9.2
|
|
||||||
'zIndex': 2147483583,
|
|
||||||
'cursor' : 'pointer'
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make sure that element opacity exists.
|
|
||||||
// Otherwise use IE filter
|
|
||||||
if ( div.style.opacity !== "0") {
|
|
||||||
if (typeof(div.filters) == 'undefined'){
|
|
||||||
throw new Error('Opacity not supported by the browser');
|
|
||||||
}
|
|
||||||
div.style.filter = "alpha(opacity=0)";
|
|
||||||
}
|
|
||||||
|
|
||||||
addEvent(input, 'change', function(){
|
|
||||||
|
|
||||||
if ( ! input || input.value === ''){
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get filename from input, required
|
|
||||||
// as some browsers have path instead of it
|
|
||||||
var file = fileFromPath(input.value);
|
|
||||||
|
|
||||||
if (false === self._settings.onChange.call(self, file, getExt(file))){
|
|
||||||
self._clearInput();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Submit form when value is changed
|
|
||||||
if (self._settings.autoSubmit) {
|
|
||||||
self.submit();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
addEvent(input, 'mouseover', function(){
|
|
||||||
addClass(self._button, self._settings.hoverClass);
|
|
||||||
});
|
|
||||||
|
|
||||||
addEvent(input, 'mouseout', function(){
|
|
||||||
removeClass(self._button, self._settings.hoverClass);
|
|
||||||
removeClass(self._button, self._settings.focusClass);
|
|
||||||
|
|
||||||
// We use visibility instead of display to fix problem with Safari 4
|
|
||||||
// The problem is that the value of input doesn't change if it
|
|
||||||
// has display none when user selects a file
|
|
||||||
input.parentNode.style.visibility = 'hidden';
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
addEvent(input, 'focus', function(){
|
|
||||||
addClass(self._button, self._settings.focusClass);
|
|
||||||
});
|
|
||||||
|
|
||||||
addEvent(input, 'blur', function(){
|
|
||||||
removeClass(self._button, self._settings.focusClass);
|
|
||||||
});
|
|
||||||
|
|
||||||
div.appendChild(input);
|
|
||||||
document.body.appendChild(div);
|
|
||||||
|
|
||||||
this._input = input;
|
|
||||||
},
|
|
||||||
_clearInput : function(){
|
|
||||||
if (!this._input){
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// this._input.value = ''; Doesn't work in IE6
|
|
||||||
removeNode(this._input.parentNode);
|
|
||||||
this._input = null;
|
|
||||||
this._createInput();
|
|
||||||
|
|
||||||
removeClass(this._button, this._settings.hoverClass);
|
|
||||||
removeClass(this._button, this._settings.focusClass);
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Function makes sure that when user clicks upload button,
|
|
||||||
* the this._input is clicked instead
|
|
||||||
*/
|
|
||||||
_rerouteClicks: function(){
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
// IE will later display 'access denied' error
|
|
||||||
// if you use using self._input.click()
|
|
||||||
// other browsers just ignore click()
|
|
||||||
|
|
||||||
addEvent(self._button, 'mouseover', function(){
|
|
||||||
if (self._disabled){
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ! self._input){
|
|
||||||
self._createInput();
|
|
||||||
}
|
|
||||||
|
|
||||||
var div = self._input.parentNode;
|
|
||||||
copyLayout(self._button, div);
|
|
||||||
div.style.visibility = 'visible';
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
// commented because we now hide input on mouseleave
|
|
||||||
/**
|
|
||||||
* When the window is resized the elements
|
|
||||||
* can be misaligned if button position depends
|
|
||||||
* on window size
|
|
||||||
*/
|
|
||||||
//addResizeEvent(function(){
|
|
||||||
// if (self._input){
|
|
||||||
// copyLayout(self._button, self._input.parentNode);
|
|
||||||
// }
|
|
||||||
//});
|
|
||||||
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Creates iframe with unique name
|
|
||||||
* @return {Element} iframe
|
|
||||||
*/
|
|
||||||
_createIframe: function(){
|
|
||||||
// We can't use getTime, because it sometimes return
|
|
||||||
// same value in safari :(
|
|
||||||
var id = getUID();
|
|
||||||
|
|
||||||
// We can't use following code as the name attribute
|
|
||||||
// won't be properly registered in IE6, and new window
|
|
||||||
// on form submit will open
|
|
||||||
// var iframe = document.createElement('iframe');
|
|
||||||
// iframe.setAttribute('name', id);
|
|
||||||
|
|
||||||
var iframe = toElement('<iframe src="javascript:false;" name="' + id + '" />');
|
|
||||||
// src="javascript:false; was added
|
|
||||||
// because it possibly removes ie6 prompt
|
|
||||||
// "This page contains both secure and nonsecure items"
|
|
||||||
// Anyway, it doesn't do any harm.
|
|
||||||
iframe.setAttribute('id', id);
|
|
||||||
|
|
||||||
iframe.style.display = 'none';
|
|
||||||
document.body.appendChild(iframe);
|
|
||||||
|
|
||||||
return iframe;
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Creates form, that will be submitted to iframe
|
|
||||||
* @param {Element} iframe Where to submit
|
|
||||||
* @return {Element} form
|
|
||||||
*/
|
|
||||||
_createForm: function(iframe){
|
|
||||||
var settings = this._settings;
|
|
||||||
|
|
||||||
// We can't use the following code in IE6
|
|
||||||
// var form = document.createElement('form');
|
|
||||||
// form.setAttribute('method', 'post');
|
|
||||||
// form.setAttribute('enctype', 'multipart/form-data');
|
|
||||||
// Because in this case file won't be attached to request
|
|
||||||
var form = toElement('<form method="post" enctype="multipart/form-data"></form>');
|
|
||||||
|
|
||||||
form.setAttribute('action', settings.action);
|
|
||||||
form.setAttribute('target', iframe.name);
|
|
||||||
form.style.display = 'none';
|
|
||||||
document.body.appendChild(form);
|
|
||||||
|
|
||||||
// Create hidden input element for each data key
|
|
||||||
for (var prop in settings.data) {
|
|
||||||
if (settings.data.hasOwnProperty(prop)){
|
|
||||||
var el = document.createElement("input");
|
|
||||||
el.setAttribute('type', 'hidden');
|
|
||||||
el.setAttribute('name', prop);
|
|
||||||
el.setAttribute('value', settings.data[prop]);
|
|
||||||
form.appendChild(el);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return form;
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Gets response from iframe and fires onComplete event when ready
|
|
||||||
* @param iframe
|
|
||||||
* @param file Filename to use in onComplete callback
|
|
||||||
*/
|
|
||||||
_getResponse : function(iframe, file){
|
|
||||||
// getting response
|
|
||||||
var toDeleteFlag = false, self = this, settings = this._settings;
|
|
||||||
|
|
||||||
addEvent(iframe, 'load', function(){
|
|
||||||
|
|
||||||
if (// For Safari
|
|
||||||
iframe.src == "javascript:'%3Chtml%3E%3C/html%3E';" ||
|
|
||||||
// For FF, IE
|
|
||||||
iframe.src == "javascript:'<html></html>';"){
|
|
||||||
// First time around, do not delete.
|
|
||||||
// We reload to blank page, so that reloading main page
|
|
||||||
// does not re-submit the post.
|
|
||||||
|
|
||||||
if (toDeleteFlag) {
|
|
||||||
// Fix busy state in FF3
|
|
||||||
setTimeout(function(){
|
|
||||||
removeNode(iframe);
|
|
||||||
}, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var doc = iframe.contentDocument ? iframe.contentDocument : window.frames[iframe.id].document;
|
|
||||||
|
|
||||||
// fixing Opera 9.26,10.00
|
|
||||||
if (doc.readyState && doc.readyState != 'complete') {
|
|
||||||
// Opera fires load event multiple times
|
|
||||||
// Even when the DOM is not ready yet
|
|
||||||
// this fix should not affect other browsers
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// fixing Opera 9.64
|
|
||||||
if (doc.body && doc.body.innerHTML == "false") {
|
|
||||||
// In Opera 9.64 event was fired second time
|
|
||||||
// when body.innerHTML changed from false
|
|
||||||
// to server response approx. after 1 sec
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var response;
|
|
||||||
|
|
||||||
if (doc.XMLDocument) {
|
|
||||||
// response is a xml document Internet Explorer property
|
|
||||||
response = doc.XMLDocument;
|
|
||||||
} else if (doc.body){
|
|
||||||
// response is html document or plain text
|
|
||||||
response = doc.body.innerHTML;
|
|
||||||
|
|
||||||
if (settings.responseType && settings.responseType.toLowerCase() == 'json') {
|
|
||||||
// If the document was sent as 'application/javascript' or
|
|
||||||
// 'text/javascript', then the browser wraps the text in a <pre>
|
|
||||||
// tag and performs html encoding on the contents. In this case,
|
|
||||||
// we need to pull the original text content from the text node's
|
|
||||||
// nodeValue property to retrieve the unmangled content.
|
|
||||||
// Note that IE6 only understands text/html
|
|
||||||
if (doc.body.firstChild && doc.body.firstChild.nodeName.toUpperCase() == 'PRE') {
|
|
||||||
doc.normalize();
|
|
||||||
response = doc.body.firstChild.firstChild.nodeValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (response) {
|
|
||||||
response = eval("(" + response + ")");
|
|
||||||
} else {
|
|
||||||
response = {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// response is a xml document
|
|
||||||
response = doc;
|
|
||||||
}
|
|
||||||
|
|
||||||
settings.onComplete.call(self, file, response);
|
|
||||||
|
|
||||||
// Reload blank page, so that reloading main page
|
|
||||||
// does not re-submit the post. Also, remember to
|
|
||||||
// delete the frame
|
|
||||||
toDeleteFlag = true;
|
|
||||||
|
|
||||||
// Fix IE mixed content issue
|
|
||||||
iframe.src = "javascript:'<html></html>';";
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Upload file contained in this._input
|
|
||||||
*/
|
|
||||||
submit: function(){
|
|
||||||
var self = this, settings = this._settings;
|
|
||||||
|
|
||||||
if ( ! this._input || this._input.value === ''){
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var file = fileFromPath(this._input.value);
|
|
||||||
|
|
||||||
// user returned false to cancel upload
|
|
||||||
if (false === settings.onSubmit.call(this, file, getExt(file))){
|
|
||||||
this._clearInput();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// sending request
|
|
||||||
var iframe = this._createIframe();
|
|
||||||
var form = this._createForm(iframe);
|
|
||||||
|
|
||||||
// assuming following structure
|
|
||||||
// div -> input type='file'
|
|
||||||
removeNode(this._input.parentNode);
|
|
||||||
removeClass(self._button, self._settings.hoverClass);
|
|
||||||
removeClass(self._button, self._settings.focusClass);
|
|
||||||
|
|
||||||
form.appendChild(this._input);
|
|
||||||
|
|
||||||
form.submit();
|
|
||||||
|
|
||||||
// request set, clean up
|
|
||||||
removeNode(form); form = null;
|
|
||||||
removeNode(this._input); this._input = null;
|
|
||||||
|
|
||||||
// Get response from iframe and fire onComplete event when ready
|
|
||||||
this._getResponse(iframe, file);
|
|
||||||
|
|
||||||
// get ready for next request
|
|
||||||
this._createInput();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
})();
|
|
@ -1,157 +0,0 @@
|
|||||||
/* jQuery ajax stream plugin
|
|
||||||
* Version 0.1
|
|
||||||
* Copyright (C) 2009 Chris Tarquini
|
|
||||||
* Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License (http://creativecommons.org/licenses/by-sa/3.0/)
|
|
||||||
* Permissions beyond the scope of this license may be available by contacting petros000[at]hotmail.com.
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function($) {
|
|
||||||
|
|
||||||
// Save the original AJAX function
|
|
||||||
var ajax_old = $.ajax;
|
|
||||||
var get_old = $.get;
|
|
||||||
var post_old = $.post;
|
|
||||||
var active = true;
|
|
||||||
// Add our settings
|
|
||||||
$.ajaxSetup({stream: false,pollInterval: 500/*, onDataRecieved: function(){}*/ });
|
|
||||||
$.enableAjaxStream = function(enable)
|
|
||||||
{
|
|
||||||
if(typeof enable == 'undefined') enable = !active;
|
|
||||||
if(!enable)
|
|
||||||
{
|
|
||||||
$.ajax = ajax_old;
|
|
||||||
$.get = get_old;
|
|
||||||
$.post = post_old;
|
|
||||||
active = false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$.ajax = ajax_stream;
|
|
||||||
$.get = ajax_get_stream;
|
|
||||||
$.post = ajax_post_stream;
|
|
||||||
active = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
var ajax_stream = $.ajax = function(options)
|
|
||||||
{
|
|
||||||
//copied from original ajax function
|
|
||||||
options = jQuery.extend(true, options, jQuery.extend(true, {}, jQuery.ajaxSettings, options));
|
|
||||||
if(options.stream)
|
|
||||||
{
|
|
||||||
var timer = 0;
|
|
||||||
var offset = 0;
|
|
||||||
var xmlhttp = null;
|
|
||||||
var lastlen = 0;
|
|
||||||
var done = false;
|
|
||||||
var hook = function(xhr)
|
|
||||||
{
|
|
||||||
xmlhttp = xhr;
|
|
||||||
checkagain();
|
|
||||||
}
|
|
||||||
var fix = function(){ check('stream'); };// fixes weird bug with random numbers as arg
|
|
||||||
var checkagain = function(){if(!done) timer = setTimeout(fix,options.pollInterval);}
|
|
||||||
var check = function(status)
|
|
||||||
{
|
|
||||||
if(typeof status == 'undefined') status = "stream";
|
|
||||||
if(xmlhttp.status < 3) return; //only get the latest packet if data has been sent
|
|
||||||
var text = xmlhttp.responseText;
|
|
||||||
if(status == 'stream') //if we arent streaming then just flush the buffer
|
|
||||||
{
|
|
||||||
if(text.length <= lastlen) { checkagain(); return;}
|
|
||||||
lastlength = text.length;
|
|
||||||
if(offset == text.length) { checkagain(); return;}
|
|
||||||
}
|
|
||||||
var pkt = text.substr(offset);
|
|
||||||
offset = text.length;
|
|
||||||
if($.isFunction(options.OnDataRecieved))
|
|
||||||
{
|
|
||||||
options.OnDataRecieved(pkt, status, xmlhttp.responseText, xmlhttp);
|
|
||||||
}
|
|
||||||
if(xmlhttp.status != 4)
|
|
||||||
checkagain();
|
|
||||||
}
|
|
||||||
var complete = function(xhr,s)
|
|
||||||
{
|
|
||||||
clearTimeout(timer);//done..stop polling
|
|
||||||
done = true;
|
|
||||||
// send final call
|
|
||||||
check(s);
|
|
||||||
}
|
|
||||||
// If the complete callback is set create a new callback that calls the users and outs
|
|
||||||
if($.isFunction(options.success))
|
|
||||||
{
|
|
||||||
var oc = options.success;
|
|
||||||
options.success = function(xhr,s){ complete(xhr,s); oc(xhr,s);};
|
|
||||||
|
|
||||||
}
|
|
||||||
else options.success = complete;
|
|
||||||
// Set up our hook on the beforeSend
|
|
||||||
if($.isFunction(options.beforeSend))
|
|
||||||
{
|
|
||||||
var obs = options.beforeSend;
|
|
||||||
options.beforeSend = function(xhr){ obs(xhr); hook(xhr);};
|
|
||||||
}
|
|
||||||
else options.beforeSend = hook;
|
|
||||||
|
|
||||||
}
|
|
||||||
ajax_old(options);
|
|
||||||
}
|
|
||||||
|
|
||||||
var ajax_get_stream = $.get = function(url,data,callback,type,stream)
|
|
||||||
{
|
|
||||||
if($.isFunction(data))
|
|
||||||
{
|
|
||||||
var orgcb = callback;
|
|
||||||
callback = data;
|
|
||||||
if($.isFunction(orgcb))
|
|
||||||
{
|
|
||||||
stream = orgcb;
|
|
||||||
}
|
|
||||||
data = null;
|
|
||||||
}
|
|
||||||
if($.isFunction(type))
|
|
||||||
{
|
|
||||||
stream = type;
|
|
||||||
type = undefined;
|
|
||||||
}
|
|
||||||
var dostream = $.isFunction(stream);
|
|
||||||
return jQuery.ajax({
|
|
||||||
type: "GET",
|
|
||||||
url: url,
|
|
||||||
data: data,
|
|
||||||
success: callback,
|
|
||||||
dataType: type,
|
|
||||||
stream: dostream,
|
|
||||||
OnDataRecieved: stream
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
var ajax_post_stream = $.post = function(url,data,callback,type,stream)
|
|
||||||
{
|
|
||||||
if($.isFunction(data))
|
|
||||||
{
|
|
||||||
var orgcb = callback;
|
|
||||||
callback = data;
|
|
||||||
}
|
|
||||||
if($.isFunction(type))
|
|
||||||
{
|
|
||||||
stream = type;
|
|
||||||
type = undefined;
|
|
||||||
}
|
|
||||||
var dostream = $.isFunction(stream);
|
|
||||||
return jQuery.ajax({
|
|
||||||
type: "POST",
|
|
||||||
url: url,
|
|
||||||
data: data,
|
|
||||||
success: callback,
|
|
||||||
dataType: type,
|
|
||||||
stream: dostream,
|
|
||||||
OnDataRecieved: stream
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
})(jQuery);
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
@ -1,20 +0,0 @@
|
|||||||
/*
|
|
||||||
Rangy Text Inputs, a cross-browser textarea and text input library plug-in for jQuery.
|
|
||||||
|
|
||||||
Part of Rangy, a cross-browser JavaScript range and selection library
|
|
||||||
http://code.google.com/p/rangy/
|
|
||||||
|
|
||||||
Depends on jQuery 1.0 or later.
|
|
||||||
|
|
||||||
Copyright 2010, Tim Down
|
|
||||||
Licensed under the MIT license.
|
|
||||||
Version: 0.1.205
|
|
||||||
Build date: 5 November 2010
|
|
||||||
*/
|
|
||||||
(function(n){function o(e,g){var a=typeof e[g];return a==="function"||!!(a=="object"&&e[g])||a=="unknown"}function p(e,g,a){if(g<0)g+=e.value.length;if(typeof a=="undefined")a=g;if(a<0)a+=e.value.length;return{start:g,end:a}}function k(){return typeof document.body=="object"&&document.body?document.body:document.getElementsByTagName("body")[0]}var i,h,q,l,r,s,t,u,m;n(document).ready(function(){function e(a,b){return function(){var c=this.jquery?this[0]:this,d=c.nodeName.toLowerCase();if(c.nodeType==
|
|
||||||
1&&(d=="textarea"||d=="input"&&c.type=="text")){c=[c].concat(Array.prototype.slice.call(arguments));c=a.apply(this,c);if(!b)return c}if(b)return this}}var g=document.createElement("textarea");k().appendChild(g);if(typeof g.selectionStart!="undefined"&&typeof g.selectionEnd!="undefined"){i=function(a){return{start:a.selectionStart,end:a.selectionEnd,length:a.selectionEnd-a.selectionStart,text:a.value.slice(a.selectionStart,a.selectionEnd)}};h=function(a,b,c){b=p(a,b,c);a.selectionStart=b.start;a.selectionEnd=
|
|
||||||
b.end};m=function(a,b){if(b)a.selectionEnd=a.selectionStart;else a.selectionStart=a.selectionEnd}}else if(o(g,"createTextRange")&&typeof document.selection=="object"&&document.selection&&o(document.selection,"createRange")){i=function(a){var b=0,c=0,d,f,j;if((j=document.selection.createRange())&&j.parentElement()==a){f=a.value.length;d=a.value.replace(/\r\n/g,"\n");c=a.createTextRange();c.moveToBookmark(j.getBookmark());j=a.createTextRange();j.collapse(false);if(c.compareEndPoints("StartToEnd",j)>
|
|
||||||
-1)b=c=f;else{b=-c.moveStart("character",-f);b+=d.slice(0,b).split("\n").length-1;if(c.compareEndPoints("EndToEnd",j)>-1)c=f;else{c=-c.moveEnd("character",-f);c+=d.slice(0,c).split("\n").length-1}}}return{start:b,end:c,length:c-b,text:a.value.slice(b,c)}};h=function(a,b,c){b=p(a,b,c);c=a.createTextRange();var d=b.start-(a.value.slice(0,b.start).split("\r\n").length-1);c.collapse(true);if(b.start==b.end)c.move("character",d);else{c.moveEnd("character",b.end-(a.value.slice(0,b.end).split("\r\n").length-
|
|
||||||
1));c.moveStart("character",d)}c.select()};m=function(a,b){var c=document.selection.createRange();c.collapse(b);c.select()}}else{k().removeChild(g);window.console&&window.console.log&&window.console.log("TextInputs module for Rangy not supported in your browser. Reason: No means of finding text input caret position");return}k().removeChild(g);l=function(a,b,c,d){var f;if(b!=c){f=a.value;a.value=f.slice(0,b)+f.slice(c)}d&&h(a,b,b)};q=function(a){var b=i(a);l(a,b.start,b.end,true)};u=function(a){var b=
|
|
||||||
i(a),c;if(b.start!=b.end){c=a.value;a.value=c.slice(0,b.start)+c.slice(b.end)}h(a,b.start,b.start);return b.text};r=function(a,b,c,d){var f=a.value;a.value=f.slice(0,c)+b+f.slice(c);if(d){b=c+b.length;h(a,b,b)}};s=function(a,b){var c=i(a),d=a.value;a.value=d.slice(0,c.start)+b+d.slice(c.end);c=c.start+b.length;h(a,c,c)};t=function(a,b,c){var d=i(a),f=a.value;a.value=f.slice(0,d.start)+b+d.text+c+f.slice(d.end);b=d.start+b.length;h(a,b,b+d.length)};n.fn.extend({getSelection:e(i,false),setSelection:e(h,
|
|
||||||
true),collapseSelection:e(m,true),deleteSelectedText:e(q,true),deleteText:e(l,true),extractSelectedText:e(u,false),insertText:e(r,true),replaceSelectedText:e(s,true),surroundSelectedText:e(t,true)})})})(jQuery);
|
|
Reference in New Issue
Block a user